WP Statistics - Version 9.0

Version Description

This release updates some core code to do with timezones, hence the change to version 9.0, if you see any issues with timezones, please let us know. In addition, you may see an increase in your visits count as a race condition that dropped some visits has been resolved.

=

Download this release

Release Info

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

Code changes from version 8.8.1 to 9.0

Files changed (74) hide show
  1. assets/css/rtl.css +5 -1
  2. dashboard.php +3 -3
  3. editor.php +1 -1
  4. includes/classes/hits.class.php +43 -19
  5. includes/classes/pagination.class.php +2 -2
  6. includes/classes/statistics.class.php +17 -7
  7. includes/functions/functions.php +68 -67
  8. includes/functions/geoip-populate.php +2 -4
  9. includes/functions/purge.php +10 -10
  10. includes/log/all-browsers.php +6 -6
  11. includes/log/exclusions.php +10 -8
  12. includes/log/hit-statistics.php +3 -3
  13. includes/log/last-search.php +6 -4
  14. includes/log/last-visitor.php +8 -7
  15. includes/log/online.php +4 -2
  16. includes/log/search-statistics.php +3 -3
  17. includes/log/top-countries.php +2 -2
  18. includes/log/top-pages.php +4 -4
  19. includes/log/top-referring.php +5 -5
  20. includes/log/widgets/about.php +2 -2
  21. includes/log/widgets/browsers.php +3 -3
  22. includes/log/widgets/countries.php +3 -3
  23. includes/log/widgets/google.map.php +3 -3
  24. includes/log/widgets/hits.php +5 -5
  25. includes/log/widgets/jqv.map.php +4 -4
  26. includes/log/widgets/page.php +5 -3
  27. includes/log/widgets/recent.php +3 -3
  28. includes/log/widgets/referring.php +2 -2
  29. includes/log/widgets/search.php +4 -4
  30. includes/log/widgets/summary.php +5 -5
  31. includes/log/widgets/top.visitors.php +3 -3
  32. includes/log/widgets/words.php +4 -4
  33. includes/optimization/delete-agents.php +1 -1
  34. includes/optimization/delete-platforms.php +1 -1
  35. includes/optimization/empty.php +10 -10
  36. includes/optimization/export.php +27 -4
  37. includes/optimization/tabs/wps-optimization-export.php +5 -5
  38. includes/optimization/tabs/wps-optimization-purging.php +7 -7
  39. includes/optimization/tabs/wps-optimization-resources.php +6 -6
  40. includes/settings/tabs/wps-access-level.php +14 -2
  41. includes/settings/tabs/wps-browscap.php +3 -1
  42. includes/settings/tabs/wps-general.php +20 -2
  43. includes/settings/tabs/wps-geoip.php +5 -3
  44. includes/settings/tabs/wps-maintenance.php +3 -1
  45. includes/settings/tabs/wps-notifications.php +3 -1
  46. includes/settings/tabs/wps-overview-display.php +3 -1
  47. includes/settings/tabs/wps-removal.php +3 -1
  48. includes/settings/wps-settings.php +0 -5
  49. languages/default.mo +0 -0
  50. languages/default.po +263 -151
  51. languages/wp_statistics-ar.mo +0 -0
  52. languages/wp_statistics-ar.po +234 -128
  53. languages/wp_statistics-bg_BG.mo +0 -0
  54. languages/wp_statistics-bg_BG.po +334 -228
  55. languages/wp_statistics-bn_BD.mo +0 -0
  56. languages/wp_statistics-bn_BD.po +718 -612
  57. languages/wp_statistics-ckb.mo +0 -0
  58. languages/wp_statistics-ckb.po +2506 -0
  59. languages/wp_statistics-cs.mo +0 -0
  60. languages/wp_statistics-cs.po +334 -228
  61. languages/wp_statistics-de_DE.mo +0 -0
  62. languages/wp_statistics-de_DE.po +338 -232
  63. languages/wp_statistics-es_ES.mo +0 -0
  64. languages/wp_statistics-es_ES.po +334 -228
  65. languages/wp_statistics-fa_IR.mo +0 -0
  66. languages/wp_statistics-fa_IR.po +251 -145
  67. languages/wp_statistics-fr_FR.mo +0 -0
  68. languages/wp_statistics-fr_FR.po +234 -128
  69. languages/wp_statistics-hu_HU.mo +0 -0
  70. languages/wp_statistics-hu_HU.po +334 -228
  71. languages/wp_statistics-id_ID.mo +0 -0
  72. languages/wp_statistics-id_ID.po +334 -228
  73. languages/wp_statistics-it_IT.mo +0 -0
  74. languages/wp_statistics-it_IT.po +148 -34
assets/css/rtl.css CHANGED
@@ -16,7 +16,7 @@
16
  direction: rtl;
17
  }
18
  .ui-widget, .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button{
19
- font-family: Tahoma;
20
  }
21
  .ui-tabs .ui-tabs-nav li{
22
  float: right;
@@ -24,3 +24,7 @@
24
  .jqvmap-label{
25
  direction: ltr;
26
  }
 
 
 
 
16
  direction: rtl;
17
  }
18
  .ui-widget, .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button{
19
+ font-family: tahoma;
20
  }
21
  .ui-tabs .ui-tabs-nav li{
22
  float: right;
24
  .jqvmap-label{
25
  direction: ltr;
26
  }
27
+ .jqplot-table-legend, .jqplot-highlighter-tooltip{
28
+ direction: rtl;
29
+ font-family: tahoma;
30
+ }
dashboard.php CHANGED
@@ -251,7 +251,7 @@
251
  }
252
 
253
  function wp_statistics_referring_widget() {
254
- GLOBAL $wpdb, $table_prefix, $WP_Statistics;
255
 
256
  // If the widget isn't visible, don't output the stats as they take too much memory and CPU to compute for no reason.
257
  if( ( $is_visible = wp_statistics_is_wp_widget_visible( 'wp-statistics-referring-widget', 'dashboard' ) ) !== true ) { echo $is_visible; return; }
@@ -262,7 +262,7 @@
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 `{$table_prefix}statistics_visitor` WHERE referred <> ''");
266
 
267
  if( sizeof( $result ) > 0 ) {
268
  wp_statistics_generate_referring_postbox_content($result);
@@ -300,7 +300,7 @@
300
  }
301
 
302
  function wp_statistics_words_widget() {
303
- GLOBAL $wpdb, $table_prefix, $WP_Statistics;
304
 
305
  // If the widget isn't visible, don't output the stats as they take too much memory and CPU to compute for no reason.
306
  if( ( $is_visible = wp_statistics_is_wp_widget_visible( 'wp-statistics-words-widget', 'dashboard' ) ) !== true ) { echo $is_visible; return; }
251
  }
252
 
253
  function wp_statistics_referring_widget() {
254
+ GLOBAL $wpdb, $WP_Statistics;
255
 
256
  // If the widget isn't visible, don't output the stats as they take too much memory and CPU to compute for no reason.
257
  if( ( $is_visible = wp_statistics_is_wp_widget_visible( 'wp-statistics-referring-widget', 'dashboard' ) ) !== true ) { echo $is_visible; return; }
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);
300
  }
301
 
302
  function wp_statistics_words_widget() {
303
+ GLOBAL $wpdb, $WP_Statistics;
304
 
305
  // If the widget isn't visible, don't output the stats as they take too much memory and CPU to compute for no reason.
306
  if( ( $is_visible = wp_statistics_is_wp_widget_visible( 'wp-statistics-words-widget', 'dashboard' ) ) !== true ) { echo $is_visible; return; }
editor.php CHANGED
@@ -66,7 +66,7 @@ function wp_statistics_editor_meta_box( $post ) {
66
 
67
  wp_statistics_load_widget_css_and_scripts();
68
 
69
- wp_statistics_generate_page_postbox_content( null, $post->ID, 20, 'Hits in the last 20 days' );
70
  }
71
 
72
  ?>
66
 
67
  wp_statistics_load_widget_css_and_scripts();
68
 
69
+ wp_statistics_generate_page_postbox_content( null, $post->ID, 20, __('Hits in the last 20 days', 'wp_statistics') );
70
  }
71
 
72
  ?>
includes/classes/hits.class.php CHANGED
@@ -29,7 +29,7 @@
29
  parent::__construct();
30
 
31
  // Set the timestamp value.
32
- $this->timestamp = date('U');
33
 
34
  // Set the default seconds a user needs to visit the site before they are considered offline.
35
  $this->second = 30;
@@ -153,10 +153,13 @@
153
  $currentURL = $protocol . '://' . $host . $script;
154
  $loginURL = wp_login_url();
155
 
156
- if( $currentURL == $loginURL ) { $this->exclusion_match = TRUE; $this->exclusion_reason = "login page";}
 
 
 
157
  }
158
 
159
- if( $this->get_option('exclude_adminpage') == 1 ) {
160
  $protocol = strpos(strtolower($_SERVER['SERVER_PROTOCOL']),'https') === FALSE ? 'http' : 'https';
161
  $host = $_SERVER['HTTP_HOST'];
162
  $script = $_SERVER['SCRIPT_NAME'];
@@ -166,12 +169,39 @@
166
 
167
  $currentURL = substr( $currentURL, 0, strlen( $adminURL ) );
168
 
169
- if( $currentURL == $adminURL ) { $this->exclusion_match = TRUE; $this->exclusion_reason = "admin page";}
 
 
 
170
  }
171
 
172
- if( $this->get_option('exclude_feeds') == 1 ) {
173
  if( is_object( $WP_Statistics ) ) {
174
- if( $WP_Statistics->check_feed() ) { { $this->exclusion_match = TRUE; $this->exclusion_reason = "feed";} }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
175
  }
176
  }
177
 
@@ -268,17 +298,9 @@
268
 
269
  $this->db->query( $sqlstring );
270
  } else {
271
-
272
- $this->db->update(
273
- $this->tb_prefix . "statistics_visit",
274
- array(
275
- 'last_visit' => $this->Current_Date(),
276
- 'visit' => $this->result->visit + $this->coefficient
277
- ),
278
- array(
279
- 'last_counter' => $this->result->last_counter
280
- )
281
- );
282
  }
283
  }
284
  }
@@ -288,7 +310,9 @@
288
  global $wp_query;
289
 
290
  // Get the pages or posts ID if it exists.
291
- $this->current_page_id = $wp_query->get_queried_object_id();
 
 
292
 
293
  if( $this->get_option( 'use_honeypot' ) && $this->get_option( 'honeypot_postid') > 0 && $this->get_option( 'honeypot_postid' ) == $this->current_page_id && $this->current_page_id > 0 ) {
294
  $this->exclusion_match = TRUE;
@@ -376,7 +400,7 @@
376
  // Don't track anything but actual pages and posts, unless we've been told to.
377
  if( $this->get_option('track_all_pages') || is_page() || is_single() || is_front_page() ) {
378
  // Get the pages or posts ID if it exists and we haven't set it in the visitors code.
379
- if( !$this->current_page_id ) {
380
  $this->current_page_id = $wp_query->get_queried_object_id();
381
  }
382
 
29
  parent::__construct();
30
 
31
  // Set the timestamp value.
32
+ $this->timestamp = $this->current_date('U');
33
 
34
  // Set the default seconds a user needs to visit the site before they are considered offline.
35
  $this->second = 30;
153
  $currentURL = $protocol . '://' . $host . $script;
154
  $loginURL = wp_login_url();
155
 
156
+ if( $currentURL == $loginURL ) {
157
+ $this->exclusion_match = TRUE;
158
+ $this->exclusion_reason = "login page";
159
+ }
160
  }
161
 
162
+ if( $this->get_option('exclude_adminpage') == 1 && !$this->exclusion_match ) {
163
  $protocol = strpos(strtolower($_SERVER['SERVER_PROTOCOL']),'https') === FALSE ? 'http' : 'https';
164
  $host = $_SERVER['HTTP_HOST'];
165
  $script = $_SERVER['SCRIPT_NAME'];
169
 
170
  $currentURL = substr( $currentURL, 0, strlen( $adminURL ) );
171
 
172
+ if( $currentURL == $adminURL ) {
173
+ $this->exclusion_match = TRUE;
174
+ $this->exclusion_reason = "admin page";
175
+ }
176
  }
177
 
178
+ if( $this->get_option('exclude_feeds') == 1 && !$this->exclusion_match ) {
179
  if( is_object( $WP_Statistics ) ) {
180
+ if( $WP_Statistics->check_feed() ) {
181
+ $this->exclusion_match = TRUE;
182
+ $this->exclusion_reason = "feed";
183
+ }
184
+ }
185
+ }
186
+
187
+ if( $this->get_option('excluded_urls') && !$this->exclusion_match ) {
188
+ $script = $_SERVER['REQUEST_URI'];
189
+ $delimiter = strpos( $script, '?' );
190
+ if( $delimiter > 0 ) {
191
+ $script = substr( $script, 0, $delimiter );
192
+ }
193
+
194
+ $excluded_urls = explode( "\n", $this->get_option('excluded_urls') );
195
+
196
+ foreach( $excluded_urls as $url ) {
197
+ $this_url = trim( $url );
198
+ if( strlen($this_url) > 2 ) {
199
+ if( stripos( $script, $this_url ) === 0 ) {
200
+ $this->exclusion_match = TRUE;
201
+ $this->exclusion_reason = "excluded url";
202
+ break;
203
+ }
204
+ }
205
  }
206
  }
207
 
298
 
299
  $this->db->query( $sqlstring );
300
  } else {
301
+ $sqlstring = $this->db->prepare( 'UPDATE ' . $this->tb_prefix . 'statistics_visit SET `visit` = `visit` + %d, `last_visit` = %s WHERE `last_counter` = %s', $this->coefficient, $this->Current_Date(), $this->result->last_counter );
302
+
303
+ $this->db->query( $sqlstring );
 
 
 
 
 
 
 
 
304
  }
305
  }
306
  }
310
  global $wp_query;
311
 
312
  // Get the pages or posts ID if it exists.
313
+ if( is_object( $wp_query ) ) {
314
+ $this->current_page_id = $wp_query->get_queried_object_id();
315
+ }
316
 
317
  if( $this->get_option( 'use_honeypot' ) && $this->get_option( 'honeypot_postid') > 0 && $this->get_option( 'honeypot_postid' ) == $this->current_page_id && $this->current_page_id > 0 ) {
318
  $this->exclusion_match = TRUE;
400
  // Don't track anything but actual pages and posts, unless we've been told to.
401
  if( $this->get_option('track_all_pages') || is_page() || is_single() || is_front_page() ) {
402
  // Get the pages or posts ID if it exists and we haven't set it in the visitors code.
403
+ if( !$this->current_page_id && is_object( $wp_query ) ) {
404
  $this->current_page_id = $wp_query->get_queried_object_id();
405
  }
406
 
includes/classes/pagination.class.php CHANGED
@@ -17,9 +17,9 @@
17
  *
18
  ******************************************************************************************/
19
 
20
- if(!class_exists("Pagination")): // Prevent multiple class definitions
21
 
22
- class Pagination
23
  {
24
  /*******************************************************
25
  PROPERTIES / DATA MEMBERS
17
  *
18
  ******************************************************************************************/
19
 
20
+ if(!class_exists("WP_Statistics_Pagination")): // Prevent multiple class definitions
21
 
22
+ class WP_Statistics_Pagination
23
  {
24
  /*******************************************************
25
  PROPERTIES / DATA MEMBERS
includes/classes/statistics.class.php CHANGED
@@ -18,6 +18,7 @@
18
  private $historical;
19
  private $user_options_loaded = false;
20
  private $is_feed = false;
 
21
 
22
  public $coefficient = 1;
23
  public $plugin_dir = '';
@@ -28,10 +29,14 @@
28
  // Construction function.
29
  public function __construct() {
30
 
31
- global $wpdb, $table_prefix;
 
 
 
 
32
 
33
  $this->db = $wpdb;
34
- $this->tb_prefix = $table_prefix;
35
  $this->agent = $this->get_UserAgent();
36
  $this->historical = array();
37
 
@@ -187,7 +192,7 @@
187
  $this->tb_prefix . "statistics_useronline",
188
  array(
189
  'ip' => $this->get_IP(),
190
- 'timestamp' => date('U'),
191
  'date' => $this->Current_Date(),
192
  'referred' => $this->get_Referred(),
193
  'agent' => $this->agent['browser'],
@@ -313,13 +318,18 @@
313
  return $referr;
314
  }
315
 
 
 
 
 
 
316
  // This function returns a date string in the desired format.
317
  public function Current_Date($format = 'Y-m-d H:i:s', $strtotime = null) {
318
 
319
  if( $strtotime ) {
320
- return date($format, strtotime("{$strtotime} day") ) ;
321
  } else {
322
- return date($format) ;
323
  }
324
  }
325
 
@@ -327,9 +337,9 @@
327
  public function Current_Date_i18n($format = 'Y-m-d H:i:s', $strtotime = null, $day=' day') {
328
 
329
  if( $strtotime ) {
330
- return date_i18n($format, strtotime("{$strtotime}{$day}") ) ;
331
  } else {
332
- return date_i18n($format) ;
333
  }
334
  }
335
 
18
  private $historical;
19
  private $user_options_loaded = false;
20
  private $is_feed = false;
21
+ private $tz_offset = 0;
22
 
23
  public $coefficient = 1;
24
  public $plugin_dir = '';
29
  // Construction function.
30
  public function __construct() {
31
 
32
+ global $wpdb;
33
+
34
+ if( get_option('timezone_string') ) {
35
+ $this->tz_offset = timezone_offset_get( timezone_open( get_option('timezone_string') ), new DateTime() );
36
+ }
37
 
38
  $this->db = $wpdb;
39
+ $this->tb_prefix = $wpdb->prefix;
40
  $this->agent = $this->get_UserAgent();
41
  $this->historical = array();
42
 
192
  $this->tb_prefix . "statistics_useronline",
193
  array(
194
  'ip' => $this->get_IP(),
195
+ 'timestamp' => $this->Current_Date('U'),
196
  'date' => $this->Current_Date(),
197
  'referred' => $this->get_Referred(),
198
  'agent' => $this->agent['browser'],
318
  return $referr;
319
  }
320
 
321
+ // This function returns a date string in the desired format with a passed in timestamp.
322
+ public function Local_Date($format, $timestamp ) {
323
+ return date( $format, $timestamp + $this->tz_offset );
324
+ }
325
+
326
  // This function returns a date string in the desired format.
327
  public function Current_Date($format = 'Y-m-d H:i:s', $strtotime = null) {
328
 
329
  if( $strtotime ) {
330
+ return date($format, strtotime("{$strtotime} day") + $this->tz_offset );
331
  } else {
332
+ return date($format, time() + $this->tz_offset);
333
  }
334
  }
335
 
337
  public function Current_Date_i18n($format = 'Y-m-d H:i:s', $strtotime = null, $day=' day') {
338
 
339
  if( $strtotime ) {
340
+ return date_i18n($format, strtotime("{$strtotime}{$day}") + $this->tz_offset );
341
  } else {
342
+ return date_i18n($format, time() + $this->tz_offset);
343
  }
344
  }
345
 
includes/functions/functions.php CHANGED
@@ -9,22 +9,22 @@
9
  // This function returns the current users online.
10
  function wp_statistics_useronline() {
11
 
12
- global $wpdb, $table_prefix;
13
 
14
- return $wpdb->query("SELECT * FROM {$table_prefix}statistics_useronline");
15
  }
16
 
17
  // This function get the visit statistics for a given time frame.
18
  function wp_statistics_visit($time, $daily = null) {
19
 
20
  // We need database and the global $WP_Statistics object access.
21
- global $wpdb, $table_prefix, $WP_Statistics;
22
 
23
  // If we've been asked to do a daily count, it's a slightly different SQL query, so handle it separately.
24
  if( $daily == true ) {
25
 
26
  // Fetch the results from the database.
27
- $result = $wpdb->get_row("SELECT * FROM {$table_prefix}statistics_visit WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', $time)}'");
28
 
29
  // If we have a result, return it, otherwise force a 0 to be returned instead of the logical FALSE that would otherwise be the case.
30
  if( $result) {
@@ -40,32 +40,32 @@
40
 
41
  switch($time) {
42
  case 'today':
43
- $result = $wpdb->get_var("SELECT SUM(visit) FROM {$table_prefix}statistics_visit WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d')}'");
44
  break;
45
 
46
  case 'yesterday':
47
- $result = $wpdb->get_var("SELECT SUM(visit) FROM {$table_prefix}statistics_visit WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -1)}'");
48
  break;
49
 
50
  case 'week':
51
- $result = $wpdb->get_var("SELECT SUM(visit) FROM {$table_prefix}statistics_visit WHERE `last_counter` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', -7)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}'");
52
  break;
53
 
54
  case 'month':
55
- $result = $wpdb->get_var("SELECT SUM(visit) FROM {$table_prefix}statistics_visit WHERE `last_counter` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', -30)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}'");
56
  break;
57
 
58
  case 'year':
59
- $result = $wpdb->get_var("SELECT SUM(visit) FROM {$table_prefix}statistics_visit WHERE `last_counter` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', -360)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}'");
60
  break;
61
 
62
  case 'total':
63
- $result = $wpdb->get_var("SELECT SUM(visit) FROM {$table_prefix}statistics_visit");
64
  $result += $WP_Statistics->Get_Historical_Data( 'visits' );
65
  break;
66
 
67
  default:
68
- $result = $wpdb->get_var("SELECT SUM(visit) FROM {$table_prefix}statistics_visit WHERE `last_counter` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', $time)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}'");
69
  break;
70
  }
71
  }
@@ -80,7 +80,7 @@
80
  function wp_statistics_visitor($time, $daily = null, $countonly = false) {
81
 
82
  // We need database and the global $WP_Statistics object access.
83
- global $wpdb, $table_prefix, $WP_Statistics;
84
 
85
  $history = 0;
86
  $select = '*';
@@ -93,7 +93,7 @@
93
  if( $daily == true ) {
94
 
95
  // Fetch the results from the database.
96
- $result = $wpdb->query( "SELECT {$select} FROM {$table_prefix}statistics_visitor WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', $time)}'");
97
 
98
  return $result;
99
 
@@ -103,32 +103,32 @@
103
  // They're pretty self explanatory.
104
  switch($time) {
105
  case 'today':
106
- $sqlstatement = "SELECT {$select} FROM {$table_prefix}statistics_visitor WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d')}'";
107
  break;
108
 
109
  case 'yesterday':
110
- $sqlstatement = "SELECT {$select} FROM {$table_prefix}statistics_visitor WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -1)}'";
111
  break;
112
 
113
  case 'week':
114
- $sqlstatement = "SELECT {$select} FROM {$table_prefix}statistics_visitor WHERE `last_counter` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', -7)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}'";
115
  break;
116
 
117
  case 'month':
118
- $sqlstatement = "SELECT {$select} FROM {$table_prefix}statistics_visitor WHERE `last_counter` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', -30)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}'";
119
  break;
120
 
121
  case 'year':
122
- $sqlstatement = "SELECT {$select} FROM {$table_prefix}statistics_visitor WHERE `last_counter` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', -365)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}'";
123
  break;
124
 
125
  case 'total':
126
- $sqlstatement = "SELECT {$select} FROM {$table_prefix}statistics_visitor";
127
  $history = $WP_Statistics->Get_Historical_Data( 'visitors' );
128
  break;
129
 
130
  default:
131
- $sqlstatement = "SELECT {$select} FROM {$table_prefix}statistics_visitor WHERE `last_counter` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', $time)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}'";
132
  break;
133
  }
134
  }
@@ -149,7 +149,7 @@
149
  function wp_statistics_pages($time, $page_uri = '', $id = -1) {
150
 
151
  // We need database and the global $WP_Statistics object access.
152
- global $wpdb, $table_prefix, $WP_Statistics;
153
 
154
  $history = 0;
155
  $sqlstatement = '';
@@ -173,32 +173,32 @@
173
  // They're pretty self explanatory.
174
  switch($time) {
175
  case 'today':
176
- $sqlstatement = "SELECT SUM(count) FROM {$table_prefix}statistics_pages WHERE `date` = '{$WP_Statistics->Current_Date('Y-m-d')}' AND {$page_sql}";
177
  break;
178
 
179
  case 'yesterday':
180
- $sqlstatement = "SELECT SUM(count) FROM {$table_prefix}statistics_pages WHERE `date` = '{$WP_Statistics->Current_Date('Y-m-d', -1)}' AND {$page_sql}";
181
  break;
182
 
183
  case 'week':
184
- $sqlstatement = "SELECT SUM(count) FROM {$table_prefix}statistics_pages WHERE `date` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', -7)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}' AND {$page_sql}";
185
  break;
186
 
187
  case 'month':
188
- $sqlstatement = "SELECT SUM(count) FROM {$table_prefix}statistics_pages WHERE `date` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', -30)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}' AND {$page_sql}";
189
  break;
190
 
191
  case 'year':
192
- $sqlstatement = "SELECT SUM(count) FROM {$table_prefix}statistics_pages WHERE `date` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', -365)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}' AND {$page_sql}";
193
  break;
194
 
195
  case 'total':
196
- $sqlstatement = "SELECT SUM(count) FROM {$table_prefix}statistics_pages WHERE {$page_sql}";
197
  $history = $WP_Statistics->Get_Historical_Data( $history_key, $history_id );
198
  break;
199
 
200
  default:
201
- $sqlstatement = "SELECT SUM(count) FROM {$table_prefix}statistics_pages WHERE `date` = '{$WP_Statistics->Current_Date('Y-m-d', $time)}' AND {$page_sql}";
202
  break;
203
  }
204
 
@@ -215,10 +215,10 @@
215
  // This function converts a page URI to a page/post ID. It does this by looking up in the pages database
216
  // the URI and getting the associated ID. This will only work if the page has been visited at least once.
217
  function wp_statistics_uri_to_id( $uri ) {
218
- global $wpdb, $table_prefix;
219
 
220
  // Create the SQL query to use.
221
- $sqlstatement = "SELECT id FROM {$table_prefix}statistics_pages WHERE `URI` = '{$uri}' AND id > 0";
222
 
223
  // Execute the query.
224
  $result = $wpdb->get_var( $sqlstatement );
@@ -236,10 +236,10 @@
236
 
237
  // This function returns a multi-dimensional array, with the total number of pages and an array or URI's sorted in order with their URI, count, id and title.
238
  function wp_statistics_get_top_pages() {
239
- global $wpdb, $table_prefix;
240
 
241
  // Get every unique URI from the pages database.
242
- $result = $wpdb->get_results( "SELECT DISTINCT uri FROM {$table_prefix}statistics_pages", ARRAY_N );
243
 
244
  $total = 0;
245
  $uris = array();
@@ -295,9 +295,9 @@
295
  // This function returns all unique user agents in the database.
296
  function wp_statistics_ua_list() {
297
 
298
- global $wpdb, $table_prefix;
299
 
300
- $result = $wpdb->get_results("SELECT DISTINCT agent FROM {$table_prefix}statistics_visitor", ARRAY_N);
301
 
302
  $Browers = array();
303
 
@@ -312,9 +312,9 @@
312
  // This function returns the count of a given user agent in the database.
313
  function wp_statistics_useragent($agent) {
314
 
315
- global $wpdb, $table_prefix;
316
 
317
- $result = $wpdb->get_var("SELECT COUNT(agent) FROM {$table_prefix}statistics_visitor WHERE `agent` = '$agent'");
318
 
319
  return $result;
320
  }
@@ -322,9 +322,9 @@
322
  // This function returns all unique platform types from the database.
323
  function wp_statistics_platform_list() {
324
 
325
- global $wpdb, $table_prefix;
326
 
327
- $result = $wpdb->get_results("SELECT DISTINCT platform FROM {$table_prefix}statistics_visitor", ARRAY_N);
328
 
329
  $Platforms = array();
330
 
@@ -339,9 +339,9 @@
339
  // This function returns the count of a given platform in the database.
340
  function wp_statistics_platform($platform) {
341
 
342
- global $wpdb, $table_prefix;
343
 
344
- $result = $wpdb->get_var("SELECT COUNT(platform) FROM {$table_prefix}statistics_visitor WHERE `platform` = '$platform'");
345
 
346
  return $result;
347
  }
@@ -349,9 +349,9 @@
349
  // This function returns all unique versions for a given agent from the database.
350
  function wp_statistics_agent_version_list($agent) {
351
 
352
- global $wpdb, $table_prefix;
353
 
354
- $result = $wpdb->get_results("SELECT DISTINCT version FROM {$table_prefix}statistics_visitor WHERE agent = '$agent'", ARRAY_N);
355
 
356
  $Versions = array();
357
 
@@ -366,9 +366,9 @@
366
  // This function returns the statistcs for a given agent/version pair from the database.
367
  function wp_statistics_agent_version($agent, $version) {
368
 
369
- global $wpdb, $table_prefix;
370
 
371
- $result = $wpdb->get_var("SELECT COUNT(version) FROM {$table_prefix}statistics_visitor WHERE agent = '$agent' AND version = '$version'");
372
 
373
  return $result;
374
  }
@@ -379,6 +379,7 @@
379
  //
380
  // Each sub array is made up of the following items:
381
  // name = The proper name of the search engine
 
382
  // tag = a short one word, all lower case, representation of the search engine
383
  // sqlpattern = either a single SQL style search pattern OR an array or search patterns to match the hostname in a URL against
384
  // regexpattern = either a single regex style search pattern OR an array or search patterns to match the hostname in a URL against
@@ -389,13 +390,13 @@
389
  GLOBAL $WP_Statistics;
390
 
391
  $default = $engines = array (
392
- 'baidu' => array( 'name' => 'Baidu', 'tag' => 'baidu', 'sqlpattern' => '%baidu.com%', 'regexpattern' => 'baidu\.com', 'querykey' => 'wd', 'image' => 'baidu.png' ),
393
- 'bing' => array( 'name' => 'Bing', 'tag' => 'bing', 'sqlpattern' => '%bing.com%', 'regexpattern' => 'bing\.com', 'querykey' => 'q', 'image' => 'bing.png' ),
394
- 'clearch' => array( 'name' => 'clearch.org', 'tag' => 'clearch', 'sqlpattern' => '%clearch.org%', 'regexpattern' => 'clearch\.org', 'querykey' => 'q', 'image' => 'clearch.png' ),
395
- 'duckduckgo' => array( 'name' => 'DuckDuckGo', 'tag' => 'duckduckgo', 'sqlpattern' => array('%duckduckgo.com%', '%ddg.gg%'), 'regexpattern' => array('duckduckgo\.com','ddg\.gg'), 'querykey' => 'q', 'image' => 'duckduckgo.png' ),
396
- 'google' => array( 'name' => 'Google', 'tag' => 'google', 'sqlpattern' => '%google.%', 'regexpattern' => 'google\.', 'querykey' => 'q', 'image' => 'google.png' ),
397
- 'yahoo' => array( 'name' => 'Yahoo!', 'tag' => 'yahoo', 'sqlpattern' => '%yahoo.com%', 'regexpattern' => 'yahoo\.com', 'querykey' => 'p', 'image' => 'yahoo.png' ),
398
- 'yandex' => array( 'name' => 'Yandex', 'tag' => 'yandex', 'sqlpattern' => '%yandex.ru%', 'regexpattern' => 'yandex\.ru', 'querykey' => 'text', 'image' => 'yandex.png' )
399
  );
400
 
401
  if( $all == false ) {
@@ -536,7 +537,7 @@
536
  // This function will return the statistics for a given search engine.
537
  function wp_statistics_searchengine($search_engine = 'all', $time = 'total') {
538
 
539
- global $wpdb, $table_prefix, $WP_Statistics;
540
 
541
  // Get a complete list of search engines
542
  $search_query = wp_statistics_searchengine_query($search_engine);
@@ -545,36 +546,36 @@
545
  // They're pretty self explanatory.
546
  switch($time) {
547
  case 'today':
548
- $result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d')}' AND {$search_query}");
549
  break;
550
 
551
  case 'yesterday':
552
- $result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -1)}' AND {$search_query}");
553
 
554
  break;
555
 
556
  case 'week':
557
- $result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -7)}' AND {$search_query}");
558
 
559
  break;
560
 
561
  case 'month':
562
- $result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -30)}' AND {$search_query}");
563
 
564
  break;
565
 
566
  case 'year':
567
- $result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -360)}' AND {$search_query}");
568
 
569
  break;
570
 
571
  case 'total':
572
- $result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE {$search_query}");
573
 
574
  break;
575
 
576
  default:
577
- $result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', $time)}' AND {$search_query}");
578
 
579
  break;
580
  }
@@ -585,7 +586,7 @@
585
  // This function will return the statistics for a given search engine for a given time frame.
586
  function wp_statistics_searchword($search_engine = 'all', $time = 'total') {
587
 
588
- global $wpdb, $table_prefix, $WP_Statistics;
589
 
590
  // Get a complete list of search engines
591
  $search_query = wp_statistics_searchword_query($search_engine);
@@ -594,36 +595,36 @@
594
  // They're pretty self explanatory.
595
  switch($time) {
596
  case 'today':
597
- $result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` 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 `{$table_prefix}statistics_visitor` 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 `{$table_prefix}statistics_visitor` 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 `{$table_prefix}statistics_visitor` 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 `{$table_prefix}statistics_visitor` 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 `{$table_prefix}statistics_visitor` WHERE {$search_query}");
622
 
623
  break;
624
 
625
  default:
626
- $result = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', $time)}' AND {$search_query}");
627
 
628
  break;
629
  }
9
  // This function returns the current users online.
10
  function wp_statistics_useronline() {
11
 
12
+ global $wpdb;
13
 
14
+ return $wpdb->query("SELECT * FROM {$wpdb->prefix}statistics_useronline");
15
  }
16
 
17
  // This function get the visit statistics for a given time frame.
18
  function wp_statistics_visit($time, $daily = null) {
19
 
20
  // We need database and the global $WP_Statistics object access.
21
+ global $wpdb, $WP_Statistics;
22
 
23
  // If we've been asked to do a daily count, it's a slightly different SQL query, so handle it separately.
24
  if( $daily == true ) {
25
 
26
  // Fetch the results from the database.
27
+ $result = $wpdb->get_row("SELECT * FROM {$wpdb->prefix}statistics_visit WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', $time)}'");
28
 
29
  // If we have a result, return it, otherwise force a 0 to be returned instead of the logical FALSE that would otherwise be the case.
30
  if( $result) {
40
 
41
  switch($time) {
42
  case 'today':
43
+ $result = $wpdb->get_var("SELECT SUM(visit) FROM {$wpdb->prefix}statistics_visit WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d')}'");
44
  break;
45
 
46
  case 'yesterday':
47
+ $result = $wpdb->get_var("SELECT SUM(visit) FROM {$wpdb->prefix}statistics_visit WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -1)}'");
48
  break;
49
 
50
  case 'week':
51
+ $result = $wpdb->get_var("SELECT SUM(visit) FROM {$wpdb->prefix}statistics_visit WHERE `last_counter` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', -7)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}'");
52
  break;
53
 
54
  case 'month':
55
+ $result = $wpdb->get_var("SELECT SUM(visit) FROM {$wpdb->prefix}statistics_visit WHERE `last_counter` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', -30)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}'");
56
  break;
57
 
58
  case 'year':
59
+ $result = $wpdb->get_var("SELECT SUM(visit) FROM {$wpdb->prefix}statistics_visit WHERE `last_counter` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', -360)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}'");
60
  break;
61
 
62
  case 'total':
63
+ $result = $wpdb->get_var("SELECT SUM(visit) FROM {$wpdb->prefix}statistics_visit");
64
  $result += $WP_Statistics->Get_Historical_Data( 'visits' );
65
  break;
66
 
67
  default:
68
+ $result = $wpdb->get_var("SELECT SUM(visit) FROM {$wpdb->prefix}statistics_visit WHERE `last_counter` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', $time)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}'");
69
  break;
70
  }
71
  }
80
  function wp_statistics_visitor($time, $daily = null, $countonly = false) {
81
 
82
  // We need database and the global $WP_Statistics object access.
83
+ global $wpdb, $WP_Statistics;
84
 
85
  $history = 0;
86
  $select = '*';
93
  if( $daily == true ) {
94
 
95
  // Fetch the results from the database.
96
+ $result = $wpdb->query( "SELECT {$select} FROM {$wpdb->prefix}statistics_visitor WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', $time)}'");
97
 
98
  return $result;
99
 
103
  // They're pretty self explanatory.
104
  switch($time) {
105
  case 'today':
106
+ $sqlstatement = "SELECT {$select} FROM {$wpdb->prefix}statistics_visitor WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d')}'";
107
  break;
108
 
109
  case 'yesterday':
110
+ $sqlstatement = "SELECT {$select} FROM {$wpdb->prefix}statistics_visitor WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -1)}'";
111
  break;
112
 
113
  case 'week':
114
+ $sqlstatement = "SELECT {$select} FROM {$wpdb->prefix}statistics_visitor WHERE `last_counter` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', -7)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}'";
115
  break;
116
 
117
  case 'month':
118
+ $sqlstatement = "SELECT {$select} FROM {$wpdb->prefix}statistics_visitor WHERE `last_counter` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', -30)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}'";
119
  break;
120
 
121
  case 'year':
122
+ $sqlstatement = "SELECT {$select} FROM {$wpdb->prefix}statistics_visitor WHERE `last_counter` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', -365)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}'";
123
  break;
124
 
125
  case 'total':
126
+ $sqlstatement = "SELECT {$select} FROM {$wpdb->prefix}statistics_visitor";
127
  $history = $WP_Statistics->Get_Historical_Data( 'visitors' );
128
  break;
129
 
130
  default:
131
+ $sqlstatement = "SELECT {$select} FROM {$wpdb->prefix}statistics_visitor WHERE `last_counter` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', $time)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}'";
132
  break;
133
  }
134
  }
149
  function wp_statistics_pages($time, $page_uri = '', $id = -1) {
150
 
151
  // We need database and the global $WP_Statistics object access.
152
+ global $wpdb, $WP_Statistics;
153
 
154
  $history = 0;
155
  $sqlstatement = '';
173
  // They're pretty self explanatory.
174
  switch($time) {
175
  case 'today':
176
+ $sqlstatement = "SELECT SUM(count) FROM {$wpdb->prefix}statistics_pages WHERE `date` = '{$WP_Statistics->Current_Date('Y-m-d')}' AND {$page_sql}";
177
  break;
178
 
179
  case 'yesterday':
180
+ $sqlstatement = "SELECT SUM(count) FROM {$wpdb->prefix}statistics_pages WHERE `date` = '{$WP_Statistics->Current_Date('Y-m-d', -1)}' AND {$page_sql}";
181
  break;
182
 
183
  case 'week':
184
+ $sqlstatement = "SELECT SUM(count) FROM {$wpdb->prefix}statistics_pages WHERE `date` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', -7)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}' AND {$page_sql}";
185
  break;
186
 
187
  case 'month':
188
+ $sqlstatement = "SELECT SUM(count) FROM {$wpdb->prefix}statistics_pages WHERE `date` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', -30)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}' AND {$page_sql}";
189
  break;
190
 
191
  case 'year':
192
+ $sqlstatement = "SELECT SUM(count) FROM {$wpdb->prefix}statistics_pages WHERE `date` BETWEEN '{$WP_Statistics->Current_Date('Y-m-d', -365)}' AND '{$WP_Statistics->Current_Date('Y-m-d')}' AND {$page_sql}";
193
  break;
194
 
195
  case 'total':
196
+ $sqlstatement = "SELECT SUM(count) FROM {$wpdb->prefix}statistics_pages WHERE {$page_sql}";
197
  $history = $WP_Statistics->Get_Historical_Data( $history_key, $history_id );
198
  break;
199
 
200
  default:
201
+ $sqlstatement = "SELECT SUM(count) FROM {$wpdb->prefix}statistics_pages WHERE `date` = '{$WP_Statistics->Current_Date('Y-m-d', $time)}' AND {$page_sql}";
202
  break;
203
  }
204
 
215
  // This function converts a page URI to a page/post ID. It does this by looking up in the pages database
216
  // the URI and getting the associated ID. This will only work if the page has been visited at least once.
217
  function wp_statistics_uri_to_id( $uri ) {
218
+ global $wpdb;
219
 
220
  // Create the SQL query to use.
221
+ $sqlstatement = "SELECT id FROM {$wpdb->prefix}statistics_pages WHERE `URI` = '{$uri}' AND id > 0";
222
 
223
  // Execute the query.
224
  $result = $wpdb->get_var( $sqlstatement );
236
 
237
  // This function returns a multi-dimensional array, with the total number of pages and an array or URI's sorted in order with their URI, count, id and title.
238
  function wp_statistics_get_top_pages() {
239
+ global $wpdb;
240
 
241
  // Get every unique URI from the pages database.
242
+ $result = $wpdb->get_results( "SELECT DISTINCT uri FROM {$wpdb->prefix}statistics_pages", ARRAY_N );
243
 
244
  $total = 0;
245
  $uris = array();
295
  // This function returns all unique user agents in the database.
296
  function wp_statistics_ua_list() {
297
 
298
+ global $wpdb;
299
 
300
+ $result = $wpdb->get_results("SELECT DISTINCT agent FROM {$wpdb->prefix}statistics_visitor", ARRAY_N);
301
 
302
  $Browers = array();
303
 
312
  // This function returns the count of a given user agent in the database.
313
  function wp_statistics_useragent($agent) {
314
 
315
+ global $wpdb;
316
 
317
+ $result = $wpdb->get_var("SELECT COUNT(agent) FROM {$wpdb->prefix}statistics_visitor WHERE `agent` = '$agent'");
318
 
319
  return $result;
320
  }
322
  // This function returns all unique platform types from the database.
323
  function wp_statistics_platform_list() {
324
 
325
+ global $wpdb;
326
 
327
+ $result = $wpdb->get_results("SELECT DISTINCT platform FROM {$wpdb->prefix}statistics_visitor", ARRAY_N);
328
 
329
  $Platforms = array();
330
 
339
  // This function returns the count of a given platform in the database.
340
  function wp_statistics_platform($platform) {
341
 
342
+ global $wpdb;
343
 
344
+ $result = $wpdb->get_var("SELECT COUNT(platform) FROM {$wpdb->prefix}statistics_visitor WHERE `platform` = '$platform'");
345
 
346
  return $result;
347
  }
349
  // This function returns all unique versions for a given agent from the database.
350
  function wp_statistics_agent_version_list($agent) {
351
 
352
+ global $wpdb;
353
 
354
+ $result = $wpdb->get_results("SELECT DISTINCT version FROM {$wpdb->prefix}statistics_visitor WHERE agent = '$agent'", ARRAY_N);
355
 
356
  $Versions = array();
357
 
366
  // This function returns the statistcs for a given agent/version pair from the database.
367
  function wp_statistics_agent_version($agent, $version) {
368
 
369
+ global $wpdb;
370
 
371
+ $result = $wpdb->get_var("SELECT COUNT(version) FROM {$wpdb->prefix}statistics_visitor WHERE agent = '$agent' AND version = '$version'");
372
 
373
  return $result;
374
  }
379
  //
380
  // Each sub array is made up of the following items:
381
  // name = The proper name of the search engine
382
+ // translated = The proper name translated to the local language
383
  // tag = a short one word, all lower case, representation of the search engine
384
  // sqlpattern = either a single SQL style search pattern OR an array or search patterns to match the hostname in a URL against
385
  // regexpattern = either a single regex style search pattern OR an array or search patterns to match the hostname in a URL against
390
  GLOBAL $WP_Statistics;
391
 
392
  $default = $engines = array (
393
+ 'baidu' => array( 'name' => 'Baidu', 'translated' => __('Baidu', 'wp_statistics'), 'tag' => 'baidu', 'sqlpattern' => '%baidu.com%', 'regexpattern' => 'baidu\.com', 'querykey' => 'wd', 'image' => 'baidu.png' ),
394
+ 'bing' => array( 'name' => 'Bing', 'translated' => __('Bing', 'wp_statistics'), 'tag' => 'bing', 'sqlpattern' => '%bing.com%', 'regexpattern' => 'bing\.com', 'querykey' => 'q', 'image' => 'bing.png' ),
395
+ 'clearch' => array( 'name' => 'clearch.org', 'translated' => __('clearch.org', 'wp_statistics'), 'tag' => 'clearch', 'sqlpattern' => '%clearch.org%', 'regexpattern' => 'clearch\.org', 'querykey' => 'q', 'image' => 'clearch.png' ),
396
+ 'duckduckgo' => array( 'name' => 'DuckDuckGo', 'translated' => __('DuckDuckGo', 'wp_statistics'), 'tag' => 'duckduckgo', 'sqlpattern' => array('%duckduckgo.com%', '%ddg.gg%'), 'regexpattern' => array('duckduckgo\.com','ddg\.gg'), 'querykey' => 'q', 'image' => 'duckduckgo.png' ),
397
+ 'google' => array( 'name' => 'Google', 'translated' => __('Google', 'wp_statistics'), 'tag' => 'google', 'sqlpattern' => '%google.%', 'regexpattern' => 'google\.', 'querykey' => 'q', 'image' => 'google.png' ),
398
+ 'yahoo' => array( 'name' => 'Yahoo!', 'translated' => __('Yahoo!', 'wp_statistics'), 'tag' => 'yahoo', 'sqlpattern' => '%yahoo.com%', 'regexpattern' => 'yahoo\.com', 'querykey' => 'p', 'image' => 'yahoo.png' ),
399
+ 'yandex' => array( 'name' => 'Yandex', 'translated' => __('Yandex', 'wp_statistics'), 'tag' => 'yandex', 'sqlpattern' => '%yandex.ru%', 'regexpattern' => 'yandex\.ru', 'querykey' => 'text', 'image' => 'yandex.png' )
400
  );
401
 
402
  if( $all == false ) {
537
  // This function will return the statistics for a given search engine.
538
  function wp_statistics_searchengine($search_engine = 'all', $time = 'total') {
539
 
540
+ global $wpdb, $WP_Statistics;
541
 
542
  // Get a complete list of search engines
543
  $search_query = wp_statistics_searchengine_query($search_engine);
546
  // They're pretty self explanatory.
547
  switch($time) {
548
  case 'today':
549
+ $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d')}' AND {$search_query}");
550
  break;
551
 
552
  case 'yesterday':
553
+ $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -1)}' AND {$search_query}");
554
 
555
  break;
556
 
557
  case 'week':
558
+ $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -7)}' AND {$search_query}");
559
 
560
  break;
561
 
562
  case 'month':
563
+ $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -30)}' AND {$search_query}");
564
 
565
  break;
566
 
567
  case 'year':
568
+ $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -360)}' AND {$search_query}");
569
 
570
  break;
571
 
572
  case 'total':
573
+ $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE {$search_query}");
574
 
575
  break;
576
 
577
  default:
578
+ $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', $time)}' AND {$search_query}");
579
 
580
  break;
581
  }
586
  // This function will return the statistics for a given search engine for a given time frame.
587
  function wp_statistics_searchword($search_engine = 'all', $time = 'total') {
588
 
589
+ global $wpdb, $WP_Statistics;
590
 
591
  // Get a complete list of search engines
592
  $search_query = wp_statistics_searchword_query($search_engine);
595
  // They're pretty self explanatory.
596
  switch($time) {
597
  case 'today':
598
+ $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d')}' AND {$search_query}");
599
  break;
600
 
601
  case 'yesterday':
602
+ $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -1)}' AND {$search_query}");
603
 
604
  break;
605
 
606
  case 'week':
607
+ $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -7)}' AND {$search_query}");
608
 
609
  break;
610
 
611
  case 'month':
612
+ $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -30)}' AND {$search_query}");
613
 
614
  break;
615
 
616
  case 'year':
617
+ $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', -360)}' AND {$search_query}");
618
 
619
  break;
620
 
621
  case 'total':
622
+ $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE {$search_query}");
623
 
624
  break;
625
 
626
  default:
627
+ $result = $wpdb->query("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `last_counter` = '{$WP_Statistics->Current_Date('Y-m-d', $time)}' AND {$search_query}");
628
 
629
  break;
630
  }
includes/functions/geoip-populate.php CHANGED
@@ -13,10 +13,8 @@
13
  function wp_statistics_populate_geoip_info() {
14
  global $wpdb;
15
 
16
- $table_prefix = $wpdb->prefix;
17
-
18
  // Find all rows in the table that currently don't have GeoIP info or have an unknown ('000') location.
19
- $result = $wpdb->get_results("SELECT id,ip FROM `{$table_prefix}statistics_visitor` WHERE location = '' or location = '000' or location IS NULL");
20
 
21
  // Try create a new reader instance.
22
  try {
@@ -43,7 +41,7 @@
43
  }
44
 
45
  // Update the row in the database.
46
- $wpdb->update( $table_prefix . "statistics_visitor", array( 'location' => $location ), array( 'id' => $item->id) );
47
  }
48
  }
49
 
13
  function wp_statistics_populate_geoip_info() {
14
  global $wpdb;
15
 
 
 
16
  // Find all rows in the table that currently don't have GeoIP info or have an unknown ('000') location.
17
+ $result = $wpdb->get_results("SELECT id,ip FROM `{$wpdb->prefix}statistics_visitor` WHERE location = '' or location = '000' or location IS NULL");
18
 
19
  // Try create a new reader instance.
20
  try {
41
  }
42
 
43
  // Update the row in the database.
44
+ $wpdb->update( $wpdb->prefix . "statistics_visitor", array( 'location' => $location ), array( 'id' => $item->id) );
45
  }
46
  }
47
 
includes/functions/purge.php CHANGED
@@ -1,18 +1,18 @@
1
  <?php
2
  function wp_statistics_purge_data( $purge_days ) {
3
- GLOBAL $wpdb, $table_prefix, $WP_Statistics;
4
 
5
  // If it's less than 30 days, don't do anything.
6
  if($purge_days > 30) {
7
  // Purge the visit data.
8
- $table_name = $table_prefix . 'statistics_visit';
9
- $date_string = date( 'Y-m-d', strtotime( '-' . $purge_days . ' days'));
10
 
11
  $result = $wpdb->query('DELETE FROM ' . $table_name . ' WHERE `last_counter` < \'' . $date_string . '\'');
12
 
13
  if($result) {
14
  // Update the historical count with what we purged.
15
- $historical_result = $wpdb->query('UPDATE ' . $table_prefix . 'statistics_historical SET value = value + ' . $result . ' WHERE `category` = \'visits\'' );
16
 
17
  if( $historical_result == 0 ) {
18
  $wpdb->insert( $wp_prefix . "statistics_historical", array( 'value' => $result, 'category' => 'visits', 'page_id' => -2, 'uri' => '-2' ) );
@@ -24,13 +24,13 @@
24
  }
25
 
26
  // Purge the visitors data.
27
- $table_name = $table_prefix . 'statistics_visitor';
28
 
29
  $result = $wpdb->query('DELETE FROM ' . $table_name . ' WHERE `last_counter` < \'' . $date_string . '\'');
30
 
31
  if($result) {
32
  // Update the historical count with what we purged.
33
- $historical_result = $wpdb->query('UPDATE ' . $table_prefix . 'statistics_historical SET value = value + ' . $result . ' WHERE `category` = \'visitors\'' );
34
 
35
  if( $historical_result == 0 ) {
36
  $wpdb->insert( $wp_prefix . "statistics_historical", array( 'value' => $result, 'category' => 'visitors', 'page_id' => -1, 'uri' => '-1' ) );
@@ -42,7 +42,7 @@
42
  }
43
 
44
  // Purge the exclusions data.
45
- $table_name = $table_prefix . 'statistics_exclusions';
46
 
47
  $result = $wpdb->query('DELETE FROM ' . $table_name . ' WHERE `date` < \'' . $date_string . '\'');
48
 
@@ -53,7 +53,7 @@
53
  }
54
 
55
  // Purge the pages data, this is more complex as we want to save the historical data per page.
56
- $table_name = $table_prefix . 'statistics_pages';
57
  $historical = 0;
58
 
59
  // The first thing we need to do is update the historical data by finding all the unique pages.
@@ -67,11 +67,11 @@
67
  $historical = $wpdb->get_var( $wpdb->prepare('SELECT sum(count) FROM ' . $table_name . ' WHERE `uri` = %s AND `date` < %s', $row->uri, $date_string));
68
 
69
  // Do an update of the historical data.
70
- $uresult = $wpdb->query($wpdb->prepare('UPDATE ' . $table_prefix . 'statistics_historical SET `value` = value + %d WHERE `uri` = %s AND `category` = \'uri\'', $historical, $row->uri, $date_string));
71
 
72
  // If we failed it's because this is the first time we've seen this URI/pageid so let's create a historical row for it.
73
  if( $uresult == 0 ) {
74
- $wpdb->insert( $table_prefix . "statistics_historical", array( 'value' => $historical, 'type' => 'uri', 'uri' => $row->uri, 'page_id' => wp_statistics_uri_to_id($row->uri) ) );
75
  }
76
  }
77
  }
1
  <?php
2
  function wp_statistics_purge_data( $purge_days ) {
3
+ GLOBAL $wpdb, $WP_Statistics;
4
 
5
  // If it's less than 30 days, don't do anything.
6
  if($purge_days > 30) {
7
  // Purge the visit data.
8
+ $table_name = $wpdb->prefix . 'statistics_visit';
9
+ $date_string = $WP_Statistics->current_date( 'Y-m-d', '-' . $purge_days);
10
 
11
  $result = $wpdb->query('DELETE FROM ' . $table_name . ' WHERE `last_counter` < \'' . $date_string . '\'');
12
 
13
  if($result) {
14
  // Update the historical count with what we purged.
15
+ $historical_result = $wpdb->query('UPDATE ' . $wpdb->prefix . 'statistics_historical SET value = value + ' . $result . ' WHERE `category` = \'visits\'' );
16
 
17
  if( $historical_result == 0 ) {
18
  $wpdb->insert( $wp_prefix . "statistics_historical", array( 'value' => $result, 'category' => 'visits', 'page_id' => -2, 'uri' => '-2' ) );
24
  }
25
 
26
  // Purge the visitors data.
27
+ $table_name = $wpdb->prefix . 'statistics_visitor';
28
 
29
  $result = $wpdb->query('DELETE FROM ' . $table_name . ' WHERE `last_counter` < \'' . $date_string . '\'');
30
 
31
  if($result) {
32
  // Update the historical count with what we purged.
33
+ $historical_result = $wpdb->query('UPDATE ' . $wpdb->prefix . 'statistics_historical SET value = value + ' . $result . ' WHERE `category` = \'visitors\'' );
34
 
35
  if( $historical_result == 0 ) {
36
  $wpdb->insert( $wp_prefix . "statistics_historical", array( 'value' => $result, 'category' => 'visitors', 'page_id' => -1, 'uri' => '-1' ) );
42
  }
43
 
44
  // Purge the exclusions data.
45
+ $table_name = $wpdb->prefix . 'statistics_exclusions';
46
 
47
  $result = $wpdb->query('DELETE FROM ' . $table_name . ' WHERE `date` < \'' . $date_string . '\'');
48
 
53
  }
54
 
55
  // Purge the pages data, this is more complex as we want to save the historical data per page.
56
+ $table_name = $wpdb->prefix . 'statistics_pages';
57
  $historical = 0;
58
 
59
  // The first thing we need to do is update the historical data by finding all the unique pages.
67
  $historical = $wpdb->get_var( $wpdb->prepare('SELECT sum(count) FROM ' . $table_name . ' WHERE `uri` = %s AND `date` < %s', $row->uri, $date_string));
68
 
69
  // Do an update of the historical data.
70
+ $uresult = $wpdb->query($wpdb->prepare('UPDATE ' . $wpdb->prefix . 'statistics_historical SET `value` = value + %d WHERE `uri` = %s AND `category` = \'uri\'', $historical, $row->uri, $date_string));
71
 
72
  // If we failed it's because this is the first time we've seen this URI/pageid so let's create a historical row for it.
73
  if( $uresult == 0 ) {
74
+ $wpdb->insert( $wpdb->prefix . "statistics_historical", array( 'value' => $historical, 'type' => 'uri', 'uri' => $row->uri, 'page_id' => wp_statistics_uri_to_id($row->uri) ) );
75
  }
76
  }
77
  }
includes/log/all-browsers.php CHANGED
@@ -29,7 +29,7 @@
29
  foreach( $Browsers as $Browser )
30
  {
31
  $count = wp_statistics_useragent( $Browser );
32
- echo "['" . substr( __( $Browser, 'wp_statistics' ), 0, 15 ) . " (" . number_format_i18n($count) . ")'," . $count . "], ";
33
  }
34
 
35
  echo "];\n";
@@ -39,7 +39,7 @@
39
 
40
  browser_chart = jQuery.jqplot('browsers-log', [browser_data], {
41
  title: {
42
- text: '<b><?php echo __('Browsers by type', 'wp_statistics'); ?></b>',
43
  fontSize: '12px',
44
  fontFamily: 'Tahoma',
45
  textColor: '#000000',
@@ -113,7 +113,7 @@
113
  foreach( $Platforms as $Platform )
114
  {
115
  $count = wp_statistics_platform( $Platform );
116
- echo "['" . substr( __( $Platform, 'wp_statistics' ), 0, 15) . " (" . number_format_i18n($count) . ")'," . $count . "], ";
117
  }
118
 
119
  echo "];\n";
@@ -123,7 +123,7 @@
123
 
124
  platform_chart = jQuery.jqplot('platform-log', [platform_data], {
125
  title: {
126
- text: '<b><?php echo __('Browsers by platform', 'wp_statistics'); ?></b>',
127
  fontSize: '12px',
128
  fontFamily: 'Tahoma',
129
  textColor: '#000000',
@@ -248,7 +248,7 @@
248
  foreach( $Versions as $Version )
249
  {
250
  $count = wp_statistics_agent_version( $Browser, $Version );
251
- echo "['" . __( $Version, 'wp_statistics' ) . " (" . number_format_i18n($count) . ")'," . $count . "], ";
252
  }
253
 
254
  echo "];\n";
@@ -257,7 +257,7 @@
257
  ?>
258
  <?php echo $Browser_tag;?>_chart = jQuery.jqplot('version-<?php echo $Browser_tag;?>-log', [<?php echo $Browser_tag;?>_version_data], {
259
  title: {
260
- text: '<b><?php echo __($Browser, 'wp_statistics'); ?></b>',
261
  fontSize: '12px',
262
  fontFamily: 'Tahoma',
263
  textColor: '#000000',
29
  foreach( $Browsers as $Browser )
30
  {
31
  $count = wp_statistics_useragent( $Browser );
32
+ echo "['" . substr( $Browser, 0, 15 ) . " (" . number_format_i18n($count) . ")'," . $count . "], ";
33
  }
34
 
35
  echo "];\n";
39
 
40
  browser_chart = jQuery.jqplot('browsers-log', [browser_data], {
41
  title: {
42
+ text: '<b><?php echo htmlentities(__('Browsers by type', 'wp_statistics'), ENT_QUOTES); ?></b>',
43
  fontSize: '12px',
44
  fontFamily: 'Tahoma',
45
  textColor: '#000000',
113
  foreach( $Platforms as $Platform )
114
  {
115
  $count = wp_statistics_platform( $Platform );
116
+ echo "['" . substr( $Platform, 0, 15) . " (" . number_format_i18n($count) . ")'," . $count . "], ";
117
  }
118
 
119
  echo "];\n";
123
 
124
  platform_chart = jQuery.jqplot('platform-log', [platform_data], {
125
  title: {
126
+ text: '<b><?php echo htmlentities(__('Browsers by platform', 'wp_statistics'), ENT_QUOTES); ?></b>',
127
  fontSize: '12px',
128
  fontFamily: 'Tahoma',
129
  textColor: '#000000',
248
  foreach( $Versions as $Version )
249
  {
250
  $count = wp_statistics_agent_version( $Browser, $Version );
251
+ echo "['" . $Version . " (" . number_format_i18n($count) . ")'," . $count . "], ";
252
  }
253
 
254
  echo "];\n";
257
  ?>
258
  <?php echo $Browser_tag;?>_chart = jQuery.jqplot('version-<?php echo $Browser_tag;?>-log', [<?php echo $Browser_tag;?>_version_data], {
259
  title: {
260
+ text: '<b><?php echo $Browser; ?></b>',
261
  fontSize: '12px',
262
  fontFamily: 'Tahoma',
263
  textColor: '#000000',
includes/log/exclusions.php CHANGED
@@ -12,8 +12,10 @@
12
 
13
  $total_stats = $WP_Statistics->get_option( 'chart_totals' );
14
 
15
- $excluded_reasons = array('Robot','Browscap','IP Match','Self Referral','Login Page','Admin Page','User Role','GeoIP','Hostname', 'Robot Threshold','Honey Pot','Feeds');
16
- $excluded_reason_tags = array('Robot' => 'robot','Browscap' => 'browscap','IP Match' => 'ipmatch','Self Referral' => 'selfreferral','Login Page' => 'loginpage','Admin Page' => 'adminpage','User Role' => 'userrole','Total' => 'total','GeoIP' => 'geoip','Hostname' => 'hostname','Robot Threshold' => 'robot_threshold','Honey Pot' => 'honeypot','Feeds' => 'feed');
 
 
17
  $excluded_results = array('Total' => array() );
18
  $excluded_total = 0;
19
 
@@ -21,16 +23,16 @@
21
 
22
  // The reasons array above is used both for display and internal purposes. Internally the values are all lower case but the array
23
  // is created with mixed case so it looks nice to the user. Therefore we have to convert it to lower case here.
24
- $thisreason = strtolower( $excluded_reason_tags[$reason] );
25
 
26
  for( $i=$daysToDisplay; $i>=0; $i--) {
27
 
28
  // We're looping through the days backwards, so let's fine out what date we want to look at.
29
- $thisdate = date('Y-m-d', strtotime('-'.$i." day") );
30
 
31
  // Create the SQL query string to get the data.
32
  $query = "SELECT count FROM {$wpdb->prefix}statistics_exclusions WHERE reason = '{$thisreason}' AND date = '{$thisdate}'";
33
-
34
  // Execute the query.
35
  $excluded_results[$reason][$i] = $wpdb->get_var( $query );
36
 
@@ -94,7 +96,7 @@
94
  ?>
95
  visit_chart = jQuery.jqplot('exclusion-stats', [<?php foreach( $excluded_reasons as $reason ) { echo "excluded_data_line_" . $excluded_reason_tags[$reason] . ", "; } ?>], {
96
  title: {
97
- text: '<b><?php echo __('Excluded hits in the last', 'wp_statistics') . ' ' . $daysToDisplay . ' ' . __('days', 'wp_statistics'); ?></b>',
98
  fontSize: '12px',
99
  fontFamily: 'Tahoma',
100
  textColor: '#000000',
@@ -115,7 +117,7 @@
115
  yaxis: {
116
  min: 0,
117
  padMin: 1.0,
118
- label: '<?php _e('Number of excluded hits', 'wp_statistics'); ?>',
119
  labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
120
  labelOptions: {
121
  angle: -90,
@@ -129,7 +131,7 @@
129
  show: true,
130
  location: 's',
131
  placement: 'outsideGrid',
132
- labels: [<?php foreach( $excluded_reasons as $reason ) { echo "'" . __( $reason, 'wp_statistics' ) . "', "; } ?>],
133
  renderer: jQuery.jqplot.EnhancedLegendRenderer,
134
  rendererOptions:
135
  {
12
 
13
  $total_stats = $WP_Statistics->get_option( 'chart_totals' );
14
 
15
+ $excluded_reasons = array('Robot','Browscap','IP Match','Self Referral','Login Page','Admin Page','User Role','GeoIP','Hostname', 'Robot Threshold','Honey Pot','Feeds', 'Excluded URL');
16
+ $excluded_reason_tags = array('Robot' => 'robot','Browscap' => 'browscap','IP Match' => 'ipmatch','Self Referral' => 'selfreferral','Login Page' => 'loginpage','Admin Page' => 'adminpage','User Role' => 'userrole','Total' => 'total','GeoIP' => 'geoip','Hostname' => 'hostname','Robot Threshold' => 'robot_threshold','Honey Pot' => 'honeypot','Feeds' => 'feed', 'Excluded URL' => 'excluded_url');
17
+ $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');
18
+ $excluded_reason_translate = array( 'Robot' => htmlentities(__('Robot', 'wp_statistics'), ENT_QUOTES), 'Browscap' => htmlentities(__('Browscap', 'wp_statistics'), ENT_QUOTES), 'IP Match' => htmlentities(__('IP Match', 'wp_statistics'), ENT_QUOTES), 'Self Referral' => htmlentities(__('Self Referral', 'wp_statistics'), ENT_QUOTES), 'Login Page' => htmlentities(__('Login Page', 'wp_statistics'), ENT_QUOTES), 'Admin Page' => htmlentities(__('Admin Page', 'wp_statistics'), ENT_QUOTES), 'User Role' => htmlentities(__('User Role', 'wp_statistics'), ENT_QUOTES), 'Total' => htmlentities(__('Total', 'wp_statistics'), ENT_QUOTES), 'GeoIP' => htmlentities(__('GeoIP', 'wp_statistics'), ENT_QUOTES), 'Hostname' => htmlentities(__('Hostname', 'wp_statistics'), ENT_QUOTES), 'Robot Threshold' => htmlentities(__('Robot Threshold', 'wp_statistics'), ENT_QUOTES), 'Honey Pot' => htmlentities(__('Honey Pot', 'wp_statistics'), ENT_QUOTES), 'Feeds' => htmlentities(__('Feeds', 'wp_statistics') ), 'Excluded URL' => htmlentities(__('Excluded URL', 'wp_statistics') ));
19
  $excluded_results = array('Total' => array() );
20
  $excluded_total = 0;
21
 
23
 
24
  // The reasons array above is used both for display and internal purposes. Internally the values are all lower case but the array
25
  // is created with mixed case so it looks nice to the user. Therefore we have to convert it to lower case here.
26
+ $thisreason = $excluded_reason_db[$reason];
27
 
28
  for( $i=$daysToDisplay; $i>=0; $i--) {
29
 
30
  // We're looping through the days backwards, so let's fine out what date we want to look at.
31
+ $thisdate = $WP_Statistics->current_date('Y-m-d', '-'.$i );
32
 
33
  // Create the SQL query string to get the data.
34
  $query = "SELECT count FROM {$wpdb->prefix}statistics_exclusions WHERE reason = '{$thisreason}' AND date = '{$thisdate}'";
35
+
36
  // Execute the query.
37
  $excluded_results[$reason][$i] = $wpdb->get_var( $query );
38
 
96
  ?>
97
  visit_chart = jQuery.jqplot('exclusion-stats', [<?php foreach( $excluded_reasons as $reason ) { echo "excluded_data_line_" . $excluded_reason_tags[$reason] . ", "; } ?>], {
98
  title: {
99
+ text: '<b><?php echo htmlentities(__('Excluded hits in the last', 'wp_statistics'), ENT_QUOTES) . ' ' . $daysToDisplay . ' ' . htmlentities(__('days', 'wp_statistics'), ENT_QUOTES); ?></b>',
100
  fontSize: '12px',
101
  fontFamily: 'Tahoma',
102
  textColor: '#000000',
117
  yaxis: {
118
  min: 0,
119
  padMin: 1.0,
120
+ label: '<?php echo htmlentities(__('Number of excluded hits', 'wp_statistics'), ENT_QUOTES); ?>',
121
  labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
122
  labelOptions: {
123
  angle: -90,
131
  show: true,
132
  location: 's',
133
  placement: 'outsideGrid',
134
+ labels: [<?php foreach( $excluded_reasons as $reason ) { echo "'" . $excluded_reason_translate[$reason] . "', "; } ?>],
135
  renderer: jQuery.jqplot.EnhancedLegendRenderer,
136
  rendererOptions:
137
  {
includes/log/hit-statistics.php CHANGED
@@ -57,7 +57,7 @@
57
  ?>
58
  visit_chart = jQuery.jqplot('visits-stats', [visit_data_line, visitor_data_line], {
59
  title: {
60
- text: '<b><?php echo __('Hits in the last', 'wp_statistics') . ' ' . $daysToDisplay . ' ' . __('days', 'wp_statistics'); ?></b>',
61
  fontSize: '12px',
62
  fontFamily: 'Tahoma',
63
  textColor: '#000000',
@@ -78,7 +78,7 @@
78
  yaxis: {
79
  min: 0,
80
  padMin: 1.0,
81
- label: '<?php _e('Number of visits and visitors', 'wp_statistics'); ?>',
82
  labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
83
  labelOptions: {
84
  angle: -90,
@@ -92,7 +92,7 @@
92
  show: true,
93
  location: 's',
94
  placement: 'outsideGrid',
95
- labels: ['<?php _e('Visit', 'wp_statistics'); ?>', '<?php _e('Visitor', 'wp_statistics'); ?>'],
96
  renderer: jQuery.jqplot.EnhancedLegendRenderer,
97
  rendererOptions:
98
  {
57
  ?>
58
  visit_chart = jQuery.jqplot('visits-stats', [visit_data_line, visitor_data_line], {
59
  title: {
60
+ text: '<b><?php echo htmlentities(__('Hits in the last', 'wp_statistics'), ENT_QUOTES) . ' ' . $daysToDisplay . ' ' . htmlentities(__('days', 'wp_statistics'), ENT_QUOTES); ?></b>',
61
  fontSize: '12px',
62
  fontFamily: 'Tahoma',
63
  textColor: '#000000',
78
  yaxis: {
79
  min: 0,
80
  padMin: 1.0,
81
+ label: '<?php echo htmlentities(__('Number of visits and visitors', 'wp_statistics'), ENT_QUOTES); ?>',
82
  labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
83
  labelOptions: {
84
  angle: -90,
92
  show: true,
93
  location: 's',
94
  placement: 'outsideGrid',
95
+ labels: ['<?php echo htmlentities(__('Visit', 'wp_statistics'), ENT_QUOTES); ?>', '<?php echo htmlentities(__('Visitor', 'wp_statistics'), ENT_QUOTES); ?>'],
96
  renderer: jQuery.jqplot.EnhancedLegendRenderer,
97
  rendererOptions:
98
  {
includes/log/last-search.php CHANGED
@@ -43,14 +43,16 @@
43
  {
44
  $tag = '';
45
  $name = 'All';
 
46
  }
47
  else
48
  {
49
  $tag = $search_engines[$key]['tag'];
50
  $name = $search_engines[$key]['name'];
 
51
  }
52
 
53
- echo "<li><a href='?page=wps_words_menu&referred={$tag}'>" . __($name, 'wp_statistics') . " <span class='count'>({$value})</span></a>{$separator}</li>";
54
  }
55
  ?>
56
  </ul>
@@ -72,7 +74,7 @@
72
  $styleErrors = "paginationErrors";
73
  $styleSelect = "paginationSelect";
74
 
75
- $Pagination = new Pagination($total, $pagesPerSection, $options, false, $stylePageOff, $stylePageOn, $styleErrors, $styleSelect);
76
 
77
  $start = $Pagination->getEntryStart();
78
  $end = $Pagination->getEntryEnd();
@@ -84,7 +86,7 @@
84
  $search_query = wp_statistics_searchword_query('all');
85
  }
86
 
87
- $result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE {$search_query} ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
88
 
89
  include_once( dirname( __FILE__ ) . "/../functions/country-codes.php");
90
 
@@ -104,7 +106,7 @@
104
 
105
  echo "<div class='log-item'>";
106
  echo "<div class='log-referred'>".$WP_Statistics->Search_Engine_QueryString($items->referred)."</div>";
107
- echo "<div class='log-ip'>{$items->last_counter} - {$ip_string}</div>";
108
  echo "<div class='clear'></div>";
109
  echo "<div class='log-url'>";
110
  echo $map_string;
43
  {
44
  $tag = '';
45
  $name = 'All';
46
+ $translate = __('All', 'wp_statistics');
47
  }
48
  else
49
  {
50
  $tag = $search_engines[$key]['tag'];
51
  $name = $search_engines[$key]['name'];
52
+ $translate = $search_engines[$key]['translated'];
53
  }
54
 
55
+ echo "<li><a href='?page=wps_words_menu&referred={$tag}'>" . $translate . " <span class='count'>({$value})</span></a>{$separator}</li>";
56
  }
57
  ?>
58
  </ul>
74
  $styleErrors = "paginationErrors";
75
  $styleSelect = "paginationSelect";
76
 
77
+ $Pagination = new WP_Statistics_Pagination($total, $pagesPerSection, $options, false, $stylePageOff, $stylePageOn, $styleErrors, $styleSelect);
78
 
79
  $start = $Pagination->getEntryStart();
80
  $end = $Pagination->getEntryEnd();
86
  $search_query = wp_statistics_searchword_query('all');
87
  }
88
 
89
+ $result = $wpdb->get_results("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE {$search_query} ORDER BY `{$wpdb->prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
90
 
91
  include_once( dirname( __FILE__ ) . "/../functions/country-codes.php");
92
 
106
 
107
  echo "<div class='log-item'>";
108
  echo "<div class='log-referred'>".$WP_Statistics->Search_Engine_QueryString($items->referred)."</div>";
109
+ echo "<div class='log-ip'>" . $WP_Statistics->Local_Date(get_option('date_format'), strtotime($items->last_counter)) . " - {$ip_string}</div>";
110
  echo "<div class='clear'></div>";
111
  echo "<div class='log-url'>";
112
  echo $map_string;
includes/log/last-visitor.php CHANGED
@@ -17,13 +17,14 @@
17
  $title = $_GET['ip'];
18
  }
19
 
 
 
20
  if( isset( $_get ) ) {
21
- $total = $wpdb->query($wpdb->prepare("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `{$_var}` LIKE %s", $_get));
22
  } else {
23
- $total = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor`");
24
  }
25
 
26
- $total_visitor = $wpdb->query("SELECT * FROM `{$table_prefix}statistics_visitor`");
27
  ?>
28
  <div class="wrap">
29
  <?php screen_icon('options-general'); ?>
@@ -73,16 +74,16 @@
73
  $styleErrors = "paginationErrors";
74
  $styleSelect = "paginationSelect";
75
 
76
- $Pagination = new Pagination($total, $pagesPerSection, $options, false, $stylePageOff, $stylePageOn, $styleErrors, $styleSelect);
77
 
78
  $start = $Pagination->getEntryStart();
79
  $end = $Pagination->getEntryEnd();
80
 
81
  // Retrieve MySQL data
82
  if( isset($_get) ) {
83
- $result = $wpdb->get_results($wpdb->prepare("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `{$_var}` LIKE %s ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}", $_get));
84
  } else {
85
- $result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
86
  }
87
 
88
  // Check to see if User Agent logging is enabled.
@@ -104,7 +105,7 @@
104
 
105
  echo "<div class='log-item'>";
106
  echo "<div class='log-referred'>{$ip_string}</div>";
107
- echo "<div class='log-ip'>{$items->last_counter}</div>";
108
  echo "<div class='clear'></div>";
109
  echo "<div class='log-url'>";
110
  echo $map_string;
17
  $title = $_GET['ip'];
18
  }
19
 
20
+ $total_visitor = $wpdb->get_var("SELECT COUNT(*) FROM `{$wpdb->prefix}statistics_visitor`");
21
+
22
  if( isset( $_get ) ) {
23
+ $total = $wpdb->get_var($wpdb->prepare("SELECT COUNT(*) FROM `{$wpdb->prefix}statistics_visitor` WHERE `{$_var}` LIKE %s", $_get));
24
  } else {
25
+ $total = $total_visitor;
26
  }
27
 
 
28
  ?>
29
  <div class="wrap">
30
  <?php screen_icon('options-general'); ?>
74
  $styleErrors = "paginationErrors";
75
  $styleSelect = "paginationSelect";
76
 
77
+ $Pagination = new WP_Statistics_Pagination($total, $pagesPerSection, $options, false, $stylePageOff, $stylePageOn, $styleErrors, $styleSelect);
78
 
79
  $start = $Pagination->getEntryStart();
80
  $end = $Pagination->getEntryEnd();
81
 
82
  // Retrieve MySQL data
83
  if( isset($_get) ) {
84
+ $result = $wpdb->get_results($wpdb->prepare("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE `{$_var}` LIKE %s ORDER BY `{$wpdb->prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}", $_get));
85
  } else {
86
+ $result = $wpdb->get_results("SELECT * FROM `{$wpdb->prefix}statistics_visitor` ORDER BY `{$wpdb->prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
87
  }
88
 
89
  // Check to see if User Agent logging is enabled.
105
 
106
  echo "<div class='log-item'>";
107
  echo "<div class='log-referred'>{$ip_string}</div>";
108
+ echo "<div class='log-ip'>" . $WP_Statistics->Local_Date(get_option('date_format'), strtotime($items->last_counter)) . "</div>";
109
  echo "<div class='clear'></div>";
110
  echo "<div class='log-url'>";
111
  echo $map_string;
includes/log/online.php CHANGED
@@ -20,7 +20,7 @@
20
  <?php
21
  include_once( dirname( __FILE__ ) . "/../functions/country-codes.php" );
22
 
23
- $result = $wpdb->get_results( "SELECT * FROM {$table_prefix}statistics_useronline;" );
24
  $total = count( $result );
25
 
26
  if( $total > 0 ) {
@@ -32,7 +32,7 @@
32
  $styleErrors = "paginationErrors";
33
  $styleSelect = "paginationSelect";
34
 
35
- $Pagination = new Pagination($total, $pagesPerSection, $options, false, $stylePageOff, $stylePageOn, $styleErrors, $styleSelect);
36
 
37
  $start = $Pagination->getEntryStart();
38
  $end = $Pagination->getEntryEnd();
@@ -40,6 +40,8 @@
40
  echo "<div class='log-latest'>";
41
  $count = 0;
42
 
 
 
43
  foreach($result as $items) {
44
  $count++;
45
 
20
  <?php
21
  include_once( dirname( __FILE__ ) . "/../functions/country-codes.php" );
22
 
23
+ $result = $wpdb->get_results( "SELECT * FROM {$wpdb->prefix}statistics_useronline;" );
24
  $total = count( $result );
25
 
26
  if( $total > 0 ) {
32
  $styleErrors = "paginationErrors";
33
  $styleSelect = "paginationSelect";
34
 
35
+ $Pagination = new WP_Statistics_Pagination($total, $pagesPerSection, $options, false, $stylePageOff, $stylePageOn, $styleErrors, $styleSelect);
36
 
37
  $start = $Pagination->getEntryStart();
38
  $end = $Pagination->getEntryEnd();
40
  echo "<div class='log-latest'>";
41
  $count = 0;
42
 
43
+ $dash_icon = wp_statistics_icons('dashicons-visibility', 'visibility');
44
+
45
  foreach($result as $items) {
46
  $count++;
47
 
includes/log/search-statistics.php CHANGED
@@ -68,7 +68,7 @@
68
  ?>
69
  visit_chart = jQuery.jqplot('search-stats', [<?php foreach( $search_engines as $se ) { echo "searches_data_line_" . $se['tag'] . ", "; } if( $total_stats == 1 ) { echo 'searches_data_line_total'; }?>], {
70
  title: {
71
- text: '<b><?php echo __('Search engine referrals in the last', 'wp_statistics') . ' ' . $daysToDisplay . ' ' . __('days', 'wp_statistics'); ?></b>',
72
  fontSize: '12px',
73
  fontFamily: 'Tahoma',
74
  textColor: '#000000',
@@ -89,7 +89,7 @@
89
  yaxis: {
90
  min: 0,
91
  padMin: 1.0,
92
- label: '<?php _e('Number of referrals', 'wp_statistics'); ?>',
93
  labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
94
  labelOptions: {
95
  angle: -90,
@@ -103,7 +103,7 @@
103
  show: true,
104
  location: 's',
105
  placement: 'outsideGrid',
106
- labels: [<?php foreach( $search_engines as $se ) { echo "'" . __( $se['name'], 'wp_statistics' ) . "', "; } if( $total_stats == 1 ) { echo "'" . __('Total', 'wp_statistics') . "'"; }?>],
107
  renderer: jQuery.jqplot.EnhancedLegendRenderer,
108
  rendererOptions:
109
  {
68
  ?>
69
  visit_chart = jQuery.jqplot('search-stats', [<?php foreach( $search_engines as $se ) { echo "searches_data_line_" . $se['tag'] . ", "; } if( $total_stats == 1 ) { echo 'searches_data_line_total'; }?>], {
70
  title: {
71
+ text: '<b><?php echo htmlentities(__('Search engine referrals in the last', 'wp_statistics'), ENT_QUOTES) . ' ' . $daysToDisplay . ' ' . htmlentities(__('days', 'wp_statistics'), ENT_QUOTES); ?></b>',
72
  fontSize: '12px',
73
  fontFamily: 'Tahoma',
74
  textColor: '#000000',
89
  yaxis: {
90
  min: 0,
91
  padMin: 1.0,
92
+ label: '<?php echo htmlentities(__('Number of referrals', 'wp_statistics'), ENT_QUOTES); ?>',
93
  labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
94
  labelOptions: {
95
  angle: -90,
103
  show: true,
104
  location: 's',
105
  placement: 'outsideGrid',
106
+ labels: [<?php foreach( $search_engines as $se ) { echo "'" . htmlentities($se['translated'], ENT_QUOTES) . "', "; } if( $total_stats == 1 ) { echo "'" . htmlentities(__('Total', 'wp_statistics'), ENT_QUOTES) . "'"; }?>],
107
  renderer: jQuery.jqplot.EnhancedLegendRenderer,
108
  rendererOptions:
109
  {
includes/log/top-countries.php CHANGED
@@ -24,11 +24,11 @@
24
  </tr>
25
 
26
  <?php
27
- $result = $wpdb->get_results("SELECT DISTINCT `location` FROM `{$table_prefix}statistics_visitor`");
28
 
29
  foreach( $result as $item )
30
  {
31
- $Countries[$item->location] = $wpdb->get_var("SELECT count(location) FROM `{$table_prefix}statistics_visitor` WHERE location='" . $item->location . "'" );
32
  }
33
 
34
  arsort($Countries);
24
  </tr>
25
 
26
  <?php
27
+ $result = $wpdb->get_results("SELECT DISTINCT `location` FROM `{$wpdb->prefix}statistics_visitor`");
28
 
29
  foreach( $result as $item )
30
  {
31
+ $Countries[$item->location] = $wpdb->get_var("SELECT count(location) FROM `{$wpdb->prefix}statistics_visitor` WHERE location='" . $item->location . "'" );
32
  }
33
 
34
  arsort($Countries);
includes/log/top-pages.php CHANGED
@@ -46,7 +46,7 @@
46
 
47
  pages_jqchart = jQuery.jqplot('jqpage-stats', [pages_data_line1, pages_data_line2, pages_data_line3, pages_data_line4, pages_data_line5], {
48
  title: {
49
- text: '<b><?php echo __('Top 5 Page Trending Stats', 'wp_statistics'); ?></b>',
50
  fontSize: '12px',
51
  fontFamily: 'Tahoma',
52
  textColor: '#000000',
@@ -67,7 +67,7 @@
67
  yaxis: {
68
  min: 0,
69
  padMin: 1.0,
70
- label: '<?php _e('Number of Hits', 'wp_statistics'); ?>',
71
  labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
72
  labelOptions: {
73
  angle: -90,
@@ -147,7 +147,7 @@
147
  $styleErrors = "paginationErrors";
148
  $styleSelect = "paginationSelect";
149
 
150
- $Pagination = new Pagination($total, $pagesPerSection, $options, false, $stylePageOff, $stylePageOn, $styleErrors, $styleSelect);
151
 
152
  $start = $Pagination->getEntryStart();
153
  $end = $Pagination->getEntryEnd();
@@ -163,7 +163,7 @@
163
  if( $count >= $start ) {
164
  echo "<div class='log-item'>";
165
 
166
- if( $uri[3] == '' ) { $uri[3] = '[' . __('No page title found', 'wp_statistics') . ']'; }
167
 
168
  echo "<div class='log-page-title'>{$count} - {$uri[3]}</div>";
169
  echo "<div class='right-div'>".__('Visits', 'wp_statistics').": <a href='?page=wps_pages_menu&page-uri={$uri[0]}'>" . number_format_i18n($uri[1]) . "</a></div>";
46
 
47
  pages_jqchart = jQuery.jqplot('jqpage-stats', [pages_data_line1, pages_data_line2, pages_data_line3, pages_data_line4, pages_data_line5], {
48
  title: {
49
+ text: '<b><?php echo htmlentities(__('Top 5 Page Trending Stats', 'wp_statistics'), ENT_QUOTES); ?></b>',
50
  fontSize: '12px',
51
  fontFamily: 'Tahoma',
52
  textColor: '#000000',
67
  yaxis: {
68
  min: 0,
69
  padMin: 1.0,
70
+ label: '<?php echo htmlentities(__('Number of Hits', 'wp_statistics'), ENT_QUOTES); ?>',
71
  labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
72
  labelOptions: {
73
  angle: -90,
147
  $styleErrors = "paginationErrors";
148
  $styleSelect = "paginationSelect";
149
 
150
+ $Pagination = new WP_Statistics_Pagination($total, $pagesPerSection, $options, false, $stylePageOff, $stylePageOn, $styleErrors, $styleSelect);
151
 
152
  $start = $Pagination->getEntryStart();
153
  $end = $Pagination->getEntryEnd();
163
  if( $count >= $start ) {
164
  echo "<div class='log-item'>";
165
 
166
+ if( $uri[3] == '' ) { $uri[3] = '[' . htmlentities(__('No page title found', 'wp_statistics'), ENT_QUOTES) . ']'; }
167
 
168
  echo "<div class='log-page-title'>{$count} - {$uri[3]}</div>";
169
  echo "<div class='right-div'>".__('Visits', 'wp_statistics').": <a href='?page=wps_pages_menu&page-uri={$uri[0]}'>" . number_format_i18n($uri[1]) . "</a></div>";
includes/log/top-referring.php CHANGED
@@ -17,9 +17,9 @@
17
  }
18
 
19
  if( $referr ) {
20
- $total = $wpdb->query($wpdb->prepare("SELECT `referred` FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE %s", $referr));
21
  } else {
22
- $total = $wpdb->query("SELECT `referred` FROM `{$table_prefix}statistics_visitor` WHERE referred <> ''");
23
  }
24
  ?>
25
  <div class="wrap">
@@ -51,7 +51,7 @@
51
  $styleErrors = "paginationErrors";
52
  $styleSelect = "paginationSelect";
53
 
54
- $Pagination = new Pagination($total, $pagesPerSection, $options, false, $stylePageOff, $stylePageOn, $styleErrors, $styleSelect);
55
 
56
  $start = $Pagination->getEntryStart();
57
  $end = $Pagination->getEntryEnd();
@@ -60,7 +60,7 @@
60
 
61
  if( $referr ) {
62
 
63
- $result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE `referred` LIKE '%{$referr}%' AND referred <> '' ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT {$start}, {$end}");
64
 
65
  foreach($result as $items) {
66
 
@@ -84,7 +84,7 @@
84
  }
85
  } else {
86
 
87
- $result = $wpdb->get_results("SELECT `referred` FROM `{$table_prefix}statistics_visitor` WHERE referred <> ''");
88
 
89
  $urls = array();
90
  foreach( $result as $items ) {
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">
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();
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
 
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 ) {
includes/log/widgets/about.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  function wp_statistics_generate_about_postbox($ISOCountryCode, $search_engines) {
3
 
4
- global $wpdb, $table_prefix, $WP_Statistics;
5
  ?>
6
  <div class="postbox">
7
  <div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
@@ -15,7 +15,7 @@
15
 
16
  function wp_statistics_generate_about_postbox_content() {
17
 
18
- global $wpdb, $table_prefix, $WP_Statistics;
19
  ?>
20
  <div style="text-align: center;">
21
  <a href="http://wp-statistics.com" target="_blank"><img src="<?php echo plugins_url('wp-statistics/assets/images/logo-250.png'); ?>"></a>
1
  <?php
2
  function wp_statistics_generate_about_postbox($ISOCountryCode, $search_engines) {
3
 
4
+ global $wpdb, $WP_Statistics;
5
  ?>
6
  <div class="postbox">
7
  <div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
15
 
16
  function wp_statistics_generate_about_postbox_content() {
17
 
18
+ global $wpdb, $WP_Statistics;
19
  ?>
20
  <div style="text-align: center;">
21
  <a href="http://wp-statistics.com" target="_blank"><img src="<?php echo plugins_url('wp-statistics/assets/images/logo-250.png'); ?>"></a>
includes/log/widgets/browsers.php CHANGED
@@ -14,7 +14,7 @@
14
 
15
  function wp_statistics_generate_browsers_postbox_content() {
16
 
17
- global $wpdb, $table_prefix, $WP_Statistics;
18
  ?>
19
  <script type="text/javascript">
20
  jQuery(function () {
@@ -44,14 +44,14 @@
44
  if( $count > 9 ) { break; }
45
  }
46
 
47
- echo "['" . __('Other', 'wp_statistics') . " (" . number_format_i18n($total - $topten) . ")'," . ( $total - $topten ) . "], ";
48
 
49
  echo "];\n";
50
  ?>
51
 
52
  browser_chart = jQuery.jqplot('browsers-log', [browser_data], {
53
  title: {
54
- text: '<b><?php echo __('Top 10 Browsers', 'wp_statistics'); ?></b>',
55
  fontSize: '12px',
56
  fontFamily: 'Tahoma',
57
  textColor: '#000000',
14
 
15
  function wp_statistics_generate_browsers_postbox_content() {
16
 
17
+ global $wpdb, $WP_Statistics;
18
  ?>
19
  <script type="text/javascript">
20
  jQuery(function () {
44
  if( $count > 9 ) { break; }
45
  }
46
 
47
+ echo "['" . htmlentities(__('Other', 'wp_statistics'), ENT_QUOTES) . " (" . number_format_i18n($total - $topten) . ")'," . ( $total - $topten ) . "], ";
48
 
49
  echo "];\n";
50
  ?>
51
 
52
  browser_chart = jQuery.jqplot('browsers-log', [browser_data], {
53
  title: {
54
+ text: '<b><?php echo htmlentities(__('Top 10 Browsers', 'wp_statistics'), ENT_QUOTES); ?></b>',
55
  fontSize: '12px',
56
  fontFamily: 'Tahoma',
57
  textColor: '#000000',
includes/log/widgets/countries.php CHANGED
@@ -22,7 +22,7 @@
22
 
23
  function wp_statistics_generate_countries_postbox_content($ISOCountryCode, $count = 10) {
24
 
25
- global $wpdb, $table_prefix, $WP_Statistics;
26
 
27
  ?>
28
  <table width="100%" class="widefat table-stats" id="last-referrer">
@@ -36,11 +36,11 @@
36
  <?php
37
  $Countries = array();
38
 
39
- $result = $wpdb->get_results("SELECT DISTINCT `location` FROM `{$table_prefix}statistics_visitor`");
40
 
41
  foreach( $result as $item )
42
  {
43
- $Countries[$item->location] = $wpdb->get_var("SELECT count(location) FROM `{$table_prefix}statistics_visitor` WHERE location='" . $item->location . "'" );
44
  }
45
 
46
  arsort($Countries);
22
 
23
  function wp_statistics_generate_countries_postbox_content($ISOCountryCode, $count = 10) {
24
 
25
+ global $wpdb, $WP_Statistics;
26
 
27
  ?>
28
  <table width="100%" class="widefat table-stats" id="last-referrer">
36
  <?php
37
  $Countries = array();
38
 
39
+ $result = $wpdb->get_results("SELECT DISTINCT `location` FROM `{$wpdb->prefix}statistics_visitor`");
40
 
41
  foreach( $result as $item )
42
  {
43
+ $Countries[$item->location] = $wpdb->get_var("SELECT count(location) FROM `{$wpdb->prefix}statistics_visitor` WHERE location='" . $item->location . "'" );
44
  }
45
 
46
  arsort($Countries);
includes/log/widgets/google.map.php CHANGED
@@ -17,7 +17,7 @@
17
 
18
  function wp_statistics_generate_map_postbox_content($ISOCountryCode) {
19
 
20
- global $wpdb, $table_prefix, $WP_Statistics;
21
 
22
  // Some clients can't handle mixed http/https pages so check to see if the page we're on has http
23
  // enabled, if so, use https instead just in case for the Google script.
@@ -30,7 +30,7 @@
30
  <script src="<?php echo $protocol; ?>://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
31
  <div id="map_canvas">Google Map</div>
32
 
33
- <?php $result = $wpdb->get_row("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE last_counter = '{$WP_Statistics->Current_Date('Y-m-d')}'"); ?>
34
  <script type="text/javascript">
35
  jQuery(document).ready(function(){
36
  var map_options = {
@@ -51,7 +51,7 @@
51
  var h = [];
52
 
53
  <?php
54
- $result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE last_counter = '{$WP_Statistics->Current_Date('Y-m-d')}'");
55
  $final_result = array();
56
 
57
  if( $result ) {
17
 
18
  function wp_statistics_generate_map_postbox_content($ISOCountryCode) {
19
 
20
+ global $wpdb, $WP_Statistics;
21
 
22
  // Some clients can't handle mixed http/https pages so check to see if the page we're on has http
23
  // enabled, if so, use https instead just in case for the Google script.
30
  <script src="<?php echo $protocol; ?>://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
31
  <div id="map_canvas">Google Map</div>
32
 
33
+ <?php $result = $wpdb->get_row("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE last_counter = '{$WP_Statistics->Current_Date('Y-m-d')}'"); ?>
34
  <script type="text/javascript">
35
  jQuery(document).ready(function(){
36
  var map_options = {
51
  var h = [];
52
 
53
  <?php
54
+ $result = $wpdb->get_results("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE last_counter = '{$WP_Statistics->Current_Date('Y-m-d')}'");
55
  $final_result = array();
56
 
57
  if( $result ) {
includes/log/widgets/hits.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  function wp_statistics_generate_hits_postbox($ISOCountryCode, $search_engines) {
3
 
4
- global $wpdb, $table_prefix, $WP_Statistics;
5
  ?>
6
  <div class="postbox">
7
  <div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
@@ -17,7 +17,7 @@
17
 
18
  function wp_statistics_generate_hits_postbox_content($size="300px", $days=20) {
19
 
20
- global $wpdb, $table_prefix, $WP_Statistics;
21
  ?>
22
  <script type="text/javascript">
23
  var visit_chart;
@@ -48,7 +48,7 @@
48
  ?>
49
  visit_chart = jQuery.jqplot('visits-stats', [visit_data_line, visitor_data_line], {
50
  title: {
51
- text: '<b><?php echo __('Hits in the last', 'wp_statistics') . ' ' . $days . ' ' . __('days', 'wp_statistics'); ?></b>',
52
  fontSize: '12px',
53
  fontFamily: 'Tahoma',
54
  textColor: '#000000',
@@ -69,7 +69,7 @@
69
  yaxis: {
70
  min: 0,
71
  padMin: 1.0,
72
- label: '<?php _e('Number of visits and visitors', 'wp_statistics'); ?>',
73
  labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
74
  labelOptions: {
75
  angle: -90,
@@ -83,7 +83,7 @@
83
  show: true,
84
  location: 's',
85
  placement: 'outsideGrid',
86
- labels: ['<?php _e('Visit', 'wp_statistics'); ?>', '<?php _e('Visitor', 'wp_statistics'); ?>'],
87
  renderer: jQuery.jqplot.EnhancedLegendRenderer,
88
  rendererOptions:
89
  {
1
  <?php
2
  function wp_statistics_generate_hits_postbox($ISOCountryCode, $search_engines) {
3
 
4
+ global $wpdb, $WP_Statistics;
5
  ?>
6
  <div class="postbox">
7
  <div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
17
 
18
  function wp_statistics_generate_hits_postbox_content($size="300px", $days=20) {
19
 
20
+ global $wpdb, $WP_Statistics;
21
  ?>
22
  <script type="text/javascript">
23
  var visit_chart;
48
  ?>
49
  visit_chart = jQuery.jqplot('visits-stats', [visit_data_line, visitor_data_line], {
50
  title: {
51
+ text: '<b><?php echo htmlentities(__('Hits in the last', 'wp_statistics'), ENT_QUOTES) . ' ' . $days . ' ' . htmlentities(__('days', 'wp_statistics'), ENT_QUOTES); ?></b>',
52
  fontSize: '12px',
53
  fontFamily: 'Tahoma',
54
  textColor: '#000000',
69
  yaxis: {
70
  min: 0,
71
  padMin: 1.0,
72
+ label: '<?php echo htmlentities(__('Number of visits and visitors', 'wp_statistics'), ENT_QUOTES); ?>',
73
  labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
74
  labelOptions: {
75
  angle: -90,
83
  show: true,
84
  location: 's',
85
  placement: 'outsideGrid',
86
+ labels: ['<?php echo htmlentities(__('Visit', 'wp_statistics'), ENT_QUOTES); ?>', '<?php echo htmlentities(__('Visitor', 'wp_statistics'), ENT_QUOTES); ?>'],
87
  renderer: jQuery.jqplot.EnhancedLegendRenderer,
88
  rendererOptions:
89
  {
includes/log/widgets/jqv.map.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  function wp_statistics_generate_map_postbox($ISOCountryCode, $search_engines) {
3
 
4
- global $wpdb, $table_prefix, $WP_Statistics;
5
 
6
  if($WP_Statistics->get_option('geoip') && !$WP_Statistics->get_option('disable_map') ) { ?>
7
  <div class="postbox">
@@ -17,12 +17,12 @@
17
 
18
  function wp_statistics_generate_map_postbox_content($ISOCountryCode) {
19
 
20
- global $wpdb, $table_prefix, $WP_Statistics;
21
 
22
  if($WP_Statistics->get_option('geoip') && !$WP_Statistics->get_option('disable_map') ) { ?>
23
  <div id="map_canvas"></div>
24
 
25
- <?php $result = $wpdb->get_row("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE last_counter = '{$WP_Statistics->Current_Date('Y-m-d')}'"); ?>
26
  <script type="text/javascript">
27
  var country_pin = Array();
28
  var country_color = Array();
@@ -30,7 +30,7 @@
30
  jQuery(document).ready(function(){
31
 
32
  <?php
33
- $result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE last_counter = '{$WP_Statistics->Current_Date('Y-m-d')}'");
34
  $final_result = array();
35
  $final_result['000'] = array();
36
 
1
  <?php
2
  function wp_statistics_generate_map_postbox($ISOCountryCode, $search_engines) {
3
 
4
+ global $wpdb, $WP_Statistics;
5
 
6
  if($WP_Statistics->get_option('geoip') && !$WP_Statistics->get_option('disable_map') ) { ?>
7
  <div class="postbox">
17
 
18
  function wp_statistics_generate_map_postbox_content($ISOCountryCode) {
19
 
20
+ global $wpdb, $WP_Statistics;
21
 
22
  if($WP_Statistics->get_option('geoip') && !$WP_Statistics->get_option('disable_map') ) { ?>
23
  <div id="map_canvas"></div>
24
 
25
+ <?php $result = $wpdb->get_row("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE last_counter = '{$WP_Statistics->Current_Date('Y-m-d')}'"); ?>
26
  <script type="text/javascript">
27
  var country_pin = Array();
28
  var country_color = Array();
30
  jQuery(document).ready(function(){
31
 
32
  <?php
33
+ $result = $wpdb->get_results("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE last_counter = '{$WP_Statistics->Current_Date('Y-m-d')}'");
34
  $final_result = array();
35
  $final_result['000'] = array();
36
 
includes/log/widgets/page.php CHANGED
@@ -1,8 +1,10 @@
1
  <?php
2
 
3
- function wp_statistics_generate_page_postbox_content($pageuri, $pageid, $days = 20, $chart_title = 'Page Trending Stats') {
4
  GLOBAL $WP_Statistics;
5
 
 
 
6
  if( $pageuri && !$pageid ) { $pageid = wp_statistics_uri_to_id( $pageuri ); }
7
 
8
  $post = get_post($pageid);
@@ -34,7 +36,7 @@
34
  ?>
35
  pages_jqchart = jQuery.jqplot('page-stats', [page_data_line], {
36
  title: {
37
- text: '<b><?php echo __($chart_title, 'wp_statistics'); ?></b>',
38
  fontSize: '12px',
39
  fontFamily: 'Tahoma',
40
  textColor: '#000000',
@@ -55,7 +57,7 @@
55
  yaxis: {
56
  min: 0,
57
  padMin: 1.0,
58
- label: '<?php _e('Number of Hits', 'wp_statistics'); ?>',
59
  labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
60
  labelOptions: {
61
  angle: -90,
1
  <?php
2
 
3
+ function wp_statistics_generate_page_postbox_content($pageuri, $pageid, $days = 20, $chart_title = null ) {
4
  GLOBAL $WP_Statistics;
5
 
6
+ if( $chart_title == null ) { $chart_title = __('Page Trending Stats', 'wp_statistics'); }
7
+
8
  if( $pageuri && !$pageid ) { $pageid = wp_statistics_uri_to_id( $pageuri ); }
9
 
10
  $post = get_post($pageid);
36
  ?>
37
  pages_jqchart = jQuery.jqplot('page-stats', [page_data_line], {
38
  title: {
39
+ text: '<b><?php echo htmlentities(__($chart_title, 'wp_statistics'), ENT_QUOTES); ?></b>',
40
  fontSize: '12px',
41
  fontFamily: 'Tahoma',
42
  textColor: '#000000',
57
  yaxis: {
58
  min: 0,
59
  padMin: 1.0,
60
+ label: '<?php echo htmlentities(__('Number of Hits', 'wp_statistics'), ENT_QUOTES); ?>',
61
  labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
62
  labelOptions: {
63
  angle: -90,
includes/log/widgets/recent.php CHANGED
@@ -17,9 +17,9 @@
17
 
18
  function wp_statistics_generate_recent_postbox_content($ISOCountryCode, $count = 10) {
19
 
20
- global $wpdb, $table_prefix, $WP_Statistics;
21
 
22
- $result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT 0, {$count}");
23
 
24
  echo "<div class='log-latest'>";
25
 
@@ -37,7 +37,7 @@
37
 
38
  echo "<div class='log-item'>";
39
  echo "<div class='log-referred'>{$ip_string}</div>";
40
- echo "<div class='log-ip'>{$items->last_counter}</div>";
41
  echo "<div class='clear'></div>";
42
  echo "<div class='log-url'>";
43
  echo $map_string;
17
 
18
  function wp_statistics_generate_recent_postbox_content($ISOCountryCode, $count = 10) {
19
 
20
+ global $wpdb, $WP_Statistics;
21
 
22
+ $result = $wpdb->get_results("SELECT * FROM `{$wpdb->prefix}statistics_visitor` ORDER BY `{$wpdb->prefix}statistics_visitor`.`ID` DESC LIMIT 0, {$count}");
23
 
24
  echo "<div class='log-latest'>";
25
 
37
 
38
  echo "<div class='log-item'>";
39
  echo "<div class='log-referred'>{$ip_string}</div>";
40
+ echo "<div class='log-ip'>" . $WP_Statistics->Local_Date(get_option('date_format'), strtotime($items->last_counter)) . "</div>";
41
  echo "<div class='clear'></div>";
42
  echo "<div class='log-url'>";
43
  echo $map_string;
includes/log/widgets/referring.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php
2
  function wp_statistics_generate_referring_postbox($ISOCountryCode, $search_engines) {
3
 
4
- global $wpdb, $table_prefix, $WP_Statistics;
5
 
6
- $result = $wpdb->get_results("SELECT `referred` FROM `{$table_prefix}statistics_visitor` WHERE referred <> ''");
7
 
8
  if( sizeof( $result ) > 0 ) {
9
  ?>
1
  <?php
2
  function wp_statistics_generate_referring_postbox($ISOCountryCode, $search_engines) {
3
 
4
+ global $wpdb, $WP_Statistics;
5
 
6
+ $result = $wpdb->get_results("SELECT `referred` FROM `{$wpdb->prefix}statistics_visitor` WHERE referred <> ''");
7
 
8
  if( sizeof( $result ) > 0 ) {
9
  ?>
includes/log/widgets/search.php CHANGED
@@ -14,7 +14,7 @@
14
 
15
  function wp_statistics_generate_search_postbox_content($search_engines, $size = "300px", $days = 20) {
16
 
17
- global $wpdb, $table_prefix, $WP_Statistics;
18
  ?>
19
  <script type="text/javascript">
20
  var referral_chart;
@@ -52,7 +52,7 @@
52
  ?>
53
  referral_chart = jQuery.jqplot('search-stats', [<?php foreach( $search_engines as $se ) { echo "searches_data_line_" . $se['tag'] . ", "; } if( $total_stats == 1 ) { echo 'searches_data_line_total'; }?>], {
54
  title: {
55
- text: '<b><?php echo __('Search engine referrals in the last', 'wp_statistics') . ' ' . $days . ' ' . __('days', 'wp_statistics'); ?></b>',
56
  fontSize: '12px',
57
  fontFamily: 'Tahoma',
58
  textColor: '#000000',
@@ -73,7 +73,7 @@
73
  yaxis: {
74
  min: 0,
75
  padMin: 1.0,
76
- label: '<?php _e('Number of referrals', 'wp_statistics'); ?>',
77
  labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
78
  labelOptions: {
79
  angle: -90,
@@ -87,7 +87,7 @@
87
  show: true,
88
  location: 's',
89
  placement: 'outsideGrid',
90
- labels: [<?php foreach( $search_engines as $se ) { echo "'" . __( $se['name'], 'wp_statistics' ) . "', "; } if( $total_stats == 1 ) { echo "'" . __('Total', 'wp_statistics') . "'"; }?>],
91
  renderer: jQuery.jqplot.EnhancedLegendRenderer,
92
  rendererOptions:
93
  {
14
 
15
  function wp_statistics_generate_search_postbox_content($search_engines, $size = "300px", $days = 20) {
16
 
17
+ global $wpdb, $WP_Statistics;
18
  ?>
19
  <script type="text/javascript">
20
  var referral_chart;
52
  ?>
53
  referral_chart = jQuery.jqplot('search-stats', [<?php foreach( $search_engines as $se ) { echo "searches_data_line_" . $se['tag'] . ", "; } if( $total_stats == 1 ) { echo 'searches_data_line_total'; }?>], {
54
  title: {
55
+ text: '<b><?php echo htmlentities(__('Search engine referrals in the last', 'wp_statistics'), ENT_QUOTES) . ' ' . $days . ' ' . htmlentities(__('days', 'wp_statistics'), ENT_QUOTES); ?></b>',
56
  fontSize: '12px',
57
  fontFamily: 'Tahoma',
58
  textColor: '#000000',
73
  yaxis: {
74
  min: 0,
75
  padMin: 1.0,
76
+ label: '<?php echo htmlentities(__('Number of referrals', 'wp_statistics'), ENT_QUOTES); ?>',
77
  labelRenderer: jQuery.jqplot.CanvasAxisLabelRenderer,
78
  labelOptions: {
79
  angle: -90,
87
  show: true,
88
  location: 's',
89
  placement: 'outsideGrid',
90
+ labels: [<?php foreach( $search_engines as $se ) { echo "'" . htmlentities($se['translated'], ENT_QUOTES) . "', "; } if( $total_stats == 1 ) { echo "'" . htmlentities(__('Total', 'wp_statistics'), ENT_QUOTES) . "'"; }?>],
91
  renderer: jQuery.jqplot.EnhancedLegendRenderer,
92
  rendererOptions:
93
  {
includes/log/widgets/summary.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  function wp_statistics_generate_summary_postbox($ISOCountryCode, $search_engines) {
3
 
4
- global $wpdb, $table_prefix, $WP_Statistics;
5
  ?>
6
  <div class="postbox">
7
  <div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
@@ -15,7 +15,7 @@
15
 
16
  function wp_statistics_generate_summary_postbox_content($search_engines, $search = true, $time = true) {
17
 
18
- global $wpdb, $table_prefix, $WP_Statistics;
19
  ?>
20
  <table width="100%" class="widefat table-stats" id="summary-stats">
21
  <tbody>
@@ -43,19 +43,19 @@
43
  </tr>
44
 
45
  <tr>
46
- <th><?php _e('Week', 'wp_statistics'); ?>:</th>
47
  <th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visitor('week',null,true)); ?></span></th>
48
  <th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visit('week')); ?></span></th>
49
  </tr>
50
 
51
  <tr>
52
- <th><?php _e('Month', 'wp_statistics'); ?>:</th>
53
  <th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visitor('month',null,true)); ?></span></th>
54
  <th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visit('month')); ?></span></th>
55
  </tr>
56
 
57
  <tr>
58
- <th><?php _e('Year', 'wp_statistics'); ?>:</th>
59
  <th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visitor('year',null,true)); ?></span></th>
60
  <th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visit('year')); ?></span></th>
61
  </tr>
1
  <?php
2
  function wp_statistics_generate_summary_postbox($ISOCountryCode, $search_engines) {
3
 
4
+ global $wpdb, $WP_Statistics;
5
  ?>
6
  <div class="postbox">
7
  <div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
15
 
16
  function wp_statistics_generate_summary_postbox_content($search_engines, $search = true, $time = true) {
17
 
18
+ global $wpdb, $WP_Statistics;
19
  ?>
20
  <table width="100%" class="widefat table-stats" id="summary-stats">
21
  <tbody>
43
  </tr>
44
 
45
  <tr>
46
+ <th><?php _e('Last 7 Days (Week)', 'wp_statistics'); ?>:</th>
47
  <th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visitor('week',null,true)); ?></span></th>
48
  <th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visit('week')); ?></span></th>
49
  </tr>
50
 
51
  <tr>
52
+ <th><?php _e('Last 30 Days (Month)', 'wp_statistics'); ?>:</th>
53
  <th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visitor('month',null,true)); ?></span></th>
54
  <th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visit('month')); ?></span></th>
55
  </tr>
56
 
57
  <tr>
58
+ <th><?php _e('Last 365 Days (Year)', 'wp_statistics'); ?>:</th>
59
  <th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visitor('year',null,true)); ?></span></th>
60
  <th class="th-center"><span><?php echo number_format_i18n(wp_statistics_visit('year')); ?></span></th>
61
  </tr>
includes/log/widgets/top.visitors.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  function wp_statistics_generate_top_visitors_postbox($ISOCountryCode, $search_engines) {
3
 
4
- global $wpdb, $table_prefix, $WP_Statistics;
5
  ?>
6
  <div class="postbox">
7
  <div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
@@ -17,7 +17,7 @@
17
 
18
  function wp_statistics_generate_top_visitors_postbox_content($ISOCountryCode, $day='today', $count=10, $compact=false) {
19
 
20
- global $wpdb, $table_prefix, $WP_Statistics;
21
 
22
  if( $day == 'today' ) { $sql_time = $WP_Statistics->Current_Date('Y-m-d'); } else { $sql_time = date( 'Y-m-d', strtotime( $day ) ); }
23
 
@@ -37,7 +37,7 @@
37
  </tr>
38
 
39
  <?php
40
- $result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE last_counter = '{$sql_time}' ORDER BY hits DESC");
41
 
42
  foreach( $result as $visitor) {
43
  $i++;
1
  <?php
2
  function wp_statistics_generate_top_visitors_postbox($ISOCountryCode, $search_engines) {
3
 
4
+ global $wpdb, $WP_Statistics;
5
  ?>
6
  <div class="postbox">
7
  <div class="handlediv" title="<?php _e('Click to toggle', 'wp_statistics'); ?>"><br /></div>
17
 
18
  function wp_statistics_generate_top_visitors_postbox_content($ISOCountryCode, $day='today', $count=10, $compact=false) {
19
 
20
+ global $wpdb, $WP_Statistics;
21
 
22
  if( $day == 'today' ) { $sql_time = $WP_Statistics->Current_Date('Y-m-d'); } else { $sql_time = date( 'Y-m-d', strtotime( $day ) ); }
23
 
37
  </tr>
38
 
39
  <?php
40
+ $result = $wpdb->get_results("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE last_counter = '{$sql_time}' ORDER BY hits DESC");
41
 
42
  foreach( $result as $visitor) {
43
  $i++;
includes/log/widgets/words.php CHANGED
@@ -16,12 +16,12 @@
16
 
17
  function wp_statistics_generate_words_postbox_content($ISOCountryCode, $count = 10) {
18
 
19
- global $wpdb, $table_prefix, $WP_Statistics;
20
 
21
  // Retrieve MySQL data for the search words.
22
  $search_query = wp_statistics_searchword_query('all');
23
 
24
- $result = $wpdb->get_results("SELECT * FROM `{$table_prefix}statistics_visitor` WHERE {$search_query} ORDER BY `{$table_prefix}statistics_visitor`.`ID` DESC LIMIT 0, {$count}");
25
 
26
  if( sizeof($result) > 0 ) {
27
  echo "<div class='log-latest'>";
@@ -33,7 +33,7 @@
33
 
34
  echo "<div class='log-item'>";
35
  echo "<div class='log-referred'>".$WP_Statistics->Search_Engine_QueryString($items->referred)."</div>";
36
- echo "<div class='log-ip'>{$items->last_counter} - {$ip_string}</div>";
37
  echo "<div class='clear'></div>";
38
  echo "<div class='log-url'>";
39
  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>";
@@ -43,7 +43,7 @@
43
  }
44
 
45
  $this_search_engine = $WP_Statistics->Search_Engine_Info($items->referred);
46
- 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>";
47
 
48
  if( array_search( strtolower( $items->agent ), array( "chrome", "firefox", "msie", "opera", "safari" ) ) !== FALSE ){
49
  $agent = "<img src='".plugins_url('wp-statistics/assets/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/>";
16
 
17
  function wp_statistics_generate_words_postbox_content($ISOCountryCode, $count = 10) {
18
 
19
+ global $wpdb, $WP_Statistics;
20
 
21
  // Retrieve MySQL data for the search words.
22
  $search_query = wp_statistics_searchword_query('all');
23
 
24
+ $result = $wpdb->get_results("SELECT * FROM `{$wpdb->prefix}statistics_visitor` WHERE {$search_query} ORDER BY `{$wpdb->prefix}statistics_visitor`.`ID` DESC LIMIT 0, {$count}");
25
 
26
  if( sizeof($result) > 0 ) {
27
  echo "<div class='log-latest'>";
33
 
34
  echo "<div class='log-item'>";
35
  echo "<div class='log-referred'>".$WP_Statistics->Search_Engine_QueryString($items->referred)."</div>";
36
+ echo "<div class='log-ip'>" . $WP_Statistics->Local_Date(get_option('date_format'), strtotime($items->last_counter)) . " - {$ip_string}</div>";
37
  echo "<div class='clear'></div>";
38
  echo "<div class='log-url'>";
39
  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>";
43
  }
44
 
45
  $this_search_engine = $WP_Statistics->Search_Engine_Info($items->referred);
46
+ 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>";
47
 
48
  if( array_search( strtolower( $items->agent ), array( "chrome", "firefox", "msie", "opera", "safari" ) ) !== FALSE ){
49
  $agent = "<img src='".plugins_url('wp-statistics/assets/images/').$items->agent.".png' class='log-tools' title='{$items->agent}'/>";
includes/optimization/delete-agents.php CHANGED
@@ -8,7 +8,7 @@
8
 
9
  if($agent) {
10
 
11
- $result = $wpdb->query($wpdb->prepare("DELETE FROM {$table_prefix}statistics_visitor WHERE `agent` = %s", $agent ));
12
 
13
  if($result) {
14
  echo sprintf(__('%s agent data deleted successfully.', 'wp_statistics'), '<code>' . $agent . '</code>');
8
 
9
  if($agent) {
10
 
11
+ $result = $wpdb->query($wpdb->prepare("DELETE FROM {$wpdb->prefix}statistics_visitor WHERE `agent` = %s", $agent ));
12
 
13
  if($result) {
14
  echo sprintf(__('%s agent data deleted successfully.', 'wp_statistics'), '<code>' . $agent . '</code>');
includes/optimization/delete-platforms.php CHANGED
@@ -8,7 +8,7 @@
8
 
9
  if($platform) {
10
 
11
- $result = $wpdb->query($wpdb->prepare("DELETE FROM {$table_prefix}statistics_visitor WHERE `platform` = %s", $platform));
12
 
13
  if($result) {
14
  echo sprintf(__('%s platform data deleted successfully.', 'wp_statistics'), '<code>' . $platform . '</code>');
8
 
9
  if($platform) {
10
 
11
+ $result = $wpdb->query($wpdb->prepare("DELETE FROM {$wpdb->prefix}statistics_visitor WHERE `platform` = %s", $platform));
12
 
13
  if($result) {
14
  echo sprintf(__('%s platform data deleted successfully.', 'wp_statistics'), '<code>' . $platform . '</code>');
includes/optimization/empty.php CHANGED
@@ -10,26 +10,26 @@
10
 
11
  switch( $table_name ) {
12
  case 'useronline':
13
- echo wp_statitiscs_empty_table($table_prefix . 'statistics_useronline');
14
  break;
15
  case 'visit':
16
- echo wp_statitiscs_empty_table($table_prefix . 'statistics_visit');
17
  break;
18
  case 'visitors':
19
- echo wp_statitiscs_empty_table($table_prefix . 'statistics_visitor');
20
  break;
21
  case 'exclusions':
22
- echo wp_statitiscs_empty_table($table_prefix . 'statistics_exclusions');
23
  break;
24
  case 'pages':
25
- echo wp_statitiscs_empty_table($table_prefix . 'statistics_pages');
26
  break;
27
  case 'all':
28
- $result_string = wp_statitiscs_empty_table($table_prefix . 'statistics_useronline');
29
- $result_string .= '<br>' . wp_statitiscs_empty_table($table_prefix . 'statistics_visit');
30
- $result_string .= '<br>' . wp_statitiscs_empty_table($table_prefix . 'statistics_visitor');
31
- $result_string .= '<br>' . wp_statitiscs_empty_table($table_prefix . 'statistics_exclusions');
32
- $result_string .= '<br>' . wp_statitiscs_empty_table($table_prefix . 'statistics_pages');
33
 
34
  echo $result_string;
35
 
10
 
11
  switch( $table_name ) {
12
  case 'useronline':
13
+ echo wp_statitiscs_empty_table($wpdb->prefix . 'statistics_useronline');
14
  break;
15
  case 'visit':
16
+ echo wp_statitiscs_empty_table($wpdb->prefix . 'statistics_visit');
17
  break;
18
  case 'visitors':
19
+ echo wp_statitiscs_empty_table($wpdb->prefix . 'statistics_visitor');
20
  break;
21
  case 'exclusions':
22
+ echo wp_statitiscs_empty_table($wpdb->prefix . 'statistics_exclusions');
23
  break;
24
  case 'pages':
25
+ echo wp_statitiscs_empty_table($wpdb->prefix . 'statistics_pages');
26
  break;
27
  case 'all':
28
+ $result_string = wp_statitiscs_empty_table($wpdb->prefix . 'statistics_useronline');
29
+ $result_string .= '<br>' . wp_statitiscs_empty_table($wpdb->prefix . 'statistics_visit');
30
+ $result_string .= '<br>' . wp_statitiscs_empty_table($wpdb->prefix . 'statistics_visitor');
31
+ $result_string .= '<br>' . wp_statitiscs_empty_table($wpdb->prefix . 'statistics_exclusions');
32
+ $result_string .= '<br>' . wp_statitiscs_empty_table($wpdb->prefix . 'statistics_pages');
33
 
34
  echo $result_string;
35
 
includes/optimization/export.php CHANGED
@@ -20,8 +20,6 @@
20
 
21
  $file_name = WPS_EXPORT_FILE_NAME . '-' . $WP_Statistics->Current_Date('Y-m-d-H-i');
22
 
23
- $result = $wpdb->get_results("SELECT * FROM {$table_prefix}statistics_{$table}", ARRAY_A);
24
-
25
  switch($type) {
26
  case 'excel':
27
  $exporter = new ExportDataExcel('browser', "{$file_name}.xls");
@@ -42,13 +40,38 @@
42
 
43
  $exporter->initialize();
44
 
 
 
 
 
 
 
 
 
45
  if( $headers ) {
46
  foreach( $result[0] as $key => $col ) { $columns[] = $key; }
47
  $exporter->addRow($columns);
48
  }
49
 
50
- foreach($result as $row) {
51
- $exporter->addRow($row);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  }
53
 
54
  $exporter->finalize();
20
 
21
  $file_name = WPS_EXPORT_FILE_NAME . '-' . $WP_Statistics->Current_Date('Y-m-d-H-i');
22
 
 
 
23
  switch($type) {
24
  case 'excel':
25
  $exporter = new ExportDataExcel('browser', "{$file_name}.xls");
40
 
41
  $exporter->initialize();
42
 
43
+ // We need to limit the number of results we retrieve to ensure we don't run out of memory
44
+ $query_base = "SELECT * FROM {$wpdb->prefix}statistics_{$table}";
45
+ $query = $query_base . ' LIMIT 0,1000';
46
+
47
+ $i = 1;
48
+ $more_results = true;
49
+ $result = $wpdb->get_results($query, ARRAY_A);
50
+
51
  if( $headers ) {
52
  foreach( $result[0] as $key => $col ) { $columns[] = $key; }
53
  $exporter->addRow($columns);
54
  }
55
 
56
+
57
+ while( $more_results ) {
58
+ foreach($result as $row) {
59
+ $exporter->addRow($row);
60
+
61
+ // Make sure we've flushed the output buffer so we don't run out of memory on large exports.
62
+ ob_flush();
63
+ flush();
64
+ }
65
+
66
+ unset( $result );
67
+ $wpdb->flush();
68
+
69
+ $query = $query_base . ' LIMIT ' . ($i * 1000) . ',1000';
70
+ $result = $wpdb->get_results($query, ARRAY_A);
71
+
72
+ if( count( $result ) == 0 ) { $more_results = false; }
73
+
74
+ $i++;
75
  }
76
 
77
  $exporter->finalize();
includes/optimization/tabs/wps-optimization-export.php CHANGED
@@ -15,11 +15,11 @@
15
  <td>
16
  <select id="table-to-export" name="table-to-export">
17
  <option value="0"><?php _e('Please select', 'wp_statistics'); ?></option>
18
- <option value="useronline"><?php echo $table_prefix . 'statistics_useronline'; ?></option>
19
- <option value="visit"><?php echo $table_prefix . 'statistics_visit'; ?></option>
20
- <option value="visitor"><?php echo $table_prefix . 'statistics_visitor'; ?></option>
21
- <option value="exclusions"><?php echo $table_prefix . 'statistics_exclusions'; ?></option>
22
- <option value="pages"><?php echo $table_prefix . 'statistics_pages'; ?></option>
23
  </select>
24
  <p class="description"><?php _e('Select the table for the output file.', 'wp_statistics'); ?></p>
25
  </td>
15
  <td>
16
  <select id="table-to-export" name="table-to-export">
17
  <option value="0"><?php _e('Please select', 'wp_statistics'); ?></option>
18
+ <option value="useronline"><?php echo $wpdb->prefix . 'statistics_useronline'; ?></option>
19
+ <option value="visit"><?php echo $wpdb->prefix . 'statistics_visit'; ?></option>
20
+ <option value="visitor"><?php echo $wpdb->prefix . 'statistics_visitor'; ?></option>
21
+ <option value="exclusions"><?php echo $wpdb->prefix . 'statistics_exclusions'; ?></option>
22
+ <option value="pages"><?php echo $wpdb->prefix . 'statistics_pages'; ?></option>
23
  </select>
24
  <p class="description"><?php _e('Select the table for the output file.', 'wp_statistics'); ?></p>
25
  </td>
includes/optimization/tabs/wps-optimization-purging.php CHANGED
@@ -127,11 +127,11 @@
127
  <td>
128
  <select id="empty-table" name="empty-table">
129
  <option value="0"><?php _e('Please select', 'wp_statistics'); ?></option>
130
- <option value="useronline"><?php echo $table_prefix . 'statistics_useronline'; ?></option>
131
- <option value="visit"><?php echo $table_prefix . 'statistics_visit'; ?></option>
132
- <option value="visitor"><?php echo $table_prefix . 'statistics_visitor'; ?></option>
133
- <option value="exclusions"><?php echo $table_prefix . 'statistics_exclusions'; ?></option>
134
- <option value="pages"><?php echo $table_prefix . 'statistics_pages'; ?></option>
135
  <option value="all"><?php echo __('All','wp_statistics'); ?></option>
136
  </select>
137
  <p class="description"><?php _e('All data table will be lost.', 'wp_statistics'); ?></p>
@@ -173,7 +173,7 @@
173
 
174
  foreach($agents as $agent) {
175
  $aid = preg_replace( "/[^a-zA-Z]/", "", $agent );
176
- echo "<option value='$agent' id='agent-" . $aid . "-id'>" . __($agent, 'wp_statistics') . "</option>";
177
  }
178
  ?>
179
  </select>
@@ -197,7 +197,7 @@
197
 
198
  foreach($platforms as $platform) {
199
  $pid = preg_replace( "/[^a-zA-Z]/", "", $platform );
200
- echo "<option value='$platform' id='platform-" . $pid . "-id'>" . __($platform, 'wp_statistics') . "</option>";
201
  }
202
  ?>
203
  </select>
127
  <td>
128
  <select id="empty-table" name="empty-table">
129
  <option value="0"><?php _e('Please select', 'wp_statistics'); ?></option>
130
+ <option value="useronline"><?php echo $wpdb->prefix . 'statistics_useronline'; ?></option>
131
+ <option value="visit"><?php echo $wpdb->prefix . 'statistics_visit'; ?></option>
132
+ <option value="visitor"><?php echo $wpdb->prefix . 'statistics_visitor'; ?></option>
133
+ <option value="exclusions"><?php echo $wpdb->prefix . 'statistics_exclusions'; ?></option>
134
+ <option value="pages"><?php echo $wpdb->prefix . 'statistics_pages'; ?></option>
135
  <option value="all"><?php echo __('All','wp_statistics'); ?></option>
136
  </select>
137
  <p class="description"><?php _e('All data table will be lost.', 'wp_statistics'); ?></p>
173
 
174
  foreach($agents as $agent) {
175
  $aid = preg_replace( "/[^a-zA-Z]/", "", $agent );
176
+ echo "<option value='$agent' id='agent-" . $aid . "-id'>" . $agent . "</option>";
177
  }
178
  ?>
179
  </select>
197
 
198
  foreach($platforms as $platform) {
199
  $pid = preg_replace( "/[^a-zA-Z]/", "", $platform );
200
+ echo "<option value='$platform' id='platform-" . $pid . "-id'>" . $platform . "</option>";
201
  }
202
  ?>
203
  </select>
includes/optimization/tabs/wps-optimization-resources.php CHANGED
@@ -52,7 +52,7 @@
52
 
53
  <tr valign="top">
54
  <th scope="row">
55
- <?php echo sprintf(__('Number of rows in the %s table', 'wp_statistics'), '<code>' . $table_prefix . 'statistics_' . 'useronline' . '</code>'); ?>:
56
  </th>
57
 
58
  <td>
@@ -63,7 +63,7 @@
63
 
64
  <tr valign="top">
65
  <th scope="row">
66
- <?php echo sprintf(__('Number of rows in the %s table', 'wp_statistics'), '<code>' . $table_prefix . 'statistics_' . 'visit' . '</code>'); ?>:
67
  </th>
68
 
69
  <td>
@@ -74,7 +74,7 @@
74
 
75
  <tr valign="top">
76
  <th scope="row">
77
- <?php echo sprintf(__('Number of rows in the %s table', 'wp_statistics'), '<code>' . $table_prefix . 'statistics_' . 'visitor' . '</code>'); ?>:
78
  </th>
79
 
80
  <td>
@@ -85,7 +85,7 @@
85
 
86
  <tr valign="top">
87
  <th scope="row">
88
- <?php echo sprintf(__('Number of rows in the %s table', 'wp_statistics'), '<code>' . $table_prefix . 'statistics_' . 'exclusions' . '</code>'); ?>:
89
  </th>
90
 
91
  <td>
@@ -96,7 +96,7 @@
96
 
97
  <tr valign="top">
98
  <th scope="row">
99
- <?php echo sprintf(__('Number of rows in the %s table', 'wp_statistics'), '<code>' . $table_prefix . 'statistics_' . 'pages' . '</code>'); ?>:
100
  </th>
101
 
102
  <td>
@@ -107,7 +107,7 @@
107
 
108
  <tr valign="top">
109
  <th scope="row">
110
- <?php echo sprintf(__('Number of rows in the %s table', 'wp_statistics'), '<code>' . $table_prefix . 'statistics_' . 'historical' . '</code>'); ?>:
111
  </th>
112
 
113
  <td>
52
 
53
  <tr valign="top">
54
  <th scope="row">
55
+ <?php echo sprintf(__('Number of rows in the %s table', 'wp_statistics'), '<code>' . $wpdb->prefix . 'statistics_' . 'useronline' . '</code>'); ?>:
56
  </th>
57
 
58
  <td>
63
 
64
  <tr valign="top">
65
  <th scope="row">
66
+ <?php echo sprintf(__('Number of rows in the %s table', 'wp_statistics'), '<code>' . $wpdb->prefix . 'statistics_' . 'visit' . '</code>'); ?>:
67
  </th>
68
 
69
  <td>
74
 
75
  <tr valign="top">
76
  <th scope="row">
77
+ <?php echo sprintf(__('Number of rows in the %s table', 'wp_statistics'), '<code>' . $wpdb->prefix . 'statistics_' . 'visitor' . '</code>'); ?>:
78
  </th>
79
 
80
  <td>
85
 
86
  <tr valign="top">
87
  <th scope="row">
88
+ <?php echo sprintf(__('Number of rows in the %s table', 'wp_statistics'), '<code>' . $wpdb->prefix . 'statistics_' . 'exclusions' . '</code>'); ?>:
89
  </th>
90
 
91
  <td>
96
 
97
  <tr valign="top">
98
  <th scope="row">
99
+ <?php echo sprintf(__('Number of rows in the %s table', 'wp_statistics'), '<code>' . $wpdb->prefix . 'statistics_' . 'pages' . '</code>'); ?>:
100
  </th>
101
 
102
  <td>
107
 
108
  <tr valign="top">
109
  <th scope="row">
110
+ <?php echo sprintf(__('Number of rows in the %s table', 'wp_statistics'), '<code>' . $wpdb->prefix . 'statistics_' . 'historical' . '</code>'); ?>:
111
  </th>
112
 
113
  <td>
includes/settings/tabs/wps-access-level.php CHANGED
@@ -27,7 +27,7 @@ if( $wps_nonce_valid ) {
27
  $_POST['wps_honeypot_postid'] = wp_insert_post( $my_post );
28
  }
29
 
30
- $wps_option_list = array_merge( $wps_option_list, array('wps_read_capability','wps_manage_capability','wps_record_exclusions','wps_robotlist','wps_exclude_ip','wps_exclude_loginpage','wps_exclude_adminpage','wps_force_robot_update','wps_excluded_countries','wps_included_countries','wps_excluded_hosts','wps_robot_threshold','wps_use_honeypot','wps_honeypot_postid','wps_exclude_feeds' ) );
31
 
32
  foreach( $wps_option_list as $option ) {
33
  $new_option = str_replace( "wps_", "", $option );
@@ -262,5 +262,17 @@ if( $wps_nonce_valid ) {
262
  <p class="description"><?php _e('Exclude the RSS feeds for registering as a hit.', 'wp_statistics'); ?></p>
263
  </td>
264
  </tr>
 
 
 
 
 
 
 
 
 
 
265
  </tbody>
266
- </table>
 
 
27
  $_POST['wps_honeypot_postid'] = wp_insert_post( $my_post );
28
  }
29
 
30
+ $wps_option_list = array_merge( $wps_option_list, array('wps_read_capability','wps_manage_capability','wps_record_exclusions','wps_robotlist','wps_exclude_ip','wps_exclude_loginpage','wps_exclude_adminpage','wps_force_robot_update','wps_excluded_countries','wps_included_countries','wps_excluded_hosts','wps_robot_threshold','wps_use_honeypot','wps_honeypot_postid','wps_exclude_feeds','wps_excluded_urls' ) );
31
 
32
  foreach( $wps_option_list as $option ) {
33
  $new_option = str_replace( "wps_", "", $option );
262
  <p class="description"><?php _e('Exclude the RSS feeds for registering as a hit.', 'wp_statistics'); ?></p>
263
  </td>
264
  </tr>
265
+ <tr valign="top">
266
+ <th scope="row"><?php _e('Excluded URLs list', 'wp_statistics'); ?>:</th>
267
+ <td>
268
+ <textarea id="wps_excluded_urls" name="wps_excluded_urls" rows="5" cols="80" class="code" dir="ltr"><?php echo $WP_Statistics->get_option('excluded_urls');?></textarea>
269
+ <p class="description"><?php echo __('A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection.', 'wp_statistics'); ?></p>
270
+ <br>
271
+ <p class="description"><?php echo __('Note: this option will NOT handle url parameters (anything after the ?), only to the script name. Entries less than two characters will be ignored.', 'wp_statistics'); ?></p>
272
+ </td>
273
+ </tr>
274
+
275
  </tbody>
276
+ </table>
277
+
278
+ <?php submit_button(__('Update', 'wp_statistics'), 'primary', 'submit'); ?>
includes/settings/tabs/wps-browscap.php CHANGED
@@ -76,4 +76,6 @@ if( $wps_nonce_valid ) {
76
  </tr>
77
 
78
  </tbody>
79
- </table>
 
 
76
  </tr>
77
 
78
  </tbody>
79
+ </table>
80
+
81
+ <?php submit_button(__('Update', 'wp_statistics'), 'primary', 'submit'); ?>
includes/settings/tabs/wps-general.php CHANGED
@@ -17,7 +17,7 @@ if( $wps_nonce_valid ) {
17
  $WP_Statistics->store_option($new_option, $value);
18
  }
19
 
20
- $wps_option_list = array('wps_useronline','wps_visits','wps_visitors','wps_pages','wps_track_all_pages','wps_disable_column','wps_check_online','wps_menu_bar','wps_coefficient','wps_chart_totals','wps_store_ua','wps_hide_notices','wps_delete_manual','wps_hash_ips', 'wps_all_online', 'wps_strip_uri_parameters' );
21
 
22
  // If the IP hash's are enabled, disable storing the complete user agent.
23
  if( array_key_exists( 'wps_hash_ips', $_POST ) ) { $_POST['wps_store_ua'] = ''; }
@@ -315,5 +315,23 @@ if( $wps_nonce_valid ) {
315
  </td>
316
  </tr>
317
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
318
  </tbody>
319
- </table>
 
 
17
  $WP_Statistics->store_option($new_option, $value);
18
  }
19
 
20
+ $wps_option_list = array('wps_useronline','wps_visits','wps_visitors','wps_pages','wps_track_all_pages','wps_disable_column','wps_check_online','wps_menu_bar','wps_coefficient','wps_chart_totals','wps_store_ua','wps_hide_notices','wps_delete_manual','wps_hash_ips', 'wps_all_online', 'wps_strip_uri_parameters', 'wps_override_language' );
21
 
22
  // If the IP hash's are enabled, disable storing the complete user agent.
23
  if( array_key_exists( 'wps_hash_ips', $_POST ) ) { $_POST['wps_store_ua'] = ''; }
315
  </td>
316
  </tr>
317
 
318
+ <tr valign="top">
319
+ <th scope="row" colspan="2"><h3><?php _e('Languages', 'wp_statistics'); ?></h3></th>
320
+ </tr>
321
+
322
+ <tr valign="top">
323
+ <th scope="row">
324
+ <label for="chart-totals"><?php _e('Force English', 'wp_statistics'); ?>:</label>
325
+ </th>
326
+
327
+ <td>
328
+ <input id="override-language" type="checkbox" value="1" name="wps_override_language" <?php echo $WP_Statistics->get_option('override_language')==true? "checked='checked'":'';?>>
329
+ <label for="override-language"><?php _e('Active', 'wp_statistics'); ?></label>
330
+ <p class="description"><?php _e('Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)', 'wp_statistics'); ?></p>
331
+ </td>
332
+ </tr>
333
+
334
  </tbody>
335
+ </table>
336
+
337
+ <?php submit_button(__('Update', 'wp_statistics'), 'primary', 'submit'); ?>
includes/settings/tabs/wps-geoip.php CHANGED
@@ -81,9 +81,9 @@ if( $wps_nonce_valid ) {
81
  $next_schedule = wp_next_scheduled('wp_statistics_geoip_hook');
82
 
83
  if( $next_schedule ) {
84
- echo date( get_option('date_format'), $next_update ) . ' @ ' . date( get_option('time_format'), $next_schedule );
85
  } else {
86
- echo date( get_option('date_format'), $next_update ) . ' @ ' . date( get_option('time_format'), time() );
87
  }
88
 
89
  echo '</code></p>';
@@ -153,4 +153,6 @@ if( $wps_nonce_valid ) {
153
  <?php
154
  } ?>
155
  </tbody>
156
- </table>
 
 
81
  $next_schedule = wp_next_scheduled('wp_statistics_geoip_hook');
82
 
83
  if( $next_schedule ) {
84
+ echo $WP_Statistics->Local_Date( get_option('date_format'), $next_update ) . ' @ ' . $WP_Statistics->Local_Date( get_option('time_format'), $next_schedule );
85
  } else {
86
+ echo $WP_Statistics->Local_Date( get_option('date_format'), $next_update ) . ' @ ' . $WP_Statistics->Local_Date( get_option('time_format'), time() );
87
  }
88
 
89
  echo '</code></p>';
153
  <?php
154
  } ?>
155
  </tbody>
156
+ </table>
157
+
158
+ <?php submit_button(__('Update', 'wp_statistics'), 'primary', 'submit'); ?>
includes/settings/tabs/wps-maintenance.php CHANGED
@@ -55,4 +55,6 @@ if( $wps_nonce_valid ) {
55
  </tr>
56
 
57
  </tbody>
58
- </table>
 
 
55
  </tr>
56
 
57
  </tbody>
58
+ </table>
59
+
60
+ <?php submit_button(__('Update', 'wp_statistics'), 'primary', 'submit'); ?>
includes/settings/tabs/wps-notifications.php CHANGED
@@ -196,4 +196,6 @@ if( $wps_nonce_valid ) {
196
  </td>
197
  </tr>
198
  </tbody>
199
- </table>
 
 
196
  </td>
197
  </tr>
198
  </tbody>
199
+ </table>
200
+
201
+ <?php submit_button(__('Update', 'wp_statistics'), 'primary', 'submit'); ?>
includes/settings/tabs/wps-overview-display.php CHANGED
@@ -383,4 +383,6 @@ if( $wps_admin ) {
383
  </td>
384
  </tr>
385
  </tbody>
386
- </table>
 
 
383
  </td>
384
  </tr>
385
  </tbody>
386
+ </table>
387
+
388
+ <?php submit_button(__('Update', 'wp_statistics'), 'primary', 'submit'); ?>
includes/settings/tabs/wps-removal.php CHANGED
@@ -37,4 +37,6 @@ if( $wps_nonce_valid ) {
37
  </tr>
38
 
39
  </tbody>
40
- </table>
 
 
37
  </tr>
38
 
39
  </tbody>
40
+ </table>
41
+
42
+ <?php submit_button(__('Update', 'wp_statistics'), 'primary', 'submit'); ?>
includes/settings/wps-settings.php CHANGED
@@ -143,11 +143,6 @@ switch( $selected_tab )
143
  <div id="about">
144
  <?php include( dirname( __FILE__ ) . '/tabs/wps-about.php' ); ?>
145
  </div>
146
-
147
- </div>
148
-
149
- <div class="submit">
150
- <input id="wps_update_button" type="submit" class="button button-primary" name="Submit" value="<?php _e('Update', 'wp_statistics'); ?>" />
151
  </div>
152
  </form>
153
  </div>
143
  <div id="about">
144
  <?php include( dirname( __FILE__ ) . '/tabs/wps-about.php' ); ?>
145
  </div>
 
 
 
 
 
146
  </div>
147
  </form>
148
  </div>
languages/default.mo CHANGED
Binary file
languages/default.po CHANGED
@@ -2,13 +2,13 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WP Statistics 8.7.2\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-statistics\n"
7
- "POT-Creation-Date: 2015-01-23 17:13+0330\n"
8
- "PO-Revision-Date: 2015-01-23 17:13+0330\n"
9
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
10
- "Language-Team: WP Statistics\n"
11
- "Language: en_US\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
@@ -52,7 +52,7 @@ msgid "Top 10 Pages"
52
  msgstr ""
53
 
54
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
55
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:30
56
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
57
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
58
  msgid "Recent Visitors"
@@ -102,13 +102,46 @@ msgstr ""
102
  msgid "This post is not yet published."
103
  msgstr ""
104
 
105
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  msgid ""
107
  "Unable to load the GeoIP database, make sure you have downloaded it in the "
108
  "settings page."
109
  msgstr ""
110
 
111
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:50
112
  #, php-format
113
  msgid "Updated %s GeoIP records in the visitors database."
114
  msgstr ""
@@ -144,10 +177,10 @@ msgstr ""
144
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
145
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
147
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
148
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
149
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
150
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:60
151
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
152
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
153
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
@@ -173,8 +206,8 @@ msgstr ""
173
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
174
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
175
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
176
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
177
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:363
178
  msgid "Browsers"
179
  msgstr ""
180
 
@@ -203,80 +236,143 @@ msgid ""
203
  "may not reflect current statistics!"
204
  msgstr ""
205
 
206
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  msgid "Exclusions Statistics"
208
  msgstr ""
209
 
210
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
211
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
212
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
213
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
214
  msgid "10 Days"
215
  msgstr ""
216
 
217
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
219
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
220
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
221
  msgid "20 Days"
222
  msgstr ""
223
 
224
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
225
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
228
  msgid "30 Days"
229
  msgstr ""
230
 
231
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
232
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
233
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
235
  msgid "2 Months"
236
  msgstr ""
237
 
238
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
239
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
240
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
241
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
242
  msgid "3 Months"
243
  msgstr ""
244
 
245
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
247
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
248
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
249
  msgid "6 Months"
250
  msgstr ""
251
 
252
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
254
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
255
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
256
  msgid "9 Months"
257
  msgstr ""
258
 
259
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
260
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
261
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
263
  msgid "1 Year"
264
  msgstr ""
265
 
266
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
267
  #, php-format
268
  msgid "Total Exclusions: %s"
269
  msgstr ""
270
 
271
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
272
  msgid "Exclusions Statistical Chart"
273
  msgstr ""
274
 
275
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
276
  msgid "Excluded hits in the last"
277
  msgstr ""
278
 
279
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
280
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
281
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
282
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
@@ -285,7 +381,7 @@ msgstr ""
285
  msgid "days"
286
  msgstr ""
287
 
288
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:118
289
  msgid "Number of excluded hits"
290
  msgstr ""
291
 
@@ -315,13 +411,21 @@ msgstr ""
315
  msgid "Visitor"
316
  msgstr ""
317
 
318
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:62
 
 
 
 
 
 
 
 
319
  msgid "Latest Search Word Statistics"
320
  msgstr ""
321
 
322
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:97
323
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
324
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:48
325
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
326
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
327
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
@@ -329,9 +433,9 @@ msgstr ""
329
  msgid "#hash#"
330
  msgstr ""
331
 
332
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:102
333
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:102
334
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:53
335
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
336
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
337
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
@@ -340,34 +444,27 @@ msgstr ""
340
  msgid "Map"
341
  msgstr ""
342
 
343
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
344
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
345
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:107
346
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
347
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
348
  msgid "Page"
349
  msgstr ""
350
 
351
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
352
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
353
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:107
354
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
355
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
356
  msgid "From"
357
  msgstr ""
358
 
359
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
360
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
361
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
362
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
363
- msgid "All"
364
- msgstr ""
365
-
366
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
367
  msgid "Search for"
368
  msgstr ""
369
 
370
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
371
  msgid "Recent Visitor Statistics"
372
  msgstr ""
373
 
@@ -376,11 +473,11 @@ msgstr ""
376
  msgid "Online Users"
377
  msgstr ""
378
 
379
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:73
380
  msgid "Online for "
381
  msgstr ""
382
 
383
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:98
384
  msgid "Currently there are no users online in the site."
385
  msgstr ""
386
 
@@ -407,13 +504,6 @@ msgstr ""
407
  msgid "Number of referrals"
408
  msgstr ""
409
 
410
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
411
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
412
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
413
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:104
414
- msgid "Total"
415
- msgstr ""
416
-
417
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:11
418
  msgid "Top Countries"
419
  msgstr ""
@@ -455,7 +545,7 @@ msgid "Top 5 Page Trending Stats"
455
  msgstr ""
456
 
457
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
458
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:58
459
  msgid "Number of Hits"
460
  msgstr ""
461
 
@@ -534,6 +624,10 @@ msgstr ""
534
  msgid "Today Visitors Map"
535
  msgstr ""
536
 
 
 
 
 
537
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:31
538
  msgid "Address"
539
  msgstr ""
@@ -553,15 +647,15 @@ msgid "Yesterday"
553
  msgstr ""
554
 
555
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
556
- msgid "Week"
557
  msgstr ""
558
 
559
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
560
- msgid "Month"
561
  msgstr ""
562
 
563
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
564
- msgid "Year"
565
  msgstr ""
566
 
567
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
@@ -587,9 +681,9 @@ msgid "Time: %s"
587
  msgstr ""
588
 
589
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
590
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:215
591
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:293
592
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
593
  msgid "Hits"
594
  msgstr ""
595
 
@@ -628,7 +722,7 @@ msgstr ""
628
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
629
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
630
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
631
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
632
  msgid "Please select the desired items."
633
  msgstr ""
634
 
@@ -676,8 +770,8 @@ msgstr ""
676
 
677
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
678
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
679
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:290
680
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:364
681
  msgid "Countries"
682
  msgstr ""
683
 
@@ -770,8 +864,8 @@ msgstr ""
770
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
771
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
772
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
773
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
774
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
775
  msgid "Visitors"
776
  msgstr ""
777
 
@@ -1327,8 +1421,8 @@ msgid ""
1327
  msgstr ""
1328
 
1329
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
1330
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
1331
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
1332
  msgid "Exclusions"
1333
  msgstr ""
1334
 
@@ -1527,6 +1621,22 @@ msgstr ""
1527
  msgid "Exclude the RSS feeds for registering as a hit."
1528
  msgstr ""
1529
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1530
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
1531
  msgid "browscap settings"
1532
  msgstr ""
@@ -1550,6 +1660,7 @@ msgstr ""
1550
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
1551
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
1552
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
 
1553
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
1554
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
1555
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
@@ -1669,8 +1780,8 @@ msgstr ""
1669
 
1670
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
1671
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
1672
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:295
1673
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
1674
  msgid "Pages"
1675
  msgstr ""
1676
 
@@ -1764,6 +1875,20 @@ msgid ""
1764
  "referrals"
1765
  msgstr ""
1766
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1767
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:27
1768
  msgid "GeoIP settings"
1769
  msgstr ""
@@ -1909,19 +2034,10 @@ msgstr ""
1909
  msgid "Update Reports"
1910
  msgstr ""
1911
 
1912
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
1913
- msgid "Browscap"
1914
- msgstr ""
1915
-
1916
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
1917
  msgid "Send a report whenever the browscap.ini is updated."
1918
  msgstr ""
1919
 
1920
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
1921
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
1922
- msgid "GeoIP"
1923
- msgstr ""
1924
-
1925
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
1926
  msgid "Send a report whenever the GeoIP database is updated."
1927
  msgstr ""
@@ -1944,7 +2060,7 @@ msgstr ""
1944
 
1945
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
1946
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
1947
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
1948
  msgid "Statistical reporting"
1949
  msgstr ""
1950
 
@@ -1999,7 +2115,7 @@ msgstr ""
1999
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
2000
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
2001
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
2002
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:464
2003
  msgid "User Online"
2004
  msgstr ""
2005
 
@@ -2098,10 +2214,6 @@ msgstr ""
2098
  msgid "Map type"
2099
  msgstr ""
2100
 
2101
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
2102
- msgid "Google"
2103
- msgstr ""
2104
-
2105
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
2106
  msgid "JQVMap"
2107
  msgstr ""
@@ -2277,8 +2389,8 @@ msgid "Once Every 4 Weeks"
2277
  msgstr ""
2278
 
2279
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
2280
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:284
2281
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:321
2282
  msgid "Statistics"
2283
  msgstr ""
2284
 
@@ -2364,7 +2476,7 @@ msgid "Items"
2364
  msgstr ""
2365
 
2366
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
2367
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:489
2368
  msgid "Yesterday visit"
2369
  msgstr ""
2370
 
@@ -2377,177 +2489,177 @@ msgid "Select type of search engine"
2377
  msgstr ""
2378
 
2379
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
 
 
 
 
 
 
 
 
2380
  msgid ""
2381
  "ERROR: WP Statistics has detected an unsupported version of PHP, WP "
2382
  "Statistics will not function without PHP Version "
2383
  msgstr ""
2384
 
2385
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
2386
  msgid " or higher!"
2387
  msgstr ""
2388
 
2389
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
2390
  msgid "Your current PHP version is"
2391
  msgstr ""
2392
 
2393
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:42
2394
  msgid "WP Statistics has been removed, please disable and delete it."
2395
  msgstr ""
2396
 
2397
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:53
2398
- msgid "WP Statistics"
2399
- msgstr ""
2400
-
2401
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:54
2402
- msgid "Complete statistics for your WordPress site."
2403
- msgstr ""
2404
-
2405
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
2406
  #, php-format
2407
  msgid ""
2408
  "Online user tracking in WP Statistics is not enabled, please go to %s and "
2409
  "enable it."
2410
  msgstr ""
2411
 
2412
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
2413
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
2414
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
2415
  msgid "setting page"
2416
  msgstr ""
2417
 
2418
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
2419
  #, php-format
2420
  msgid ""
2421
  "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
2422
  msgstr ""
2423
 
2424
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
2425
  #, php-format
2426
  msgid ""
2427
  "Visitor tracking in WP Statistics is not enabled, please go to %s and enable "
2428
  "it."
2429
  msgstr ""
2430
 
2431
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
2432
  #, php-format
2433
  msgid ""
2434
  "GeoIP collection is not active, please go to %s and enable this feature."
2435
  msgstr ""
2436
 
2437
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
2438
  msgid "Setting page > GeoIP"
2439
  msgstr ""
2440
 
2441
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:191
2442
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
2443
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
2444
  msgid "Settings"
2445
  msgstr ""
2446
 
2447
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
2448
  msgid "Click here to visit the plugin on WordPress.org"
2449
  msgstr ""
2450
 
2451
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
2452
  msgid "Visit WordPress.org page"
2453
  msgstr ""
2454
 
2455
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
2456
  msgid "Click here to rate and review this plugin on WordPress.org"
2457
  msgstr ""
2458
 
2459
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
2460
  msgid "Rate this plugin"
2461
  msgstr ""
2462
 
2463
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:250
2464
  msgid "WP Statistics - Hits"
2465
  msgstr ""
2466
 
2467
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:287
2468
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:324
2469
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:362
2470
  msgid "Overview"
2471
  msgstr ""
2472
 
2473
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
2474
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
2475
  msgid "Online"
2476
  msgstr ""
2477
 
2478
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
2479
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
2480
  msgid "Referrers"
2481
  msgstr ""
2482
 
2483
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
2484
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
2485
  msgid "Searches"
2486
  msgstr ""
2487
 
2488
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
2489
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
2490
  msgid "Search Words"
2491
  msgstr ""
2492
 
2493
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
2494
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
2495
  msgid "Top Visitors Today"
2496
  msgstr ""
2497
 
2498
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
2499
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
2500
  msgid "Optimization"
2501
  msgstr ""
2502
 
2503
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
2504
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:338
2505
  msgid "Manual"
2506
  msgstr ""
2507
 
2508
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
2509
  msgid "Site"
2510
  msgstr ""
2511
 
2512
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:354
2513
  msgid "Options"
2514
  msgstr ""
2515
 
2516
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:471
2517
  msgid "Today visitor"
2518
  msgstr ""
2519
 
2520
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:477
2521
  msgid "Today visit"
2522
  msgstr ""
2523
 
2524
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:483
2525
  msgid "Yesterday visitor"
2526
  msgstr ""
2527
 
2528
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:495
2529
  msgid "View Stats"
2530
  msgstr ""
2531
 
2532
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
2533
  msgid "Download ODF file"
2534
  msgstr ""
2535
 
2536
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
2537
  msgid "Download HTML file"
2538
  msgstr ""
2539
 
2540
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
2541
  msgid "Manual file not found."
2542
  msgstr ""
2543
 
2544
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
2545
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:702
2546
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
2547
  msgid "You do not have sufficient permissions to access this page."
2548
  msgstr ""
2549
 
2550
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:604
2551
  #, php-format
2552
  msgid ""
2553
  "Plugin tables do not exist in the database! Please re-run the %s install "
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WP Statistics 8.8\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wp-statistics\n"
7
+ "POT-Creation-Date: 2015-03-10 23:53+0330\n"
8
+ "PO-Revision-Date: 2015-03-10 23:54+0330\n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: \n"
11
+ "Language: en\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
52
  msgstr ""
53
 
54
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
55
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:31
56
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
57
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
58
  msgid "Recent Visitors"
102
  msgid "This post is not yet published."
103
  msgstr ""
104
 
105
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:69
106
+ msgid "Hits in the last 20 days"
107
+ msgstr ""
108
+
109
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:393
110
+ msgid "Baidu"
111
+ msgstr ""
112
+
113
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:394
114
+ msgid "Bing"
115
+ msgstr ""
116
+
117
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
118
+ msgid "clearch.org"
119
+ msgstr ""
120
+
121
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
122
+ msgid "DuckDuckGo"
123
+ msgstr ""
124
+
125
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:397
126
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
127
+ msgid "Google"
128
+ msgstr ""
129
+
130
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
131
+ msgid "Yahoo!"
132
+ msgstr ""
133
+
134
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:399
135
+ msgid "Yandex"
136
+ msgstr ""
137
+
138
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:24
139
  msgid ""
140
  "Unable to load the GeoIP database, make sure you have downloaded it in the "
141
  "settings page."
142
  msgstr ""
143
 
144
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:48
145
  #, php-format
146
  msgid "Updated %s GeoIP records in the visitors database."
147
  msgstr ""
177
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
178
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
179
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
180
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:76
181
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
182
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
183
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
184
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
185
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
186
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
206
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
207
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
208
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
209
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
210
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
211
  msgid "Browsers"
212
  msgstr ""
213
 
236
  "may not reflect current statistics!"
237
  msgstr ""
238
 
239
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
240
+ msgid "Robot"
241
+ msgstr ""
242
+
243
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
244
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
245
+ msgid "Browscap"
246
+ msgstr ""
247
+
248
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
249
+ msgid "IP Match"
250
+ msgstr ""
251
+
252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
253
+ msgid "Self Referral"
254
+ msgstr ""
255
+
256
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
257
+ msgid "Login Page"
258
+ msgstr ""
259
+
260
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
261
+ msgid "Admin Page"
262
+ msgstr ""
263
+
264
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
265
+ msgid "User Role"
266
+ msgstr ""
267
+
268
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
269
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
270
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
271
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
272
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:104
273
+ msgid "Total"
274
+ msgstr ""
275
+
276
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
277
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
278
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
279
+ msgid "GeoIP"
280
+ msgstr ""
281
+
282
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
283
+ msgid "Hostname"
284
+ msgstr ""
285
+
286
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
287
+ msgid "Robot Threshold"
288
+ msgstr ""
289
+
290
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
291
+ msgid "Honey Pot"
292
+ msgstr ""
293
+
294
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
295
+ msgid "Feeds"
296
+ msgstr ""
297
+
298
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
299
+ msgid "Excluded URL"
300
+ msgstr ""
301
+
302
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
303
  msgid "Exclusions Statistics"
304
  msgstr ""
305
 
306
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
307
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
308
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
309
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
310
  msgid "10 Days"
311
  msgstr ""
312
 
313
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
314
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
315
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
316
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
317
  msgid "20 Days"
318
  msgstr ""
319
 
320
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
321
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
322
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
323
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
324
  msgid "30 Days"
325
  msgstr ""
326
 
327
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
328
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
329
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
330
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
331
  msgid "2 Months"
332
  msgstr ""
333
 
334
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
335
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
336
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
337
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
338
  msgid "3 Months"
339
  msgstr ""
340
 
341
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
343
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
344
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
345
  msgid "6 Months"
346
  msgstr ""
347
 
348
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:65
349
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
351
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
352
  msgid "9 Months"
353
  msgstr ""
354
 
355
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:66
356
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
357
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
358
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
359
  msgid "1 Year"
360
  msgstr ""
361
 
362
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
363
  #, php-format
364
  msgid "Total Exclusions: %s"
365
  msgstr ""
366
 
367
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:77
368
  msgid "Exclusions Statistical Chart"
369
  msgstr ""
370
 
371
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
372
  msgid "Excluded hits in the last"
373
  msgstr ""
374
 
375
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
376
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
377
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
378
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
381
  msgid "days"
382
  msgstr ""
383
 
384
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:120
385
  msgid "Number of excluded hits"
386
  msgstr ""
387
 
411
  msgid "Visitor"
412
  msgstr ""
413
 
414
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:46
415
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:33
416
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
417
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
418
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
419
+ msgid "All"
420
+ msgstr ""
421
+
422
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:64
423
  msgid "Latest Search Word Statistics"
424
  msgstr ""
425
 
426
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:99
427
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
428
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:50
429
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
430
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
431
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
433
  msgid "#hash#"
434
  msgstr ""
435
 
436
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:104
437
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:103
438
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:55
439
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
440
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
441
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
444
  msgid "Map"
445
  msgstr ""
446
 
447
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
448
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
449
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
450
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
452
  msgid "Page"
453
  msgstr ""
454
 
455
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
456
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
457
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
458
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
459
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
460
  msgid "From"
461
  msgstr ""
462
 
463
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
 
 
 
 
 
 
 
464
  msgid "Search for"
465
  msgstr ""
466
 
467
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:65
468
  msgid "Recent Visitor Statistics"
469
  msgstr ""
470
 
473
  msgid "Online Users"
474
  msgstr ""
475
 
476
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:75
477
  msgid "Online for "
478
  msgstr ""
479
 
480
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:100
481
  msgid "Currently there are no users online in the site."
482
  msgstr ""
483
 
504
  msgid "Number of referrals"
505
  msgstr ""
506
 
 
 
 
 
 
 
 
507
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:11
508
  msgid "Top Countries"
509
  msgstr ""
545
  msgstr ""
546
 
547
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
548
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:60
549
  msgid "Number of Hits"
550
  msgstr ""
551
 
624
  msgid "Today Visitors Map"
625
  msgstr ""
626
 
627
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:6
628
+ msgid "Page Trending Stats"
629
+ msgstr ""
630
+
631
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:31
632
  msgid "Address"
633
  msgstr ""
647
  msgstr ""
648
 
649
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
650
+ msgid "Last 7 Days (Week)"
651
  msgstr ""
652
 
653
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
654
+ msgid "Last 30 Days (Month)"
655
  msgstr ""
656
 
657
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
658
+ msgid "Last 365 Days (Year)"
659
  msgstr ""
660
 
661
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
681
  msgstr ""
682
 
683
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
684
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:219
685
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
686
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
687
  msgid "Hits"
688
  msgstr ""
689
 
722
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
723
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
724
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
725
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:80
726
  msgid "Please select the desired items."
727
  msgstr ""
728
 
770
 
771
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
772
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
773
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
774
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
775
  msgid "Countries"
776
  msgstr ""
777
 
864
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
865
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
866
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
867
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:304
868
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:377
869
  msgid "Visitors"
870
  msgstr ""
871
 
1421
  msgstr ""
1422
 
1423
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
1424
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
1425
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
1426
  msgid "Exclusions"
1427
  msgstr ""
1428
 
1621
  msgid "Exclude the RSS feeds for registering as a hit."
1622
  msgstr ""
1623
 
1624
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:266
1625
+ msgid "Excluded URLs list"
1626
+ msgstr ""
1627
+
1628
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:269
1629
+ msgid ""
1630
+ "A list of local urls (ie. /wordpress/about, one per line) to exclude from "
1631
+ "statistics collection."
1632
+ msgstr ""
1633
+
1634
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
1635
+ msgid ""
1636
+ "Note: this option will NOT handle url parameters (anything after the ?), "
1637
+ "only to the script name. Entries less than two characters will be ignored."
1638
+ msgstr ""
1639
+
1640
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
1641
  msgid "browscap settings"
1642
  msgstr ""
1660
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
1661
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
1662
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
1663
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:329
1664
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
1665
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
1666
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
1780
 
1781
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
1782
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
1783
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
1784
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
1785
  msgid "Pages"
1786
  msgstr ""
1787
 
1875
  "referrals"
1876
  msgstr ""
1877
 
1878
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
1879
+ msgid "Languages"
1880
+ msgstr ""
1881
+
1882
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:324
1883
+ msgid "Force English"
1884
+ msgstr ""
1885
+
1886
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:330
1887
+ msgid ""
1888
+ "Do not use the translations and instead use the English defaults for WP "
1889
+ "Statistics (requires two page loads)"
1890
+ msgstr ""
1891
+
1892
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:27
1893
  msgid "GeoIP settings"
1894
  msgstr ""
2034
  msgid "Update Reports"
2035
  msgstr ""
2036
 
 
 
 
 
2037
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
2038
  msgid "Send a report whenever the browscap.ini is updated."
2039
  msgstr ""
2040
 
 
 
 
 
 
2041
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
2042
  msgid "Send a report whenever the GeoIP database is updated."
2043
  msgstr ""
2060
 
2061
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
2062
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
2063
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
2064
  msgid "Statistical reporting"
2065
  msgstr ""
2066
 
2115
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
2116
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
2117
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
2118
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:468
2119
  msgid "User Online"
2120
  msgstr ""
2121
 
2214
  msgid "Map type"
2215
  msgstr ""
2216
 
 
 
 
 
2217
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
2218
  msgid "JQVMap"
2219
  msgstr ""
2389
  msgstr ""
2390
 
2391
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
2392
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
2393
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:325
2394
  msgid "Statistics"
2395
  msgstr ""
2396
 
2476
  msgstr ""
2477
 
2478
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
2479
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:493
2480
  msgid "Yesterday visit"
2481
  msgstr ""
2482
 
2489
  msgstr ""
2490
 
2491
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
2492
+ msgid "WP Statistics"
2493
+ msgstr ""
2494
+
2495
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:28
2496
+ msgid "Complete statistics for your WordPress site."
2497
+ msgstr ""
2498
+
2499
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
2500
  msgid ""
2501
  "ERROR: WP Statistics has detected an unsupported version of PHP, WP "
2502
  "Statistics will not function without PHP Version "
2503
  msgstr ""
2504
 
2505
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
2506
  msgid " or higher!"
2507
  msgstr ""
2508
 
2509
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
2510
  msgid "Your current PHP version is"
2511
  msgstr ""
2512
 
2513
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:51
2514
  msgid "WP Statistics has been removed, please disable and delete it."
2515
  msgstr ""
2516
 
2517
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
 
 
 
 
 
 
 
 
2518
  #, php-format
2519
  msgid ""
2520
  "Online user tracking in WP Statistics is not enabled, please go to %s and "
2521
  "enable it."
2522
  msgstr ""
2523
 
2524
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
2525
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
2526
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
2527
  msgid "setting page"
2528
  msgstr ""
2529
 
2530
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
2531
  #, php-format
2532
  msgid ""
2533
  "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
2534
  msgstr ""
2535
 
2536
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
2537
  #, php-format
2538
  msgid ""
2539
  "Visitor tracking in WP Statistics is not enabled, please go to %s and enable "
2540
  "it."
2541
  msgstr ""
2542
 
2543
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
2544
  #, php-format
2545
  msgid ""
2546
  "GeoIP collection is not active, please go to %s and enable this feature."
2547
  msgstr ""
2548
 
2549
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
2550
  msgid "Setting page > GeoIP"
2551
  msgstr ""
2552
 
2553
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
2554
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
2555
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
2556
  msgid "Settings"
2557
  msgstr ""
2558
 
2559
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
2560
  msgid "Click here to visit the plugin on WordPress.org"
2561
  msgstr ""
2562
 
2563
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
2564
  msgid "Visit WordPress.org page"
2565
  msgstr ""
2566
 
2567
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
2568
  msgid "Click here to rate and review this plugin on WordPress.org"
2569
  msgstr ""
2570
 
2571
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
2572
  msgid "Rate this plugin"
2573
  msgstr ""
2574
 
2575
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:254
2576
  msgid "WP Statistics - Hits"
2577
  msgstr ""
2578
 
2579
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:291
2580
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
2581
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
2582
  msgid "Overview"
2583
  msgstr ""
2584
 
2585
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
2586
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
2587
  msgid "Online"
2588
  msgstr ""
2589
 
2590
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
2591
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
2592
  msgid "Referrers"
2593
  msgstr ""
2594
 
2595
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:301
2596
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
2597
  msgid "Searches"
2598
  msgstr ""
2599
 
2600
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
2601
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
2602
  msgid "Search Words"
2603
  msgstr ""
2604
 
2605
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
2606
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:376
2607
  msgid "Top Visitors Today"
2608
  msgstr ""
2609
 
2610
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:306
2611
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
2612
  msgid "Optimization"
2613
  msgstr ""
2614
 
2615
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:311
2616
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:342
2617
  msgid "Manual"
2618
  msgstr ""
2619
 
2620
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:357
2621
  msgid "Site"
2622
  msgstr ""
2623
 
2624
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:358
2625
  msgid "Options"
2626
  msgstr ""
2627
 
2628
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:475
2629
  msgid "Today visitor"
2630
  msgstr ""
2631
 
2632
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:481
2633
  msgid "Today visit"
2634
  msgstr ""
2635
 
2636
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:487
2637
  msgid "Yesterday visitor"
2638
  msgstr ""
2639
 
2640
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
2641
  msgid "View Stats"
2642
  msgstr ""
2643
 
2644
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:523
2645
  msgid "Download ODF file"
2646
  msgstr ""
2647
 
2648
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
2649
  msgid "Download HTML file"
2650
  msgstr ""
2651
 
2652
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:528
2653
  msgid "Manual file not found."
2654
  msgstr ""
2655
 
2656
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
2657
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:706
2658
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:740
2659
  msgid "You do not have sufficient permissions to access this page."
2660
  msgstr ""
2661
 
2662
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:608
2663
  #, php-format
2664
  msgid ""
2665
  "Plugin tables do not exist in the database! Please re-run the %s install "
languages/wp_statistics-ar.mo CHANGED
Binary file
languages/wp_statistics-ar.po CHANGED
@@ -2,17 +2,129 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-01-27 19:28-0500\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
10
- "X-Generator: Poedit 1.7.4\n"
11
  "Project-Id-Version: WP Statistics\n"
12
- "POT-Creation-Date: \n"
13
- "Last-Translator: \n"
14
- "Language-Team: \n"
15
- "Language: ar\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
18
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
@@ -62,8 +174,8 @@ msgstr "حساب توجيه النقرات لكل زائر. حالياً %s."
62
 
63
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
64
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
65
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:295
66
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
67
  msgid "Pages"
68
  msgstr "الصفحات"
69
 
@@ -263,6 +375,7 @@ msgstr "أفصل قائمة عناوين البريد الإلكتروني بف
263
  msgid "Update Reports"
264
  msgstr "تقارير التحديث"
265
 
 
266
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
267
  msgid "Browscap"
268
  msgstr "Browscap"
@@ -271,6 +384,7 @@ msgstr "Browscap"
271
  msgid "Send a report whenever the browscap.ini is updated."
272
  msgstr "إرسال تقرير كلما يتم تحديث browscap.ini."
273
 
 
274
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
275
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
276
  msgid "GeoIP"
@@ -298,7 +412,7 @@ msgstr "إرسال تقرير كلما تتم ترقية البرنامج الم
298
 
299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
300
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
301
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
302
  msgid "Statistical reporting"
303
  msgstr "تقارير الإحصائيات"
304
 
@@ -349,7 +463,7 @@ msgstr "أي رمز قصير بدعم من مثبت ووردبريس، وتشم
349
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
351
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
352
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:464
353
  msgid "User Online"
354
  msgstr "المتواجدين الآن"
355
 
@@ -448,6 +562,7 @@ msgstr "تعطيل القطع لمحرر الصفحة/المشاركة"
448
  msgid "Map type"
449
  msgstr "نوع الخريطة"
450
 
 
451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
452
  msgid "Google"
453
  msgstr "جوجل"
@@ -610,8 +725,8 @@ msgid "Once Every 4 Weeks"
610
  msgstr "مرة كل 4 أسابيع"
611
 
612
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
613
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:284
614
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:321
615
  msgid "Statistics"
616
  msgstr "الاحصائيات"
617
 
@@ -697,7 +812,7 @@ msgid "Items"
697
  msgstr "البنود"
698
 
699
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
700
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:489
701
  msgid "Yesterday visit"
702
  msgstr "زيارات الأمس"
703
 
@@ -709,166 +824,166 @@ msgstr "محرك بحث المشارين"
709
  msgid "Select type of search engine"
710
  msgstr "حدد نوع من محرك البحث"
711
 
712
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
713
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
714
  msgstr "خطأ: كشف احصائيات ووردبريس أن إصدار PHP لديك غير معتمد، و احصائيات ووردبريس لن تعمل دون PHP النسخة"
715
 
716
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
717
  msgid " or higher!"
718
  msgstr "أو أعلى!"
719
 
720
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
721
  msgid "Your current PHP version is"
722
  msgstr "نسخة PHP الحالي هو"
723
 
724
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:42
725
  msgid "WP Statistics has been removed, please disable and delete it."
726
  msgstr "تمت إزالة احصائيات ووردبريس، يرجى التعطيل والحذف."
727
 
728
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:53
729
  msgid "WP Statistics"
730
  msgstr "احصائيات ووردبريس"
731
 
732
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:54
733
  msgid "Complete statistics for your WordPress site."
734
  msgstr "إحصاءات كاملة لموقع ووردبريس الخاص بك."
735
 
736
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
737
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
738
  msgstr "لم يتم تمكين تتبع المستخدم عبر الإنترنت في احصائيات ووردبريس، يرجى الذهاب إلى %s وتمكينه."
739
 
740
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
741
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
742
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
743
  msgid "setting page"
744
  msgstr "صفحة الإعدادات"
745
 
746
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
747
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
748
  msgstr "تتبع النقرات في احصائيات ووردبريس لم يتم تمكينه، يرجى الذهاب إلى %s وتمكينه."
749
 
750
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
751
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
752
  msgstr "لم يتم تمكين تتبع الزائر في احصائيات ووردبريس، يرجى الذهاب إلى %s وتمكينه."
753
 
754
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
755
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
756
  msgstr "مجموعة GeoIP غير نشطه، يرجى الذهاب إلى %s وتمكين هذه الميزة."
757
 
758
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
759
  msgid "Setting page > GeoIP"
760
  msgstr "صفحة الإعدادات > GeoIP"
761
 
762
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:191
763
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
764
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
765
  msgid "Settings"
766
  msgstr "الإعدادات"
767
 
768
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
769
  msgid "Click here to visit the plugin on WordPress.org"
770
  msgstr "انقر هنا لزيارة صفحة الإضافة على WordPress.org"
771
 
772
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
773
  msgid "Visit WordPress.org page"
774
  msgstr "زيارة صفحة WordPress.org"
775
 
776
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
777
  msgid "Click here to rate and review this plugin on WordPress.org"
778
  msgstr "أنقر هنا لمراجهة وتقييم الإضافة على WordPress.org"
779
 
780
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
781
  msgid "Rate this plugin"
782
  msgstr "ضع تقييمك لهذه الاضافة"
783
 
784
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:250
785
  msgid "WP Statistics - Hits"
786
  msgstr "احصائيات ووردبريس - الزيارات"
787
 
788
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:287
789
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:324
790
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:362
791
  msgid "Overview"
792
  msgstr "نظرة عامة"
793
 
794
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
795
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
796
  msgid "Online"
797
  msgstr "المتواجدون"
798
 
799
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
800
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
801
  msgid "Referrers"
802
  msgstr "الدعوات"
803
 
804
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
805
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
806
  msgid "Searches"
807
  msgstr "عمليات البحث"
808
 
809
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
810
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
811
  msgid "Search Words"
812
  msgstr "كلمات البحث"
813
 
814
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
815
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
816
  msgid "Top Visitors Today"
817
  msgstr "أعلى زوار اليوم"
818
 
819
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
820
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
821
  msgid "Optimization"
822
  msgstr "التحسين"
823
 
824
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
825
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:338
826
  msgid "Manual"
827
  msgstr "الدليل"
828
 
829
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
830
  msgid "Site"
831
  msgstr "موقع"
832
 
833
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:354
834
  msgid "Options"
835
  msgstr "خيارات"
836
 
837
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:471
838
  msgid "Today visitor"
839
  msgstr "زوار اليوم"
840
 
841
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:477
842
  msgid "Today visit"
843
  msgstr "زيارات اليوم"
844
 
845
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:483
846
  msgid "Yesterday visitor"
847
  msgstr "زيارات الأمس"
848
 
849
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:495
850
  msgid "View Stats"
851
  msgstr "عرض الإحصائيات"
852
 
853
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
854
  msgid "Download ODF file"
855
  msgstr "تحميل ملف ODF"
856
 
857
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
858
  msgid "Download HTML file"
859
  msgstr "تحميل ملف HTML"
860
 
861
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
862
  msgid "Manual file not found."
863
  msgstr "لم يتم العثور على ملف الدليل."
864
 
865
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
866
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:702
867
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
868
  msgid "You do not have sufficient permissions to access this page."
869
  msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
870
 
871
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:604
872
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
873
  msgstr "جداول البرنامج المساعد لا وجود لها في قاعدة البيانات! يرجى إعادة تشغيل %s التثبيت الروتيني %s."
874
 
@@ -952,7 +1067,7 @@ msgid "Top 10 Pages"
952
  msgstr "أفضل 10 صفحات"
953
 
954
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
955
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:30
956
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
957
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
958
  msgid "Recent Visitors"
@@ -1002,11 +1117,11 @@ msgstr "نظرة عامة لإحصائيات ووردبريس"
1002
  msgid "This post is not yet published."
1003
  msgstr "لم يتم نشر هذا المقال حتى الآن."
1004
 
1005
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
1006
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1007
  msgstr "غير قادر على تحميل قاعدة البيانات GeoIP، تأكد من أنك قمت بتنزيلها في صفحة الإعدادات."
1008
 
1009
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:50
1010
  msgid "Updated %s GeoIP records in the visitors database."
1011
  msgstr "تحديث السجلات %s GeoIP في قاعدة بيانات الزوار."
1012
 
@@ -1039,10 +1154,10 @@ msgstr "إحصائيات المتصفح"
1039
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1040
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1041
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1042
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
1043
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1044
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
1045
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:60
1046
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1047
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1048
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
@@ -1068,8 +1183,8 @@ msgstr "انقر للتبديل"
1068
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1070
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1071
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
1072
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:363
1073
  msgid "Browsers"
1074
  msgstr "المتصفحات"
1075
 
@@ -1095,79 +1210,79 @@ msgstr "الإصدار %s"
1095
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1096
  msgstr "تنبيه: لم يتم تعيين الاستثناءات حاليا ليتم تسجيلها، قد لا تستطيع عكس نتائج الإحصائيات الحالية أدناه!"
1097
 
1098
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
1099
  msgid "Exclusions Statistics"
1100
  msgstr "استثناءات الاحصائيات"
1101
 
1102
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
1103
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1104
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1105
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1106
  msgid "10 Days"
1107
  msgstr "10 أيام"
1108
 
1109
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
1110
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1111
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1112
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1113
  msgid "20 Days"
1114
  msgstr "20 يوم"
1115
 
1116
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1117
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1118
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1119
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1120
  msgid "30 Days"
1121
  msgstr "30 يو م"
1122
 
1123
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1124
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1125
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1127
  msgid "2 Months"
1128
  msgstr "شهرين"
1129
 
1130
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1131
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1132
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1133
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1134
  msgid "3 Months"
1135
  msgstr "3 أشهر"
1136
 
1137
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1138
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1139
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1140
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1141
  msgid "6 Months"
1142
  msgstr "6 أشهر"
1143
 
1144
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1145
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1147
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1148
  msgid "9 Months"
1149
  msgstr "9 أشهر"
1150
 
1151
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1152
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1153
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1155
  msgid "1 Year"
1156
  msgstr "سنة"
1157
 
1158
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
1159
  msgid "Total Exclusions: %s"
1160
  msgstr "مجموع الاستثناءات: %s"
1161
 
1162
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
1163
  msgid "Exclusions Statistical Chart"
1164
  msgstr "الرسم البياني لإحصائيات الاستثناءات"
1165
 
1166
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1167
  msgid "Excluded hits in the last"
1168
  msgstr "استبعاد النقرات في الأخير"
1169
 
1170
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1171
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1172
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1173
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
@@ -1176,7 +1291,7 @@ msgstr "استبعاد النقرات في الأخير"
1176
  msgid "days"
1177
  msgstr "أيام"
1178
 
1179
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:118
1180
  msgid "Number of excluded hits"
1181
  msgstr "عدد الزيارات المستبعدة"
1182
 
@@ -1206,13 +1321,13 @@ msgstr "زيارة"
1206
  msgid "Visitor"
1207
  msgstr "زائر"
1208
 
1209
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:62
1210
  msgid "Latest Search Word Statistics"
1211
  msgstr "أحصائيات أحدث كلمات البحث"
1212
 
1213
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:97
1214
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
1215
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:48
1216
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1217
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
@@ -1220,9 +1335,9 @@ msgstr "أحصائيات أحدث كلمات البحث"
1220
  msgid "#hash#"
1221
  msgstr "#hash#"
1222
 
1223
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:102
1224
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:102
1225
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:53
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1228
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
@@ -1231,34 +1346,35 @@ msgstr "#hash#"
1231
  msgid "Map"
1232
  msgstr "خريطة"
1233
 
1234
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1235
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1236
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1237
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1238
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1239
  msgid "Page"
1240
  msgstr "صفحة"
1241
 
1242
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1243
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1244
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1245
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1247
  msgid "From"
1248
  msgstr "من"
1249
 
1250
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
 
1251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1252
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1254
  msgid "All"
1255
  msgstr "الكل"
1256
 
1257
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
1258
  msgid "Search for"
1259
  msgstr "البحث عن"
1260
 
1261
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
1262
  msgid "Recent Visitor Statistics"
1263
  msgstr "آخر إحصائيات الزوار"
1264
 
@@ -1267,7 +1383,7 @@ msgstr "آخر إحصائيات الزوار"
1267
  msgid "Online Users"
1268
  msgstr "المستخدمين على الانترنت"
1269
 
1270
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:73
1271
  msgid "Online for "
1272
  msgstr "متصل لـ"
1273
 
@@ -1294,6 +1410,7 @@ msgstr "إحالات محرك البحث في الأخير"
1294
  msgid "Number of referrals"
1295
  msgstr "عدد الإحالات"
1296
 
 
1297
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1298
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
@@ -1342,7 +1459,7 @@ msgid "Top 5 Page Trending Stats"
1342
  msgstr "احصائيات الصفحات الـ5 الأكثر رواجاً"
1343
 
1344
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1345
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:58
1346
  msgid "Number of Hits"
1347
  msgstr "عدد الزيارات"
1348
 
@@ -1436,18 +1553,6 @@ msgstr "اليوم"
1436
  msgid "Yesterday"
1437
  msgstr "الأمس"
1438
 
1439
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
1440
- msgid "Week"
1441
- msgstr "أسبوع"
1442
-
1443
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
1444
- msgid "Month"
1445
- msgstr "الشهر"
1446
-
1447
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
1448
- msgid "Year"
1449
- msgstr "سنة"
1450
-
1451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1452
  msgid "Daily Total"
1453
  msgstr "المجموع اليومي"
@@ -1469,9 +1574,9 @@ msgid "Time: %s"
1469
  msgstr "التوقيت: %s"
1470
 
1471
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1472
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:215
1473
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:293
1474
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
1475
  msgid "Hits"
1476
  msgstr "نقرات"
1477
 
@@ -1509,7 +1614,7 @@ msgstr "لا توجد بيانات وكيل لإزالتها!"
1509
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1510
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1511
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1512
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
1513
  msgid "Please select the desired items."
1514
  msgstr "يرجى تحديد العناصر المطلوبة."
1515
 
@@ -1551,8 +1656,8 @@ msgstr "فهرس قاعدة بيانات"
1551
 
1552
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1553
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1554
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:290
1555
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:364
1556
  msgid "Countries"
1557
  msgstr "الدول"
1558
 
@@ -1632,8 +1737,8 @@ msgstr "ملاحظة: كلما قمت بتطهير قاعدة البيانات
1632
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1633
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1634
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1635
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
1636
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
1637
  msgid "Visitors"
1638
  msgstr "الزوار"
1639
 
@@ -2144,8 +2249,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2144
  msgstr "إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s الدليل المساعد لووردبريس."
2145
 
2146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2147
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
2148
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
2149
  msgid "Exclusions"
2150
  msgstr "الاستثناءات"
2151
 
@@ -2337,6 +2442,7 @@ msgstr "استخدام browscap"
2337
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2338
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2339
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
 
2340
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
@@ -2397,4 +2503,4 @@ msgstr "الإعضاء المتواجدين"
2397
 
2398
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2399
  msgid "User online"
2400
- msgstr "المتواجدين الآن"
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-01-27 14:24:40+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=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
10
+ "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
+
13
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:330
14
+ msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
15
+ msgstr ""
16
+
17
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:324
18
+ msgid "Force English"
19
+ msgstr ""
20
+
21
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
22
+ msgid "Languages"
23
+ msgstr ""
24
+
25
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
26
+ 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."
27
+ msgstr ""
28
+
29
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:269
30
+ msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
31
+ msgstr ""
32
+
33
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:266
34
+ msgid "Excluded URLs list"
35
+ msgstr ""
36
+
37
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
38
+ msgid "Excluded URL"
39
+ msgstr ""
40
+
41
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
42
+ msgid "Last 365 Days (Year)"
43
+ msgstr ""
44
+
45
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
46
+ msgid "Last 30 Days (Month)"
47
+ msgstr ""
48
+
49
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
50
+ msgid "Last 7 Days (Week)"
51
+ msgstr ""
52
+
53
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
54
+ msgid "Yahoo!"
55
+ msgstr ""
56
+
57
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:399
58
+ msgid "Yandex"
59
+ msgstr ""
60
+
61
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
62
+ msgid "clearch.org"
63
+ msgstr ""
64
+
65
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
66
+ msgid "DuckDuckGo"
67
+ msgstr ""
68
+
69
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:394
70
+ msgid "Bing"
71
+ msgstr ""
72
+
73
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:393
74
+ msgid "Baidu"
75
+ msgstr ""
76
+
77
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:69
78
+ msgid "Hits in the last 20 days"
79
+ msgstr ""
80
+
81
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
82
+ msgid "Feeds"
83
+ msgstr ""
84
+
85
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
86
+ msgid "User Role"
87
+ msgstr ""
88
+
89
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
90
+ msgid "Login Page"
91
+ msgstr ""
92
+
93
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
94
+ msgid "Admin Page"
95
+ msgstr ""
96
+
97
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
98
+ msgid "Self Referral"
99
+ msgstr ""
100
+
101
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
102
+ msgid "IP Match"
103
+ msgstr ""
104
+
105
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
106
+ msgid "Robot"
107
+ msgstr ""
108
+
109
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:100
110
+ msgid "Currently there are no users online in the site."
111
+ msgstr ""
112
+
113
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
114
+ msgid "Robot Threshold"
115
+ msgstr ""
116
+
117
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
118
+ msgid "Honey Pot"
119
+ msgstr ""
120
+
121
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:6
122
+ msgid "Page Trending Stats"
123
+ msgstr ""
124
+
125
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
126
+ msgid "Hostname"
127
+ msgstr ""
128
 
129
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
130
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
174
 
175
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
176
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
177
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
178
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
179
  msgid "Pages"
180
  msgstr "الصفحات"
181
 
375
  msgid "Update Reports"
376
  msgstr "تقارير التحديث"
377
 
378
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
379
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
380
  msgid "Browscap"
381
  msgstr "Browscap"
384
  msgid "Send a report whenever the browscap.ini is updated."
385
  msgstr "إرسال تقرير كلما يتم تحديث browscap.ini."
386
 
387
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
388
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
389
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
390
  msgid "GeoIP"
412
 
413
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
415
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
416
  msgid "Statistical reporting"
417
  msgstr "تقارير الإحصائيات"
418
 
463
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
464
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
465
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
466
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:468
467
  msgid "User Online"
468
  msgstr "المتواجدين الآن"
469
 
562
  msgid "Map type"
563
  msgstr "نوع الخريطة"
564
 
565
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:397
566
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
567
  msgid "Google"
568
  msgstr "جوجل"
725
  msgstr "مرة كل 4 أسابيع"
726
 
727
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
728
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
729
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:325
730
  msgid "Statistics"
731
  msgstr "الاحصائيات"
732
 
812
  msgstr "البنود"
813
 
814
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
815
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:493
816
  msgid "Yesterday visit"
817
  msgstr "زيارات الأمس"
818
 
824
  msgid "Select type of search engine"
825
  msgstr "حدد نوع من محرك البحث"
826
 
827
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
828
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
829
  msgstr "خطأ: كشف احصائيات ووردبريس أن إصدار PHP لديك غير معتمد، و احصائيات ووردبريس لن تعمل دون PHP النسخة"
830
 
831
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
832
  msgid " or higher!"
833
  msgstr "أو أعلى!"
834
 
835
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
836
  msgid "Your current PHP version is"
837
  msgstr "نسخة PHP الحالي هو"
838
 
839
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:51
840
  msgid "WP Statistics has been removed, please disable and delete it."
841
  msgstr "تمت إزالة احصائيات ووردبريس، يرجى التعطيل والحذف."
842
 
843
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
844
  msgid "WP Statistics"
845
  msgstr "احصائيات ووردبريس"
846
 
847
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:28
848
  msgid "Complete statistics for your WordPress site."
849
  msgstr "إحصاءات كاملة لموقع ووردبريس الخاص بك."
850
 
851
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
852
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
853
  msgstr "لم يتم تمكين تتبع المستخدم عبر الإنترنت في احصائيات ووردبريس، يرجى الذهاب إلى %s وتمكينه."
854
 
855
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
856
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
857
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
858
  msgid "setting page"
859
  msgstr "صفحة الإعدادات"
860
 
861
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
862
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
863
  msgstr "تتبع النقرات في احصائيات ووردبريس لم يتم تمكينه، يرجى الذهاب إلى %s وتمكينه."
864
 
865
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
866
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
867
  msgstr "لم يتم تمكين تتبع الزائر في احصائيات ووردبريس، يرجى الذهاب إلى %s وتمكينه."
868
 
869
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
870
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
871
  msgstr "مجموعة GeoIP غير نشطه، يرجى الذهاب إلى %s وتمكين هذه الميزة."
872
 
873
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
874
  msgid "Setting page > GeoIP"
875
  msgstr "صفحة الإعدادات > GeoIP"
876
 
877
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
878
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
879
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
880
  msgid "Settings"
881
  msgstr "الإعدادات"
882
 
883
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
884
  msgid "Click here to visit the plugin on WordPress.org"
885
  msgstr "انقر هنا لزيارة صفحة الإضافة على WordPress.org"
886
 
887
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
888
  msgid "Visit WordPress.org page"
889
  msgstr "زيارة صفحة WordPress.org"
890
 
891
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
892
  msgid "Click here to rate and review this plugin on WordPress.org"
893
  msgstr "أنقر هنا لمراجهة وتقييم الإضافة على WordPress.org"
894
 
895
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
896
  msgid "Rate this plugin"
897
  msgstr "ضع تقييمك لهذه الاضافة"
898
 
899
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:254
900
  msgid "WP Statistics - Hits"
901
  msgstr "احصائيات ووردبريس - الزيارات"
902
 
903
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:291
904
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
905
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
906
  msgid "Overview"
907
  msgstr "نظرة عامة"
908
 
909
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
910
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
911
  msgid "Online"
912
  msgstr "المتواجدون"
913
 
914
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
915
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
916
  msgid "Referrers"
917
  msgstr "الدعوات"
918
 
919
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:301
920
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
921
  msgid "Searches"
922
  msgstr "عمليات البحث"
923
 
924
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
925
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
926
  msgid "Search Words"
927
  msgstr "كلمات البحث"
928
 
929
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
930
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:376
931
  msgid "Top Visitors Today"
932
  msgstr "أعلى زوار اليوم"
933
 
934
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:306
935
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
936
  msgid "Optimization"
937
  msgstr "التحسين"
938
 
939
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:311
940
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:342
941
  msgid "Manual"
942
  msgstr "الدليل"
943
 
944
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:357
945
  msgid "Site"
946
  msgstr "موقع"
947
 
948
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:358
949
  msgid "Options"
950
  msgstr "خيارات"
951
 
952
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:475
953
  msgid "Today visitor"
954
  msgstr "زوار اليوم"
955
 
956
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:481
957
  msgid "Today visit"
958
  msgstr "زيارات اليوم"
959
 
960
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:487
961
  msgid "Yesterday visitor"
962
  msgstr "زيارات الأمس"
963
 
964
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
965
  msgid "View Stats"
966
  msgstr "عرض الإحصائيات"
967
 
968
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:523
969
  msgid "Download ODF file"
970
  msgstr "تحميل ملف ODF"
971
 
972
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
973
  msgid "Download HTML file"
974
  msgstr "تحميل ملف HTML"
975
 
976
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:528
977
  msgid "Manual file not found."
978
  msgstr "لم يتم العثور على ملف الدليل."
979
 
980
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
981
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:706
982
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:740
983
  msgid "You do not have sufficient permissions to access this page."
984
  msgstr "ليس لديك الصلاحيات الكافية لدخول هذه الصفحة."
985
 
986
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:608
987
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
988
  msgstr "جداول البرنامج المساعد لا وجود لها في قاعدة البيانات! يرجى إعادة تشغيل %s التثبيت الروتيني %s."
989
 
1067
  msgstr "أفضل 10 صفحات"
1068
 
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
1070
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:31
1071
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
1072
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
1073
  msgid "Recent Visitors"
1117
  msgid "This post is not yet published."
1118
  msgstr "لم يتم نشر هذا المقال حتى الآن."
1119
 
1120
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:24
1121
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1122
  msgstr "غير قادر على تحميل قاعدة البيانات GeoIP، تأكد من أنك قمت بتنزيلها في صفحة الإعدادات."
1123
 
1124
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:48
1125
  msgid "Updated %s GeoIP records in the visitors database."
1126
  msgstr "تحديث السجلات %s GeoIP في قاعدة بيانات الزوار."
1127
 
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1156
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1157
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:76
1158
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1159
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
1160
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
1161
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1162
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1163
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
1183
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1184
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1185
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1186
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
1187
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
1188
  msgid "Browsers"
1189
  msgstr "المتصفحات"
1190
 
1210
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1211
  msgstr "تنبيه: لم يتم تعيين الاستثناءات حاليا ليتم تسجيلها، قد لا تستطيع عكس نتائج الإحصائيات الحالية أدناه!"
1212
 
1213
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
1214
  msgid "Exclusions Statistics"
1215
  msgstr "استثناءات الاحصائيات"
1216
 
1217
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1219
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1220
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1221
  msgid "10 Days"
1222
  msgstr "10 أيام"
1223
 
1224
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1225
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1228
  msgid "20 Days"
1229
  msgstr "20 يوم"
1230
 
1231
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1232
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1233
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1235
  msgid "30 Days"
1236
  msgstr "30 يو م"
1237
 
1238
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1239
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1240
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1241
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1242
  msgid "2 Months"
1243
  msgstr "شهرين"
1244
 
1245
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1247
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1248
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1249
  msgid "3 Months"
1250
  msgstr "3 أشهر"
1251
 
1252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1254
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1255
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1256
  msgid "6 Months"
1257
  msgstr "6 أشهر"
1258
 
1259
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:65
1260
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1261
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1263
  msgid "9 Months"
1264
  msgstr "9 أشهر"
1265
 
1266
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:66
1267
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1268
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1269
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1270
  msgid "1 Year"
1271
  msgstr "سنة"
1272
 
1273
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
1274
  msgid "Total Exclusions: %s"
1275
  msgstr "مجموع الاستثناءات: %s"
1276
 
1277
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:77
1278
  msgid "Exclusions Statistical Chart"
1279
  msgstr "الرسم البياني لإحصائيات الاستثناءات"
1280
 
1281
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1282
  msgid "Excluded hits in the last"
1283
  msgstr "استبعاد النقرات في الأخير"
1284
 
1285
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1286
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1287
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1288
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
1291
  msgid "days"
1292
  msgstr "أيام"
1293
 
1294
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:120
1295
  msgid "Number of excluded hits"
1296
  msgstr "عدد الزيارات المستبعدة"
1297
 
1321
  msgid "Visitor"
1322
  msgstr "زائر"
1323
 
1324
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:64
1325
  msgid "Latest Search Word Statistics"
1326
  msgstr "أحصائيات أحدث كلمات البحث"
1327
 
1328
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:99
1329
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
1330
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:50
1331
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1332
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1333
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
1335
  msgid "#hash#"
1336
  msgstr "#hash#"
1337
 
1338
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:104
1339
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:103
1340
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:55
1341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1343
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
1346
  msgid "Map"
1347
  msgstr "خريطة"
1348
 
1349
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1350
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1351
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1352
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1353
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1354
  msgid "Page"
1355
  msgstr "صفحة"
1356
 
1357
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1358
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1359
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1360
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1361
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1362
  msgid "From"
1363
  msgstr "من"
1364
 
1365
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:46
1366
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:33
1367
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1368
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1369
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1370
  msgid "All"
1371
  msgstr "الكل"
1372
 
1373
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
1374
  msgid "Search for"
1375
  msgstr "البحث عن"
1376
 
1377
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:65
1378
  msgid "Recent Visitor Statistics"
1379
  msgstr "آخر إحصائيات الزوار"
1380
 
1383
  msgid "Online Users"
1384
  msgstr "المستخدمين على الانترنت"
1385
 
1386
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:75
1387
  msgid "Online for "
1388
  msgstr "متصل لـ"
1389
 
1410
  msgid "Number of referrals"
1411
  msgstr "عدد الإحالات"
1412
 
1413
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
1414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1415
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1416
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
1459
  msgstr "احصائيات الصفحات الـ5 الأكثر رواجاً"
1460
 
1461
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1462
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:60
1463
  msgid "Number of Hits"
1464
  msgstr "عدد الزيارات"
1465
 
1553
  msgid "Yesterday"
1554
  msgstr "الأمس"
1555
 
 
 
 
 
 
 
 
 
 
 
 
 
1556
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1557
  msgid "Daily Total"
1558
  msgstr "المجموع اليومي"
1574
  msgstr "التوقيت: %s"
1575
 
1576
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1577
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:219
1578
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
1579
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
1580
  msgid "Hits"
1581
  msgstr "نقرات"
1582
 
1614
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1615
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1616
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1617
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:80
1618
  msgid "Please select the desired items."
1619
  msgstr "يرجى تحديد العناصر المطلوبة."
1620
 
1656
 
1657
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1658
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1659
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
1660
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
1661
  msgid "Countries"
1662
  msgstr "الدول"
1663
 
1737
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1738
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1739
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1740
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:304
1741
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:377
1742
  msgid "Visitors"
1743
  msgstr "الزوار"
1744
 
2249
  msgstr "إذا كنت في حاجة الى حل أكثر قوة لتفويض الوصول التي قد ترغب في النظر في %s الدليل المساعد لووردبريس."
2250
 
2251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
2253
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
2254
  msgid "Exclusions"
2255
  msgstr "الاستثناءات"
2256
 
2442
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2444
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
2445
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:329
2446
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2447
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2448
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
2503
 
2504
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2505
  msgid "User online"
2506
+ msgstr "المتواجدين الآن"
languages/wp_statistics-bg_BG.mo CHANGED
Binary file
languages/wp_statistics-bg_BG.po CHANGED
@@ -2,17 +2,129 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-01-27 19:18-0500\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: Poedit 1.7.4\n"
11
  "Project-Id-Version: WP Statistics\n"
12
- "POT-Creation-Date: \n"
13
- "Last-Translator: \n"
14
- "Language-Team: \n"
15
- "Language: bg_BG\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
18
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
@@ -38,11 +150,11 @@ msgstr "Времето за точна проверка онлайн потре
38
 
39
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
40
  msgid "Record all user"
41
- msgstr "Запишете всички потребителски"
42
 
43
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
44
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
45
- msgstr "Игнорира настройките за изключване и записва всички потребители, които са онлайн (включително самостоятелно реферали и роботи). Трябва да се използва само за отстраняване на проблеми."
46
 
47
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
48
  msgid "Store entire user agent string"
@@ -62,8 +174,8 @@ msgstr "За всяко посещение на сметка за няколко
62
 
63
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
64
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
65
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:295
66
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
67
  msgid "Pages"
68
  msgstr "Страници"
69
 
@@ -73,11 +185,11 @@ msgstr "Проследяване на всички страници"
73
 
74
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
75
  msgid "Strip parameters from URI"
76
- msgstr "Стриптийз параметри от URI"
77
 
78
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
79
  msgid "This will remove anything after the ? in a URL."
80
- msgstr "Това ще премахне всичко, след като на? в URL."
81
 
82
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
83
  msgid "Disable hits column in post/pages list"
@@ -121,7 +233,7 @@ msgstr "По подразбиране WP Statistics съхранява адми
121
 
122
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
123
  msgid "Search Engines"
124
- msgstr "Търсачки"
125
 
126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
127
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
@@ -193,11 +305,11 @@ msgstr "Липсващи GeoIP данни се актуализира след
193
 
194
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
195
  msgid "Country code for private IP addresses"
196
- msgstr "Код на държавата за частни IP адреси"
197
 
198
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
199
  msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
200
- msgstr "Стандартна два кода за международно избиране на страната писмо (т.е.. US = United States, CA = Canada, и т.н.) за лично (непроизводствено навигационни) IP адреси (т.е.. 10.0.0.1, 192.158.1.1, 127.0.0.1 и т.н.). Използвайте &quot;000&quot; (три нули) да използва &quot;Unknown&quot; кодът на страната."
201
 
202
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
203
  msgid "GeoIP collection is disabled due to the following reasons:"
@@ -249,7 +361,7 @@ msgstr "Броят на дните за запазване на статисти
249
 
250
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
251
  msgid "Common Report Options"
252
- msgstr "Общата Съобщи Options"
253
 
254
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
255
  msgid "E-mail addresses"
@@ -257,20 +369,22 @@ msgstr "Имейл адреси"
257
 
258
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
259
  msgid "A comma separated list of e-mail addresses to send reports to."
260
- msgstr "A, разделени със запетая списък с адреси на електронна поща, за да изпращате съобщения до."
261
 
262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
263
  msgid "Update Reports"
264
- msgstr "Доклади за"
265
 
 
266
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
267
  msgid "Browscap"
268
- msgstr "Browscap"
269
 
270
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
271
  msgid "Send a report whenever the browscap.ini is updated."
272
- msgstr "Изпрати доклад, когато browscap.ini се актуализира."
273
 
 
274
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
275
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
276
  msgid "GeoIP"
@@ -278,27 +392,27 @@ msgstr "GeoIP"
278
 
279
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
280
  msgid "Send a report whenever the GeoIP database is updated."
281
- msgstr "Изпрати доклад, когато базата данни на GeoIP се актуализира."
282
 
283
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
284
  msgid "Pruning"
285
- msgstr "Резитбата"
286
 
287
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
288
  msgid "Send a report whenever the pruning of database is run."
289
- msgstr "Изпрати доклад, когато резитбата на база данни се управлява."
290
 
291
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
292
  msgid "Upgrade"
293
- msgstr "Upgrade"
294
 
295
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
296
  msgid "Send a report whenever the plugin is upgraded."
297
- msgstr "Изпрати доклад, когато плъгина е обновен."
298
 
299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
300
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
301
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
302
  msgid "Statistical reporting"
303
  msgstr "Статистическата отчетност"
304
 
@@ -308,7 +422,7 @@ msgstr "График"
308
 
309
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
310
  msgid "Select how often to receive statistical report."
311
- msgstr "Изберете колко често да получава статистически отчет."
312
 
313
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
314
  msgid "Send reports via"
@@ -324,7 +438,7 @@ msgstr "SMS"
324
 
325
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
326
  msgid "Select delivery method for statistical report."
327
- msgstr "Изберете метод на доставка за статистически отчет."
328
 
329
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
330
  msgid "Note: To send SMS text messages please install the %s plugin."
@@ -340,16 +454,16 @@ msgstr "Тялото на доклада"
340
 
341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
342
  msgid "Enter the contents of the report."
343
- msgstr "Въведете съдържанието на доклада."
344
 
345
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
346
  msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
347
- msgstr "Всяко Кратък поддържа от вашата инсталация на WordPress, включва всички кратки кодове за WP Статистика (виж инструкцията за администратор за списък с кодове на разположение) се поддържат в тялото на съобщението. Ето няколко примера:"
348
 
349
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
351
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
352
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:464
353
  msgid "User Online"
354
  msgstr "Онлайн потребители"
355
 
@@ -416,38 +530,39 @@ msgstr "Най-посещаваните страници"
416
 
417
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
418
  msgid "Dashboard"
419
- msgstr "Табло"
420
 
421
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
422
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
423
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
424
  msgid "The following items are global to all users."
425
- msgstr "Следните елементи са глобални за всички потребители."
426
 
427
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
428
  msgid "Disable dashboard widgets"
429
- msgstr "Изключване на таблото джаджи"
430
 
431
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
432
  msgid "Disable the dashboard widgets."
433
- msgstr "Забранете джунджурии таблото."
434
 
435
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
436
  msgid "Page/Post Editor"
437
- msgstr "Page / Post Editor"
438
 
439
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
440
  msgid "Disable post/page editor widget"
441
- msgstr "Disable пост / страница редактор джаджа"
442
 
443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
444
  msgid "Disable the page/post editor widget."
445
- msgstr "Забранете страница / пост редактор джаджа."
446
 
447
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
448
  msgid "Map type"
449
  msgstr "Тип карта"
450
 
 
451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
452
  msgid "Google"
453
  msgstr "Google"
@@ -482,7 +597,7 @@ msgstr "Тази функция може да доведе до намалява
482
 
483
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
484
  msgid "Overview Widgets to Display"
485
- msgstr "Преглед Widgets, за да изведете"
486
 
487
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
488
  msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
@@ -531,31 +646,31 @@ msgstr "N/A"
531
 
532
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
533
  msgid "Slot 7"
534
- msgstr "Slot 7"
535
 
536
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
537
  msgid "WP Statisitcs Removal"
538
- msgstr "WP Statisitcs Отстраняването"
539
 
540
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
541
  msgid "Uninstalling WP Statistics will not remove the data and settings, you can use this option to remove the WP Statistics data from your install before uninstalling the plugin."
542
- msgstr "Деинсталиране на WP Статистика няма да отстраните данните и настройките, можете да използвате тази опция, за да отстраните данните WP статистика от вашия инсталирате, преди да деинсталирате приставката."
543
 
544
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
545
  msgid "Once you submit this form the settings will be deleted during the page load, however WP Statistics will still show up in your Admin menu until another page load is executed."
546
- msgstr "След като изпратите този формуляр настройките, ще бъдат изтрити по време на натоварването на страница обаче WP статистика все още ще се появи във вашето меню Admin докато друг зареждане на страницата се изпълнява."
547
 
548
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
549
  msgid "Remove data and settings"
550
- msgstr "Премахване на данни и настройки"
551
 
552
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
553
  msgid "Remove"
554
- msgstr "Премахни"
555
 
556
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
557
  msgid "Remove data and settings, this action cannot be undone."
558
- msgstr "Премахване на данни и настройки, това действие не може да бъде отменено."
559
 
560
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
561
  msgid "General"
@@ -563,11 +678,11 @@ msgstr "Общи"
563
 
564
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
565
  msgid "Notifications"
566
- msgstr "Известия"
567
 
568
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
569
  msgid "Dashboard/Overview"
570
- msgstr "Dashboard / Преглед"
571
 
572
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
573
  msgid "Access/Exclusions"
@@ -583,7 +698,7 @@ msgstr "Поддръжка"
583
 
584
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
585
  msgid "Removal"
586
- msgstr "Отстраняване"
587
 
588
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
589
  msgid "Update"
@@ -610,8 +725,8 @@ msgid "Once Every 4 Weeks"
610
  msgstr "Веднъж на всеки 4 седмици"
611
 
612
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
613
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:284
614
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:321
615
  msgid "Statistics"
616
  msgstr "Статистики"
617
 
@@ -697,7 +812,7 @@ msgid "Items"
697
  msgstr "Броя"
698
 
699
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
700
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:489
701
  msgid "Yesterday visit"
702
  msgstr "Вчерашни посещения"
703
 
@@ -709,172 +824,172 @@ msgstr "Търсачката по"
709
  msgid "Select type of search engine"
710
  msgstr "Изберете тип търсачка"
711
 
712
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
713
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
714
  msgstr "ГРЕШКА: WP Statistics откри неподдържана версия на PHP, WP Statistics няма да функционира без PHP версия "
715
 
716
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
717
  msgid " or higher!"
718
  msgstr "или по-висока!"
719
 
720
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
721
  msgid "Your current PHP version is"
722
- msgstr "Текущата ви PHP версия е"
723
 
724
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:42
725
  msgid "WP Statistics has been removed, please disable and delete it."
726
- msgstr "WP статистика беше отстранен, моля забранете и да го изтриете."
727
 
728
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:53
729
  msgid "WP Statistics"
730
  msgstr "WP Statistics"
731
 
732
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:54
733
  msgid "Complete statistics for your WordPress site."
734
  msgstr "Пълна статистика за вашия сайт WordPress."
735
 
736
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
737
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
738
  msgstr "Онлайн потребител, проследяване в WP Statistics не е разрешен, моля отидете на %s и го активирате."
739
 
740
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
741
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
742
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
743
  msgid "setting page"
744
  msgstr "определянето страница"
745
 
746
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
747
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
748
  msgstr "Хита проследяващия в WP Statistics не е разрешен, моля отидете на %s и го активирате."
749
 
750
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
751
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
752
  msgstr "Посетител проследяване в WP Statistics не е разрешен, моля отидете на %s и го активирате."
753
 
754
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
755
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
756
  msgstr "GeoIP колекция не е активен, моля отидете на %s и активирате тази функция."
757
 
758
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
759
  msgid "Setting page > GeoIP"
760
  msgstr "Определянето страница > GeoIP"
761
 
762
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:191
763
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
764
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
765
  msgid "Settings"
766
  msgstr "Настройки"
767
 
768
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
769
  msgid "Click here to visit the plugin on WordPress.org"
770
  msgstr "Щракнете тук, за да посетите плъгин от WordPress.org"
771
 
772
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
773
  msgid "Visit WordPress.org page"
774
  msgstr "Посетете страницата на WordPress.org"
775
 
776
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
777
  msgid "Click here to rate and review this plugin on WordPress.org"
778
  msgstr "Щракнете тук, за да оцените и да преразгледа този плъгин от WordPress.org"
779
 
780
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
781
  msgid "Rate this plugin"
782
  msgstr "Оцени този плъгин"
783
 
784
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:250
785
  msgid "WP Statistics - Hits"
786
  msgstr "WP-статистика - хитове"
787
 
788
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:287
789
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:324
790
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:362
791
  msgid "Overview"
792
  msgstr "Общ преглед"
793
 
794
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
795
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
796
  msgid "Online"
797
- msgstr "Online"
798
 
799
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
800
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
801
  msgid "Referrers"
802
- msgstr "Референти"
803
 
804
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
805
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
806
  msgid "Searches"
807
  msgstr "Търсения"
808
 
809
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
810
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
811
  msgid "Search Words"
812
  msgstr "Думи за търсене"
813
 
814
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
815
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
816
  msgid "Top Visitors Today"
817
- msgstr "Top Посетители Днес"
818
 
819
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
820
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
821
  msgid "Optimization"
822
  msgstr "Оптимизация"
823
 
824
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
825
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:338
826
  msgid "Manual"
827
  msgstr "Ръководство"
828
 
829
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
830
  msgid "Site"
831
- msgstr "Място"
832
 
833
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:354
834
  msgid "Options"
835
- msgstr "Опции"
836
 
837
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:471
838
  msgid "Today visitor"
839
  msgstr "Днес посетителите"
840
 
841
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:477
842
  msgid "Today visit"
843
  msgstr "Днес, посетете"
844
 
845
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:483
846
  msgid "Yesterday visitor"
847
  msgstr "Вчера посетител"
848
 
849
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:495
850
  msgid "View Stats"
851
  msgstr "Преглед на статистиките"
852
 
853
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
854
  msgid "Download ODF file"
855
  msgstr "Изтегляне на ODF файл"
856
 
857
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
858
  msgid "Download HTML file"
859
  msgstr "Изтегли HTML файл"
860
 
861
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
862
  msgid "Manual file not found."
863
  msgstr "Ръчно файлът не е намерен."
864
 
865
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
866
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:702
867
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
868
  msgid "You do not have sufficient permissions to access this page."
869
  msgstr "Нямате права за тази страница"
870
 
871
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:604
872
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
873
- msgstr "Plugin маси не съществуват в базата данни! Моля, изпълнете отново%s инсталирате рутинна%s."
874
 
875
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
876
  msgid "WP Statistics %s installed on"
877
- msgstr "WP Статистика%s инсталиран на"
878
 
879
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
880
  msgid "Error downloading GeoIP database from: %s - %s"
@@ -894,7 +1009,7 @@ msgstr "GeoIP базата данни се актуализира успешно
894
 
895
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
896
  msgid "GeoIP update on"
897
- msgstr "GeoIP актуализира"
898
 
899
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
900
  msgid "Error downloading browscap database from: %s - %s"
@@ -906,11 +1021,11 @@ msgstr "browscap база данни, актуализирани успешно!
906
 
907
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
908
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
909
- msgstr "browscap база данни на актуализация не е! Cache файл е твърде голям, връщайки се към предишната browscap.ini."
910
 
911
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
912
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
913
- msgstr "browscap база данни на актуализация не е! New browscap.ini е погрешно identifing потребителски агенти като роботи, връщайки се към предишната browscap.ini."
914
 
915
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
916
  msgid "browscap already at current version!"
@@ -918,11 +1033,11 @@ msgstr "browscap вече в текущата версия!"
918
 
919
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
920
  msgid "Browscap.ini update on"
921
- msgstr "Browscap.ini актуализация на"
922
 
923
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
924
  msgid "Quick Stats"
925
- msgstr "Бързи данни"
926
 
927
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
928
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
@@ -937,7 +1052,7 @@ msgstr "Топ 10 страни"
937
 
938
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
939
  msgid "Today's Visitor Map"
940
- msgstr "Днешният Visitor Map"
941
 
942
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
943
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
@@ -952,7 +1067,7 @@ msgid "Top 10 Pages"
952
  msgstr "Топ 10 страници"
953
 
954
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
955
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:30
956
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
957
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
958
  msgid "Recent Visitors"
@@ -988,25 +1103,25 @@ msgstr "Последни думи за търсене"
988
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
989
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
990
  msgid "Top 10 Visitors Today"
991
- msgstr "Топ 10 посетители днес"
992
 
993
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
994
  msgid "Please reload the dashboard to display the content of this widget."
995
- msgstr "Моля, презаредете таблото за да се покаже съдържанието на тази джаджа."
996
 
997
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
998
  msgid "WP Statistics Overview"
999
- msgstr "WP Статистика Преглед"
1000
 
1001
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
1002
  msgid "This post is not yet published."
1003
- msgstr "Този пост все още не е публикуван."
1004
 
1005
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
1006
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1007
  msgstr "Не може да зареди GeoIP базата данни, се уверете, че сте го изтеглили в страницата Настройки."
1008
 
1009
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:50
1010
  msgid "Updated %s GeoIP records in the visitors database."
1011
  msgstr "Актуализиран %s GeoIP записи в базата данни на посетителите."
1012
 
@@ -1026,7 +1141,7 @@ msgstr "Няма намерени за продухване от %s записи
1026
 
1027
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
1028
  msgid "Database pruned on"
1029
- msgstr "Database подрязват на"
1030
 
1031
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
1032
  msgid "Please select a value over 30 days."
@@ -1039,10 +1154,10 @@ msgstr "Браузър статистика"
1039
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1040
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1041
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1042
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
1043
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1044
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
1045
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:60
1046
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1047
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1048
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
@@ -1068,8 +1183,8 @@ msgstr "Щракнете за превключване"
1068
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1070
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1071
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
1072
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:363
1073
  msgid "Browsers"
1074
  msgstr "Браузъри"
1075
 
@@ -1095,79 +1210,79 @@ msgstr "версия на %s"
1095
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1096
  msgstr "Внимание: Изключване не са в момента зададени да се отчита, по-долу резултатите може да не отразява текущата статистика!"
1097
 
1098
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
1099
  msgid "Exclusions Statistics"
1100
  msgstr "Изключения статистика"
1101
 
1102
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
1103
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1104
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1105
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1106
  msgid "10 Days"
1107
  msgstr "10 дни"
1108
 
1109
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
1110
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1111
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1112
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1113
  msgid "20 Days"
1114
  msgstr "20 дни"
1115
 
1116
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1117
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1118
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1119
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1120
  msgid "30 Days"
1121
  msgstr "30 дни"
1122
 
1123
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1124
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1125
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1127
  msgid "2 Months"
1128
  msgstr "2 месеца"
1129
 
1130
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1131
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1132
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1133
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1134
  msgid "3 Months"
1135
  msgstr "3 месеца"
1136
 
1137
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1138
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1139
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1140
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1141
  msgid "6 Months"
1142
  msgstr "6 месеца"
1143
 
1144
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1145
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1147
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1148
  msgid "9 Months"
1149
  msgstr "9 месеца"
1150
 
1151
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1152
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1153
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1155
  msgid "1 Year"
1156
  msgstr "1 година"
1157
 
1158
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
1159
  msgid "Total Exclusions: %s"
1160
  msgstr "Общо изключения: %s"
1161
 
1162
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
1163
  msgid "Exclusions Statistical Chart"
1164
  msgstr "Изключения статистически диаграма"
1165
 
1166
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1167
  msgid "Excluded hits in the last"
1168
  msgstr "Изключени хитове през последните"
1169
 
1170
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1171
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1172
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1173
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
@@ -1176,7 +1291,7 @@ msgstr "Изключени хитове през последните"
1176
  msgid "days"
1177
  msgstr "дни"
1178
 
1179
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:118
1180
  msgid "Number of excluded hits"
1181
  msgstr "Броя на изключените хитове"
1182
 
@@ -1206,13 +1321,13 @@ msgstr "Посетете"
1206
  msgid "Visitor"
1207
  msgstr "Посетител"
1208
 
1209
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:62
1210
  msgid "Latest Search Word Statistics"
1211
  msgstr "Последни Търсене дума статистика"
1212
 
1213
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:97
1214
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
1215
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:48
1216
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1217
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
@@ -1220,9 +1335,9 @@ msgstr "Последни Търсене дума статистика"
1220
  msgid "#hash#"
1221
  msgstr "#hash #"
1222
 
1223
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:102
1224
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:102
1225
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:53
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1228
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
@@ -1231,45 +1346,46 @@ msgstr "#hash #"
1231
  msgid "Map"
1232
  msgstr "Карта"
1233
 
1234
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1235
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1236
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1237
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1238
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1239
  msgid "Page"
1240
  msgstr "Страница"
1241
 
1242
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1243
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1244
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1245
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1247
  msgid "From"
1248
  msgstr "От"
1249
 
1250
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
 
1251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1252
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1254
  msgid "All"
1255
  msgstr "Всички"
1256
 
1257
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
1258
  msgid "Search for"
1259
  msgstr "Търсене за"
1260
 
1261
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
1262
  msgid "Recent Visitor Statistics"
1263
  msgstr "Последните посетител статистика"
1264
 
1265
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
1266
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
1267
  msgid "Online Users"
1268
- msgstr "Онлайн потребители"
1269
 
1270
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:73
1271
  msgid "Online for "
1272
- msgstr "Online за"
1273
 
1274
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
1275
  msgid "Page Trend for Post ID"
@@ -1294,6 +1410,7 @@ msgstr "Търсене двигател референции в последни
1294
  msgid "Number of referrals"
1295
  msgstr "Брой препращания"
1296
 
 
1297
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1298
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
@@ -1342,7 +1459,7 @@ msgid "Top 5 Page Trending Stats"
1342
  msgstr "Топ 5 страница тенденция статистика"
1343
 
1344
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1345
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:58
1346
  msgid "Number of Hits"
1347
  msgstr "Брой посещения"
1348
 
@@ -1374,7 +1491,7 @@ msgstr "Препратки"
1374
 
1375
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
1376
  msgid "Top 100 Visitors Today"
1377
- msgstr "Топ 100 посетители днес"
1378
 
1379
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
1380
  msgid "About WP Statistics Version %s"
@@ -1436,18 +1553,6 @@ msgstr "Днес"
1436
  msgid "Yesterday"
1437
  msgstr "Вчера"
1438
 
1439
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
1440
- msgid "Week"
1441
- msgstr "Седмица"
1442
-
1443
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
1444
- msgid "Month"
1445
- msgstr "Месец"
1446
-
1447
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
1448
- msgid "Year"
1449
- msgstr "Година"
1450
-
1451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1452
  msgid "Daily Total"
1453
  msgstr "Ежедневно общо"
@@ -1469,24 +1574,24 @@ msgid "Time: %s"
1469
  msgstr "Време: %s"
1470
 
1471
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1472
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:215
1473
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:293
1474
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
1475
  msgid "Hits"
1476
  msgstr "Посещения"
1477
 
1478
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
1479
  msgid "IP"
1480
- msgstr "IP"
1481
 
1482
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
1483
  msgid "Agent"
1484
- msgstr "Агент"
1485
 
1486
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
1487
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1488
  msgid "Version"
1489
- msgstr "Версия"
1490
 
1491
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
1492
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
@@ -1504,12 +1609,12 @@ msgstr "%s агент данни изтрито успешно."
1504
 
1505
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
1506
  msgid "No agent data found to remove!"
1507
- msgstr "Няма данни за агенцията намерени за премахване!"
1508
 
1509
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1510
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1511
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1512
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
1513
  msgid "Please select the desired items."
1514
  msgstr "Моля изберете желаните елементи."
1515
 
@@ -1519,7 +1624,7 @@ msgstr "%s платформа данни изтрито успешно."
1519
 
1520
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
1521
  msgid "No platform data found to remove!"
1522
- msgstr "Няма данни платформа намерени за премахване!"
1523
 
1524
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
1525
  msgid "%s table data deleted successfully."
@@ -1551,8 +1656,8 @@ msgstr "Индекс на база данни"
1551
 
1552
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1553
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1554
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:290
1555
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:364
1556
  msgid "Countries"
1557
  msgstr "Страни"
1558
 
@@ -1623,31 +1728,31 @@ msgstr "Започнете сега!"
1623
 
1624
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
1625
  msgid "Historical Values"
1626
- msgstr "Исторически ценности"
1627
 
1628
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1629
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1630
- msgstr "Забележка: Тъй като току-що сте продухва базата данни, която трябва да се презарежда страницата за тези числа са верни."
1631
 
1632
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1633
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1634
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1635
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
1636
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
1637
  msgid "Visitors"
1638
  msgstr "Посетители"
1639
 
1640
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
1641
  msgid "Number of historical number of visitors to the site (current value is %s)."
1642
- msgstr "Брой на историческата броя на посетителите на сайта (текуща стойност е%s)."
1643
 
1644
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
1645
  msgid "Number of historical number of visits to the site (current value is %s)."
1646
- msgstr "Брой на историческата брой посещения на сайта (текуща стойност е%s)."
1647
 
1648
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
1649
  msgid "Update now!"
1650
- msgstr "Актуализиране сега!"
1651
 
1652
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
1653
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
@@ -1725,11 +1830,11 @@ msgstr "Байт"
1725
 
1726
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
1727
  msgid "Last Overview page memory usage"
1728
- msgstr "Последна Преглед ползване памет страница"
1729
 
1730
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
1731
  msgid "Memory usage in the overview page"
1732
- msgstr "Използване на паметта в обзорната страница"
1733
 
1734
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
1735
  msgid "PHP Memory Limit"
@@ -1898,19 +2003,19 @@ msgstr "Клиент потребител фактор канап."
1898
 
1899
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
1900
  msgid "Browser"
1901
- msgstr "Browser"
1902
 
1903
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
1904
  msgid "The detected client browser."
1905
- msgstr "The открити клиентски браузър."
1906
 
1907
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
1908
  msgid "The detected client browser version."
1909
- msgstr "Открити клиентски браузър версия."
1910
 
1911
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
1912
  msgid "The detected client platform."
1913
- msgstr "Открити клиентски платформа."
1914
 
1915
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
1916
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
@@ -1964,7 +2069,7 @@ msgstr "Актуализации"
1964
 
1965
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
1966
  msgid "Historical"
1967
- msgstr "Исторически"
1968
 
1969
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
1970
  msgid "WP Statistics V%s"
@@ -2049,7 +2154,7 @@ msgstr "Има ли търсене в интернет за всички съо
2049
 
2050
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
2051
  msgid "Make sure you have access to your PHP error logs."
2052
- msgstr "Уверете се, че имате достъп до вашите PHP логове за грешки."
2053
 
2054
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
2055
  msgid "And a few things to double-check:"
@@ -2105,11 +2210,11 @@ msgstr "Фарси"
2105
 
2106
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
2107
  msgid "WP Statistics Honey Pot Page"
2108
- msgstr "WP Honey Pot Статистика Page"
2109
 
2110
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
2111
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2112
- msgstr "Това е гърне за мед за WP Статистика за използване, не изтривайте."
2113
 
2114
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
2115
  msgid "Access Levels"
@@ -2144,8 +2249,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2144
  msgstr "Ако имате нужда от по-силен решение за делегиране на достъп, може да искате да погледнете %s в WordPress плъгин директорията."
2145
 
2146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2147
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
2148
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
2149
  msgid "Exclusions"
2150
  msgstr "Изключения"
2151
 
@@ -2204,11 +2309,11 @@ msgstr "Сила списъка на робот, за да се възстано
2204
 
2205
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
2206
  msgid "Robot visit threshold"
2207
- msgstr "Праг Robot посещение"
2208
 
2209
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
2210
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2211
- msgstr "Отнасяйте посетителите с повече от този брой посещения на ден като роботи. 0 = забранена."
2212
 
2213
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
2214
  msgid "Excluded IP address list"
@@ -2232,59 +2337,59 @@ msgstr "Добави 192.168.0.0"
2232
 
2233
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
2234
  msgid "Use honey pot"
2235
- msgstr "Използвайте гърне за мед"
2236
 
2237
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
2238
  msgid "Use a honey pot page to identify robots."
2239
- msgstr "Използвайте страница гърне за мед, за да видите какви роботи."
2240
 
2241
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
2242
  msgid "Honey pot post id"
2243
- msgstr "Honey пот пост ID"
2244
 
2245
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
2246
  msgid "The post id to use for the honeypot page."
2247
- msgstr "The Публикувай ID да използвате за страницата гърне."
2248
 
2249
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
2250
  msgid "Create a new honey pot page"
2251
- msgstr "Създаване на нова страница гърне за мед"
2252
 
2253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
2254
  msgid "GeoIP Exclusions"
2255
- msgstr "GeoIP Изключения"
2256
 
2257
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
2258
  msgid "Excluded countries list"
2259
- msgstr "Списък Изключени страни"
2260
 
2261
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
2262
  msgid "A list of country codes (one per line, two letters each) to exclude from statistics collection. Use \"000\" (three zeros) to exclude unknown countries."
2263
- msgstr "Списъкът с кодове на държавите (по един на ред, две писма всеки) да се изключат от събирането на статистически данни. Използвайте &quot;000&quot; (три нули), за да се изключи неизвестни страни."
2264
 
2265
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
2266
  msgid "Included countries list"
2267
- msgstr "Списък включваше страни"
2268
 
2269
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
2270
  msgid "A list of country codes (one per line, two letters each) to include in statistics collection, if this list is not empty, only visitors from the included countries will be recorded. Use \"000\" (three zeros) to exclude unknown countries."
2271
- msgstr "Списъкът с кодове на държавите (по един на ред, две писма всеки) да се включат в събирането на статистически данни, ако този списък не е празна, само посетители от включените страни ще бъдат записани. Използвайте &quot;000&quot; (три нули), за да се изключи неизвестни страни."
2272
 
2273
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
2274
  msgid "Host Exclusions"
2275
- msgstr "Хост Изключения"
2276
 
2277
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
2278
  msgid "Excluded hosts list"
2279
- msgstr "Списък Изключени хостове"
2280
 
2281
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
2282
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2283
- msgstr "Списък с пълните имена домакини (т.е.. Server.example.com, по една на ред) да се изключат от събирането на статистически данни."
2284
 
2285
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
2286
  msgid "Note: this option will NOT perform a reverse DNS lookup on each page load but instead cache the IP address for the provided hostnames for one hour. If you are excluding dynamically assigned hosts you may find some degree of overlap when the host changes it's IP address and when the cache is updated resulting in some hits recorded."
2287
- msgstr "Забележка: Тази опция няма да извърши обратно DNS справка на всяка страница на натоварването, но вместо да кешира IP адреса на предоставени имената на хостовете за един час. Ако изключение динамично възложени домакини може да откриете някаква степен на припокриване, когато приемащата променя нейния IP адрес и когато кешът се актуализира в резултат на което някои попадения записват."
2288
 
2289
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
2290
  msgid "Site URL Exclusions"
@@ -2308,11 +2413,11 @@ msgstr "Изключи администратор страници за реги
2308
 
2309
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
2310
  msgid "Excluded RSS feeds"
2311
- msgstr "Изключени RSS Feeds"
2312
 
2313
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
2314
  msgid "Exclude the RSS feeds for registering as a hit."
2315
- msgstr "Изключване на RSS канали за регистриране като хит."
2316
 
2317
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
2318
  msgid "browscap settings"
@@ -2337,6 +2442,7 @@ msgstr "използване на browscap"
2337
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2338
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2339
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
 
2340
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
@@ -2397,4 +2503,4 @@ msgstr "Потребители онлайн"
2397
 
2398
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2399
  msgid "User online"
2400
- msgstr "Потребител онлайн"
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-01-23 13:18:53+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
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:330
14
+ msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
15
+ msgstr ""
16
+
17
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:324
18
+ msgid "Force English"
19
+ msgstr ""
20
+
21
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
22
+ msgid "Languages"
23
+ msgstr ""
24
+
25
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
26
+ 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."
27
+ msgstr ""
28
+
29
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:269
30
+ msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
31
+ msgstr ""
32
+
33
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:266
34
+ msgid "Excluded URLs list"
35
+ msgstr ""
36
+
37
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
38
+ msgid "Excluded URL"
39
+ msgstr ""
40
+
41
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
42
+ msgid "Last 365 Days (Year)"
43
+ msgstr ""
44
+
45
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
46
+ msgid "Last 30 Days (Month)"
47
+ msgstr ""
48
+
49
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
50
+ msgid "Last 7 Days (Week)"
51
+ msgstr ""
52
+
53
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
54
+ msgid "Yahoo!"
55
+ msgstr ""
56
+
57
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:399
58
+ msgid "Yandex"
59
+ msgstr ""
60
+
61
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
62
+ msgid "clearch.org"
63
+ msgstr ""
64
+
65
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
66
+ msgid "DuckDuckGo"
67
+ msgstr ""
68
+
69
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:394
70
+ msgid "Bing"
71
+ msgstr ""
72
+
73
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:393
74
+ msgid "Baidu"
75
+ msgstr ""
76
+
77
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:69
78
+ msgid "Hits in the last 20 days"
79
+ msgstr ""
80
+
81
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
82
+ msgid "Feeds"
83
+ msgstr ""
84
+
85
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
86
+ msgid "User Role"
87
+ msgstr ""
88
+
89
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
90
+ msgid "Login Page"
91
+ msgstr ""
92
+
93
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
94
+ msgid "Admin Page"
95
+ msgstr ""
96
+
97
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
98
+ msgid "Self Referral"
99
+ msgstr ""
100
+
101
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
102
+ msgid "IP Match"
103
+ msgstr ""
104
+
105
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
106
+ msgid "Robot"
107
+ msgstr ""
108
+
109
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:100
110
+ msgid "Currently there are no users online in the site."
111
+ msgstr ""
112
+
113
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
114
+ msgid "Robot Threshold"
115
+ msgstr ""
116
+
117
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
118
+ msgid "Honey Pot"
119
+ msgstr ""
120
+
121
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:6
122
+ msgid "Page Trending Stats"
123
+ msgstr ""
124
+
125
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
126
+ msgid "Hostname"
127
+ msgstr ""
128
 
129
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
130
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
150
 
151
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
152
  msgid "Record all user"
153
+ msgstr ""
154
 
155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
156
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
157
+ msgstr ""
158
 
159
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
160
  msgid "Store entire user agent string"
174
 
175
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
176
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
177
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
178
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
179
  msgid "Pages"
180
  msgstr "Страници"
181
 
185
 
186
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
187
  msgid "Strip parameters from URI"
188
+ msgstr ""
189
 
190
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
191
  msgid "This will remove anything after the ? in a URL."
192
+ msgstr ""
193
 
194
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
195
  msgid "Disable hits column in post/pages list"
233
 
234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
235
  msgid "Search Engines"
236
+ msgstr ""
237
 
238
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
239
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
305
 
306
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
307
  msgid "Country code for private IP addresses"
308
+ msgstr ""
309
 
310
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
311
  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."
312
+ msgstr ""
313
 
314
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
315
  msgid "GeoIP collection is disabled due to the following reasons:"
361
 
362
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
363
  msgid "Common Report Options"
364
+ msgstr ""
365
 
366
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
367
  msgid "E-mail addresses"
369
 
370
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
371
  msgid "A comma separated list of e-mail addresses to send reports to."
372
+ msgstr ""
373
 
374
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
375
  msgid "Update Reports"
376
+ msgstr ""
377
 
378
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
379
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
380
  msgid "Browscap"
381
+ msgstr ""
382
 
383
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
384
  msgid "Send a report whenever the browscap.ini is updated."
385
+ msgstr ""
386
 
387
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
388
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
389
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
390
  msgid "GeoIP"
392
 
393
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
394
  msgid "Send a report whenever the GeoIP database is updated."
395
+ msgstr ""
396
 
397
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
398
  msgid "Pruning"
399
+ msgstr ""
400
 
401
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
402
  msgid "Send a report whenever the pruning of database is run."
403
+ msgstr ""
404
 
405
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
406
  msgid "Upgrade"
407
+ msgstr ""
408
 
409
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
410
  msgid "Send a report whenever the plugin is upgraded."
411
+ msgstr ""
412
 
413
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
415
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
416
  msgid "Statistical reporting"
417
  msgstr "Статистическата отчетност"
418
 
422
 
423
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
424
  msgid "Select how often to receive statistical report."
425
+ msgstr ""
426
 
427
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
428
  msgid "Send reports via"
438
 
439
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
440
  msgid "Select delivery method for statistical report."
441
+ msgstr ""
442
 
443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
444
  msgid "Note: To send SMS text messages please install the %s plugin."
454
 
455
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
456
  msgid "Enter the contents of the report."
457
+ msgstr ""
458
 
459
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
460
  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:"
461
+ msgstr ""
462
 
463
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
464
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
465
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
466
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:468
467
  msgid "User Online"
468
  msgstr "Онлайн потребители"
469
 
530
 
531
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
532
  msgid "Dashboard"
533
+ msgstr ""
534
 
535
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
536
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
537
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
538
  msgid "The following items are global to all users."
539
+ msgstr ""
540
 
541
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
542
  msgid "Disable dashboard widgets"
543
+ msgstr ""
544
 
545
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
546
  msgid "Disable the dashboard widgets."
547
+ msgstr ""
548
 
549
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
550
  msgid "Page/Post Editor"
551
+ msgstr ""
552
 
553
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
554
  msgid "Disable post/page editor widget"
555
+ msgstr ""
556
 
557
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
558
  msgid "Disable the page/post editor widget."
559
+ msgstr ""
560
 
561
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
562
  msgid "Map type"
563
  msgstr "Тип карта"
564
 
565
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:397
566
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
567
  msgid "Google"
568
  msgstr "Google"
597
 
598
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
599
  msgid "Overview Widgets to Display"
600
+ msgstr ""
601
 
602
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
603
  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."
646
 
647
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
648
  msgid "Slot 7"
649
+ msgstr ""
650
 
651
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
652
  msgid "WP Statisitcs Removal"
653
+ msgstr ""
654
 
655
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
656
  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."
657
+ msgstr ""
658
 
659
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
660
  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."
661
+ msgstr ""
662
 
663
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
664
  msgid "Remove data and settings"
665
+ msgstr ""
666
 
667
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
668
  msgid "Remove"
669
+ msgstr ""
670
 
671
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
672
  msgid "Remove data and settings, this action cannot be undone."
673
+ msgstr ""
674
 
675
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
676
  msgid "General"
678
 
679
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
680
  msgid "Notifications"
681
+ msgstr ""
682
 
683
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
684
  msgid "Dashboard/Overview"
685
+ msgstr ""
686
 
687
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
688
  msgid "Access/Exclusions"
698
 
699
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
700
  msgid "Removal"
701
+ msgstr ""
702
 
703
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
704
  msgid "Update"
725
  msgstr "Веднъж на всеки 4 седмици"
726
 
727
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
728
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
729
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:325
730
  msgid "Statistics"
731
  msgstr "Статистики"
732
 
812
  msgstr "Броя"
813
 
814
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
815
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:493
816
  msgid "Yesterday visit"
817
  msgstr "Вчерашни посещения"
818
 
824
  msgid "Select type of search engine"
825
  msgstr "Изберете тип търсачка"
826
 
827
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
828
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
829
  msgstr "ГРЕШКА: WP Statistics откри неподдържана версия на PHP, WP Statistics няма да функционира без PHP версия "
830
 
831
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
832
  msgid " or higher!"
833
  msgstr "или по-висока!"
834
 
835
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
836
  msgid "Your current PHP version is"
837
+ msgstr ""
838
 
839
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:51
840
  msgid "WP Statistics has been removed, please disable and delete it."
841
+ msgstr ""
842
 
843
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
844
  msgid "WP Statistics"
845
  msgstr "WP Statistics"
846
 
847
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:28
848
  msgid "Complete statistics for your WordPress site."
849
  msgstr "Пълна статистика за вашия сайт WordPress."
850
 
851
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
852
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
853
  msgstr "Онлайн потребител, проследяване в WP Statistics не е разрешен, моля отидете на %s и го активирате."
854
 
855
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
856
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
857
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
858
  msgid "setting page"
859
  msgstr "определянето страница"
860
 
861
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
862
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
863
  msgstr "Хита проследяващия в WP Statistics не е разрешен, моля отидете на %s и го активирате."
864
 
865
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
866
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
867
  msgstr "Посетител проследяване в WP Statistics не е разрешен, моля отидете на %s и го активирате."
868
 
869
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
870
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
871
  msgstr "GeoIP колекция не е активен, моля отидете на %s и активирате тази функция."
872
 
873
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
874
  msgid "Setting page > GeoIP"
875
  msgstr "Определянето страница > GeoIP"
876
 
877
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
878
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
879
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
880
  msgid "Settings"
881
  msgstr "Настройки"
882
 
883
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
884
  msgid "Click here to visit the plugin on WordPress.org"
885
  msgstr "Щракнете тук, за да посетите плъгин от WordPress.org"
886
 
887
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
888
  msgid "Visit WordPress.org page"
889
  msgstr "Посетете страницата на WordPress.org"
890
 
891
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
892
  msgid "Click here to rate and review this plugin on WordPress.org"
893
  msgstr "Щракнете тук, за да оцените и да преразгледа този плъгин от WordPress.org"
894
 
895
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
896
  msgid "Rate this plugin"
897
  msgstr "Оцени този плъгин"
898
 
899
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:254
900
  msgid "WP Statistics - Hits"
901
  msgstr "WP-статистика - хитове"
902
 
903
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:291
904
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
905
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
906
  msgid "Overview"
907
  msgstr "Общ преглед"
908
 
909
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
910
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
911
  msgid "Online"
912
+ msgstr ""
913
 
914
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
915
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
916
  msgid "Referrers"
917
+ msgstr ""
918
 
919
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:301
920
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
921
  msgid "Searches"
922
  msgstr "Търсения"
923
 
924
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
925
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
926
  msgid "Search Words"
927
  msgstr "Думи за търсене"
928
 
929
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
930
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:376
931
  msgid "Top Visitors Today"
932
+ msgstr ""
933
 
934
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:306
935
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
936
  msgid "Optimization"
937
  msgstr "Оптимизация"
938
 
939
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:311
940
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:342
941
  msgid "Manual"
942
  msgstr "Ръководство"
943
 
944
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:357
945
  msgid "Site"
946
+ msgstr ""
947
 
948
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:358
949
  msgid "Options"
950
+ msgstr ""
951
 
952
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:475
953
  msgid "Today visitor"
954
  msgstr "Днес посетителите"
955
 
956
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:481
957
  msgid "Today visit"
958
  msgstr "Днес, посетете"
959
 
960
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:487
961
  msgid "Yesterday visitor"
962
  msgstr "Вчера посетител"
963
 
964
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
965
  msgid "View Stats"
966
  msgstr "Преглед на статистиките"
967
 
968
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:523
969
  msgid "Download ODF file"
970
  msgstr "Изтегляне на ODF файл"
971
 
972
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
973
  msgid "Download HTML file"
974
  msgstr "Изтегли HTML файл"
975
 
976
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:528
977
  msgid "Manual file not found."
978
  msgstr "Ръчно файлът не е намерен."
979
 
980
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
981
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:706
982
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:740
983
  msgid "You do not have sufficient permissions to access this page."
984
  msgstr "Нямате права за тази страница"
985
 
986
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:608
987
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
988
+ msgstr ""
989
 
990
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
991
  msgid "WP Statistics %s installed on"
992
+ msgstr ""
993
 
994
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
995
  msgid "Error downloading GeoIP database from: %s - %s"
1009
 
1010
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
1011
  msgid "GeoIP update on"
1012
+ msgstr ""
1013
 
1014
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
1015
  msgid "Error downloading browscap database from: %s - %s"
1021
 
1022
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
1023
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1024
+ msgstr ""
1025
 
1026
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
1027
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1028
+ msgstr ""
1029
 
1030
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
1031
  msgid "browscap already at current version!"
1033
 
1034
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
1035
  msgid "Browscap.ini update on"
1036
+ msgstr ""
1037
 
1038
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
1039
  msgid "Quick Stats"
1040
+ msgstr ""
1041
 
1042
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
1043
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
1052
 
1053
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
1054
  msgid "Today's Visitor Map"
1055
+ msgstr ""
1056
 
1057
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
1058
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
1067
  msgstr "Топ 10 страници"
1068
 
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
1070
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:31
1071
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
1072
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
1073
  msgid "Recent Visitors"
1103
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
1104
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
1105
  msgid "Top 10 Visitors Today"
1106
+ msgstr ""
1107
 
1108
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
1109
  msgid "Please reload the dashboard to display the content of this widget."
1110
+ msgstr ""
1111
 
1112
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
1113
  msgid "WP Statistics Overview"
1114
+ msgstr ""
1115
 
1116
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
1117
  msgid "This post is not yet published."
1118
+ msgstr ""
1119
 
1120
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:24
1121
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1122
  msgstr "Не може да зареди GeoIP базата данни, се уверете, че сте го изтеглили в страницата Настройки."
1123
 
1124
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:48
1125
  msgid "Updated %s GeoIP records in the visitors database."
1126
  msgstr "Актуализиран %s GeoIP записи в базата данни на посетителите."
1127
 
1141
 
1142
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
1143
  msgid "Database pruned on"
1144
+ msgstr ""
1145
 
1146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
1147
  msgid "Please select a value over 30 days."
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1156
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1157
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:76
1158
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1159
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
1160
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
1161
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1162
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1163
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
1183
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1184
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1185
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1186
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
1187
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
1188
  msgid "Browsers"
1189
  msgstr "Браузъри"
1190
 
1210
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1211
  msgstr "Внимание: Изключване не са в момента зададени да се отчита, по-долу резултатите може да не отразява текущата статистика!"
1212
 
1213
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
1214
  msgid "Exclusions Statistics"
1215
  msgstr "Изключения статистика"
1216
 
1217
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1219
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1220
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1221
  msgid "10 Days"
1222
  msgstr "10 дни"
1223
 
1224
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1225
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1228
  msgid "20 Days"
1229
  msgstr "20 дни"
1230
 
1231
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1232
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1233
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1235
  msgid "30 Days"
1236
  msgstr "30 дни"
1237
 
1238
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1239
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1240
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1241
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1242
  msgid "2 Months"
1243
  msgstr "2 месеца"
1244
 
1245
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1247
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1248
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1249
  msgid "3 Months"
1250
  msgstr "3 месеца"
1251
 
1252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1254
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1255
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1256
  msgid "6 Months"
1257
  msgstr "6 месеца"
1258
 
1259
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:65
1260
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1261
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1263
  msgid "9 Months"
1264
  msgstr "9 месеца"
1265
 
1266
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:66
1267
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1268
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1269
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1270
  msgid "1 Year"
1271
  msgstr "1 година"
1272
 
1273
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
1274
  msgid "Total Exclusions: %s"
1275
  msgstr "Общо изключения: %s"
1276
 
1277
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:77
1278
  msgid "Exclusions Statistical Chart"
1279
  msgstr "Изключения статистически диаграма"
1280
 
1281
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1282
  msgid "Excluded hits in the last"
1283
  msgstr "Изключени хитове през последните"
1284
 
1285
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1286
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1287
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1288
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
1291
  msgid "days"
1292
  msgstr "дни"
1293
 
1294
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:120
1295
  msgid "Number of excluded hits"
1296
  msgstr "Броя на изключените хитове"
1297
 
1321
  msgid "Visitor"
1322
  msgstr "Посетител"
1323
 
1324
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:64
1325
  msgid "Latest Search Word Statistics"
1326
  msgstr "Последни Търсене дума статистика"
1327
 
1328
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:99
1329
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
1330
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:50
1331
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1332
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1333
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
1335
  msgid "#hash#"
1336
  msgstr "#hash #"
1337
 
1338
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:104
1339
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:103
1340
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:55
1341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1343
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
1346
  msgid "Map"
1347
  msgstr "Карта"
1348
 
1349
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1350
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1351
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1352
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1353
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1354
  msgid "Page"
1355
  msgstr "Страница"
1356
 
1357
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1358
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1359
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1360
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1361
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1362
  msgid "From"
1363
  msgstr "От"
1364
 
1365
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:46
1366
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:33
1367
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1368
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1369
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1370
  msgid "All"
1371
  msgstr "Всички"
1372
 
1373
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
1374
  msgid "Search for"
1375
  msgstr "Търсене за"
1376
 
1377
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:65
1378
  msgid "Recent Visitor Statistics"
1379
  msgstr "Последните посетител статистика"
1380
 
1381
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
1382
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
1383
  msgid "Online Users"
1384
+ msgstr ""
1385
 
1386
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:75
1387
  msgid "Online for "
1388
+ msgstr ""
1389
 
1390
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
1391
  msgid "Page Trend for Post ID"
1410
  msgid "Number of referrals"
1411
  msgstr "Брой препращания"
1412
 
1413
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
1414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1415
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1416
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
1459
  msgstr "Топ 5 страница тенденция статистика"
1460
 
1461
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1462
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:60
1463
  msgid "Number of Hits"
1464
  msgstr "Брой посещения"
1465
 
1491
 
1492
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
1493
  msgid "Top 100 Visitors Today"
1494
+ msgstr ""
1495
 
1496
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
1497
  msgid "About WP Statistics Version %s"
1553
  msgid "Yesterday"
1554
  msgstr "Вчера"
1555
 
 
 
 
 
 
 
 
 
 
 
 
 
1556
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1557
  msgid "Daily Total"
1558
  msgstr "Ежедневно общо"
1574
  msgstr "Време: %s"
1575
 
1576
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1577
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:219
1578
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
1579
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
1580
  msgid "Hits"
1581
  msgstr "Посещения"
1582
 
1583
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
1584
  msgid "IP"
1585
+ msgstr ""
1586
 
1587
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
1588
  msgid "Agent"
1589
+ msgstr ""
1590
 
1591
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
1592
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1593
  msgid "Version"
1594
+ msgstr ""
1595
 
1596
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
1597
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
1609
 
1610
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
1611
  msgid "No agent data found to remove!"
1612
+ msgstr ""
1613
 
1614
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1615
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1616
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1617
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:80
1618
  msgid "Please select the desired items."
1619
  msgstr "Моля изберете желаните елементи."
1620
 
1624
 
1625
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
1626
  msgid "No platform data found to remove!"
1627
+ msgstr ""
1628
 
1629
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
1630
  msgid "%s table data deleted successfully."
1656
 
1657
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1658
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1659
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
1660
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
1661
  msgid "Countries"
1662
  msgstr "Страни"
1663
 
1728
 
1729
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
1730
  msgid "Historical Values"
1731
+ msgstr ""
1732
 
1733
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1734
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1735
+ msgstr ""
1736
 
1737
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1738
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1739
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1740
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:304
1741
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:377
1742
  msgid "Visitors"
1743
  msgstr "Посетители"
1744
 
1745
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
1746
  msgid "Number of historical number of visitors to the site (current value is %s)."
1747
+ msgstr ""
1748
 
1749
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
1750
  msgid "Number of historical number of visits to the site (current value is %s)."
1751
+ msgstr ""
1752
 
1753
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
1754
  msgid "Update now!"
1755
+ msgstr ""
1756
 
1757
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
1758
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
1830
 
1831
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
1832
  msgid "Last Overview page memory usage"
1833
+ msgstr ""
1834
 
1835
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
1836
  msgid "Memory usage in the overview page"
1837
+ msgstr ""
1838
 
1839
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
1840
  msgid "PHP Memory Limit"
2003
 
2004
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
2005
  msgid "Browser"
2006
+ msgstr ""
2007
 
2008
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
2009
  msgid "The detected client browser."
2010
+ msgstr ""
2011
 
2012
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
2013
  msgid "The detected client browser version."
2014
+ msgstr ""
2015
 
2016
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
2017
  msgid "The detected client platform."
2018
+ msgstr ""
2019
 
2020
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
2021
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2069
 
2070
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
2071
  msgid "Historical"
2072
+ msgstr ""
2073
 
2074
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
2075
  msgid "WP Statistics V%s"
2154
 
2155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
2156
  msgid "Make sure you have access to your PHP error logs."
2157
+ msgstr ""
2158
 
2159
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
2160
  msgid "And a few things to double-check:"
2210
 
2211
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
2212
  msgid "WP Statistics Honey Pot Page"
2213
+ msgstr ""
2214
 
2215
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
2216
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2217
+ msgstr ""
2218
 
2219
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
2220
  msgid "Access Levels"
2249
  msgstr "Ако имате нужда от по-силен решение за делегиране на достъп, може да искате да погледнете %s в WordPress плъгин директорията."
2250
 
2251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
2253
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
2254
  msgid "Exclusions"
2255
  msgstr "Изключения"
2256
 
2309
 
2310
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
2311
  msgid "Robot visit threshold"
2312
+ msgstr ""
2313
 
2314
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
2315
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2316
+ msgstr ""
2317
 
2318
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
2319
  msgid "Excluded IP address list"
2337
 
2338
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
2339
  msgid "Use honey pot"
2340
+ msgstr ""
2341
 
2342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
2343
  msgid "Use a honey pot page to identify robots."
2344
+ msgstr ""
2345
 
2346
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
2347
  msgid "Honey pot post id"
2348
+ msgstr ""
2349
 
2350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
2351
  msgid "The post id to use for the honeypot page."
2352
+ msgstr ""
2353
 
2354
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
2355
  msgid "Create a new honey pot page"
2356
+ msgstr ""
2357
 
2358
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
2359
  msgid "GeoIP Exclusions"
2360
+ msgstr ""
2361
 
2362
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
2363
  msgid "Excluded countries list"
2364
+ msgstr ""
2365
 
2366
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
2367
  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."
2368
+ msgstr ""
2369
 
2370
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
2371
  msgid "Included countries list"
2372
+ msgstr ""
2373
 
2374
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
2375
  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."
2376
+ msgstr ""
2377
 
2378
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
2379
  msgid "Host Exclusions"
2380
+ msgstr ""
2381
 
2382
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
2383
  msgid "Excluded hosts list"
2384
+ msgstr ""
2385
 
2386
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
2387
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2388
+ msgstr ""
2389
 
2390
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
2391
  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."
2392
+ msgstr ""
2393
 
2394
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
2395
  msgid "Site URL Exclusions"
2413
 
2414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
2415
  msgid "Excluded RSS feeds"
2416
+ msgstr ""
2417
 
2418
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
2419
  msgid "Exclude the RSS feeds for registering as a hit."
2420
+ msgstr ""
2421
 
2422
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
2423
  msgid "browscap settings"
2442
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2444
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
2445
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:329
2446
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2447
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2448
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
2503
 
2504
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2505
  msgid "User online"
2506
+ msgstr "Потребител онлайн"
languages/wp_statistics-bn_BD.mo CHANGED
Binary file
languages/wp_statistics-bn_BD.po CHANGED
@@ -2,17 +2,129 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-01-27 19:13-0500\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: Poedit 1.7.4\n"
11
  "Project-Id-Version: WP Statistics\n"
12
- "POT-Creation-Date: \n"
13
- "Last-Translator: \n"
14
- "Language-Team: \n"
15
- "Language: bn_BD\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
18
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
@@ -22,7 +134,7 @@ msgstr ""
22
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:229
23
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:122
24
  msgid "Enable or disable this feature"
25
- msgstr "সক্রিয় অথবা এই বৈশিষ্ট্য নিষ্ক্রিয় করা"
26
 
27
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:99
28
  msgid "Check for online users every"
@@ -30,27 +142,27 @@ msgstr "অনলাইনের ব্যবহারকারী চেক ক
30
 
31
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:104
32
  msgid "Second"
33
- msgstr "দ্বিতীয়"
34
 
35
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:105
36
  msgid "Time for the check accurate online user in the site. Now: %s Second"
37
- msgstr "এই সাইটের সঠিক অনলাইন দর্শক চেক করার জন্য । ডিফল্ট: ৬০ সেকেন্ড"
38
 
39
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
40
  msgid "Record all user"
41
- msgstr "সব ব্যবহারকারী রেকর্ড"
42
 
43
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
44
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
45
- msgstr "বর্জন সেটিংস উপেক্ষা করে এবং অনলাইন (স্ব রেফারেলগুলি এবং রোবট সহ) যে সব ব্যবহারকারীদের তথ্য সংগ্রহ করা হয়. শুধুমাত্র সমস্যাসমাধানের জন্য ব্যবহার করা উচিত."
46
 
47
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
48
  msgid "Store entire user agent string"
49
- msgstr "সম্পূর্ণ ইউজার এজেন্ট স্ট্রিং সঞ্চয়"
50
 
51
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:161
52
  msgid "Only enabled for debugging"
53
- msgstr "শুধুমাত্র ডিবাগিং জন্য সক্রিয়"
54
 
55
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:167
56
  msgid "Coefficient per visitor"
@@ -58,34 +170,34 @@ msgstr "দর্শকের সুদক্ষতা"
58
 
59
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:172
60
  msgid "For each visit to account for several hits. Currently %s."
61
- msgstr "দর্শনাথীর প্রতি হিট গননা করা হবে"
62
 
63
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
64
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
65
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:295
66
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
67
  msgid "Pages"
68
- msgstr "পেজ"
69
 
70
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:194
71
  msgid "Track all pages"
72
- msgstr "সমস্ত পৃষ্ঠা ট্র্যাক"
73
 
74
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
75
  msgid "Strip parameters from URI"
76
- msgstr "কোনো URI থেকে স্ট্রিপ পরামিতি"
77
 
78
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
79
  msgid "This will remove anything after the ? in a URL."
80
- msgstr "এই পরে কিছু মুছে ফেলা হবে? একটি URL- এ."
81
 
82
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
83
  msgid "Disable hits column in post/pages list"
84
- msgstr "নিষ্ক্রিয় পোস্ট / পেজ তালিকা কলাম হিট"
85
 
86
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:234
87
  msgid "Miscellaneous"
88
- msgstr "বিবিধ"
89
 
90
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:239
91
  msgid "Show stats in menu bar"
@@ -105,251 +217,253 @@ msgstr "স্টাটস অ্যাডমিনের মেনুবার
105
 
106
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:253
107
  msgid "Hide admin notices about non active features"
108
- msgstr "অ সক্রিয় বৈশিষ্ট্য সম্পর্কে অ্যাডমিন নোটিশ লুকান"
109
 
110
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:259
111
  msgid "By default WP Statistics displays an alert if any of the core features are disabled on every admin page, this option will disable these notices."
112
- msgstr "মূল বৈশিষ্ট্য কোনো প্রত্যেক অ্যাডমিন পৃষ্ঠার যদি অক্ষম হয় ডিফল্ট ডাব্লু পরিসংখ্যান একটি সতর্কতা প্রদর্শন করা হয়, এই বিকল্প এই নোটিশ নিষ্ক্রিয় করা হবে."
113
 
114
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:265
115
  msgid "Delete the manual"
116
- msgstr "ম্যানুয়াল মুছে দিন"
117
 
118
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:271
119
  msgid "By default WP Statistics stores the admin manual in the plugin directory (~5 meg), if this option is enabled it will be deleted now and during upgrades in the future."
120
- msgstr "ডিফল্ট ডাব্লু পরিসংখ্যান প্লাগইন ডিরেক্টরি অ্যাডমিন ম্যানুয়াল (~ 5 মেগ) সঞ্চয় করে, এই বিকল্প সক্রিয় করা হলে এটি এখন এবং ভবিষ্যতে আপগ্রেড করার সময় মুছে ফেলা হবে."
121
 
122
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
123
  msgid "Search Engines"
124
- msgstr "অনুসন্ধান ইঞ্জিন"
125
 
126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
127
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
128
- msgstr "সব সার্চ ইঞ্জিন নিষ্ক্রিয় সব সার্চ ইঞ্জিন সক্রিয় হচ্ছে স্থাপিত হবে, তাই করছেন, অনুমোদিত নয়."
129
 
130
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:296
131
  msgid "disable"
132
- msgstr "অক্ষম"
133
 
134
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:297
135
  msgid "Disable %s from data collection and reporting."
136
- msgstr "তথ্য সংগ্রহ এবং প্রতিবেদন থেকে% এর নিষ্ক্রিয় করুন."
137
 
138
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:303
139
  msgid "Charts"
140
- msgstr "চার্ট"
141
 
142
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:308
143
  msgid "Include totals"
144
- msgstr "সমগ্র অন্তর্ভুক্ত করুন"
145
 
146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:314
147
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
148
- msgstr "সার্চ ইঞ্জিন রেফারেলগুলি মত, একাধিক মান চার্ট মোট লাইন যোগ করুন"
149
 
150
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:27
151
  msgid "GeoIP settings"
152
- msgstr "GeoIP সেটিংস"
153
 
154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:32
155
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
156
- msgstr "% এর থেকে উপলব্ধ MaxMind দ্বারা নির্মিত GeoLite2 তথ্য, দ্বারা উপলব্ধ আইপি অবস্থান সেবা."
157
 
158
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:42
159
  msgid "GeoIP collection"
160
- msgstr "GeoIP সংগ্রহ"
161
 
162
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:48
163
  msgid "For get more information and location (country) from visitor, enable this feature."
164
- msgstr "পরিদর্শক থেকে আরো তথ্য এবং অবস্থান (দেশ) পেতে, এই বৈশিষ্ট্য সক্রিয় করুন."
165
 
166
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:54
167
  msgid "Update GeoIP Info"
168
- msgstr "আপডেট GeoIP তথ্য"
169
 
170
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:59
171
  msgid "Download GeoIP Database"
172
- msgstr "GeoIP ডাটাবেস ডাউনলোড"
173
 
174
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:66
175
  msgid "Schedule monthly update of GeoIP DB"
176
- msgstr "GeoIP ডিবি মাসিক আপডেট সময়সূচী"
177
 
178
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:92
179
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
180
- msgstr "GeoIP ডাটাবেস ডাউনলোড করুন মাসের প্রথম মঙ্গলবার পরে 2 দিন জন্য নির্ধারিত করা হবে."
181
 
182
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:93
183
  msgid "This option will also download the database if the local filesize is less than 1k (which usually means the stub that comes with the plugin is still in place)."
184
- msgstr "স্থানীয় filesize (সাধারণত প্লাগ জায়গা এখনও সঙ্গে যে আসে শহরের উপর অসম্পূর্ণ নিবন্ধ যার মানে) কম 1k হয়, তাহলে এই অপশনটি ডাটাবেস ডাউনলোড হবে."
185
 
186
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:99
187
  msgid "Populate missing GeoIP after update of GeoIP DB"
188
- msgstr "GeoIP ডিবি আপডেটের পরে অনুপস্থিত GeoIP পূরণ"
189
 
190
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:105
191
  msgid "Update any missing GeoIP data after downloading a new database."
192
- msgstr "একটি নতুন ডাটাবেস ডাউনলোড করার পর কোনো অনুপস্থিত GeoIP তথ্য আপডেট করুন."
193
 
194
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
195
  msgid "Country code for private IP addresses"
196
- msgstr "প্রাইভেট আইপি ঠিকানার জন্য কান্ট্রি কোড"
197
 
198
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
199
  msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
200
- msgstr "ব্যক্তিগত (অ routable) আইপি ঠিকানার জন্য আন্তর্জাতিক মান দুই অক্ষর বিশিষ্ট কোড (অর্থাৎ. মার্কিন = মার্কিন যুক্তরাষ্ট্র, সিএ = কানাডা, ইত্যাদি) (অর্থাৎ. 10.0.0.1, 192.158.1.1, 127.0.0.1, ইত্যাদি). দেশের কোড হিসাবে &quot;অজানা&quot; ব্যবহার &quot;000&quot; (তিন শূন্য) ব্যবহার করুন."
201
 
202
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
203
  msgid "GeoIP collection is disabled due to the following reasons:"
204
- msgstr "GeoIP সংগ্রহ নিম্নলিখিত কারণে নিষ্ক্রিয় করা হয়েছে:"
205
 
206
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:130
207
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
208
- msgstr "GeoIP সংগ্রহ এটি বর্তমানে কারণে ইনস্টল পিএইচপি সংস্করণ হচ্ছে নিষ্ক্রিয় করা হয়, অথবা উপরে পিএইচপি% এর প্রয়োজন"
209
 
210
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:135
211
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
212
- msgstr "GeoIP সংগ্রহ কার্ল PHP এক্সটেনশন প্রয়োজন এবং এটা পিএইচপি আপনার সংস্করণ লোড করা হয় না!"
213
 
214
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:141
215
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
216
- msgstr "GeoIP সংগ্রহ বিসি ম্যাথ PHP এক্সটেনশন প্রয়োজন এবং এটা পিএইচপি আপনার সংস্করণ লোড করা হয় না!"
217
 
218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:147
219
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
220
- msgstr "পিএইচপি নিরাপদ মোড সনাক্ত! GeoIP সংগ্রহ পিএইচপি এর নিরাপদ মোড সক্রিয় করা সমর্থন করে না করা হয়!"
221
 
222
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:20
223
  msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
224
- msgstr "এই স্থায়ীভাবে আপনি এই অপশনটি সক্রিয় করতে চান আপনি নিশ্চিত, প্রতিটি দিন ডাটাবেস থেকে তথ্য মুছে ফেলা হবে?"
225
 
226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:30
227
  msgid "Database Maintenance"
228
- msgstr "ডাটাবেস রক্ষণাবেক্ষণ"
229
 
230
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:35
231
  msgid "Run a daily WP Cron job to prune the databases"
232
- msgstr "উপাত্ত আলুবোখারা একটি দৈনিক ডাব্লু Cron কাজ চালান"
233
 
234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:41
235
  msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
236
- msgstr "একটি ডাব্লু Cron কাজ দিনের একটি সেট নম্বর চেয়ে পুরোনো তথ্য আলুবোখারা দৈনিক চালানো হবে."
237
 
238
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:47
239
  msgid "Prune data older than"
240
- msgstr "আলুবোখারা তথ্য আর পুরোনো"
241
 
242
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:52
243
  msgid "Days"
244
- msgstr "দিন"
245
 
246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:53
247
  msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
248
- msgstr "দিনের সংখ্যা জন্য পরিসংখ্যান রাখা. নূন্যতম মূল্য 30 দিন. অবৈধ মান দৈনিক রক্ষণাবেক্ষণ নিষ্ক্রিয় করা হবে."
249
 
250
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
251
  msgid "Common Report Options"
252
- msgstr "প্রচলিত বেশি অপশন"
253
 
254
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
255
  msgid "E-mail addresses"
256
- msgstr "ই-মেইল ঠিকানা"
257
 
258
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
259
  msgid "A comma separated list of e-mail addresses to send reports to."
260
- msgstr "ই-মেইল ঠিকানা একটি কমা দিয়ে পৃথক করা তালিকা রিপোর্ট পাঠাতে."
261
 
262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
263
  msgid "Update Reports"
264
- msgstr "আপডেট প্রতিবেদন"
265
 
 
266
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
267
  msgid "Browscap"
268
- msgstr "Browscap"
269
 
270
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
271
  msgid "Send a report whenever the browscap.ini is updated."
272
- msgstr "Browscap.ini আপডেট যখনই একটি রিপোর্ট পাঠান."
273
 
 
274
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
275
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
276
  msgid "GeoIP"
277
- msgstr "GeoIP"
278
 
279
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
280
  msgid "Send a report whenever the GeoIP database is updated."
281
- msgstr "GeoIP ডাটাবেস আপডেট করা হয়, যখনই একটি রিপোর্ট পাঠান."
282
 
283
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
284
  msgid "Pruning"
285
- msgstr "কেঁটে সাফ করা"
286
 
287
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
288
  msgid "Send a report whenever the pruning of database is run."
289
- msgstr "ডাটাবেস কেঁটে সাফ করা সঞ্চালন করা হয় যখনই একটি রিপোর্ট পাঠান."
290
 
291
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
292
  msgid "Upgrade"
293
- msgstr "আপগ্রেড"
294
 
295
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
296
  msgid "Send a report whenever the plugin is upgraded."
297
- msgstr "প্লাগ আপগ্রেড করা হবে যখনই একটা রিপোর্ট পাঠান."
298
 
299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
300
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
301
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
302
  msgid "Statistical reporting"
303
- msgstr "সরাসরি পরিসংখ্যান কনফিগার"
304
 
305
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:129
306
  msgid "Schedule"
307
- msgstr "সময়সূচি"
308
 
309
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
310
  msgid "Select how often to receive statistical report."
311
- msgstr "পরিসংখ্যান রিপোর্ট প্রাপ্ত কিভাবে প্রায়ই নির্বাচন করুন."
312
 
313
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
314
  msgid "Send reports via"
315
- msgstr "এর মাধ্যমে রিপোর্ট পাঠান"
316
 
317
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:165
318
  msgid "Email"
319
- msgstr "ইমেল"
320
 
321
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:167
322
  msgid "SMS"
323
- msgstr "এসএমএস"
324
 
325
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
326
  msgid "Select delivery method for statistical report."
327
- msgstr "পরিসংখ্যান প্রতিবেদনের জন্য নির্বাচন ডেলিভারি পদ্ধতি."
328
 
329
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
330
  msgid "Note: To send SMS text messages please install the %s plugin."
331
- msgstr "দ্রষ্টব্য: এসএমএস টেক্সট বার্তা%s এর প্লাগইন ইনস্টল করুন পাঠান."
332
 
333
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
334
  msgid "WordPress SMS"
335
- msgstr "ওয়ার্ডপ্রেস এসএমএস"
336
 
337
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:180
338
  msgid "Report body"
339
- msgstr "রিপোর্ট শরীর"
340
 
341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
342
  msgid "Enter the contents of the report."
343
- msgstr "রিপোর্টের বিষয়বস্তু লিখুন."
344
 
345
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
346
  msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
347
- msgstr "আপনার ওয়ার্ডপ্রেস এর ইনস্টলেশন দ্বারা সমর্থিত যে কোনো সর্টকোড, ডাব্লু পরিসংখ্যান সব shortcodes (উপলব্ধ কোড একটি তালিকা জন্য প্রশাসক ম্যানুয়াল দেখুন) বার্তা শরীরের সমর্থিত অন্তর্ভুক্ত. এখানে কিছু উদাহরণ:"
348
 
349
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
351
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
352
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:464
353
  msgid "User Online"
354
  msgstr "এখন দেখছে"
355
 
@@ -357,7 +471,7 @@ msgstr "এখন দেখছে"
357
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:52
358
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:251
359
  msgid "Today Visitor"
360
- msgstr "আজ দেখেছে"
361
 
362
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:190
363
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:45
@@ -369,7 +483,7 @@ msgstr "আজ দেখেছে"
369
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:66
370
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:257
371
  msgid "Yesterday Visitor"
372
- msgstr "গতকাল দেখেছে"
373
 
374
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:192
375
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:59
@@ -380,7 +494,7 @@ msgstr "গতকাল দেখেছে"
380
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:101
381
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:272
382
  msgid "Total Visitor"
383
- msgstr "মোট দেখা হয়েছে"
384
 
385
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:194
386
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:94
@@ -391,233 +505,234 @@ msgstr "মোট দেখা হয়েছে"
391
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:23
392
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:32
393
  msgid "None"
394
- msgstr "না"
395
 
396
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:24
397
  msgid "Summary Statistics"
398
- msgstr "পরিসংখ্যান"
399
 
400
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
401
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:108
402
  msgid "About"
403
- msgstr "প্রায়"
404
 
405
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:34
406
  msgid "Hits Statistical Chart"
407
- msgstr "পরিসংখ্যান চার্ট হিট সংখ্যা"
408
 
409
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:36
410
  msgid "Search Engine Referrers Statistical Chart"
411
- msgstr "সার্চ ইঞ্জিন উল্লেখ পরিসংখ্যান চার্ট"
412
 
413
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:38
414
  msgid "Top Pages Visited"
415
- msgstr "শীর্ষ পেজ দেখা"
416
 
417
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
418
  msgid "Dashboard"
419
- msgstr "ড্যাশবোর্ড"
420
 
421
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
422
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
423
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
424
  msgid "The following items are global to all users."
425
- msgstr "নিম্নলিখিত আইটেম সব ব্যবহারকারীদের জন্য বিশ্বব্যাপী."
426
 
427
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
428
  msgid "Disable dashboard widgets"
429
- msgstr "ড্যাশবোর্ড উইজেট নিষ্ক্রিয় করা"
430
 
431
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
432
  msgid "Disable the dashboard widgets."
433
- msgstr "ড্যাশবোর্ড উইজেট নিষ্ক্রিয় করুন."
434
 
435
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
436
  msgid "Page/Post Editor"
437
- msgstr "পৃষ্ঠা / পোস্ট সম্পাদক"
438
 
439
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
440
  msgid "Disable post/page editor widget"
441
- msgstr "নিষ্ক্রিয় পোস্ট / পৃষ্ঠা সম্পাদক উইজেট"
442
 
443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
444
  msgid "Disable the page/post editor widget."
445
- msgstr "পৃষ্ঠা / পোস্ট সম্পাদক উইজেট নিষ্ক্রিয় করুন."
446
 
447
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
448
  msgid "Map type"
449
- msgstr "মানচিত্র টাইপ"
450
 
 
451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
452
  msgid "Google"
453
  msgstr "গুগল"
454
 
455
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
456
  msgid "JQVMap"
457
- msgstr "JQVMap"
458
 
459
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:135
460
  msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
461
- msgstr "সাম্প্রতিক দর্শক প্লটে বিভক্ত গুগল ম্যাপিং সেবা ব্যবহার করা হবে &quot;গুগল&quot; বিকল্প (গুগল এক্সেস প্রয়োজন)."
462
 
463
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:136
464
  msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
465
- msgstr "&quot;JQVMap&quot; বিকল্প সাম্প্রতিক দর্শক (কোন extenral পরিষেবা প্রয়োজন) প্লটে বিভক্ত করতে দয়া করে জাভাস্ক্রিপ্ট ম্যাপিং লাইব্রেরি JQVMap ব্যবহার করা হবে."
466
 
467
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:142
468
  msgid "Disable map"
469
- msgstr "নিষ্ক্রিয় মানচিত্র"
470
 
471
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:148
472
  msgid "Disable the map display"
473
- msgstr "মানচিত্র প্রদর্শন নিষ্ক্রিয় করুন"
474
 
475
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:154
476
  msgid "Get country location from Google"
477
- msgstr "গুগল থেকে দেশের অবস্থান পান"
478
 
479
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:160
480
  msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
481
- msgstr "পরিসংখ্যান দেখছেন এবং মানচিত্র টাইপ &quot;গুগল&quot; সেট করা হয় কেবল বৈধ হলে এই বৈশিষ্ট্য একটি কার্যকারিতা অবনতি হতে পারে."
482
 
483
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
484
  msgid "Overview Widgets to Display"
485
- msgstr "সংক্ষিপ্ত বিবরণ উইজেট প্রদর্শন"
486
 
487
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
488
  msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
489
- msgstr "নিম্নলিখিত আইটেম প্রত্যেক ব্যবহারকারীর জন্য পৃথক হবে. আপনি &#39;আমার&#39; নির্বাচন করবেন না এটি স্বয়ংক্রিয়ভাবে কলাম এ শেষ ফার্দিনান্দ প্রদর্শিত হবে উইজেট"
490
 
491
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:180
492
  msgid "Slot"
493
- msgstr "ছেঁদা"
494
 
495
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:184
496
  msgid "Column A"
497
- msgstr "কলাম A"
498
 
499
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:188
500
  msgid "Column B"
501
- msgstr "কলাম B"
502
 
503
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:194
504
  msgid "Slot 1"
505
- msgstr "স্লট 1"
506
 
507
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:224
508
  msgid "Slot 2"
509
- msgstr "স্লট 2"
510
 
511
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:254
512
  msgid "Slot 3"
513
- msgstr "স্লট 3"
514
 
515
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:284
516
  msgid "Slot 4"
517
- msgstr "স্লট 4"
518
 
519
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:314
520
  msgid "Slot 5"
521
- msgstr "স্লট 5"
522
 
523
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:344
524
  msgid "Slot 6"
525
- msgstr "স্লট 6"
526
 
527
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:348
528
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:370
529
  msgid "N/A"
530
- msgstr "N / A"
531
 
532
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
533
  msgid "Slot 7"
534
- msgstr "স্লট 7"
535
 
536
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
537
  msgid "WP Statisitcs Removal"
538
- msgstr "ডাব্লু Statisitcs অপসারণ"
539
 
540
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
541
  msgid "Uninstalling WP Statistics will not remove the data and settings, you can use this option to remove the WP Statistics data from your install before uninstalling the plugin."
542
- msgstr "আনইনস্টল ডাব্লু পরিসংখ্যান তথ্য এবং সেটিংস মুছে ফেলা হবে, আপনি প্লাগইন আনইনস্টল করার আগে আপনার ইনস্টল থেকে ডাব্লু পরিসংখ্যান তথ্য মুছে ফেলার জন্য এই অপশনটি ব্যবহার করতে পারেন."
543
 
544
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
545
  msgid "Once you submit this form the settings will be deleted during the page load, however WP Statistics will still show up in your Admin menu until another page load is executed."
546
- msgstr "আপনি সেটিংস পৃষ্ঠা লোড করার সময় মুছে ফেলা হবে এই ফর্মটি আবার জমা একবার অন্য পৃষ্ঠা লোড মৃত্যুদন্ড কার্যকর না হওয়া পর্যন্ত, তবে ডাব্লু পরিসংখ্যান এখনও আপনার অ্যাডমিন মেনু প্রদর্শন করা হবে."
547
 
548
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
549
  msgid "Remove data and settings"
550
- msgstr "তথ্য এবং সেটিংস মুছে ফেলুন"
551
 
552
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
553
  msgid "Remove"
554
- msgstr "অপসারণ"
555
 
556
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
557
  msgid "Remove data and settings, this action cannot be undone."
558
- msgstr "তথ্য এবং সেটিংস মুছে ফেলুন, এই কর্ম পূর্বাবস্থায় ফেরানো যাবে না."
559
 
560
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
561
  msgid "General"
562
- msgstr "সাধারণ"
563
 
564
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
565
  msgid "Notifications"
566
- msgstr "বিজ্ঞপ্তি"
567
 
568
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
569
  msgid "Dashboard/Overview"
570
- msgstr "ড্যাশবোর্ড / সংক্ষিপ্ত বিবরণ"
571
 
572
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
573
  msgid "Access/Exclusions"
574
- msgstr "প্রবেশ / বর্জন"
575
 
576
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:105
577
  msgid "browscap"
578
- msgstr "Browscap"
579
 
580
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:106
581
  msgid "Maintenance"
582
- msgstr "রক্ষণ"
583
 
584
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
585
  msgid "Removal"
586
- msgstr "অপসারণ"
587
 
588
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
589
  msgid "Update"
590
- msgstr "আপডেট"
591
 
592
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:29
593
  msgid "Manual not found: %s"
594
- msgstr "ম্যানুয়াল পাওয়া যায় না:% এর"
595
 
596
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:39
597
  msgid "Invalid file type selected: %s"
598
- msgstr "অবৈধ ফাইল টাইপ নির্বাচন করুন:%s"
599
 
600
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:10
601
  msgid "Once Weekly"
602
- msgstr "সাপ্তাহিক একবার"
603
 
604
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:17
605
  msgid "Once Every 2 Weeks"
606
- msgstr "প্রতি 2 সপ্তাহে একবার"
607
 
608
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:24
609
  msgid "Once Every 4 Weeks"
610
- msgstr "প্রতি 4 সপ্তাহ পরে"
611
 
612
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
613
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:284
614
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:321
615
  msgid "Statistics"
616
  msgstr "পরিসংখ্যান"
617
 
618
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:15
619
  msgid "Show site stats in sidebar."
620
- msgstr "দেখান সাইটের সাইডবারে পরিসংখ্যান."
621
 
622
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:73
623
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:260
@@ -637,11 +752,11 @@ msgstr "এ বছরে দেখেছে"
637
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:108
638
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:275
639
  msgid "Total Page Views"
640
- msgstr "মোট পৃষ্ঠা দেখেছে"
641
 
642
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:116
643
  msgid "Search Engine referred"
644
- msgstr "সার্চ ইঞ্জিন উল্লেখ"
645
 
646
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:123
647
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:298
@@ -697,266 +812,266 @@ msgid "Items"
697
  msgstr "আইটেম"
698
 
699
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
700
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:489
701
  msgid "Yesterday visit"
702
  msgstr "গতকাল দেখেছে"
703
 
704
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:278
705
  msgid "Search Engine Referred"
706
- msgstr "সার্চ ইঞ্জিন রেফার"
707
 
708
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:281
709
  msgid "Select type of search engine"
710
  msgstr "সার্চ ইঞ্জিন নির্বাচন করুন"
711
 
712
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
713
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
714
- msgstr "ত্রুটি: ডাব্লু পরিসংখ্যান পিএইচপি এর একটি অসমর্থিত সংস্করণ সনাক্ত করেছে, ডাব্লু পরিসংখ্যান পিএইচপি সংস্করণ ছাড়া কাজ করবে না"
715
 
716
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
717
  msgid " or higher!"
718
- msgstr "বা উচ্চতর!"
719
 
720
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
721
  msgid "Your current PHP version is"
722
- msgstr "আপনার বর্তমান পিএইচপি সংস্করণ"
723
 
724
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:42
725
  msgid "WP Statistics has been removed, please disable and delete it."
726
- msgstr "ডাব্লু পরিসংখ্যান সরিয়ে ফেলা হয়েছে, নিষ্ক্রিয় এটা দয়া করে মুছে দিন."
727
 
728
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:53
729
  msgid "WP Statistics"
730
- msgstr "ডাব্লু পরিসংখ্যান"
731
 
732
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:54
733
  msgid "Complete statistics for your WordPress site."
734
- msgstr "আপনার ওয়ার্ডপ্রেস সাইটের জন্য সম্পূর্ণ পরিসংখ্যান."
735
 
736
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
737
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
738
- msgstr "ডাব্লু পরিসংখ্যান অনলাইন ব্যবহারকারী ট্র্যাকিং সক্রিয় করা হয় না,%s- যান এবং এটি সক্রিয় করুন."
739
 
740
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
741
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
742
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
743
  msgid "setting page"
744
- msgstr "সেটিং পাতা"
745
 
746
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
747
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
748
- msgstr "সক্রিয় করা হয় না ডাব্লু পরিসংখ্যান ট্র্যাকিং হিট,%s- যান এবং এটি সক্রিয় করুন."
749
 
750
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
751
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
752
- msgstr "ডাব্লু পরিসংখ্যান ট্র্যাকিং পরিদর্শক সক্রিয় করা হয় না,%s- যান এবং এটি সক্রিয় করুন."
753
 
754
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
755
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
756
- msgstr "GeoIP সংগ্রহ সক্রিয় নয়,%s- যান এবং এই বৈশিষ্ট্য সক্রিয় করুন."
757
 
758
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
759
  msgid "Setting page > GeoIP"
760
- msgstr "সেট পাতা&gt; GeoIP"
761
 
762
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:191
763
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
764
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
765
  msgid "Settings"
766
  msgstr "সেটিসং"
767
 
768
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
769
  msgid "Click here to visit the plugin on WordPress.org"
770
- msgstr "WordPress.org প্লাগইন জন্য এখানে ক্লিক করুন"
771
 
772
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
773
  msgid "Visit WordPress.org page"
774
- msgstr "WordPress.org পৃষ্ঠা দেখুন"
775
 
776
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
777
  msgid "Click here to rate and review this plugin on WordPress.org"
778
- msgstr "হার করতে এখানে ক্লিক করুন এবং WordPress.org উপর এই প্লাগ পর্যালোচনা"
779
 
780
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
781
  msgid "Rate this plugin"
782
- msgstr "এই প্লাগ রেট"
783
 
784
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:250
785
  msgid "WP Statistics - Hits"
786
- msgstr "ডাব্লু পরিসংখ্যান - হিট"
787
 
788
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:287
789
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:324
790
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:362
791
  msgid "Overview"
792
- msgstr "সংক্ষিপ্ত বিবরণ"
793
 
794
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
795
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
796
  msgid "Online"
797
- msgstr "অনলাইন"
798
 
799
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
800
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
801
  msgid "Referrers"
802
- msgstr "উল্লেখ"
803
 
804
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
805
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
806
  msgid "Searches"
807
- msgstr "অনুসন্ধান"
808
 
809
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
810
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
811
  msgid "Search Words"
812
- msgstr "অনুসন্ধান শব্দ"
813
 
814
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
815
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
816
  msgid "Top Visitors Today"
817
- msgstr "শীর্ষ দর্শক আজ"
818
 
819
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
820
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
821
  msgid "Optimization"
822
- msgstr "অপ্টিমাইজেশান"
823
 
824
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
825
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:338
826
  msgid "Manual"
827
- msgstr "ম্যানুয়াল"
828
 
829
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
830
  msgid "Site"
831
- msgstr "সাইট"
832
 
833
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:354
834
  msgid "Options"
835
- msgstr "বিকল্প"
836
 
837
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:471
838
  msgid "Today visitor"
839
- msgstr "আজ দেখেছে"
840
 
841
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:477
842
  msgid "Today visit"
843
- msgstr "আজ দেখেছে"
844
 
845
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:483
846
  msgid "Yesterday visitor"
847
- msgstr "গতকাল দেখেছে"
848
 
849
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:495
850
  msgid "View Stats"
851
- msgstr "দেখুন পরিসংখ্যান"
852
 
853
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
854
  msgid "Download ODF file"
855
- msgstr "যেমন ODF ফাইল ডাউনলোড"
856
 
857
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
858
  msgid "Download HTML file"
859
- msgstr "ডাউনলোড করুন HTML ফাইল"
860
 
861
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
862
  msgid "Manual file not found."
863
- msgstr "ম্যানুয়াল ফাইল পাওয়া যায় না."
864
 
865
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
866
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:702
867
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
868
  msgid "You do not have sufficient permissions to access this page."
869
  msgstr "আপনার এই পেজ দেখার মত পর্যাপ্ত অনুমতি নেই।"
870
 
871
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:604
872
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
873
- msgstr "প্লাগইন টেবিল ডাটাবেসের মধ্যে উপস্থিত না! এর রুটিন% এর ইনস্টল% পুনরায় চালনা করুন."
874
 
875
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
876
  msgid "WP Statistics %s installed on"
877
- msgstr "ডাব্লু পরিসংখ্যান%s এর উপর ইনস্টল করা"
878
 
879
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
880
  msgid "Error downloading GeoIP database from: %s - %s"
881
- msgstr "ত্রুটি ডাউনলোড GeoIP ডাটাবেস থেকে:% এর -% এর"
882
 
883
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:45
884
  msgid "Error could not open downloaded GeoIP database for reading: %s"
885
- msgstr "ত্রুটি পড়ার জন্য ডাউনলোড GeoIP ডাটাবেস খুলতে পারে না:%s এর"
886
 
887
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:52
888
  msgid "Error could not open destination GeoIP database for writing %s"
889
- msgstr "% এর লেখার জন্য ত্রুটি পারে না খোলা গন্তব্য GeoIP ডাটাবেস"
890
 
891
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:68
892
  msgid "GeoIP Database updated successfully!"
893
- msgstr "GeoIP ডাটাবেস সফলভাবে আপডেট!"
894
 
895
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
896
  msgid "GeoIP update on"
897
- msgstr "আপডেট GeoIP"
898
 
899
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
900
  msgid "Error downloading browscap database from: %s - %s"
901
- msgstr "থেকে Browscap ডাটাবেস ডাউনলোড ত্রুটি:%s এর -% এর"
902
 
903
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:262
904
  msgid "browscap database updated successfully!"
905
- msgstr "Browscap ডাটাবেস সফলভাবে আপডেট!"
906
 
907
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
908
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
909
- msgstr "Browscap ডাটাবেস ব্যর্থ আপডেট করা হয়েছে! ক্যাশে ফাইল পূর্ববর্তী Browscap.ini প্রত্যাবর্তন, খুব বড়."
910
 
911
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
912
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
913
- msgstr "Browscap ডাটাবেস ব্যর্থ আপডেট করা হয়েছে! নতুন Browscap.ini পূর্ববর্তী Browscap.ini প্রত্যাবর্তন, ক্রলার হিসাবে ব্যবহারকারী এজেন্ট অন্যায় identifing করা হয়."
914
 
915
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
916
  msgid "browscap already at current version!"
917
- msgstr "বর্তমান সংস্করণ ইতিমধ্যে Browscap!"
918
 
919
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
920
  msgid "Browscap.ini update on"
921
- msgstr "উপর Browscap.ini আপডেট"
922
 
923
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
924
  msgid "Quick Stats"
925
- msgstr "দ্রুত পরিসংখ্যান"
926
 
927
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
928
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
929
  msgid "Top 10 Browsers"
930
- msgstr "শীর্ষ 10 ব্রাউজার"
931
 
932
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:57
933
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
934
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:27
935
  msgid "Top 10 Countries"
936
- msgstr "শীর্ষ 10 দেশ"
937
 
938
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
939
  msgid "Today's Visitor Map"
940
- msgstr "আজকের ছবি মানচিত্র"
941
 
942
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
943
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
944
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:8
945
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
946
  msgid "Hit Statistics"
947
- msgstr "হিট পরিসংখ্যান"
948
 
949
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:60
950
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
951
  msgid "Top 10 Pages"
952
- msgstr "শীর্ষ 10 পেজ"
953
 
954
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
955
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:30
956
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
957
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
958
  msgid "Recent Visitors"
959
- msgstr "এ সপ্তাহে দেখেছে"
960
 
961
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:62
962
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:27
@@ -964,85 +1079,85 @@ msgstr "এ সপ্তাহে দেখেছে"
964
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
965
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
966
  msgid "Top Referring Sites"
967
- msgstr "শীর্ষ উল্লেখ সাইট"
968
 
969
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:63
970
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
971
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:74
972
  msgid "Search Engine Referrals"
973
- msgstr "সার্চ ইঞ্জিন রেফারাল"
974
 
975
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:64
976
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:8
977
  msgid "Summary"
978
- msgstr "সংক্ষিপ্ত"
979
 
980
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:65
981
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:30
982
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
983
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:37
984
  msgid "Latest Search Words"
985
- msgstr "সাম্প্রতিক অনুসন্ধান শব্দ"
986
 
987
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:66
988
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
989
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
990
  msgid "Top 10 Visitors Today"
991
- msgstr "শীর্ষ 10 দর্শক আজ"
992
 
993
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
994
  msgid "Please reload the dashboard to display the content of this widget."
995
- msgstr "এই উইজেট সামগ্রী প্রদর্শন করার জন্য ড্যাশবোর্ড পুনরায় লোড করুন."
996
 
997
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
998
  msgid "WP Statistics Overview"
999
- msgstr "ডাব্লু পরিসংখ্যান সংক্ষিপ্ত বিবরণ"
1000
 
1001
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
1002
  msgid "This post is not yet published."
1003
- msgstr "এই পোস্টে এখনো প্রকাশিত হয় না."
1004
 
1005
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
1006
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1007
- msgstr "GeoIP ডাটাবেস লোড করতে অক্ষম, আপনি সেটিংস পৃষ্ঠায় এটি ডাউনলোড করা আছে কি না."
1008
 
1009
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:50
1010
  msgid "Updated %s GeoIP records in the visitors database."
1011
- msgstr "দর্শক ডাটাবেসের মধ্যে আপডেট করা হয়েছে%s এর GeoIP রেকর্ড."
1012
 
1013
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:21
1014
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:39
1015
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:50
1016
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:83
1017
  msgid "%s data older than %s days purged successfully."
1018
- msgstr "পুরোনো% এর দিন% এর তথ্য সফলভাবে পার্জ."
1019
 
1020
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:23
1021
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:41
1022
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:52
1023
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:85
1024
  msgid "No records found to purge from %s!"
1025
- msgstr "কোন রেকর্ড% এর থেকে মুক্ত করতে পাওয়া যায় নি!"
1026
 
1027
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
1028
  msgid "Database pruned on"
1029
- msgstr "ডাটাবেস pruned"
1030
 
1031
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
1032
  msgid "Please select a value over 30 days."
1033
- msgstr "30 দিন ধরে একটি মান নির্বাচন করুন."
1034
 
1035
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
1036
  msgid "Browser Statistics"
1037
- msgstr "ব্রাউজার পরিসংখ্যান"
1038
 
1039
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1040
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1041
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1042
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
1043
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1044
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
1045
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:60
1046
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1047
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1048
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
@@ -1063,293 +1178,295 @@ msgstr "ব্রাউজার পরিসংখ্যান"
1063
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:7
1064
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:6
1065
  msgid "Click to toggle"
1066
- msgstr "টগল করার জন্য ক্লিক করুন"
1067
 
1068
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1070
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1071
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
1072
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:363
1073
  msgid "Browsers"
1074
- msgstr "ব্রাউজার"
1075
 
1076
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:42
1077
  msgid "Browsers by type"
1078
- msgstr "টাইপ দ্বারা ব্রাউজার"
1079
 
1080
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:99
1081
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:34
1082
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
1083
  msgid "Platform"
1084
- msgstr "প্ল্যাটফর্ম"
1085
 
1086
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:126
1087
  msgid "Browsers by platform"
1088
- msgstr "প্ল্যাটফর্ম দ্বারা ব্রাউজার"
1089
 
1090
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:234
1091
  msgid "%s Version"
1092
- msgstr "% এর সংস্করণ"
1093
 
1094
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
1095
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1096
- msgstr "দৃষ্টি আকর্ষণ: অব্যাহতির বর্তমানে রেকর্ড করা সেট করা হয় না, ফলাফল নীচের বর্তমান পরিসংখ্যান প্রতিফলিত নাও হতে পারে!"
1097
 
1098
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
1099
  msgid "Exclusions Statistics"
1100
- msgstr "বর্জন করুন পরিসংখ্যান"
1101
 
1102
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
1103
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1104
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1105
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1106
  msgid "10 Days"
1107
- msgstr "10 দিন"
1108
 
1109
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
1110
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1111
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1112
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1113
  msgid "20 Days"
1114
- msgstr "20 দিন"
1115
 
1116
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1117
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1118
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1119
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1120
  msgid "30 Days"
1121
- msgstr "30 দিন"
1122
 
1123
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1124
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1125
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1127
  msgid "2 Months"
1128
- msgstr "2 মাস"
1129
 
1130
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1131
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1132
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1133
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1134
  msgid "3 Months"
1135
- msgstr "3 মাস"
1136
 
1137
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1138
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1139
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1140
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1141
  msgid "6 Months"
1142
- msgstr "6 মাস"
1143
 
1144
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1145
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1147
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1148
  msgid "9 Months"
1149
- msgstr "9 মাস"
1150
 
1151
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1152
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1153
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1155
  msgid "1 Year"
1156
- msgstr "1 বছর"
1157
 
1158
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
1159
  msgid "Total Exclusions: %s"
1160
- msgstr "মোট বর্জন:% এর"
1161
 
1162
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
1163
  msgid "Exclusions Statistical Chart"
1164
- msgstr "বর্জন পরিসংখ্যান চার্ট"
1165
 
1166
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1167
  msgid "Excluded hits in the last"
1168
- msgstr "গত বাদ হিট"
1169
 
1170
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1171
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1172
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1173
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
1174
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
1175
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
1176
  msgid "days"
1177
- msgstr "দিন"
1178
 
1179
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:118
1180
  msgid "Number of excluded hits"
1181
- msgstr "বাদ হিট সংখ্যা"
1182
 
1183
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
1184
  msgid "Hits Statistics Chart"
1185
- msgstr "হিট পরিসংখ্যান চার্ট"
1186
 
1187
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1188
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
1189
  msgid "Hits in the last"
1190
- msgstr "শেষ হিট"
1191
 
1192
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:81
1193
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:72
1194
  msgid "Number of visits and visitors"
1195
- msgstr "পরিদর্শন এবং দর্শক সংখ্যা"
1196
 
1197
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
1198
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
1199
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:30
1200
  msgid "Visit"
1201
- msgstr "এ সপ্তাহে দেখেছে"
1202
 
1203
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
1204
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
1205
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:29
1206
  msgid "Visitor"
1207
- msgstr "পরিদর্শক"
1208
 
1209
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:62
1210
  msgid "Latest Search Word Statistics"
1211
- msgstr "সাম্প্রতিক অনুসন্ধান শব্দ পরিসংখ্যান"
1212
 
1213
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:97
1214
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
1215
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:48
1216
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1217
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
1219
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:32
1220
  msgid "#hash#"
1221
- msgstr "# হ্যাশ #"
1222
 
1223
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:102
1224
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:102
1225
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:53
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1228
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
1229
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
1230
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:113
1231
  msgid "Map"
1232
- msgstr "মানচিত্র"
1233
 
1234
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1235
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1236
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1237
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1238
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1239
  msgid "Page"
1240
- msgstr "পৃষ্ঠা"
1241
 
1242
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1243
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1244
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1245
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1247
  msgid "From"
1248
- msgstr "থেকে"
1249
 
1250
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
 
1251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1252
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1254
  msgid "All"
1255
  msgstr "সকল"
1256
 
1257
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
1258
  msgid "Search for"
1259
- msgstr "জন্য অনুসন্ধান করুন"
1260
 
1261
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
1262
  msgid "Recent Visitor Statistics"
1263
- msgstr "সাম্প্রতিক ভিজিটর পরিসংখ্যান"
1264
 
1265
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
1266
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
1267
  msgid "Online Users"
1268
- msgstr "অনলাইন ব্যবহারকারী"
1269
 
1270
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:73
1271
  msgid "Online for "
1272
- msgstr "অনলাইন"
1273
 
1274
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
1275
  msgid "Page Trend for Post ID"
1276
- msgstr "পোস্ট আইডি পাতা ট্রেন্ড"
1277
 
1278
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:48
1279
  msgid "Page Trend"
1280
- msgstr "পাতা ট্রেন্ড"
1281
 
1282
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:11
1283
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:30
1284
  msgid "Search Engine Referral Statistics"
1285
- msgstr "সার্চ ইঞ্জিন রেফারেল পরিসংখ্যান"
1286
 
1287
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1288
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
1289
  msgid "Search engine referrals in the last"
1290
- msgstr "গত সার্চ ইঞ্জিন রেফারেলগুলি"
1291
 
1292
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:92
1293
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:76
1294
  msgid "Number of referrals"
1295
- msgstr "রেফারেলগুলি সংখ্যা"
1296
 
 
1297
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1298
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
1300
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:104
1301
  msgid "Total"
1302
- msgstr "মোট দেখা হয়েছে"
1303
 
1304
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:11
1305
  msgid "Top Countries"
1306
- msgstr "শীর্ষ দেশ"
1307
 
1308
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
1309
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:30
1310
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:27
1311
  msgid "Rank"
1312
- msgstr "মর্যাদাক্রম"
1313
 
1314
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
1315
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:31
1316
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:29
1317
  msgid "Flag"
1318
- msgstr "পতাকা"
1319
 
1320
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:22
1321
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:32
1322
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:30
1323
  msgid "Country"
1324
- msgstr "দেশ"
1325
 
1326
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:23
1327
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:33
1328
  msgid "Visitor Count"
1329
- msgstr "ভিজিটর কাউন্ট"
1330
 
1331
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:13
1332
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:138
1333
  msgid "Top Pages"
1334
- msgstr "শীর্ষ পেজ"
1335
 
1336
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:20
1337
  msgid "Top 5 Pages Trends"
1338
- msgstr "শীর্ষ 5 পেজ ট্রেন্ডস"
1339
 
1340
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:49
1341
  msgid "Top 5 Page Trending Stats"
1342
- msgstr "শীর্ষ 5 পাতা থেকে পাতা প্রবণতা পরিসংখ্যান"
1343
 
1344
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1345
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:58
1346
  msgid "Number of Hits"
1347
- msgstr "হিট সংখ্যা"
1348
 
1349
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:166
1350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:32
1351
  msgid "No page title found"
1352
- msgstr "পাওয়া কোন পাতা শিরোনাম"
1353
 
1354
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:169
1355
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:35
@@ -1357,45 +1474,45 @@ msgstr "পাওয়া কোন পাতা শিরোনাম"
1357
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:122
1358
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:127
1359
  msgid "Visits"
1360
- msgstr "এ সপ্তাহে দেখেছে"
1361
 
1362
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
1363
  msgid "To be added soon"
1364
- msgstr "শীঘ্রই যোগ করা হবে"
1365
 
1366
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:40
1367
  msgid "Referring sites from"
1368
- msgstr "থেকে উল্লেখ সাইট"
1369
 
1370
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:110
1371
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:30
1372
  msgid "References"
1373
- msgstr "তথ্যসূত্র"
1374
 
1375
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
1376
  msgid "Top 100 Visitors Today"
1377
- msgstr "শীর্ষ 100 দর্শক আজ"
1378
 
1379
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
1380
  msgid "About WP Statistics Version %s"
1381
- msgstr "ডাব্লু পরিসংখ্যান সংস্করণ% এর সম্পর্কে"
1382
 
1383
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:25
1384
  msgid "Website"
1385
- msgstr "ওয়েবসাইট"
1386
 
1387
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:26
1388
  msgid "Rate and Review"
1389
- msgstr "হার এবং পর্যালোচনা"
1390
 
1391
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:30
1392
  msgid "More Information"
1393
- msgstr "আরো তথ্য"
1394
 
1395
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:39
1396
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:12
1397
  msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
1398
- msgstr "এই পণ্য% এর থেকে উপলব্ধ MaxMind দ্বারা নির্মিত GeoLite2 তথ্য অন্তর্ভুক্ত করা হয়েছে."
1399
 
1400
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1401
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
@@ -1407,73 +1524,61 @@ msgstr "এই পণ্য% এর থেকে উপলব্ধ MaxMind দ
1407
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
1408
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
1409
  msgid "More"
1410
- msgstr "অধিক"
1411
 
1412
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:47
1413
  msgid "Other"
1414
- msgstr "অন্যান্য"
1415
 
1416
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:9
1417
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
1418
  msgid "Today Visitors Map"
1419
- msgstr "আজ দর্শকরা ম্যাপ"
1420
 
1421
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:31
1422
  msgid "Address"
1423
- msgstr "ঠিকানা"
1424
 
1425
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:23
1426
  msgid "User(s) Online"
1427
- msgstr "সদস্য (s) অনলাইন"
1428
 
1429
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:34
1430
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:79
1431
  msgid "Today"
1432
- msgstr "আজ দেখেছে"
1433
 
1434
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:40
1435
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:80
1436
  msgid "Yesterday"
1437
- msgstr "গতকাল দেখেছে"
1438
-
1439
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
1440
- msgid "Week"
1441
- msgstr "সপ্তাহ"
1442
-
1443
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
1444
- msgid "Month"
1445
- msgstr "এ মাসে দেখেছে"
1446
-
1447
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
1448
- msgid "Year"
1449
- msgstr "বছর"
1450
 
1451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1452
  msgid "Daily Total"
1453
- msgstr "দৈনিক মোট"
1454
 
1455
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
1456
  msgid "Current Time and Date"
1457
- msgstr "বর্তমান সময় ও তারিখ"
1458
 
1459
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
1460
  msgid "(Adjustment)"
1461
- msgstr "(নিয়ন্ত্রণ)"
1462
 
1463
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:121
1464
  msgid "Date: %s"
1465
- msgstr "তারিখ:%s এর"
1466
 
1467
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:125
1468
  msgid "Time: %s"
1469
- msgstr "সময়:%s এর"
1470
 
1471
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1472
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:215
1473
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:293
1474
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
1475
  msgid "Hits"
1476
- msgstr "হিট"
1477
 
1478
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
1479
  msgid "IP"
@@ -1481,12 +1586,12 @@ msgstr "আইপি"
1481
 
1482
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
1483
  msgid "Agent"
1484
- msgstr "প্রতিনিধি"
1485
 
1486
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
1487
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1488
  msgid "Version"
1489
- msgstr "সংস্করণ"
1490
 
1491
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
1492
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
@@ -1496,96 +1601,96 @@ msgstr "সংস্করণ"
1496
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:6
1497
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
1498
  msgid "Access denied!"
1499
- msgstr "অ্যাক্সেস অস্বীকৃত!"
1500
 
1501
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
1502
  msgid "%s agent data deleted successfully."
1503
- msgstr "% এর এজেন্ট তথ্য সফলভাবে মোছা হয়েছে."
1504
 
1505
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
1506
  msgid "No agent data found to remove!"
1507
- msgstr "পাওয়া কোন এজেন্ট তথ্য মুছে ফেলার জন্য!"
1508
 
1509
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1510
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1511
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1512
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
1513
  msgid "Please select the desired items."
1514
- msgstr "পছন্দসই আইটেম নির্বাচন করুন."
1515
 
1516
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
1517
  msgid "%s platform data deleted successfully."
1518
- msgstr "% এর প্ল্যাটফর্ম তথ্য সফলভাবে মোছা হয়েছে."
1519
 
1520
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
1521
  msgid "No platform data found to remove!"
1522
- msgstr "পাওয়া কোন প্ল্যাটফর্ম তথ্য মুছে ফেলার জন্য!"
1523
 
1524
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
1525
  msgid "%s table data deleted successfully."
1526
- msgstr "% এর টেবিল তথ্য সফলভাবে মোছা হয়েছে."
1527
 
1528
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:57
1529
  msgid "Error, %s not emptied!"
1530
- msgstr "ত্রুটি,% emptied না!"
1531
 
1532
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
1533
  msgid "Database Setup"
1534
- msgstr "ডাটাবেস সেটআপ"
1535
 
1536
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
1537
  msgid "Re-run Install"
1538
- msgstr "পুনরায় চালানোর ইনস্টল করুন"
1539
 
1540
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
1541
  msgid "Install Now!"
1542
- msgstr "এখন ইনস্টল করুন!"
1543
 
1544
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
1545
  msgid "If for some reason your installation of WP Statistics is missing the database tables or other core items, this will re-execute the install process."
1546
- msgstr "কিছু কারণে ডাব্লু পরিসংখ্যান আপনার ইনস্টলেশন ডাটাবেস টেবিল বা অন্যান্য কোর আইটেম অনুপস্থিত, এই ইনস্টল প্রক্রিয়া পুনরায় চালানো হবে."
1547
 
1548
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:20
1549
  msgid "Database Index"
1550
- msgstr "ডাটাবেস সূচক"
1551
 
1552
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1553
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1554
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:290
1555
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:364
1556
  msgid "Countries"
1557
- msgstr "দেশ"
1558
 
1559
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:39
1560
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:25
1561
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
1562
  msgid "Update Now!"
1563
- msgstr "এখন আপডেট করুন!"
1564
 
1565
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:40
1566
  msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistitors table, delete duplicate entries and add the index."
1567
- msgstr "ডাব্লু পরিসংখ্যান পুরাতন ইনস্টলেশনের কোণার ক্ষেত্রে দর্শক টেবিল ডুপ্লিকেট এন্ট্রি জন্য অনুমতি দেয়. নবীনতর ইনস্টলেশনের টেবিলের উপর একটি অনন্য সূচক সঙ্গে এই বিরুদ্ধে রক্ষা করা. পুরোনো সূচক তৈরি করতে ডুপ্লিকেট এন্ট্রি প্রথম মুছে ফেলা হবে ইনস্টল করা হবে. ক্লিক করে &quot;এখনই আপডেট করুন&quot;, vistitors টেবিল স্ক্যান ডুপ্লিকেট এন্ট্রি মুছে দিন এবং সূচক যোগ করা হবে."
1568
 
1569
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:41
1570
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1571
- msgstr "এই অপারেশন দর্শক টেবিল অনেক সারি সঙ্গে ইনস্টলেশনের উপর একটি দীর্ঘ সময় লাগতে পারে."
1572
 
1573
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:46
1574
  msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table."
1575
- msgstr "ডাব্লু পরিসংখ্যান পুরাতন ইনস্টলেশনের কোণার ক্ষেত্রে দর্শক টেবিল ডুপ্লিকেট এন্ট্রি জন্য অনুমতি দেয়. নবীনতর ইনস্টলেশনের টেবিলের উপর একটি অনন্য সূচক সঙ্গে এই বিরুদ্ধে রক্ষা করা."
1576
 
1577
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:47
1578
  msgid "Congratulations, your installation is already up to date, nothing to do."
1579
- msgstr "অভিনন্দন, আপনার ইনস্টলেশন ইতিমধ্যেই আপ টু ডেট, কিছুই করতে হয়."
1580
 
1581
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
1582
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:147
1583
  msgid "Export"
1584
- msgstr "রপ্তানি"
1585
 
1586
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:12
1587
  msgid "Export from"
1588
- msgstr "রপ্তানি থেকে"
1589
 
1590
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:17
1591
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:35
@@ -1595,149 +1700,149 @@ msgstr "রপ্তানি থেকে"
1595
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:134
1596
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:164
1597
  msgid "Please select"
1598
- msgstr "নির্বাচন করুন"
1599
 
1600
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:24
1601
  msgid "Select the table for the output file."
1602
- msgstr "আউটপুট ফাইল জন্য টেবিল নির্বাচন করুন."
1603
 
1604
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:30
1605
  msgid "Export To"
1606
- msgstr "এক্সপোর্ট করুন"
1607
 
1608
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:41
1609
  msgid "Select the output file type."
1610
- msgstr "আউটপুট ফাইল টাইপ নির্বাচন করুন."
1611
 
1612
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:47
1613
  msgid "Include Header Row"
1614
- msgstr "শিরোলেখ সারি অন্তর্ভুক্ত করুন"
1615
 
1616
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:52
1617
  msgid "Include a header row as the first line of the exported file."
1618
- msgstr "রপ্তানি করা ফাইলের প্রথম লাইন হিসাবে একটি হেডার সারি অন্তর্ভুক্ত করুন."
1619
 
1620
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
1621
  msgid "Start Now!"
1622
- msgstr "এখন শুরু করুন!"
1623
 
1624
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
1625
  msgid "Historical Values"
1626
- msgstr "ঐতিহাসিক মূল্যবোধ"
1627
 
1628
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1629
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1630
- msgstr "দ্রষ্টব্য: আপনি যদি শুধু ডাটাবেস পার্জ আছে এই সংখ্যার সঠিক হতে জন্য আপনি এই পৃষ্ঠাটি পুনরায় লোড করতে হবে."
1631
 
1632
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1633
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1634
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1635
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
1636
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
1637
  msgid "Visitors"
1638
- msgstr "দর্শকরা"
1639
 
1640
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
1641
  msgid "Number of historical number of visitors to the site (current value is %s)."
1642
- msgstr "সাইটের দর্শকদের ঐতিহাসিক সংখ্যা সংখ্যা (বর্তমান মূল্য% এর হয়)."
1643
 
1644
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
1645
  msgid "Number of historical number of visits to the site (current value is %s)."
1646
- msgstr "সাইট ভিজিট ঐতিহাসিক সংখ্যা সংখ্যা (বর্তমান মূল্য% এর হয়)."
1647
 
1648
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
1649
  msgid "Update now!"
1650
- msgstr "এখন আপডেট করুন!"
1651
 
1652
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
1653
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
1654
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:63
1655
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:91
1656
  msgid "Are you sure?"
1657
- msgstr "আপনি কি নিশ্চিত?"
1658
 
1659
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:119
1660
  msgid "Data"
1661
- msgstr "উপাত্ত"
1662
 
1663
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:124
1664
  msgid "Empty Table"
1665
- msgstr "খালি টেবিল"
1666
 
1667
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:137
1668
  msgid "All data table will be lost."
1669
- msgstr "সমস্ত তথ্য টেবিল হারিয়ে যাবে."
1670
 
1671
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:138
1672
  msgid "Clear now!"
1673
- msgstr "এখন সাফ!"
1674
 
1675
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:146
1676
  msgid "Purge records older than"
1677
- msgstr "রেচক পদার্থ রেকর্ড আর পুরোনো"
1678
 
1679
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:152
1680
  msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
1681
- msgstr "দিনের নির্বাচিত সংখ্যা আর পুরোনো মুছে ফেলা ব্যবহারকারী পরিসংখ্যান তথ্য. নূন্যতম মূল্য 30 দিন."
1682
 
1683
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:153
1684
  msgid "Purge now!"
1685
- msgstr "এখন অভিযোগমোচন!"
1686
 
1687
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:160
1688
  msgid "Delete User Agent Types"
1689
- msgstr "ব্যবহারকারী এজেন্ট ধরন মুছে দিন"
1690
 
1691
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:165
1692
  msgid "Delete Agents"
1693
- msgstr "এজেন্ট মুছে দিন"
1694
 
1695
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
1696
  msgid "All visitor data will be lost for this agent type."
1697
- msgstr "সমস্ত পরিদর্শক তথ্য এই এজেন্ট টাইপ জন্য হারিয়ে যাবে."
1698
 
1699
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:181
1700
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:205
1701
  msgid "Delete now!"
1702
- msgstr "এখন মুছে দিন!"
1703
 
1704
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:189
1705
  msgid "Delete Platforms"
1706
- msgstr "প্ল্যাটফর্ম মুছে দিন"
1707
 
1708
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:204
1709
  msgid "All visitor data will be lost for this platform type."
1710
- msgstr "সমস্ত পরিদর্শক তথ্য এই প্ল্যাটফর্ম টাইপ জন্য হারিয়ে যাবে."
1711
 
1712
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:17
1713
  msgid "Resources"
1714
- msgstr "সম্পদ"
1715
 
1716
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:22
1717
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:27
1718
  msgid "Memory usage in PHP"
1719
- msgstr "পিএইচপি মেমরি ব্যবহার"
1720
 
1721
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
1722
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:37
1723
  msgid "Byte"
1724
- msgstr "বাইট"
1725
 
1726
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
1727
  msgid "Last Overview page memory usage"
1728
- msgstr "গত সংক্ষিপ্ত বিবরণ পৃষ্ঠা মেমরি ব্যবহার"
1729
 
1730
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
1731
  msgid "Memory usage in the overview page"
1732
- msgstr "সংক্ষিপ্ত বিবরণ পৃষ্ঠা মেমরি ব্যবহার"
1733
 
1734
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
1735
  msgid "PHP Memory Limit"
1736
- msgstr "পিএইচপি মেমরি সীমা"
1737
 
1738
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:49
1739
  msgid "The memory limit a script is allowed to consume, set in php.ini."
1740
- msgstr "মেমরি সীমা একটি স্ক্রিপ্ট php.ini সেট, গ্রাস করার অনুমতি দেওয়া হয়."
1741
 
1742
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:55
1743
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:66
@@ -1746,7 +1851,7 @@ msgstr "মেমরি সীমা একটি স্ক্রিপ্ট ph
1746
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:99
1747
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:110
1748
  msgid "Number of rows in the %s table"
1749
- msgstr "% এর টেবিল মধ্যে সারি সংখ্যা"
1750
 
1751
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
1752
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
@@ -1755,7 +1860,7 @@ msgstr "% এর টেবিল মধ্যে সারি সংখ্যা
1755
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:103
1756
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:114
1757
  msgid "Row"
1758
- msgstr "সারি"
1759
 
1760
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:60
1761
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:71
@@ -1764,563 +1869,563 @@ msgstr "সারি"
1764
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:104
1765
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:115
1766
  msgid "Number of rows"
1767
- msgstr "সারি সংখ্যা"
1768
 
1769
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:120
1770
  msgid "Version Info"
1771
- msgstr "সংস্করণ তথ্য"
1772
 
1773
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:125
1774
  msgid "WP Statistics Version"
1775
- msgstr "ডাব্লু পরিসংখ্যান সংস্করণ"
1776
 
1777
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:130
1778
  msgid "The WP Statistics version you are running."
1779
- msgstr "ডাব্লু পরিসংখ্যান সংস্করণ আপনি চলমান."
1780
 
1781
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:136
1782
  msgid "PHP Version"
1783
- msgstr "পিএইচপি সংস্করণ"
1784
 
1785
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:141
1786
  msgid "The PHP version you are running."
1787
- msgstr "পিএইচপি সংস্করণ আপনি চলমান হয়."
1788
 
1789
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:147
1790
  msgid "PHP Safe Mode"
1791
- msgstr "পিএইচপি সেফ মোড"
1792
 
1793
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
1794
  msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
1795
- msgstr "পিএইচপি সেফ মোড সক্রিয়. GeoIP কোড সেফ মোড সমর্থিত হয় না."
1796
 
1797
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
1798
  msgid "jQuery Version"
1799
- msgstr "jQuery সংস্করণ"
1800
 
1801
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:163
1802
  msgid "The jQuery version you are running."
1803
- msgstr "jQuery সংস্করণ আপনি চলমান হয়."
1804
 
1805
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:169
1806
  msgid "cURL Version"
1807
- msgstr "কার্ল সংস্করণ"
1808
 
1809
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:173
1810
  msgid "cURL not installed"
1811
- msgstr "ইনস্টল করা না কার্ল"
1812
 
1813
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:174
1814
  msgid "The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled."
1815
- msgstr "পিএইচপি curl এক্সটেনশন সংস্করণ আপনি চলমান. এটা GeoIP নিষ্ক্রিয় করা হবে ইনস্টল না করা হলে কার্ল, GeoIP কোড প্রয়োজন বোধ করা হয়."
1816
 
1817
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
1818
  msgid "BC Math"
1819
- msgstr "খ্রিস্টপূর্ব ম্যাথ"
1820
 
1821
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
1822
  msgid "Installed"
1823
- msgstr "ইনস্টল"
1824
 
1825
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
1826
  msgid "Not installed"
1827
- msgstr "ইনস্টল করা না"
1828
 
1829
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
1830
  msgid "If the PHP BC Math Extension is installed. BC Math is no longer required for the GeoIP code and is listed here only for historical reasons."
1831
- msgstr "যদি পিএইচপি বিসি ম্যাথ এক্সটেনশন ইনস্টল করা হয়. খ্রিস্টপূর্ব ম্যাথ আর GeoIP কোড জন্য প্রয়োজন বোধ করা হয় এবং শুধুমাত্র ঐতিহাসিক কারণে এখানে তালিকাভুক্ত করা হয়."
1832
 
1833
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:190
1834
  msgid "File Info"
1835
- msgstr "তথ্য ফাইল"
1836
 
1837
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:195
1838
  msgid "GeoIP Database"
1839
- msgstr "GeoIP ডাটাবেস"
1840
 
1841
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:204
1842
  msgid "Database file does not exist."
1843
- msgstr "ডাটাবেস ফাইল বিদ্যমান নেই."
1844
 
1845
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:206
1846
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:225
1847
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:244
1848
  msgid ", created on "
1849
- msgstr ", তৈরি"
1850
 
1851
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
1852
  msgid "The file size and date of the GeoIP database."
1853
- msgstr "ফাইল সাইজ এবং GeoIP ডাটাবেসের তারিখ."
1854
 
1855
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
1856
  msgid "browscap.ini File"
1857
- msgstr "Browscap.ini ফাইল"
1858
 
1859
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:223
1860
  msgid "browscap.ini file does not exist."
1861
- msgstr "Browscap.ini ফাইল বিদ্যমান নেই."
1862
 
1863
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:227
1864
  msgid "The file size and date of the browscap.ini file."
1865
- msgstr "ফাইল সাইজ এবং Browscap.ini ফাইল তারিখ."
1866
 
1867
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:233
1868
  msgid "browscap Cache File"
1869
- msgstr "Browscap ক্যাশে ফাইল"
1870
 
1871
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:242
1872
  msgid "browscap cache file does not exist."
1873
- msgstr "Browscap ক্যাশে ফাইল বিদ্যমান নেই."
1874
 
1875
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:246
1876
  msgid "The file size and date of the browscap cache file."
1877
- msgstr "ফাইল সাইজ এবং Browscap ক্যাশে ফাইল তারিখ."
1878
 
1879
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:251
1880
  msgid "Client Info"
1881
- msgstr "ক্লায়েন্ট তথ্য"
1882
 
1883
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:256
1884
  msgid "Client IP"
1885
- msgstr "ক্লায়েন্ট আইপি"
1886
 
1887
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:261
1888
  msgid "The client IP address."
1889
- msgstr "ক্লায়েন্ট IP ঠিকানা."
1890
 
1891
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:267
1892
  msgid "User Agent"
1893
- msgstr "ব্যবহারকারী এজেন্ট"
1894
 
1895
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:272
1896
  msgid "The client user agent string."
1897
- msgstr "ক্লায়েন্ট ইউজার এজেন্ট স্ট্রিং."
1898
 
1899
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
1900
  msgid "Browser"
1901
- msgstr "ব্রাউজার"
1902
 
1903
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
1904
  msgid "The detected client browser."
1905
- msgstr "সনাক্ত ক্লায়েন্ট ব্রাউজার."
1906
 
1907
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
1908
  msgid "The detected client browser version."
1909
- msgstr "সনাক্ত ক্লায়েন্ট ব্রাউজার সংস্করণ."
1910
 
1911
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
1912
  msgid "The detected client platform."
1913
- msgstr "সনাক্ত ক্লায়েন্ট প্ল্যাটফর্ম."
1914
 
1915
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
1916
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
1917
- msgstr "এই হ্যাশ ভ্যালুর সঙ্গে ডাটাবেসের মধ্যে সমস্ত IP ঠিকানা প্রতিস্থাপন করবে এবং পূর্বাবস্থা করা যাবে না, আপনি কি নিশ্চিত?"
1918
 
1919
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
1920
  msgid "GeoIP Options"
1921
- msgstr "GeoIP বিকল্প"
1922
 
1923
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:26
1924
  msgid "Updates any unknown location data in the database, this may take a while"
1925
- msgstr "ডাটাবেসের মধ্যে কোনো অজানা অবস্থান তথ্য আপডেট, এই সময় নিতে পারে"
1926
 
1927
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:31
1928
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:66
1929
  msgid "IP Addresses"
1930
- msgstr "আইপি ঠিকানা"
1931
 
1932
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:36
1933
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:71
1934
  msgid "Hash IP Addresses"
1935
- msgstr "হ্যাশ আইপি ঠিকানা"
1936
 
1937
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:41
1938
  msgid "Replace IP addresses in the database with hash values, you will not be able to recover the IP addresses in the future to populate location information afterwards and this may take a while"
1939
- msgstr "হ্যাশ ভ্যালুর সঙ্গে ডাটাবেসের মধ্যে IP ঠিকানা, প্রতিস্থাপন, আপনি পরে অবস্থান তথ্য পূরণ করতে ভবিষ্যতে IP ঠিকানা পুনরুদ্ধার করতে সক্ষম হবে না এবং এই সময় নিতে পারে"
1940
 
1941
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:43
1942
  msgid "IP Addresses replaced with hash values."
1943
- msgstr "আইপি ঠিকানা হ্যাশ ভ্যালুর সঙ্গে প্রতিস্থাপিত."
1944
 
1945
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:51
1946
  msgid "Install routine complete."
1947
- msgstr "রুটিন সম্পূর্ণ ইনস্টল করুন."
1948
 
1949
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:146
1950
  msgid "Resources/Information"
1951
- msgstr "সম্পদ / তথ্য"
1952
 
1953
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:148
1954
  msgid "Purging"
1955
- msgstr "শুদ্ধিকরণ"
1956
 
1957
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:149
1958
  msgid "Database"
1959
- msgstr "ডাটাবেস"
1960
 
1961
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:150
1962
  msgid "Updates"
1963
- msgstr "আপডেট"
1964
 
1965
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
1966
  msgid "Historical"
1967
- msgstr "ঐতিহাসিক"
1968
 
1969
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
1970
  msgid "WP Statistics V%s"
1971
- msgstr "ডাব্লু পরিসংখ্যান ভী% এর"
1972
 
1973
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:20
1974
  msgid "Visit Us Online"
1975
- msgstr "আমাদের অনলাইন যান"
1976
 
1977
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
1978
  msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
1979
- msgstr "আমাদের মহান নতুন% এর যান এবং ডাব্লু পরিসংখ্যান সম্পর্কে সর্বশেষ খবর উপর আপ টু ডেট রাখা আসা."
1980
 
1981
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
1982
  msgid "website"
1983
- msgstr "ওয়েবসাইট"
1984
 
1985
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
1986
  msgid "Rate and Review at WordPress.org"
1987
- msgstr "WordPress.org এ হার এবং পর্যালোচনা"
1988
 
1989
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
1990
  msgid "Thanks for installing WP Statistics, we encourage you to submit a "
1991
- msgstr "ডাব্লু পরিসংখ্যান ইনস্টল করার জন্য ধন্যবাদ, আমরা একটি জমা দিতে উত্সাহিত"
1992
 
1993
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
1994
  msgid "rating and review"
1995
- msgstr "রেটিং ও পর্যালোচনা"
1996
 
1997
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
1998
  msgid "over at WordPress.org. Your feedback is greatly appreciated!"
1999
- msgstr "উপর WordPress.org এ. আপনার মতামত ব্যাপকভাবে প্রশংসা করা হয়!"
2000
 
2001
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:36
2002
  msgid "Translations"
2003
- msgstr "অনুবাদের"
2004
 
2005
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
2006
  msgid "WP Statistics supports internationalization and we encourage our users to submit translations, please visit our %s to see the current status and %s if you would like to help."
2007
- msgstr "আপনি সাহায্য করতে চান তাহলে ডাব্লু পরিসংখ্যান আন্তর্জাতিকীকরণ সমর্থন করে এবং আমরা অনুবাদের জমা দিতে আমাদের ব্যবহারকারীদের উৎসাহিত, বর্তমান অবস্থা এবং%s এর দেখতে আমাদের% এর অনুগ্রহ করে পরিদর্শন করুন."
2008
 
2009
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
2010
  msgid "translation collaboration site"
2011
- msgstr "অনুবাদ সহযোগিতা সাইট"
2012
 
2013
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
2014
  msgid "drop us a line"
2015
- msgstr "আমাদের একটি লাইন ড্রপ"
2016
 
2017
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:44
2018
  msgid "Support"
2019
- msgstr "সহায়তা"
2020
 
2021
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:49
2022
  msgid "We're sorry you're having problem with WP Statistics and we're happy to help out. Here are a few things to do before contacting us:"
2023
- msgstr "আমরা আপনাকে ডাব্লু পরিসংখ্যান সঙ্গে সমস্যা হচ্ছে দুঃখিত এবং আমরা সাহায্য খুশি. এখানে আমাদের সাথে যোগাযোগ করার আগে কি কিছু বিষয় আছে:"
2024
 
2025
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
2026
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
2027
  msgid "Have you read the %s?"
2028
- msgstr "আপনি যখন% এর পড়া আছে?"
2029
 
2030
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
2031
  msgid "FAQs"
2032
- msgstr "প্রায়শই জিজ্ঞাসিত প্রশ্নাবলী"
2033
 
2034
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
2035
  msgid "manual"
2036
- msgstr "ম্যানুয়াল"
2037
 
2038
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
2039
  msgid "Have you search the %s for a similar issue?"
2040
- msgstr "আপনি যদি অনুরূপ সমস্যার জন্য% এর অনুসন্ধান আছে?"
2041
 
2042
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
2043
  msgid "support forum"
2044
- msgstr "সহায়তা ফোরাম"
2045
 
2046
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:55
2047
  msgid "Have you search the Internet for any error messages you are receiving?"
2048
- msgstr "আপনি গ্রহণ করা হয় কোনো ত্রুটি বার্তা জন্য ইন্টারনেট অনুসন্ধান আছে?"
2049
 
2050
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
2051
  msgid "Make sure you have access to your PHP error logs."
2052
- msgstr "আপনি আপনার পিএইচপি ত্রুটির লগ এক্সেস আছে নিশ্চিত করুন."
2053
 
2054
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
2055
  msgid "And a few things to double-check:"
2056
- msgstr "একটি ডবল চেক করতে কয়েকটি বিষয়:"
2057
 
2058
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:62
2059
  msgid "How's your memory_limit in php.ini?"
2060
- msgstr "কিভাবে php.ini আপনার memory_limit আছে?"
2061
 
2062
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:63
2063
  msgid "Have you tried disabling any other plugins you may have installed?"
2064
- msgstr "আপনি ইনস্টল করতে পারেন অন্য কোন প্লাগিন নিষ্ক্রিয় চেষ্টা করছেন?"
2065
 
2066
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:64
2067
  msgid "Have you tried using the default WordPress theme?"
2068
- msgstr "আপনি ডিফল্ট ওয়ার্ডপ্রেস থিম ব্যবহার করে চেষ্টা করেছি?"
2069
 
2070
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:65
2071
  msgid "Have you double checked the plugin settings?"
2072
- msgstr "আপনি ডবল প্লাগ সেটিংস চেক আছে?"
2073
 
2074
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:66
2075
  msgid "Do you have all the required PHP extensions installed?"
2076
- msgstr "আপনি সব প্রয়োজনীয় পিএইচপি এক্সটেনশন ইনস্টল করা আছে না?"
2077
 
2078
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:67
2079
  msgid "Are you getting a blank or incomplete page displayed in your browser? Did you view the source for the page and check for any fatal errors?"
2080
- msgstr "যদি আপনার ব্রাউজার সাপোর্ট প্রদর্শিত একটি ফাঁকা বা অসম্পূর্ণ পাতা পাচ্ছেন? আপনি পৃষ্ঠার জন্য সোর্স দেখতে এবং কোন মারাত্মক ত্রুটির জন্য পরীক্ষা কি?"
2081
 
2082
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:68
2083
  msgid "Have you checked your PHP and web server error logs?"
2084
- msgstr "আপনি আপনার পিএইচপি এবং ওয়েব সার্ভার ত্রুটির লগ চেক করা আছে?"
2085
 
2086
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
2087
  msgid "Still not having any luck?"
2088
- msgstr "এখনও কোনো দৈব না?"
2089
 
2090
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
2091
  msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
2092
- msgstr "তারপর%s এর উপর একটি নতুন থ্রেড খোলার জন্য দয়া করে এবং আমরা যত তাড়াতাড়ি সম্ভব সাড়া পাবেন."
2093
 
2094
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
2095
  msgid "WordPress.org support forum"
2096
- msgstr "WordPress.org সহায়তা ফোরাম"
2097
 
2098
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
2099
  msgid "Alternatively %s support is available as well."
2100
- msgstr "অন্যথায়% এর সমর্থন উপলব্ধ হিসাবে ভাল."
2101
 
2102
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
2103
  msgid "Farsi"
2104
- msgstr "ফার্সি"
2105
 
2106
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
2107
  msgid "WP Statistics Honey Pot Page"
2108
- msgstr "ডাব্লু পরিসংখ্যান মধু পট পাতা"
2109
 
2110
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
2111
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2112
- msgstr "এই মুছে দিন না, ব্যবহার করা ডাব্লু পরিসংখ্যান মধু পাত্র."
2113
 
2114
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
2115
  msgid "Access Levels"
2116
- msgstr "প্রবেশ স্তর"
2117
 
2118
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:74
2119
  msgid "Required user level to view WP Statistics"
2120
- msgstr "ইউজার স্তর ডাব্লু পরিসংখ্যান দেখতে"
2121
 
2122
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:89
2123
  msgid "Required user level to manage WP Statistics"
2124
- msgstr "ইউজার স্তর ডাব্লু পরিসংখ্যান পরিচালনা করা"
2125
 
2126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
2127
  msgid "See the %s for details on capability levels."
2128
- msgstr "ক্ষমতা মাত্রা বিস্তারিত তথ্যের জন্য,%s দেখুন."
2129
 
2130
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
2131
  msgid "WordPress Roles and Capabilities page"
2132
- msgstr "ওয়ার্ডপ্রেস ভূমিকা এবং ক্ষমতা পাতা"
2133
 
2134
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:98
2135
  msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
2136
- msgstr "ইঙ্গিত: manage_network = সুপার অ্যাডমিন নেটওয়ার্ক, manage_options = প্রশাসক, edit_others_posts = সম্পাদক, publish_posts = লেখক, edit_posts = অবদানকারী, = প্রত্যেকেরই."
2137
 
2138
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:99
2139
  msgid "Each of the above casscades the rights upwards in the default WordPress configuration. So for example selecting publish_posts grants the right to Authors, Editors, Admins and Super Admins."
2140
- msgstr "ডিফল্ট ওয়ার্ডপ্রেস কনফিগারেশন অধিকার ঊর্ধ্বে উপরে casscades প্রত্যেকটি. সুতরাং উদাহরণস্বরূপ নির্বাচন publish_posts জন্য লেখক, সম্পাদক, প্রশাসকদের এবং সুপার প্রশাসকদের অধিকার দান করেন."
2141
 
2142
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:100
2143
  msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
2144
- msgstr "আপনি অ্যাক্সেস প্রতিনিধি আরো একটি শক্তসমর্থ সমাধান প্রয়োজন, তাহলে আপনি ওয়ার্ডপ্রেস প্লাগইন ডিরেক্টরির মধ্যে% এর তাকান করতে চাইবেন."
2145
 
2146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2147
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
2148
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
2149
  msgid "Exclusions"
2150
- msgstr "বর্জন"
2151
 
2152
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:109
2153
  msgid "Record exclusions"
2154
- msgstr "রেকর্ড বহিষ্কার"
2155
 
2156
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:111
2157
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:165
2158
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:192
2159
  msgid "Enable"
2160
- msgstr "সক্রিয়"
2161
 
2162
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:112
2163
  msgid "This will record all the excluded hits in a separate table with the reasons why it was excluded but no other information. This will generate a lot of data but is useful if you want to see the total number of hits your site gets, not just actual user visits."
2164
- msgstr "এটি বাদ দেওয়া হয়েছিল কারণ কিন্তু অন্য কোন তথ্য দিয়ে একটি পৃথক টেবিল সব বাদ হিট রেকর্ড করা হবে. এই তথ্য অনেক উৎপন্ন কিন্তু আপনি আপনার সাইটে পায় হিট মোট সংখ্যা, ঠিক না প্রকৃত ব্যবহারকারী ভিজিট দেখতে চান দরকারী হবে."
2165
 
2166
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:117
2167
  msgid "Exclude User Roles"
2168
- msgstr "ব্যবহারকারী ভূমিকা অপসারণের"
2169
 
2170
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:133
2171
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:247
2172
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:254
2173
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:261
2174
  msgid "Exclude"
2175
- msgstr "বহিষ্কৃত করা"
2176
 
2177
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:134
2178
  msgid "Exclude %s role from data collection."
2179
- msgstr "তথ্য সংগ্রহ থেকে% এর ভূমিকা অগ্রাহ্য করা."
2180
 
2181
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:140
2182
  msgid "IP/Robot Exclusions"
2183
- msgstr "আইপি / রোবট বর্জন"
2184
 
2185
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:144
2186
  msgid "Robot list"
2187
- msgstr "রোবট তালিকা"
2188
 
2189
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:157
2190
  msgid "A list of words (one per line) to match against to detect robots. Entries must be at least 4 characters long or they will be ignored."
2191
- msgstr "রোবট সনাক্ত করতে বিরুদ্ধে শব্দের একটি তালিকা (প্রতি লাইনে একটি) মেলে. থেকে অন্তত 4 অক্ষর দীর্ঘ হতে পারে অথবা তারা উপেক্ষা করা হবে."
2192
 
2193
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:158
2194
  msgid "Reset to Default"
2195
- msgstr "ডিফল্ট রিসেট"
2196
 
2197
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:163
2198
  msgid "Force robot list update after upgrades"
2199
- msgstr "ফোর্স রোবট তালিকা আপডেট আপগ্রেড করার পরে"
2200
 
2201
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:166
2202
  msgid "Force the robot list to be reset to the default after an update to WP Statistics takes place. Note if this option is enabled any custom robots you have added to the list will be lost."
2203
- msgstr "ডাব্লু পরিসংখ্যান একটি আপডেট করার পরে সঞ্চালিত ডিফল্ট করা রিসেট করার রোবট তালিকা বল. এই অপশনটি হারিয়ে যাবে আপনি তালিকায় যুক্ত হয়েছে কোনো কাস্টম রোবট সক্রিয় করা থাকলে উল্লেখ্য."
2204
 
2205
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
2206
  msgid "Robot visit threshold"
2207
- msgstr "রোবট দর্শন থ্রেশহোল্ড"
2208
 
2209
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
2210
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2211
- msgstr "রোবট হিসাবে প্রতিদিন ভিজিট এই সংখ্যার চেয়ে আরো সঙ্গে দর্শক আচরণ. 0 = অক্ষম."
2212
 
2213
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
2214
  msgid "Excluded IP address list"
2215
- msgstr "বহিষ্কৃত আইপি ঠিকানা তালিকা"
2216
 
2217
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:182
2218
  msgid "A list of IP addresses and subnet masks (one per line) to exclude from statistics collection (both 192.168.0.0/24 and 192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address only, use a subnet value of 32 or 255.255.255.255."
2219
- msgstr "আইপি ঠিকানা এবং সাবনেট মাস্ক (প্রতি লাইনে একটি) একটি তালিকা পরিসংখ্যান সংগ্রহ থেকে অগ্রাহ্য (উভয় যেমন 192.168.0.0/24 এবং 192.168.0.0/255.255.255.0 ফরম্যাটের গ্রহণ করা হয়). শুধুমাত্র একটি IP ঠিকানা উল্লেখ করার জন্য, 32 বা 255.255.255.255 একটি সাবনেট মান ব্যবহার করুন."
2220
 
2221
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:183
2222
  msgid "Add 10.0.0.0"
2223
- msgstr "10.0.0.0 যোগ করুন"
2224
 
2225
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:184
2226
  msgid "Add 172.16.0.0"
2227
- msgstr "172.16.0.0 যোগ করুন"
2228
 
2229
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:185
2230
  msgid "Add 192.168.0.0"
2231
- msgstr "192.168.0.0 যোগ করুন"
2232
 
2233
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
2234
  msgid "Use honey pot"
2235
- msgstr "মধু পাত্র ব্যবহার করুন"
2236
 
2237
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
2238
  msgid "Use a honey pot page to identify robots."
2239
- msgstr "রোবট সনাক্ত করার জন্য একটি মধু পাত্র পাতা ব্যবহার করুন."
2240
 
2241
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
2242
  msgid "Honey pot post id"
2243
- msgstr "মধু পাত্র পোস্ট আইডি"
2244
 
2245
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
2246
  msgid "The post id to use for the honeypot page."
2247
- msgstr "পোস্ট আইডি honeypot পৃষ্ঠার জন্য ব্যবহার করার জন্য."
2248
 
2249
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
2250
  msgid "Create a new honey pot page"
2251
- msgstr "একটি নতুন মধু পাত্র পাতা তৈরি করুন"
2252
 
2253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
2254
  msgid "GeoIP Exclusions"
2255
- msgstr "GeoIP বর্জন"
2256
 
2257
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
2258
  msgid "Excluded countries list"
2259
- msgstr "বহিষ্কৃত দেশের তালিকা"
2260
 
2261
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
2262
  msgid "A list of country codes (one per line, two letters each) to exclude from statistics collection. Use \"000\" (three zeros) to exclude unknown countries."
2263
- msgstr "দেশের কোড (প্রতি লাইনে এক, দুই অক্ষর প্রতিটি) একটি তালিকা পরিসংখ্যান সংগ্রহ থেকে বাদ দিতে. অজানা দেশে অগ্রাহ্য &quot;000&quot; (তিন শূন্য) ব্যবহার করুন."
2264
 
2265
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
2266
  msgid "Included countries list"
2267
- msgstr "অন্তর্ভুক্ত দেশের তালিকা"
2268
 
2269
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
2270
  msgid "A list of country codes (one per line, two letters each) to include in statistics collection, if this list is not empty, only visitors from the included countries will be recorded. Use \"000\" (three zeros) to exclude unknown countries."
2271
- msgstr "দেশের কোড (প্রতি লাইনে এক, দুই অক্ষর প্রতিটি) একটি তালিকা এই তালিকা খালি না হয়, অন্তর্ভুক্ত দেশ থেকে শুধুমাত্র দর্শক রেকর্ড করা হবে, পরিসংখ্যান সংগ্রহে অন্তর্ভুক্ত. অজানা দেশে অগ্রাহ্য &quot;000&quot; (তিন শূন্য) ব্যবহার করুন."
2272
 
2273
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
2274
  msgid "Host Exclusions"
2275
- msgstr "হোস্ট বর্জন"
2276
 
2277
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
2278
  msgid "Excluded hosts list"
2279
- msgstr "বহিষ্কৃত হোস্ট তালিকা"
2280
 
2281
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
2282
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2283
- msgstr "সম্পূর্ণরূপে যোগ্যতাসম্পন্ন হোস্ট নাম (অর্থাৎ. Server.example.com, এক প্রতি লাইন) একটি তালিকা পরিসংখ্যান সংগ্রহ থেকে বাদ দিতে."
2284
 
2285
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
2286
  msgid "Note: this option will NOT perform a reverse DNS lookup on each page load but instead cache the IP address for the provided hostnames for one hour. If you are excluding dynamically assigned hosts you may find some degree of overlap when the host changes it's IP address and when the cache is updated resulting in some hits recorded."
2287
- msgstr "দ্রষ্টব্য: এই বিকল্প এক ঘন্টার জন্য দেওয়া হোস্ট-নেম IP ঠিকানা প্রতিটি পৃষ্ঠার লোড নেভিগেশন একটি বিপরীত DNS- র লুকআপ সঞ্চালন কিন্তু এর পরিবর্তে ক্যাশে করা হবে না. আপনি পরিবর্তনশীল নির্ধারিত হোস্ট ব্যতীত হয় হোস্ট এটা IP ঠিকানা পরিবর্তন করে যখন এবং ক্যাশে রেকর্ড কিছু হিট ফলে আপডেট করা হয় যখন আপনি আবৃত কিছু ডিগ্রী পেতে পারে."
2288
 
2289
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
2290
  msgid "Site URL Exclusions"
2291
- msgstr "সাইট URL টি বর্জন"
2292
 
2293
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:245
2294
  msgid "Excluded login page"
2295
- msgstr "বহিষ্কৃত লগইন পাতা"
2296
 
2297
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:248
2298
  msgid "Exclude the login page for registering as a hit."
2299
- msgstr "একটি আঘাত হিসেবে নিবন্ধন করার জন্য লগইন পৃষ্ঠায় অপসারণের."
2300
 
2301
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:252
2302
  msgid "Excluded admin pages"
2303
- msgstr "বহিষ্কৃত অ্যাডমিন পেজ"
2304
 
2305
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:255
2306
  msgid "Exclude the admin pages for registering as a hit."
2307
- msgstr "একটি আঘাত হিসেবে নিবন্ধন করার জন্য অ্যাডমিন পেজ অপসারণের."
2308
 
2309
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
2310
  msgid "Excluded RSS feeds"
2311
- msgstr "বহিষ্কৃত আরএসএস ফিড"
2312
 
2313
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
2314
  msgid "Exclude the RSS feeds for registering as a hit."
2315
- msgstr "আরএসএস একটি আঘাত হিসেবে নিবন্ধন করার জন্য ফিড অপসারণের."
2316
 
2317
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
2318
  msgid "browscap settings"
2319
- msgstr "Browscap সেটিংস"
2320
 
2321
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:27
2322
  msgid "browscap usage"
2323
- msgstr "Browscap ব্যবহার"
2324
 
2325
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:32
2326
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:56
@@ -2337,6 +2442,7 @@ msgstr "Browscap ব্যবহার"
2337
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2338
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2339
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
 
2340
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
@@ -2351,50 +2457,50 @@ msgstr "Browscap ব্যবহার"
2351
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:147
2352
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:159
2353
  msgid "Active"
2354
- msgstr "সক্রিয়"
2355
 
2356
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:33
2357
  msgid "The browscap database will be downloaded and used to detect robots."
2358
- msgstr "Browscap ডাটাবেস ডাউনলোড এবং রোবট সনাক্ত করতে ব্যবহার করা হবে."
2359
 
2360
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:39
2361
  msgid "Update browscap Info"
2362
- msgstr "আপডেট Browscap তথ্য"
2363
 
2364
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:44
2365
  msgid "Download browscap Database"
2366
- msgstr "ডাউনলোড Browscap ডাটাবেস"
2367
 
2368
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:45
2369
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:60
2370
  msgid "Save changes on this page to download the update."
2371
- msgstr "আপডেট ডাউনলোড করতে এই পৃষ্ঠায় পরিবর্তনগুলি সংরক্ষণ করুন."
2372
 
2373
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:51
2374
  msgid "Schedule weekly update of browscap DB"
2375
- msgstr "Browscap ডিবি সাপ্তাহিক আপডেট সময়সূচী"
2376
 
2377
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:59
2378
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:74
2379
  msgid "Next update will be"
2380
- msgstr "পরবর্তী আপডেট করা হবে"
2381
 
2382
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:74
2383
  msgid "Download of the browscap database will be scheduled for once a week."
2384
- msgstr "Browscap ডাটাবেস ডাউনলোড করুন একবার এক সপ্তাহের জন্য নির্ধারিত করা হবে."
2385
 
2386
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:50
2387
  msgid "This will delete the manual when you save the settings, are you sure?"
2388
- msgstr "আপনি সেটিংস সংরক্ষণ করুন যখন এই আপনি নিশ্চিত, ম্যানুয়াল মুছে ফেলা হবে?"
2389
 
2390
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:77
2391
  msgid "This feature will not store IP addresses in the database but instead used a unique hash. The \"Store entire user agent string\" setting will be disabled if this is selected. You will not be able to recover the IP addresses in the future to recover location information if this is enabled."
2392
- msgstr "এই বৈশিষ্ট্য ডাটাবেসের মধ্যে IP ঠিকানা সংরক্ষণ কিন্তু এর পরিবর্তে একটি অনন্য হ্যাশ ব্যবহার করা হবে না. এই নির্বাচিত হয় যদি &quot;সমগ্র ইউজার এজেন্ট স্ট্রিং সঞ্চয়&quot; সেটিং অক্ষম করা হবে. আপনি এটি যদি সক্রিয় থাকে অবস্থান তথ্য পুনরুদ্ধার ভবিষ্যতে IP ঠিকানা পুনরুদ্ধার করতে সক্ষম হবে না."
2393
 
2394
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:82
2395
  msgid "Users Online"
2396
- msgstr "অনলাইন ব্যবহারকারী"
2397
 
2398
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2399
  msgid "User online"
2400
- msgstr "ব্যবহারকারী অনলাইন"
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-01-23 13:17:29+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
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:330
14
+ msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
15
+ msgstr ""
16
+
17
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:324
18
+ msgid "Force English"
19
+ msgstr ""
20
+
21
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
22
+ msgid "Languages"
23
+ msgstr ""
24
+
25
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
26
+ 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."
27
+ msgstr ""
28
+
29
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:269
30
+ msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
31
+ msgstr ""
32
+
33
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:266
34
+ msgid "Excluded URLs list"
35
+ msgstr ""
36
+
37
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
38
+ msgid "Excluded URL"
39
+ msgstr ""
40
+
41
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
42
+ msgid "Last 365 Days (Year)"
43
+ msgstr ""
44
+
45
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
46
+ msgid "Last 30 Days (Month)"
47
+ msgstr ""
48
+
49
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
50
+ msgid "Last 7 Days (Week)"
51
+ msgstr ""
52
+
53
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
54
+ msgid "Yahoo!"
55
+ msgstr ""
56
+
57
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:399
58
+ msgid "Yandex"
59
+ msgstr ""
60
+
61
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
62
+ msgid "clearch.org"
63
+ msgstr ""
64
+
65
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
66
+ msgid "DuckDuckGo"
67
+ msgstr ""
68
+
69
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:394
70
+ msgid "Bing"
71
+ msgstr ""
72
+
73
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:393
74
+ msgid "Baidu"
75
+ msgstr ""
76
+
77
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:69
78
+ msgid "Hits in the last 20 days"
79
+ msgstr ""
80
+
81
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
82
+ msgid "Feeds"
83
+ msgstr ""
84
+
85
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
86
+ msgid "User Role"
87
+ msgstr ""
88
+
89
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
90
+ msgid "Login Page"
91
+ msgstr ""
92
+
93
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
94
+ msgid "Admin Page"
95
+ msgstr ""
96
+
97
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
98
+ msgid "Self Referral"
99
+ msgstr ""
100
+
101
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
102
+ msgid "IP Match"
103
+ msgstr ""
104
+
105
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
106
+ msgid "Robot"
107
+ msgstr ""
108
+
109
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:100
110
+ msgid "Currently there are no users online in the site."
111
+ msgstr ""
112
+
113
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
114
+ msgid "Robot Threshold"
115
+ msgstr ""
116
+
117
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
118
+ msgid "Honey Pot"
119
+ msgstr ""
120
+
121
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:6
122
+ msgid "Page Trending Stats"
123
+ msgstr ""
124
+
125
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
126
+ msgid "Hostname"
127
+ msgstr ""
128
 
129
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
130
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
134
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:229
135
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:122
136
  msgid "Enable or disable this feature"
137
+ msgstr ""
138
 
139
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:99
140
  msgid "Check for online users every"
142
 
143
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:104
144
  msgid "Second"
145
+ msgstr ""
146
 
147
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:105
148
  msgid "Time for the check accurate online user in the site. Now: %s Second"
149
+ msgstr ""
150
 
151
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
152
  msgid "Record all user"
153
+ msgstr ""
154
 
155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
156
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
157
+ msgstr ""
158
 
159
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
160
  msgid "Store entire user agent string"
161
+ msgstr ""
162
 
163
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:161
164
  msgid "Only enabled for debugging"
165
+ msgstr ""
166
 
167
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:167
168
  msgid "Coefficient per visitor"
170
 
171
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:172
172
  msgid "For each visit to account for several hits. Currently %s."
173
+ msgstr ""
174
 
175
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
176
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
177
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
178
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
179
  msgid "Pages"
180
+ msgstr ""
181
 
182
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:194
183
  msgid "Track all pages"
184
+ msgstr ""
185
 
186
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
187
  msgid "Strip parameters from URI"
188
+ msgstr ""
189
 
190
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
191
  msgid "This will remove anything after the ? in a URL."
192
+ msgstr ""
193
 
194
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
195
  msgid "Disable hits column in post/pages list"
196
+ msgstr ""
197
 
198
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:234
199
  msgid "Miscellaneous"
200
+ msgstr ""
201
 
202
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:239
203
  msgid "Show stats in menu bar"
217
 
218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:253
219
  msgid "Hide admin notices about non active features"
220
+ msgstr ""
221
 
222
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:259
223
  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."
224
+ msgstr ""
225
 
226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:265
227
  msgid "Delete the manual"
228
+ msgstr ""
229
 
230
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:271
231
  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."
232
+ msgstr ""
233
 
234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
235
  msgid "Search Engines"
236
+ msgstr ""
237
 
238
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
239
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
240
+ msgstr ""
241
 
242
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:296
243
  msgid "disable"
244
+ msgstr ""
245
 
246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:297
247
  msgid "Disable %s from data collection and reporting."
248
+ msgstr ""
249
 
250
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:303
251
  msgid "Charts"
252
+ msgstr ""
253
 
254
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:308
255
  msgid "Include totals"
256
+ msgstr ""
257
 
258
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:314
259
  msgid "Add a total line to charts with multiple values, like the search engine referrals"
260
+ msgstr ""
261
 
262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:27
263
  msgid "GeoIP settings"
264
+ msgstr ""
265
 
266
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:32
267
  msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
268
+ msgstr ""
269
 
270
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:42
271
  msgid "GeoIP collection"
272
+ msgstr ""
273
 
274
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:48
275
  msgid "For get more information and location (country) from visitor, enable this feature."
276
+ msgstr ""
277
 
278
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:54
279
  msgid "Update GeoIP Info"
280
+ msgstr ""
281
 
282
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:59
283
  msgid "Download GeoIP Database"
284
+ msgstr ""
285
 
286
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:66
287
  msgid "Schedule monthly update of GeoIP DB"
288
+ msgstr ""
289
 
290
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:92
291
  msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
292
+ msgstr ""
293
 
294
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:93
295
  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)."
296
+ msgstr ""
297
 
298
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:99
299
  msgid "Populate missing GeoIP after update of GeoIP DB"
300
+ msgstr ""
301
 
302
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:105
303
  msgid "Update any missing GeoIP data after downloading a new database."
304
+ msgstr ""
305
 
306
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
307
  msgid "Country code for private IP addresses"
308
+ msgstr ""
309
 
310
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
311
  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."
312
+ msgstr ""
313
 
314
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
315
  msgid "GeoIP collection is disabled due to the following reasons:"
316
+ msgstr ""
317
 
318
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:130
319
  msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
320
+ msgstr ""
321
 
322
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:135
323
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
324
+ msgstr ""
325
 
326
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:141
327
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
328
+ msgstr ""
329
 
330
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:147
331
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
332
+ msgstr ""
333
 
334
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:20
335
  msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
336
+ msgstr ""
337
 
338
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:30
339
  msgid "Database Maintenance"
340
+ msgstr ""
341
 
342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:35
343
  msgid "Run a daily WP Cron job to prune the databases"
344
+ msgstr ""
345
 
346
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:41
347
  msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
348
+ msgstr ""
349
 
350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:47
351
  msgid "Prune data older than"
352
+ msgstr ""
353
 
354
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:52
355
  msgid "Days"
356
+ msgstr ""
357
 
358
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:53
359
  msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
360
+ msgstr ""
361
 
362
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
363
  msgid "Common Report Options"
364
+ msgstr ""
365
 
366
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
367
  msgid "E-mail addresses"
368
+ msgstr ""
369
 
370
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
371
  msgid "A comma separated list of e-mail addresses to send reports to."
372
+ msgstr ""
373
 
374
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
375
  msgid "Update Reports"
376
+ msgstr ""
377
 
378
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
379
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
380
  msgid "Browscap"
381
+ msgstr ""
382
 
383
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
384
  msgid "Send a report whenever the browscap.ini is updated."
385
+ msgstr ""
386
 
387
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
388
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
389
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
390
  msgid "GeoIP"
391
+ msgstr ""
392
 
393
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
394
  msgid "Send a report whenever the GeoIP database is updated."
395
+ msgstr ""
396
 
397
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
398
  msgid "Pruning"
399
+ msgstr ""
400
 
401
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
402
  msgid "Send a report whenever the pruning of database is run."
403
+ msgstr ""
404
 
405
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
406
  msgid "Upgrade"
407
+ msgstr ""
408
 
409
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
410
  msgid "Send a report whenever the plugin is upgraded."
411
+ msgstr ""
412
 
413
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
415
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
416
  msgid "Statistical reporting"
417
+ msgstr ""
418
 
419
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:129
420
  msgid "Schedule"
421
+ msgstr ""
422
 
423
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
424
  msgid "Select how often to receive statistical report."
425
+ msgstr ""
426
 
427
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
428
  msgid "Send reports via"
429
+ msgstr ""
430
 
431
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:165
432
  msgid "Email"
433
+ msgstr ""
434
 
435
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:167
436
  msgid "SMS"
437
+ msgstr ""
438
 
439
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
440
  msgid "Select delivery method for statistical report."
441
+ msgstr ""
442
 
443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
444
  msgid "Note: To send SMS text messages please install the %s plugin."
445
+ msgstr ""
446
 
447
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
448
  msgid "WordPress SMS"
449
+ msgstr ""
450
 
451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:180
452
  msgid "Report body"
453
+ msgstr ""
454
 
455
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
456
  msgid "Enter the contents of the report."
457
+ msgstr ""
458
 
459
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
460
  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:"
461
+ msgstr ""
462
 
463
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
464
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
465
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
466
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:468
467
  msgid "User Online"
468
  msgstr "এখন দেখছে"
469
 
471
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:52
472
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:251
473
  msgid "Today Visitor"
474
+ msgstr ""
475
 
476
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:190
477
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:45
483
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:66
484
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:257
485
  msgid "Yesterday Visitor"
486
+ msgstr ""
487
 
488
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:192
489
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:59
494
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:101
495
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:272
496
  msgid "Total Visitor"
497
+ msgstr ""
498
 
499
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:194
500
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:94
505
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:23
506
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:32
507
  msgid "None"
508
+ msgstr ""
509
 
510
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:24
511
  msgid "Summary Statistics"
512
+ msgstr ""
513
 
514
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
515
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:108
516
  msgid "About"
517
+ msgstr ""
518
 
519
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:34
520
  msgid "Hits Statistical Chart"
521
+ msgstr ""
522
 
523
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:36
524
  msgid "Search Engine Referrers Statistical Chart"
525
+ msgstr ""
526
 
527
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:38
528
  msgid "Top Pages Visited"
529
+ msgstr ""
530
 
531
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
532
  msgid "Dashboard"
533
+ msgstr ""
534
 
535
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
536
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
537
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
538
  msgid "The following items are global to all users."
539
+ msgstr ""
540
 
541
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
542
  msgid "Disable dashboard widgets"
543
+ msgstr ""
544
 
545
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
546
  msgid "Disable the dashboard widgets."
547
+ msgstr ""
548
 
549
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
550
  msgid "Page/Post Editor"
551
+ msgstr ""
552
 
553
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
554
  msgid "Disable post/page editor widget"
555
+ msgstr ""
556
 
557
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
558
  msgid "Disable the page/post editor widget."
559
+ msgstr ""
560
 
561
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
562
  msgid "Map type"
563
+ msgstr ""
564
 
565
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:397
566
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
567
  msgid "Google"
568
  msgstr "গুগল"
569
 
570
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
571
  msgid "JQVMap"
572
+ msgstr ""
573
 
574
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:135
575
  msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
576
+ msgstr ""
577
 
578
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:136
579
  msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
580
+ msgstr ""
581
 
582
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:142
583
  msgid "Disable map"
584
+ msgstr ""
585
 
586
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:148
587
  msgid "Disable the map display"
588
+ msgstr ""
589
 
590
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:154
591
  msgid "Get country location from Google"
592
+ msgstr ""
593
 
594
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:160
595
  msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
596
+ msgstr ""
597
 
598
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
599
  msgid "Overview Widgets to Display"
600
+ msgstr ""
601
 
602
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
603
  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."
604
+ msgstr ""
605
 
606
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:180
607
  msgid "Slot"
608
+ msgstr ""
609
 
610
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:184
611
  msgid "Column A"
612
+ msgstr ""
613
 
614
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:188
615
  msgid "Column B"
616
+ msgstr ""
617
 
618
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:194
619
  msgid "Slot 1"
620
+ msgstr ""
621
 
622
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:224
623
  msgid "Slot 2"
624
+ msgstr ""
625
 
626
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:254
627
  msgid "Slot 3"
628
+ msgstr ""
629
 
630
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:284
631
  msgid "Slot 4"
632
+ msgstr ""
633
 
634
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:314
635
  msgid "Slot 5"
636
+ msgstr ""
637
 
638
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:344
639
  msgid "Slot 6"
640
+ msgstr ""
641
 
642
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:348
643
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:370
644
  msgid "N/A"
645
+ msgstr ""
646
 
647
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
648
  msgid "Slot 7"
649
+ msgstr ""
650
 
651
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
652
  msgid "WP Statisitcs Removal"
653
+ msgstr ""
654
 
655
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
656
  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."
657
+ msgstr ""
658
 
659
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
660
  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."
661
+ msgstr ""
662
 
663
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
664
  msgid "Remove data and settings"
665
+ msgstr ""
666
 
667
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
668
  msgid "Remove"
669
+ msgstr ""
670
 
671
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
672
  msgid "Remove data and settings, this action cannot be undone."
673
+ msgstr ""
674
 
675
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
676
  msgid "General"
677
+ msgstr ""
678
 
679
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
680
  msgid "Notifications"
681
+ msgstr ""
682
 
683
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
684
  msgid "Dashboard/Overview"
685
+ msgstr ""
686
 
687
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
688
  msgid "Access/Exclusions"
689
+ msgstr ""
690
 
691
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:105
692
  msgid "browscap"
693
+ msgstr ""
694
 
695
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:106
696
  msgid "Maintenance"
697
+ msgstr ""
698
 
699
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
700
  msgid "Removal"
701
+ msgstr ""
702
 
703
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
704
  msgid "Update"
705
+ msgstr ""
706
 
707
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:29
708
  msgid "Manual not found: %s"
709
+ msgstr ""
710
 
711
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:39
712
  msgid "Invalid file type selected: %s"
713
+ msgstr ""
714
 
715
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:10
716
  msgid "Once Weekly"
717
+ msgstr ""
718
 
719
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:17
720
  msgid "Once Every 2 Weeks"
721
+ msgstr ""
722
 
723
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:24
724
  msgid "Once Every 4 Weeks"
725
+ msgstr ""
726
 
727
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
728
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
729
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:325
730
  msgid "Statistics"
731
  msgstr "পরিসংখ্যান"
732
 
733
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:15
734
  msgid "Show site stats in sidebar."
735
+ msgstr ""
736
 
737
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:73
738
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:260
752
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:108
753
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:275
754
  msgid "Total Page Views"
755
+ msgstr ""
756
 
757
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:116
758
  msgid "Search Engine referred"
759
+ msgstr ""
760
 
761
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:123
762
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:298
812
  msgstr "আইটেম"
813
 
814
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
815
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:493
816
  msgid "Yesterday visit"
817
  msgstr "গতকাল দেখেছে"
818
 
819
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:278
820
  msgid "Search Engine Referred"
821
+ msgstr ""
822
 
823
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:281
824
  msgid "Select type of search engine"
825
  msgstr "সার্চ ইঞ্জিন নির্বাচন করুন"
826
 
827
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
828
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
829
+ msgstr ""
830
 
831
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
832
  msgid " or higher!"
833
+ msgstr ""
834
 
835
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
836
  msgid "Your current PHP version is"
837
+ msgstr ""
838
 
839
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:51
840
  msgid "WP Statistics has been removed, please disable and delete it."
841
+ msgstr ""
842
 
843
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
844
  msgid "WP Statistics"
845
+ msgstr ""
846
 
847
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:28
848
  msgid "Complete statistics for your WordPress site."
849
+ msgstr ""
850
 
851
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
852
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
853
+ msgstr ""
854
 
855
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
856
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
857
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
858
  msgid "setting page"
859
+ msgstr ""
860
 
861
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
862
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
863
+ msgstr ""
864
 
865
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
866
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
867
+ msgstr ""
868
 
869
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
870
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
871
+ msgstr ""
872
 
873
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
874
  msgid "Setting page > GeoIP"
875
+ msgstr ""
876
 
877
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
878
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
879
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
880
  msgid "Settings"
881
  msgstr "সেটিসং"
882
 
883
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
884
  msgid "Click here to visit the plugin on WordPress.org"
885
+ msgstr ""
886
 
887
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
888
  msgid "Visit WordPress.org page"
889
+ msgstr ""
890
 
891
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
892
  msgid "Click here to rate and review this plugin on WordPress.org"
893
+ msgstr ""
894
 
895
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
896
  msgid "Rate this plugin"
897
+ msgstr ""
898
 
899
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:254
900
  msgid "WP Statistics - Hits"
901
+ msgstr ""
902
 
903
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:291
904
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
905
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
906
  msgid "Overview"
907
+ msgstr ""
908
 
909
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
910
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
911
  msgid "Online"
912
+ msgstr ""
913
 
914
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
915
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
916
  msgid "Referrers"
917
+ msgstr ""
918
 
919
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:301
920
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
921
  msgid "Searches"
922
+ msgstr ""
923
 
924
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
925
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
926
  msgid "Search Words"
927
+ msgstr ""
928
 
929
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
930
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:376
931
  msgid "Top Visitors Today"
932
+ msgstr ""
933
 
934
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:306
935
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
936
  msgid "Optimization"
937
+ msgstr ""
938
 
939
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:311
940
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:342
941
  msgid "Manual"
942
+ msgstr ""
943
 
944
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:357
945
  msgid "Site"
946
+ msgstr ""
947
 
948
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:358
949
  msgid "Options"
950
+ msgstr ""
951
 
952
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:475
953
  msgid "Today visitor"
954
+ msgstr ""
955
 
956
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:481
957
  msgid "Today visit"
958
+ msgstr ""
959
 
960
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:487
961
  msgid "Yesterday visitor"
962
+ msgstr ""
963
 
964
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
965
  msgid "View Stats"
966
+ msgstr ""
967
 
968
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:523
969
  msgid "Download ODF file"
970
+ msgstr ""
971
 
972
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
973
  msgid "Download HTML file"
974
+ msgstr ""
975
 
976
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:528
977
  msgid "Manual file not found."
978
+ msgstr ""
979
 
980
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
981
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:706
982
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:740
983
  msgid "You do not have sufficient permissions to access this page."
984
  msgstr "আপনার এই পেজ দেখার মত পর্যাপ্ত অনুমতি নেই।"
985
 
986
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:608
987
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
988
+ msgstr ""
989
 
990
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
991
  msgid "WP Statistics %s installed on"
992
+ msgstr ""
993
 
994
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
995
  msgid "Error downloading GeoIP database from: %s - %s"
996
+ msgstr ""
997
 
998
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:45
999
  msgid "Error could not open downloaded GeoIP database for reading: %s"
1000
+ msgstr ""
1001
 
1002
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:52
1003
  msgid "Error could not open destination GeoIP database for writing %s"
1004
+ msgstr ""
1005
 
1006
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:68
1007
  msgid "GeoIP Database updated successfully!"
1008
+ msgstr ""
1009
 
1010
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
1011
  msgid "GeoIP update on"
1012
+ msgstr ""
1013
 
1014
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
1015
  msgid "Error downloading browscap database from: %s - %s"
1016
+ msgstr ""
1017
 
1018
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:262
1019
  msgid "browscap database updated successfully!"
1020
+ msgstr ""
1021
 
1022
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
1023
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1024
+ msgstr ""
1025
 
1026
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
1027
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1028
+ msgstr ""
1029
 
1030
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
1031
  msgid "browscap already at current version!"
1032
+ msgstr ""
1033
 
1034
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
1035
  msgid "Browscap.ini update on"
1036
+ msgstr ""
1037
 
1038
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
1039
  msgid "Quick Stats"
1040
+ msgstr ""
1041
 
1042
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
1043
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
1044
  msgid "Top 10 Browsers"
1045
+ msgstr ""
1046
 
1047
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:57
1048
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
1049
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:27
1050
  msgid "Top 10 Countries"
1051
+ msgstr ""
1052
 
1053
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
1054
  msgid "Today's Visitor Map"
1055
+ msgstr ""
1056
 
1057
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
1058
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
1059
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:8
1060
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
1061
  msgid "Hit Statistics"
1062
+ msgstr ""
1063
 
1064
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:60
1065
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
1066
  msgid "Top 10 Pages"
1067
+ msgstr ""
1068
 
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
1070
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:31
1071
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
1072
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
1073
  msgid "Recent Visitors"
1074
+ msgstr ""
1075
 
1076
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:62
1077
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:27
1079
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
1080
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
1081
  msgid "Top Referring Sites"
1082
+ msgstr ""
1083
 
1084
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:63
1085
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
1086
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:74
1087
  msgid "Search Engine Referrals"
1088
+ msgstr ""
1089
 
1090
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:64
1091
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:8
1092
  msgid "Summary"
1093
+ msgstr ""
1094
 
1095
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:65
1096
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:30
1097
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
1098
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:37
1099
  msgid "Latest Search Words"
1100
+ msgstr ""
1101
 
1102
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:66
1103
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
1104
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
1105
  msgid "Top 10 Visitors Today"
1106
+ msgstr ""
1107
 
1108
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
1109
  msgid "Please reload the dashboard to display the content of this widget."
1110
+ msgstr ""
1111
 
1112
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
1113
  msgid "WP Statistics Overview"
1114
+ msgstr ""
1115
 
1116
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
1117
  msgid "This post is not yet published."
1118
+ msgstr ""
1119
 
1120
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:24
1121
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1122
+ msgstr ""
1123
 
1124
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:48
1125
  msgid "Updated %s GeoIP records in the visitors database."
1126
+ msgstr ""
1127
 
1128
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:21
1129
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:39
1130
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:50
1131
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:83
1132
  msgid "%s data older than %s days purged successfully."
1133
+ msgstr ""
1134
 
1135
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:23
1136
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:41
1137
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:52
1138
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:85
1139
  msgid "No records found to purge from %s!"
1140
+ msgstr ""
1141
 
1142
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
1143
  msgid "Database pruned on"
1144
+ msgstr ""
1145
 
1146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
1147
  msgid "Please select a value over 30 days."
1148
+ msgstr ""
1149
 
1150
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
1151
  msgid "Browser Statistics"
1152
+ msgstr ""
1153
 
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1156
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1157
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:76
1158
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1159
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
1160
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
1161
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1162
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1163
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
1178
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:7
1179
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:6
1180
  msgid "Click to toggle"
1181
+ msgstr ""
1182
 
1183
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1184
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1185
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1186
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
1187
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
1188
  msgid "Browsers"
1189
+ msgstr ""
1190
 
1191
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:42
1192
  msgid "Browsers by type"
1193
+ msgstr ""
1194
 
1195
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:99
1196
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:34
1197
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
1198
  msgid "Platform"
1199
+ msgstr ""
1200
 
1201
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:126
1202
  msgid "Browsers by platform"
1203
+ msgstr ""
1204
 
1205
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:234
1206
  msgid "%s Version"
1207
+ msgstr ""
1208
 
1209
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
1210
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1211
+ msgstr ""
1212
 
1213
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
1214
  msgid "Exclusions Statistics"
1215
+ msgstr ""
1216
 
1217
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1219
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1220
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1221
  msgid "10 Days"
1222
+ msgstr ""
1223
 
1224
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1225
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1228
  msgid "20 Days"
1229
+ msgstr ""
1230
 
1231
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1232
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1233
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1235
  msgid "30 Days"
1236
+ msgstr ""
1237
 
1238
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1239
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1240
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1241
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1242
  msgid "2 Months"
1243
+ msgstr ""
1244
 
1245
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1247
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1248
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1249
  msgid "3 Months"
1250
+ msgstr ""
1251
 
1252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1254
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1255
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1256
  msgid "6 Months"
1257
+ msgstr ""
1258
 
1259
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:65
1260
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1261
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1263
  msgid "9 Months"
1264
+ msgstr ""
1265
 
1266
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:66
1267
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1268
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1269
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1270
  msgid "1 Year"
1271
+ msgstr ""
1272
 
1273
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
1274
  msgid "Total Exclusions: %s"
1275
+ msgstr ""
1276
 
1277
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:77
1278
  msgid "Exclusions Statistical Chart"
1279
+ msgstr ""
1280
 
1281
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1282
  msgid "Excluded hits in the last"
1283
+ msgstr ""
1284
 
1285
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1286
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1287
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1288
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
1289
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
1290
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
1291
  msgid "days"
1292
+ msgstr ""
1293
 
1294
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:120
1295
  msgid "Number of excluded hits"
1296
+ msgstr ""
1297
 
1298
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
1299
  msgid "Hits Statistics Chart"
1300
+ msgstr ""
1301
 
1302
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1303
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
1304
  msgid "Hits in the last"
1305
+ msgstr ""
1306
 
1307
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:81
1308
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:72
1309
  msgid "Number of visits and visitors"
1310
+ msgstr ""
1311
 
1312
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
1313
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
1314
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:30
1315
  msgid "Visit"
1316
+ msgstr ""
1317
 
1318
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
1319
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
1320
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:29
1321
  msgid "Visitor"
1322
+ msgstr ""
1323
 
1324
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:64
1325
  msgid "Latest Search Word Statistics"
1326
+ msgstr ""
1327
 
1328
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:99
1329
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
1330
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:50
1331
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1332
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1333
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
1334
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:32
1335
  msgid "#hash#"
1336
+ msgstr ""
1337
 
1338
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:104
1339
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:103
1340
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:55
1341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1343
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
1344
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
1345
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:113
1346
  msgid "Map"
1347
+ msgstr ""
1348
 
1349
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1350
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1351
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1352
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1353
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1354
  msgid "Page"
1355
+ msgstr ""
1356
 
1357
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1358
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1359
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1360
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1361
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1362
  msgid "From"
1363
+ msgstr ""
1364
 
1365
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:46
1366
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:33
1367
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1368
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1369
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1370
  msgid "All"
1371
  msgstr "সকল"
1372
 
1373
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
1374
  msgid "Search for"
1375
+ msgstr ""
1376
 
1377
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:65
1378
  msgid "Recent Visitor Statistics"
1379
+ msgstr ""
1380
 
1381
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
1382
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
1383
  msgid "Online Users"
1384
+ msgstr ""
1385
 
1386
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:75
1387
  msgid "Online for "
1388
+ msgstr ""
1389
 
1390
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
1391
  msgid "Page Trend for Post ID"
1392
+ msgstr ""
1393
 
1394
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:48
1395
  msgid "Page Trend"
1396
+ msgstr ""
1397
 
1398
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:11
1399
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:30
1400
  msgid "Search Engine Referral Statistics"
1401
+ msgstr ""
1402
 
1403
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1404
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
1405
  msgid "Search engine referrals in the last"
1406
+ msgstr ""
1407
 
1408
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:92
1409
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:76
1410
  msgid "Number of referrals"
1411
+ msgstr ""
1412
 
1413
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
1414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1415
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1416
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
1417
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:104
1418
  msgid "Total"
1419
+ msgstr ""
1420
 
1421
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:11
1422
  msgid "Top Countries"
1423
+ msgstr ""
1424
 
1425
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
1426
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:30
1427
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:27
1428
  msgid "Rank"
1429
+ msgstr ""
1430
 
1431
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
1432
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:31
1433
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:29
1434
  msgid "Flag"
1435
+ msgstr ""
1436
 
1437
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:22
1438
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:32
1439
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:30
1440
  msgid "Country"
1441
+ msgstr ""
1442
 
1443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:23
1444
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:33
1445
  msgid "Visitor Count"
1446
+ msgstr ""
1447
 
1448
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:13
1449
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:138
1450
  msgid "Top Pages"
1451
+ msgstr ""
1452
 
1453
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:20
1454
  msgid "Top 5 Pages Trends"
1455
+ msgstr ""
1456
 
1457
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:49
1458
  msgid "Top 5 Page Trending Stats"
1459
+ msgstr ""
1460
 
1461
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1462
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:60
1463
  msgid "Number of Hits"
1464
+ msgstr ""
1465
 
1466
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:166
1467
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:32
1468
  msgid "No page title found"
1469
+ msgstr ""
1470
 
1471
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:169
1472
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:35
1474
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:122
1475
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:127
1476
  msgid "Visits"
1477
+ msgstr ""
1478
 
1479
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
1480
  msgid "To be added soon"
1481
+ msgstr ""
1482
 
1483
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:40
1484
  msgid "Referring sites from"
1485
+ msgstr ""
1486
 
1487
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:110
1488
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:30
1489
  msgid "References"
1490
+ msgstr ""
1491
 
1492
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
1493
  msgid "Top 100 Visitors Today"
1494
+ msgstr ""
1495
 
1496
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
1497
  msgid "About WP Statistics Version %s"
1498
+ msgstr ""
1499
 
1500
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:25
1501
  msgid "Website"
1502
+ msgstr ""
1503
 
1504
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:26
1505
  msgid "Rate and Review"
1506
+ msgstr ""
1507
 
1508
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:30
1509
  msgid "More Information"
1510
+ msgstr ""
1511
 
1512
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:39
1513
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:12
1514
  msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
1515
+ msgstr ""
1516
 
1517
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1518
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
1524
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
1525
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
1526
  msgid "More"
1527
+ msgstr ""
1528
 
1529
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:47
1530
  msgid "Other"
1531
+ msgstr ""
1532
 
1533
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:9
1534
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
1535
  msgid "Today Visitors Map"
1536
+ msgstr ""
1537
 
1538
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:31
1539
  msgid "Address"
1540
+ msgstr ""
1541
 
1542
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:23
1543
  msgid "User(s) Online"
1544
+ msgstr ""
1545
 
1546
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:34
1547
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:79
1548
  msgid "Today"
1549
+ msgstr ""
1550
 
1551
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:40
1552
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:80
1553
  msgid "Yesterday"
1554
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
1555
 
1556
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1557
  msgid "Daily Total"
1558
+ msgstr ""
1559
 
1560
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
1561
  msgid "Current Time and Date"
1562
+ msgstr ""
1563
 
1564
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
1565
  msgid "(Adjustment)"
1566
+ msgstr ""
1567
 
1568
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:121
1569
  msgid "Date: %s"
1570
+ msgstr ""
1571
 
1572
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:125
1573
  msgid "Time: %s"
1574
+ msgstr ""
1575
 
1576
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1577
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:219
1578
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
1579
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
1580
  msgid "Hits"
1581
+ msgstr ""
1582
 
1583
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
1584
  msgid "IP"
1586
 
1587
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
1588
  msgid "Agent"
1589
+ msgstr ""
1590
 
1591
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
1592
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1593
  msgid "Version"
1594
+ msgstr ""
1595
 
1596
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
1597
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
1601
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:6
1602
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
1603
  msgid "Access denied!"
1604
+ msgstr ""
1605
 
1606
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
1607
  msgid "%s agent data deleted successfully."
1608
+ msgstr ""
1609
 
1610
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
1611
  msgid "No agent data found to remove!"
1612
+ msgstr ""
1613
 
1614
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1615
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1616
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1617
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:80
1618
  msgid "Please select the desired items."
1619
+ msgstr ""
1620
 
1621
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
1622
  msgid "%s platform data deleted successfully."
1623
+ msgstr ""
1624
 
1625
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
1626
  msgid "No platform data found to remove!"
1627
+ msgstr ""
1628
 
1629
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
1630
  msgid "%s table data deleted successfully."
1631
+ msgstr ""
1632
 
1633
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:57
1634
  msgid "Error, %s not emptied!"
1635
+ msgstr ""
1636
 
1637
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
1638
  msgid "Database Setup"
1639
+ msgstr ""
1640
 
1641
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
1642
  msgid "Re-run Install"
1643
+ msgstr ""
1644
 
1645
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
1646
  msgid "Install Now!"
1647
+ msgstr ""
1648
 
1649
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
1650
  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."
1651
+ msgstr ""
1652
 
1653
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:20
1654
  msgid "Database Index"
1655
+ msgstr ""
1656
 
1657
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1658
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1659
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
1660
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
1661
  msgid "Countries"
1662
+ msgstr ""
1663
 
1664
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:39
1665
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:25
1666
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
1667
  msgid "Update Now!"
1668
+ msgstr ""
1669
 
1670
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:40
1671
  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."
1672
+ msgstr ""
1673
 
1674
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:41
1675
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1676
+ msgstr ""
1677
 
1678
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:46
1679
  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."
1680
+ msgstr ""
1681
 
1682
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:47
1683
  msgid "Congratulations, your installation is already up to date, nothing to do."
1684
+ msgstr ""
1685
 
1686
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
1687
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:147
1688
  msgid "Export"
1689
+ msgstr ""
1690
 
1691
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:12
1692
  msgid "Export from"
1693
+ msgstr ""
1694
 
1695
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:17
1696
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:35
1700
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:134
1701
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:164
1702
  msgid "Please select"
1703
+ msgstr ""
1704
 
1705
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:24
1706
  msgid "Select the table for the output file."
1707
+ msgstr ""
1708
 
1709
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:30
1710
  msgid "Export To"
1711
+ msgstr ""
1712
 
1713
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:41
1714
  msgid "Select the output file type."
1715
+ msgstr ""
1716
 
1717
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:47
1718
  msgid "Include Header Row"
1719
+ msgstr ""
1720
 
1721
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:52
1722
  msgid "Include a header row as the first line of the exported file."
1723
+ msgstr ""
1724
 
1725
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
1726
  msgid "Start Now!"
1727
+ msgstr ""
1728
 
1729
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
1730
  msgid "Historical Values"
1731
+ msgstr ""
1732
 
1733
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1734
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1735
+ msgstr ""
1736
 
1737
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1738
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1739
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1740
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:304
1741
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:377
1742
  msgid "Visitors"
1743
+ msgstr ""
1744
 
1745
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
1746
  msgid "Number of historical number of visitors to the site (current value is %s)."
1747
+ msgstr ""
1748
 
1749
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
1750
  msgid "Number of historical number of visits to the site (current value is %s)."
1751
+ msgstr ""
1752
 
1753
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
1754
  msgid "Update now!"
1755
+ msgstr ""
1756
 
1757
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
1758
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
1759
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:63
1760
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:91
1761
  msgid "Are you sure?"
1762
+ msgstr ""
1763
 
1764
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:119
1765
  msgid "Data"
1766
+ msgstr ""
1767
 
1768
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:124
1769
  msgid "Empty Table"
1770
+ msgstr ""
1771
 
1772
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:137
1773
  msgid "All data table will be lost."
1774
+ msgstr ""
1775
 
1776
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:138
1777
  msgid "Clear now!"
1778
+ msgstr ""
1779
 
1780
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:146
1781
  msgid "Purge records older than"
1782
+ msgstr ""
1783
 
1784
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:152
1785
  msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
1786
+ msgstr ""
1787
 
1788
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:153
1789
  msgid "Purge now!"
1790
+ msgstr ""
1791
 
1792
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:160
1793
  msgid "Delete User Agent Types"
1794
+ msgstr ""
1795
 
1796
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:165
1797
  msgid "Delete Agents"
1798
+ msgstr ""
1799
 
1800
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
1801
  msgid "All visitor data will be lost for this agent type."
1802
+ msgstr ""
1803
 
1804
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:181
1805
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:205
1806
  msgid "Delete now!"
1807
+ msgstr ""
1808
 
1809
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:189
1810
  msgid "Delete Platforms"
1811
+ msgstr ""
1812
 
1813
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:204
1814
  msgid "All visitor data will be lost for this platform type."
1815
+ msgstr ""
1816
 
1817
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:17
1818
  msgid "Resources"
1819
+ msgstr ""
1820
 
1821
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:22
1822
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:27
1823
  msgid "Memory usage in PHP"
1824
+ msgstr ""
1825
 
1826
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
1827
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:37
1828
  msgid "Byte"
1829
+ msgstr ""
1830
 
1831
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
1832
  msgid "Last Overview page memory usage"
1833
+ msgstr ""
1834
 
1835
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
1836
  msgid "Memory usage in the overview page"
1837
+ msgstr ""
1838
 
1839
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
1840
  msgid "PHP Memory Limit"
1841
+ msgstr ""
1842
 
1843
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:49
1844
  msgid "The memory limit a script is allowed to consume, set in php.ini."
1845
+ msgstr ""
1846
 
1847
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:55
1848
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:66
1851
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:99
1852
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:110
1853
  msgid "Number of rows in the %s table"
1854
+ msgstr ""
1855
 
1856
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
1857
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
1860
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:103
1861
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:114
1862
  msgid "Row"
1863
+ msgstr ""
1864
 
1865
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:60
1866
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:71
1869
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:104
1870
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:115
1871
  msgid "Number of rows"
1872
+ msgstr ""
1873
 
1874
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:120
1875
  msgid "Version Info"
1876
+ msgstr ""
1877
 
1878
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:125
1879
  msgid "WP Statistics Version"
1880
+ msgstr ""
1881
 
1882
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:130
1883
  msgid "The WP Statistics version you are running."
1884
+ msgstr ""
1885
 
1886
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:136
1887
  msgid "PHP Version"
1888
+ msgstr ""
1889
 
1890
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:141
1891
  msgid "The PHP version you are running."
1892
+ msgstr ""
1893
 
1894
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:147
1895
  msgid "PHP Safe Mode"
1896
+ msgstr ""
1897
 
1898
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
1899
  msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
1900
+ msgstr ""
1901
 
1902
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
1903
  msgid "jQuery Version"
1904
+ msgstr ""
1905
 
1906
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:163
1907
  msgid "The jQuery version you are running."
1908
+ msgstr ""
1909
 
1910
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:169
1911
  msgid "cURL Version"
1912
+ msgstr ""
1913
 
1914
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:173
1915
  msgid "cURL not installed"
1916
+ msgstr ""
1917
 
1918
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:174
1919
  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."
1920
+ msgstr ""
1921
 
1922
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
1923
  msgid "BC Math"
1924
+ msgstr ""
1925
 
1926
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
1927
  msgid "Installed"
1928
+ msgstr ""
1929
 
1930
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
1931
  msgid "Not installed"
1932
+ msgstr ""
1933
 
1934
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
1935
  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."
1936
+ msgstr ""
1937
 
1938
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:190
1939
  msgid "File Info"
1940
+ msgstr ""
1941
 
1942
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:195
1943
  msgid "GeoIP Database"
1944
+ msgstr ""
1945
 
1946
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:204
1947
  msgid "Database file does not exist."
1948
+ msgstr ""
1949
 
1950
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:206
1951
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:225
1952
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:244
1953
  msgid ", created on "
1954
+ msgstr ""
1955
 
1956
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
1957
  msgid "The file size and date of the GeoIP database."
1958
+ msgstr ""
1959
 
1960
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
1961
  msgid "browscap.ini File"
1962
+ msgstr ""
1963
 
1964
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:223
1965
  msgid "browscap.ini file does not exist."
1966
+ msgstr ""
1967
 
1968
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:227
1969
  msgid "The file size and date of the browscap.ini file."
1970
+ msgstr ""
1971
 
1972
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:233
1973
  msgid "browscap Cache File"
1974
+ msgstr ""
1975
 
1976
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:242
1977
  msgid "browscap cache file does not exist."
1978
+ msgstr ""
1979
 
1980
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:246
1981
  msgid "The file size and date of the browscap cache file."
1982
+ msgstr ""
1983
 
1984
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:251
1985
  msgid "Client Info"
1986
+ msgstr ""
1987
 
1988
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:256
1989
  msgid "Client IP"
1990
+ msgstr ""
1991
 
1992
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:261
1993
  msgid "The client IP address."
1994
+ msgstr ""
1995
 
1996
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:267
1997
  msgid "User Agent"
1998
+ msgstr ""
1999
 
2000
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:272
2001
  msgid "The client user agent string."
2002
+ msgstr ""
2003
 
2004
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
2005
  msgid "Browser"
2006
+ msgstr ""
2007
 
2008
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
2009
  msgid "The detected client browser."
2010
+ msgstr ""
2011
 
2012
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
2013
  msgid "The detected client browser version."
2014
+ msgstr ""
2015
 
2016
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
2017
  msgid "The detected client platform."
2018
+ msgstr ""
2019
 
2020
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
2021
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2022
+ msgstr ""
2023
 
2024
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
2025
  msgid "GeoIP Options"
2026
+ msgstr ""
2027
 
2028
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:26
2029
  msgid "Updates any unknown location data in the database, this may take a while"
2030
+ msgstr ""
2031
 
2032
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:31
2033
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:66
2034
  msgid "IP Addresses"
2035
+ msgstr ""
2036
 
2037
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:36
2038
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:71
2039
  msgid "Hash IP Addresses"
2040
+ msgstr ""
2041
 
2042
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:41
2043
  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"
2044
+ msgstr ""
2045
 
2046
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:43
2047
  msgid "IP Addresses replaced with hash values."
2048
+ msgstr ""
2049
 
2050
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:51
2051
  msgid "Install routine complete."
2052
+ msgstr ""
2053
 
2054
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:146
2055
  msgid "Resources/Information"
2056
+ msgstr ""
2057
 
2058
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:148
2059
  msgid "Purging"
2060
+ msgstr ""
2061
 
2062
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:149
2063
  msgid "Database"
2064
+ msgstr ""
2065
 
2066
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:150
2067
  msgid "Updates"
2068
+ msgstr ""
2069
 
2070
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
2071
  msgid "Historical"
2072
+ msgstr ""
2073
 
2074
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
2075
  msgid "WP Statistics V%s"
2076
+ msgstr ""
2077
 
2078
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:20
2079
  msgid "Visit Us Online"
2080
+ msgstr ""
2081
 
2082
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
2083
  msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
2084
+ msgstr ""
2085
 
2086
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
2087
  msgid "website"
2088
+ msgstr ""
2089
 
2090
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
2091
  msgid "Rate and Review at WordPress.org"
2092
+ msgstr ""
2093
 
2094
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
2095
  msgid "Thanks for installing WP Statistics, we encourage you to submit a "
2096
+ msgstr ""
2097
 
2098
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
2099
  msgid "rating and review"
2100
+ msgstr ""
2101
 
2102
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
2103
  msgid "over at WordPress.org. Your feedback is greatly appreciated!"
2104
+ msgstr ""
2105
 
2106
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:36
2107
  msgid "Translations"
2108
+ msgstr ""
2109
 
2110
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
2111
  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."
2112
+ msgstr ""
2113
 
2114
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
2115
  msgid "translation collaboration site"
2116
+ msgstr ""
2117
 
2118
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
2119
  msgid "drop us a line"
2120
+ msgstr ""
2121
 
2122
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:44
2123
  msgid "Support"
2124
+ msgstr ""
2125
 
2126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:49
2127
  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:"
2128
+ msgstr ""
2129
 
2130
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
2131
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
2132
  msgid "Have you read the %s?"
2133
+ msgstr ""
2134
 
2135
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
2136
  msgid "FAQs"
2137
+ msgstr ""
2138
 
2139
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
2140
  msgid "manual"
2141
+ msgstr ""
2142
 
2143
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
2144
  msgid "Have you search the %s for a similar issue?"
2145
+ msgstr ""
2146
 
2147
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
2148
  msgid "support forum"
2149
+ msgstr ""
2150
 
2151
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:55
2152
  msgid "Have you search the Internet for any error messages you are receiving?"
2153
+ msgstr ""
2154
 
2155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
2156
  msgid "Make sure you have access to your PHP error logs."
2157
+ msgstr ""
2158
 
2159
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
2160
  msgid "And a few things to double-check:"
2161
+ msgstr ""
2162
 
2163
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:62
2164
  msgid "How's your memory_limit in php.ini?"
2165
+ msgstr ""
2166
 
2167
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:63
2168
  msgid "Have you tried disabling any other plugins you may have installed?"
2169
+ msgstr ""
2170
 
2171
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:64
2172
  msgid "Have you tried using the default WordPress theme?"
2173
+ msgstr ""
2174
 
2175
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:65
2176
  msgid "Have you double checked the plugin settings?"
2177
+ msgstr ""
2178
 
2179
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:66
2180
  msgid "Do you have all the required PHP extensions installed?"
2181
+ msgstr ""
2182
 
2183
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:67
2184
  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?"
2185
+ msgstr ""
2186
 
2187
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:68
2188
  msgid "Have you checked your PHP and web server error logs?"
2189
+ msgstr ""
2190
 
2191
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
2192
  msgid "Still not having any luck?"
2193
+ msgstr ""
2194
 
2195
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
2196
  msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
2197
+ msgstr ""
2198
 
2199
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
2200
  msgid "WordPress.org support forum"
2201
+ msgstr ""
2202
 
2203
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
2204
  msgid "Alternatively %s support is available as well."
2205
+ msgstr ""
2206
 
2207
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
2208
  msgid "Farsi"
2209
+ msgstr ""
2210
 
2211
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
2212
  msgid "WP Statistics Honey Pot Page"
2213
+ msgstr ""
2214
 
2215
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
2216
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2217
+ msgstr ""
2218
 
2219
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
2220
  msgid "Access Levels"
2221
+ msgstr ""
2222
 
2223
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:74
2224
  msgid "Required user level to view WP Statistics"
2225
+ msgstr ""
2226
 
2227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:89
2228
  msgid "Required user level to manage WP Statistics"
2229
+ msgstr ""
2230
 
2231
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
2232
  msgid "See the %s for details on capability levels."
2233
+ msgstr ""
2234
 
2235
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
2236
  msgid "WordPress Roles and Capabilities page"
2237
+ msgstr ""
2238
 
2239
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:98
2240
  msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
2241
+ msgstr ""
2242
 
2243
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:99
2244
  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."
2245
+ msgstr ""
2246
 
2247
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:100
2248
  msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
2249
+ msgstr ""
2250
 
2251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
2253
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
2254
  msgid "Exclusions"
2255
+ msgstr ""
2256
 
2257
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:109
2258
  msgid "Record exclusions"
2259
+ msgstr ""
2260
 
2261
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:111
2262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:165
2263
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:192
2264
  msgid "Enable"
2265
+ msgstr ""
2266
 
2267
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:112
2268
  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."
2269
+ msgstr ""
2270
 
2271
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:117
2272
  msgid "Exclude User Roles"
2273
+ msgstr ""
2274
 
2275
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:133
2276
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:247
2277
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:254
2278
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:261
2279
  msgid "Exclude"
2280
+ msgstr ""
2281
 
2282
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:134
2283
  msgid "Exclude %s role from data collection."
2284
+ msgstr ""
2285
 
2286
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:140
2287
  msgid "IP/Robot Exclusions"
2288
+ msgstr ""
2289
 
2290
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:144
2291
  msgid "Robot list"
2292
+ msgstr ""
2293
 
2294
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:157
2295
  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."
2296
+ msgstr ""
2297
 
2298
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:158
2299
  msgid "Reset to Default"
2300
+ msgstr ""
2301
 
2302
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:163
2303
  msgid "Force robot list update after upgrades"
2304
+ msgstr ""
2305
 
2306
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:166
2307
  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."
2308
+ msgstr ""
2309
 
2310
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
2311
  msgid "Robot visit threshold"
2312
+ msgstr ""
2313
 
2314
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
2315
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2316
+ msgstr ""
2317
 
2318
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
2319
  msgid "Excluded IP address list"
2320
+ msgstr ""
2321
 
2322
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:182
2323
  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."
2324
+ msgstr ""
2325
 
2326
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:183
2327
  msgid "Add 10.0.0.0"
2328
+ msgstr ""
2329
 
2330
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:184
2331
  msgid "Add 172.16.0.0"
2332
+ msgstr ""
2333
 
2334
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:185
2335
  msgid "Add 192.168.0.0"
2336
+ msgstr ""
2337
 
2338
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
2339
  msgid "Use honey pot"
2340
+ msgstr ""
2341
 
2342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
2343
  msgid "Use a honey pot page to identify robots."
2344
+ msgstr ""
2345
 
2346
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
2347
  msgid "Honey pot post id"
2348
+ msgstr ""
2349
 
2350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
2351
  msgid "The post id to use for the honeypot page."
2352
+ msgstr ""
2353
 
2354
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
2355
  msgid "Create a new honey pot page"
2356
+ msgstr ""
2357
 
2358
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
2359
  msgid "GeoIP Exclusions"
2360
+ msgstr ""
2361
 
2362
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
2363
  msgid "Excluded countries list"
2364
+ msgstr ""
2365
 
2366
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
2367
  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."
2368
+ msgstr ""
2369
 
2370
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
2371
  msgid "Included countries list"
2372
+ msgstr ""
2373
 
2374
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
2375
  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."
2376
+ msgstr ""
2377
 
2378
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
2379
  msgid "Host Exclusions"
2380
+ msgstr ""
2381
 
2382
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
2383
  msgid "Excluded hosts list"
2384
+ msgstr ""
2385
 
2386
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
2387
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2388
+ msgstr ""
2389
 
2390
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
2391
  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."
2392
+ msgstr ""
2393
 
2394
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
2395
  msgid "Site URL Exclusions"
2396
+ msgstr ""
2397
 
2398
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:245
2399
  msgid "Excluded login page"
2400
+ msgstr ""
2401
 
2402
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:248
2403
  msgid "Exclude the login page for registering as a hit."
2404
+ msgstr ""
2405
 
2406
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:252
2407
  msgid "Excluded admin pages"
2408
+ msgstr ""
2409
 
2410
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:255
2411
  msgid "Exclude the admin pages for registering as a hit."
2412
+ msgstr ""
2413
 
2414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
2415
  msgid "Excluded RSS feeds"
2416
+ msgstr ""
2417
 
2418
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
2419
  msgid "Exclude the RSS feeds for registering as a hit."
2420
+ msgstr ""
2421
 
2422
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
2423
  msgid "browscap settings"
2424
+ msgstr ""
2425
 
2426
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:27
2427
  msgid "browscap usage"
2428
+ msgstr ""
2429
 
2430
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:32
2431
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:56
2442
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2444
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
2445
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:329
2446
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2447
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2448
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
2457
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:147
2458
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:159
2459
  msgid "Active"
2460
+ msgstr ""
2461
 
2462
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:33
2463
  msgid "The browscap database will be downloaded and used to detect robots."
2464
+ msgstr ""
2465
 
2466
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:39
2467
  msgid "Update browscap Info"
2468
+ msgstr ""
2469
 
2470
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:44
2471
  msgid "Download browscap Database"
2472
+ msgstr ""
2473
 
2474
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:45
2475
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:60
2476
  msgid "Save changes on this page to download the update."
2477
+ msgstr ""
2478
 
2479
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:51
2480
  msgid "Schedule weekly update of browscap DB"
2481
+ msgstr ""
2482
 
2483
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:59
2484
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:74
2485
  msgid "Next update will be"
2486
+ msgstr ""
2487
 
2488
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:74
2489
  msgid "Download of the browscap database will be scheduled for once a week."
2490
+ msgstr ""
2491
 
2492
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:50
2493
  msgid "This will delete the manual when you save the settings, are you sure?"
2494
+ msgstr ""
2495
 
2496
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:77
2497
  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."
2498
+ msgstr ""
2499
 
2500
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:82
2501
  msgid "Users Online"
2502
+ msgstr ""
2503
 
2504
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2505
  msgid "User online"
2506
+ msgstr ""
languages/wp_statistics-ckb.mo ADDED
Binary file
languages/wp_statistics-ckb.po ADDED
@@ -0,0 +1,2506 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of WP Statistics in Kurdish (Sorani)
2
+ # This file is distributed under the same license as the WP Statistics package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2015-03-11 11:38:26+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
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:330
14
+ msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
15
+ msgstr "وەرگێرانەکان بەکارمەهێنە و لە جیاتی ئەوە ئینگلیزی وەکو زمانی بنچینەیی بۆ WP Statistics بەکاربهێنە (پێویستی بە بارکردنی دوو پەڕ هەیە)"
16
+
17
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:324
18
+ msgid "Force English"
19
+ msgstr "ئئنگلیزی بەزۆر"
20
+
21
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
22
+ msgid "Languages"
23
+ msgstr "زمانەکان"
24
+
25
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
26
+ 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."
27
+ msgstr "تێبینی: ئەم هەڵبژاردنە هیچ پارامێتەری بەستەرێک لە ئەستۆناگرێت ( هەر شتێک لەدوای ؟)، تەنها بۆ ناوی سکریپتەکە. هەر تێنوسراوێک کەمتر لە دوو پیت پشتگوێ دەخرێت."
28
+
29
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:269
30
+ msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
31
+ msgstr "لیستێک لە بەستەرە ناوخۆییەکان (نمونە /wordpress/about بۆ هەر دێڕێک یەک) بۆ دەرکردنی لە کۆکراوەی ئامارەکان."
32
+
33
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:266
34
+ msgid "Excluded URLs list"
35
+ msgstr "لیستی بەستەرە دەرکراوەکان"
36
+
37
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
38
+ msgid "Excluded URL"
39
+ msgstr "بەستەری دەرکراو"
40
+
41
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
42
+ msgid "Last 365 Days (Year)"
43
+ msgstr "(دوایین ٣٦٥ ڕۆژ (ساڵ"
44
+
45
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
46
+ msgid "Last 30 Days (Month)"
47
+ msgstr "(دوایین ٣٠ رۆژ (مانگ"
48
+
49
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
50
+ msgid "Last 7 Days (Week)"
51
+ msgstr "(دوایین ٧ رۆژ (هەفتە"
52
+
53
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
54
+ msgid "Yahoo!"
55
+ msgstr "یاهو"
56
+
57
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:399
58
+ msgid "Yandex"
59
+ msgstr "یاندیکس"
60
+
61
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
62
+ msgid "clearch.org"
63
+ msgstr ""
64
+
65
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
66
+ msgid "DuckDuckGo"
67
+ msgstr "دەک دەک گۆو"
68
+
69
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:394
70
+ msgid "Bing"
71
+ msgstr "بینگ"
72
+
73
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:393
74
+ msgid "Baidu"
75
+ msgstr "بەیدوو"
76
+
77
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:69
78
+ msgid "Hits in the last 20 days"
79
+ msgstr "هەڵدانەوەکان لە دوایین ٢٠ ڕۆژدا"
80
+
81
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
82
+ msgid "Feeds"
83
+ msgstr "پێشبردنەکان"
84
+
85
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
86
+ msgid "User Role"
87
+ msgstr "ڕۆڵی بەرکارهێنەر"
88
+
89
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
90
+ msgid "Login Page"
91
+ msgstr "پەڕی چوونەژوورەوە"
92
+
93
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
94
+ msgid "Admin Page"
95
+ msgstr "پەڕی بەڕێوەبەر"
96
+
97
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
98
+ msgid "Self Referral"
99
+ msgstr "ئاراستەکردنی خۆیی"
100
+
101
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
102
+ msgid "IP Match"
103
+ msgstr "یەکگرتنەوەی ئایپی"
104
+
105
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
106
+ msgid "Robot"
107
+ msgstr "ڕۆبۆت"
108
+
109
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:100
110
+ msgid "Currently there are no users online in the site."
111
+ msgstr ".لە ئێستادا هیچ بەکارهێنەرێک بۆ ئەم ماڵپەڕ لەسەرهێڵ نییە"
112
+
113
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
114
+ msgid "Robot Threshold"
115
+ msgstr "لێواری ڕۆبۆت"
116
+
117
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
118
+ msgid "Honey Pot"
119
+ msgstr "مەنجەڵی هەنگوین"
120
+
121
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:6
122
+ msgid "Page Trending Stats"
123
+ msgstr "ئامارەکانی پەڕی زۆر خوازراو"
124
+
125
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
126
+ msgid "Hostname"
127
+ msgstr "ناوی خانەخوێ"
128
+
129
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
130
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
131
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:149
132
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:188
133
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:200
134
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:229
135
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:122
136
+ msgid "Enable or disable this feature"
137
+ msgstr "ئەم تایبەتمەندیە چالاک یان ناچالاک بکە"
138
+
139
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:99
140
+ msgid "Check for online users every"
141
+ msgstr "پشکنین بۆ بەکارهێنەرانی سەرهێڵ بکە هەموو"
142
+
143
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:104
144
+ msgid "Second"
145
+ msgstr "چرکەیەک"
146
+
147
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:105
148
+ msgid "Time for the check accurate online user in the site. Now: %s Second"
149
+ msgstr "کات بۆ پشکنینی دروستی بەکارهێنەری سەرهیڵ لەم ماڵپەڕە. ئێستا %s چرکەیە"
150
+
151
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
152
+ msgid "Record all user"
153
+ msgstr "تۆمارکردنی گشت بەکارهێنەر"
154
+
155
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
156
+ msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
157
+ msgstr "ڕێکخستنی دەرکردەکان و تۆمارەکانی هەموو بەکارهێنەرانی سەرهێڵ پشتگوێ بخە ( بەلەخۆگرتنی ئاراستەکردنی خۆیی و ڕۆبۆتەکان). پێویستە تەنها بۆ دیاریکردنی کێشە بەکاربهێندرێت."
158
+
159
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
160
+ msgid "Store entire user agent string"
161
+ msgstr "تەواوی زنجیرەی بەکارهێنەری بریکار پاشەکەوت بکە"
162
+
163
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:161
164
+ msgid "Only enabled for debugging"
165
+ msgstr "تەنها چالاک بکرێت بۆ هەڵەدۆزین"
166
+
167
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:167
168
+ msgid "Coefficient per visitor"
169
+ msgstr "هاوچوستی بۆ هەر سەردانکارێک"
170
+
171
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:172
172
+ msgid "For each visit to account for several hits. Currently %s."
173
+ msgstr "بۆ هەر سەردانێک بۆ هەژمارکردنی ژمارەیەک هەڵدانەوە. لە ئێستادا %s."
174
+
175
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
176
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
177
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
178
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
179
+ msgid "Pages"
180
+ msgstr "پەڕەكان"
181
+
182
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:194
183
+ msgid "Track all pages"
184
+ msgstr "شوێن پێی هەموو پەڕەکان بکە"
185
+
186
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
187
+ msgid "Strip parameters from URI"
188
+ msgstr "لابردنی پارامێتەرەکان لە بەستەرەکە"
189
+
190
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
191
+ msgid "This will remove anything after the ? in a URL."
192
+ msgstr "ئەمە هەموو شتێک دەسڕێتەوە لە دوای ؟ لە بەستەرێکدا"
193
+
194
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
195
+ msgid "Disable hits column in post/pages list"
196
+ msgstr "ستونی هەڵدانەوەکان لە لیستی بابەت\\پەڕەکان ناچالاک بکە"
197
+
198
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:234
199
+ msgid "Miscellaneous"
200
+ msgstr "هەمەجۆر"
201
+
202
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:239
203
+ msgid "Show stats in menu bar"
204
+ msgstr "ئامارەكان لە لیست ئامراز پێشان بدە"
205
+
206
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:244
207
+ msgid "No"
208
+ msgstr "نەخێر"
209
+
210
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:245
211
+ msgid "Yes"
212
+ msgstr "بەڵێ"
213
+
214
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:247
215
+ msgid "Show stats in admin menu bar"
216
+ msgstr "ئامارەكان لە لیست ئامرازی بەڕێوەبەر پێشان بدە"
217
+
218
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:253
219
+ msgid "Hide admin notices about non active features"
220
+ msgstr "ئاگاداركردنەوەكانی بەڕێوەبەر بشارەوە سەبارەت بە تایبەتمەندییە ناچالاكەكان"
221
+
222
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:259
223
+ 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."
224
+ msgstr ""
225
+
226
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:265
227
+ msgid "Delete the manual"
228
+ msgstr ""
229
+
230
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:271
231
+ 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."
232
+ msgstr ""
233
+
234
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
235
+ msgid "Search Engines"
236
+ msgstr ""
237
+
238
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
239
+ msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
240
+ msgstr ""
241
+
242
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:296
243
+ msgid "disable"
244
+ msgstr ""
245
+
246
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:297
247
+ msgid "Disable %s from data collection and reporting."
248
+ msgstr ""
249
+
250
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:303
251
+ msgid "Charts"
252
+ msgstr ""
253
+
254
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:308
255
+ msgid "Include totals"
256
+ msgstr ""
257
+
258
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:314
259
+ msgid "Add a total line to charts with multiple values, like the search engine referrals"
260
+ msgstr ""
261
+
262
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:27
263
+ msgid "GeoIP settings"
264
+ msgstr ""
265
+
266
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:32
267
+ msgid "IP location services provided by GeoLite2 data created by MaxMind, available from %s."
268
+ msgstr ""
269
+
270
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:42
271
+ msgid "GeoIP collection"
272
+ msgstr ""
273
+
274
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:48
275
+ msgid "For get more information and location (country) from visitor, enable this feature."
276
+ msgstr ""
277
+
278
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:54
279
+ msgid "Update GeoIP Info"
280
+ msgstr ""
281
+
282
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:59
283
+ msgid "Download GeoIP Database"
284
+ msgstr ""
285
+
286
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:66
287
+ msgid "Schedule monthly update of GeoIP DB"
288
+ msgstr ""
289
+
290
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:92
291
+ msgid "Download of the GeoIP database will be scheduled for 2 days after the first Tuesday of the month."
292
+ msgstr ""
293
+
294
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:93
295
+ 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)."
296
+ msgstr ""
297
+
298
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:99
299
+ msgid "Populate missing GeoIP after update of GeoIP DB"
300
+ msgstr ""
301
+
302
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:105
303
+ msgid "Update any missing GeoIP data after downloading a new database."
304
+ msgstr ""
305
+
306
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
307
+ msgid "Country code for private IP addresses"
308
+ msgstr ""
309
+
310
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
311
+ 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."
312
+ msgstr ""
313
+
314
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
315
+ msgid "GeoIP collection is disabled due to the following reasons:"
316
+ msgstr ""
317
+
318
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:130
319
+ msgid "GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being "
320
+ msgstr ""
321
+
322
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:135
323
+ msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
324
+ msgstr ""
325
+
326
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:141
327
+ msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
328
+ msgstr ""
329
+
330
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:147
331
+ msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
332
+ msgstr ""
333
+
334
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:20
335
+ msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
336
+ msgstr ""
337
+
338
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:30
339
+ msgid "Database Maintenance"
340
+ msgstr ""
341
+
342
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:35
343
+ msgid "Run a daily WP Cron job to prune the databases"
344
+ msgstr ""
345
+
346
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:41
347
+ msgid "A WP Cron job will be run daily to prune any data older than a set number of days."
348
+ msgstr ""
349
+
350
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:47
351
+ msgid "Prune data older than"
352
+ msgstr ""
353
+
354
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:52
355
+ msgid "Days"
356
+ msgstr ""
357
+
358
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:53
359
+ msgid "The number of days to keep statistics for. Minimum value is 30 days. Invalid values will disable the daily maintenance."
360
+ msgstr ""
361
+
362
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
363
+ msgid "Common Report Options"
364
+ msgstr ""
365
+
366
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
367
+ msgid "E-mail addresses"
368
+ msgstr ""
369
+
370
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
371
+ msgid "A comma separated list of e-mail addresses to send reports to."
372
+ msgstr ""
373
+
374
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
375
+ msgid "Update Reports"
376
+ msgstr ""
377
+
378
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
379
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
380
+ msgid "Browscap"
381
+ msgstr ""
382
+
383
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
384
+ msgid "Send a report whenever the browscap.ini is updated."
385
+ msgstr ""
386
+
387
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
388
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
389
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
390
+ msgid "GeoIP"
391
+ msgstr ""
392
+
393
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
394
+ msgid "Send a report whenever the GeoIP database is updated."
395
+ msgstr ""
396
+
397
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
398
+ msgid "Pruning"
399
+ msgstr ""
400
+
401
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
402
+ msgid "Send a report whenever the pruning of database is run."
403
+ msgstr ""
404
+
405
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
406
+ msgid "Upgrade"
407
+ msgstr ""
408
+
409
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
410
+ msgid "Send a report whenever the plugin is upgraded."
411
+ msgstr ""
412
+
413
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
414
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
415
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
416
+ msgid "Statistical reporting"
417
+ msgstr ""
418
+
419
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:129
420
+ msgid "Schedule"
421
+ msgstr ""
422
+
423
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
424
+ msgid "Select how often to receive statistical report."
425
+ msgstr ""
426
+
427
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
428
+ msgid "Send reports via"
429
+ msgstr ""
430
+
431
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:165
432
+ msgid "Email"
433
+ msgstr ""
434
+
435
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:167
436
+ msgid "SMS"
437
+ msgstr ""
438
+
439
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
440
+ msgid "Select delivery method for statistical report."
441
+ msgstr ""
442
+
443
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
444
+ msgid "Note: To send SMS text messages please install the %s plugin."
445
+ msgstr ""
446
+
447
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
448
+ msgid "WordPress SMS"
449
+ msgstr ""
450
+
451
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:180
452
+ msgid "Report body"
453
+ msgstr ""
454
+
455
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
456
+ msgid "Enter the contents of the report."
457
+ msgstr ""
458
+
459
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
460
+ 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:"
461
+ msgstr ""
462
+
463
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
464
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
465
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
466
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:468
467
+ msgid "User Online"
468
+ msgstr ""
469
+
470
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:189
471
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:52
472
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:251
473
+ msgid "Today Visitor"
474
+ msgstr ""
475
+
476
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:190
477
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:45
478
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:248
479
+ msgid "Today Visit"
480
+ msgstr ""
481
+
482
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:191
483
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:66
484
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:257
485
+ msgid "Yesterday Visitor"
486
+ msgstr ""
487
+
488
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:192
489
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:59
490
+ msgid "Yesterday Visit"
491
+ msgstr ""
492
+
493
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:193
494
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:101
495
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:272
496
+ msgid "Total Visitor"
497
+ msgstr ""
498
+
499
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:194
500
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:94
501
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:269
502
+ msgid "Total Visit"
503
+ msgstr ""
504
+
505
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:23
506
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:32
507
+ msgid "None"
508
+ msgstr ""
509
+
510
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:24
511
+ msgid "Summary Statistics"
512
+ msgstr ""
513
+
514
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:28
515
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:108
516
+ msgid "About"
517
+ msgstr ""
518
+
519
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:34
520
+ msgid "Hits Statistical Chart"
521
+ msgstr ""
522
+
523
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:36
524
+ msgid "Search Engine Referrers Statistical Chart"
525
+ msgstr ""
526
+
527
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:38
528
+ msgid "Top Pages Visited"
529
+ msgstr ""
530
+
531
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
532
+ msgid "Dashboard"
533
+ msgstr ""
534
+
535
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
536
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
537
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
538
+ msgid "The following items are global to all users."
539
+ msgstr ""
540
+
541
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
542
+ msgid "Disable dashboard widgets"
543
+ msgstr ""
544
+
545
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
546
+ msgid "Disable the dashboard widgets."
547
+ msgstr ""
548
+
549
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
550
+ msgid "Page/Post Editor"
551
+ msgstr ""
552
+
553
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
554
+ msgid "Disable post/page editor widget"
555
+ msgstr ""
556
+
557
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
558
+ msgid "Disable the page/post editor widget."
559
+ msgstr ""
560
+
561
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
562
+ msgid "Map type"
563
+ msgstr ""
564
+
565
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:397
566
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
567
+ msgid "Google"
568
+ msgstr ""
569
+
570
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
571
+ msgid "JQVMap"
572
+ msgstr ""
573
+
574
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:135
575
+ msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
576
+ msgstr ""
577
+
578
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:136
579
+ msgid "The \"JQVMap\" option will use JQVMap javascript mapping library to plot the recent visitors (requires no extenral services)."
580
+ msgstr ""
581
+
582
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:142
583
+ msgid "Disable map"
584
+ msgstr ""
585
+
586
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:148
587
+ msgid "Disable the map display"
588
+ msgstr ""
589
+
590
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:154
591
+ msgid "Get country location from Google"
592
+ msgstr ""
593
+
594
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:160
595
+ msgid "This feature may cause a performance degradation when viewing statistics and is only valid if the map type is set to \"Google\"."
596
+ msgstr ""
597
+
598
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
599
+ msgid "Overview Widgets to Display"
600
+ msgstr ""
601
+
602
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
603
+ 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."
604
+ msgstr ""
605
+
606
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:180
607
+ msgid "Slot"
608
+ msgstr ""
609
+
610
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:184
611
+ msgid "Column A"
612
+ msgstr ""
613
+
614
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:188
615
+ msgid "Column B"
616
+ msgstr ""
617
+
618
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:194
619
+ msgid "Slot 1"
620
+ msgstr ""
621
+
622
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:224
623
+ msgid "Slot 2"
624
+ msgstr ""
625
+
626
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:254
627
+ msgid "Slot 3"
628
+ msgstr ""
629
+
630
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:284
631
+ msgid "Slot 4"
632
+ msgstr ""
633
+
634
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:314
635
+ msgid "Slot 5"
636
+ msgstr ""
637
+
638
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:344
639
+ msgid "Slot 6"
640
+ msgstr ""
641
+
642
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:348
643
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:370
644
+ msgid "N/A"
645
+ msgstr ""
646
+
647
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
648
+ msgid "Slot 7"
649
+ msgstr ""
650
+
651
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
652
+ msgid "WP Statisitcs Removal"
653
+ msgstr ""
654
+
655
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
656
+ 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."
657
+ msgstr ""
658
+
659
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
660
+ 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."
661
+ msgstr ""
662
+
663
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
664
+ msgid "Remove data and settings"
665
+ msgstr ""
666
+
667
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
668
+ msgid "Remove"
669
+ msgstr ""
670
+
671
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
672
+ msgid "Remove data and settings, this action cannot be undone."
673
+ msgstr ""
674
+
675
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
676
+ msgid "General"
677
+ msgstr ""
678
+
679
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
680
+ msgid "Notifications"
681
+ msgstr ""
682
+
683
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
684
+ msgid "Dashboard/Overview"
685
+ msgstr ""
686
+
687
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
688
+ msgid "Access/Exclusions"
689
+ msgstr ""
690
+
691
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:105
692
+ msgid "browscap"
693
+ msgstr ""
694
+
695
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:106
696
+ msgid "Maintenance"
697
+ msgstr ""
698
+
699
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
700
+ msgid "Removal"
701
+ msgstr ""
702
+
703
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
704
+ msgid "Update"
705
+ msgstr ""
706
+
707
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:29
708
+ msgid "Manual not found: %s"
709
+ msgstr ""
710
+
711
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:39
712
+ msgid "Invalid file type selected: %s"
713
+ msgstr ""
714
+
715
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:10
716
+ msgid "Once Weekly"
717
+ msgstr ""
718
+
719
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:17
720
+ msgid "Once Every 2 Weeks"
721
+ msgstr ""
722
+
723
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:24
724
+ msgid "Once Every 4 Weeks"
725
+ msgstr ""
726
+
727
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
728
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
729
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:325
730
+ msgid "Statistics"
731
+ msgstr ""
732
+
733
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:15
734
+ msgid "Show site stats in sidebar."
735
+ msgstr ""
736
+
737
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:73
738
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:260
739
+ msgid "Week Visit"
740
+ msgstr ""
741
+
742
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:80
743
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:263
744
+ msgid "Month Visit"
745
+ msgstr ""
746
+
747
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:87
748
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:266
749
+ msgid "Years Visit"
750
+ msgstr ""
751
+
752
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:108
753
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:275
754
+ msgid "Total Page Views"
755
+ msgstr ""
756
+
757
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:116
758
+ msgid "Search Engine referred"
759
+ msgstr ""
760
+
761
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:123
762
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:298
763
+ msgid "Total Posts"
764
+ msgstr ""
765
+
766
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:130
767
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:301
768
+ msgid "Total Pages"
769
+ msgstr ""
770
+
771
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:137
772
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:304
773
+ msgid "Total Comments"
774
+ msgstr ""
775
+
776
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:144
777
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:307
778
+ msgid "Total Spams"
779
+ msgstr ""
780
+
781
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:151
782
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:310
783
+ msgid "Total Users"
784
+ msgstr ""
785
+
786
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:158
787
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:313
788
+ msgid "Average Posts"
789
+ msgstr ""
790
+
791
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:165
792
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:316
793
+ msgid "Average Comments"
794
+ msgstr ""
795
+
796
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:172
797
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:319
798
+ msgid "Average Users"
799
+ msgstr ""
800
+
801
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:179
802
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:322
803
+ msgid "Last Post Date"
804
+ msgstr ""
805
+
806
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:238
807
+ msgid "Name"
808
+ msgstr ""
809
+
810
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:242
811
+ msgid "Items"
812
+ msgstr ""
813
+
814
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
815
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:493
816
+ msgid "Yesterday visit"
817
+ msgstr ""
818
+
819
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:278
820
+ msgid "Search Engine Referred"
821
+ msgstr ""
822
+
823
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:281
824
+ msgid "Select type of search engine"
825
+ msgstr ""
826
+
827
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
828
+ msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
829
+ msgstr ""
830
+
831
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
832
+ msgid " or higher!"
833
+ msgstr ""
834
+
835
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
836
+ msgid "Your current PHP version is"
837
+ msgstr ""
838
+
839
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:51
840
+ msgid "WP Statistics has been removed, please disable and delete it."
841
+ msgstr ""
842
+
843
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
844
+ msgid "WP Statistics"
845
+ msgstr ""
846
+
847
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:28
848
+ msgid "Complete statistics for your WordPress site."
849
+ msgstr ""
850
+
851
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
852
+ msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
853
+ msgstr ""
854
+
855
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
856
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
857
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
858
+ msgid "setting page"
859
+ msgstr ""
860
+
861
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
862
+ msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
863
+ msgstr ""
864
+
865
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
866
+ msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
867
+ msgstr ""
868
+
869
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
870
+ msgid "GeoIP collection is not active, please go to %s and enable this feature."
871
+ msgstr ""
872
+
873
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
874
+ msgid "Setting page > GeoIP"
875
+ msgstr ""
876
+
877
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
878
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
879
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
880
+ msgid "Settings"
881
+ msgstr ""
882
+
883
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
884
+ msgid "Click here to visit the plugin on WordPress.org"
885
+ msgstr ""
886
+
887
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
888
+ msgid "Visit WordPress.org page"
889
+ msgstr ""
890
+
891
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
892
+ msgid "Click here to rate and review this plugin on WordPress.org"
893
+ msgstr ""
894
+
895
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
896
+ msgid "Rate this plugin"
897
+ msgstr ""
898
+
899
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:254
900
+ msgid "WP Statistics - Hits"
901
+ msgstr ""
902
+
903
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:291
904
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
905
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
906
+ msgid "Overview"
907
+ msgstr ""
908
+
909
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
910
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
911
+ msgid "Online"
912
+ msgstr ""
913
+
914
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
915
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
916
+ msgid "Referrers"
917
+ msgstr ""
918
+
919
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:301
920
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
921
+ msgid "Searches"
922
+ msgstr ""
923
+
924
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
925
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
926
+ msgid "Search Words"
927
+ msgstr ""
928
+
929
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
930
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:376
931
+ msgid "Top Visitors Today"
932
+ msgstr ""
933
+
934
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:306
935
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
936
+ msgid "Optimization"
937
+ msgstr ""
938
+
939
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:311
940
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:342
941
+ msgid "Manual"
942
+ msgstr ""
943
+
944
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:357
945
+ msgid "Site"
946
+ msgstr ""
947
+
948
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:358
949
+ msgid "Options"
950
+ msgstr ""
951
+
952
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:475
953
+ msgid "Today visitor"
954
+ msgstr ""
955
+
956
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:481
957
+ msgid "Today visit"
958
+ msgstr ""
959
+
960
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:487
961
+ msgid "Yesterday visitor"
962
+ msgstr ""
963
+
964
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
965
+ msgid "View Stats"
966
+ msgstr ""
967
+
968
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:523
969
+ msgid "Download ODF file"
970
+ msgstr ""
971
+
972
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
973
+ msgid "Download HTML file"
974
+ msgstr ""
975
+
976
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:528
977
+ msgid "Manual file not found."
978
+ msgstr ""
979
+
980
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
981
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:706
982
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:740
983
+ msgid "You do not have sufficient permissions to access this page."
984
+ msgstr ""
985
+
986
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:608
987
+ msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
988
+ msgstr ""
989
+
990
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
991
+ msgid "WP Statistics %s installed on"
992
+ msgstr ""
993
+
994
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
995
+ msgid "Error downloading GeoIP database from: %s - %s"
996
+ msgstr ""
997
+
998
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:45
999
+ msgid "Error could not open downloaded GeoIP database for reading: %s"
1000
+ msgstr ""
1001
+
1002
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:52
1003
+ msgid "Error could not open destination GeoIP database for writing %s"
1004
+ msgstr ""
1005
+
1006
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:68
1007
+ msgid "GeoIP Database updated successfully!"
1008
+ msgstr ""
1009
+
1010
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
1011
+ msgid "GeoIP update on"
1012
+ msgstr ""
1013
+
1014
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
1015
+ msgid "Error downloading browscap database from: %s - %s"
1016
+ msgstr ""
1017
+
1018
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:262
1019
+ msgid "browscap database updated successfully!"
1020
+ msgstr ""
1021
+
1022
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
1023
+ msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1024
+ msgstr ""
1025
+
1026
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
1027
+ msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1028
+ msgstr ""
1029
+
1030
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
1031
+ msgid "browscap already at current version!"
1032
+ msgstr ""
1033
+
1034
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
1035
+ msgid "Browscap.ini update on"
1036
+ msgstr ""
1037
+
1038
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
1039
+ msgid "Quick Stats"
1040
+ msgstr ""
1041
+
1042
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
1043
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
1044
+ msgid "Top 10 Browsers"
1045
+ msgstr ""
1046
+
1047
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:57
1048
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
1049
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:27
1050
+ msgid "Top 10 Countries"
1051
+ msgstr ""
1052
+
1053
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
1054
+ msgid "Today's Visitor Map"
1055
+ msgstr ""
1056
+
1057
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
1058
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
1059
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:8
1060
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
1061
+ msgid "Hit Statistics"
1062
+ msgstr ""
1063
+
1064
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:60
1065
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
1066
+ msgid "Top 10 Pages"
1067
+ msgstr ""
1068
+
1069
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
1070
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:31
1071
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
1072
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
1073
+ msgid "Recent Visitors"
1074
+ msgstr ""
1075
+
1076
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:62
1077
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:27
1078
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:42
1079
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
1080
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:26
1081
+ msgid "Top Referring Sites"
1082
+ msgstr ""
1083
+
1084
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:63
1085
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
1086
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:74
1087
+ msgid "Search Engine Referrals"
1088
+ msgstr ""
1089
+
1090
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:64
1091
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:8
1092
+ msgid "Summary"
1093
+ msgstr ""
1094
+
1095
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:65
1096
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:30
1097
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
1098
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:37
1099
+ msgid "Latest Search Words"
1100
+ msgstr ""
1101
+
1102
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:66
1103
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
1104
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
1105
+ msgid "Top 10 Visitors Today"
1106
+ msgstr ""
1107
+
1108
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
1109
+ msgid "Please reload the dashboard to display the content of this widget."
1110
+ msgstr ""
1111
+
1112
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
1113
+ msgid "WP Statistics Overview"
1114
+ msgstr ""
1115
+
1116
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
1117
+ msgid "This post is not yet published."
1118
+ msgstr ""
1119
+
1120
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:24
1121
+ msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1122
+ msgstr ""
1123
+
1124
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:48
1125
+ msgid "Updated %s GeoIP records in the visitors database."
1126
+ msgstr ""
1127
+
1128
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:21
1129
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:39
1130
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:50
1131
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:83
1132
+ msgid "%s data older than %s days purged successfully."
1133
+ msgstr ""
1134
+
1135
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:23
1136
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:41
1137
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:52
1138
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:85
1139
+ msgid "No records found to purge from %s!"
1140
+ msgstr ""
1141
+
1142
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
1143
+ msgid "Database pruned on"
1144
+ msgstr ""
1145
+
1146
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
1147
+ msgid "Please select a value over 30 days."
1148
+ msgstr ""
1149
+
1150
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:8
1151
+ msgid "Browser Statistics"
1152
+ msgstr ""
1153
+
1154
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1155
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1156
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1157
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:76
1158
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1159
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
1160
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
1161
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1162
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1163
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
1164
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:19
1165
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:137
1166
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:38
1167
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:7
1168
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:6
1169
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:9
1170
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:8
1171
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:7
1172
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:8
1173
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:9
1174
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:6
1175
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:11
1176
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:6
1177
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:7
1178
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:7
1179
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:6
1180
+ msgid "Click to toggle"
1181
+ msgstr ""
1182
+
1183
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1184
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1185
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1186
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
1187
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
1188
+ msgid "Browsers"
1189
+ msgstr ""
1190
+
1191
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:42
1192
+ msgid "Browsers by type"
1193
+ msgstr ""
1194
+
1195
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:99
1196
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:34
1197
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:302
1198
+ msgid "Platform"
1199
+ msgstr ""
1200
+
1201
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:126
1202
+ msgid "Browsers by platform"
1203
+ msgstr ""
1204
+
1205
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:234
1206
+ msgid "%s Version"
1207
+ msgstr ""
1208
+
1209
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
1210
+ msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1211
+ msgstr ""
1212
+
1213
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
1214
+ msgid "Exclusions Statistics"
1215
+ msgstr ""
1216
+
1217
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1218
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1219
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1220
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1221
+ msgid "10 Days"
1222
+ msgstr ""
1223
+
1224
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1225
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1226
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1227
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1228
+ msgid "20 Days"
1229
+ msgstr ""
1230
+
1231
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1232
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1233
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1234
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1235
+ msgid "30 Days"
1236
+ msgstr ""
1237
+
1238
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1239
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1240
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1241
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1242
+ msgid "2 Months"
1243
+ msgstr ""
1244
+
1245
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1246
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1247
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1248
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1249
+ msgid "3 Months"
1250
+ msgstr ""
1251
+
1252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1253
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1254
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1255
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1256
+ msgid "6 Months"
1257
+ msgstr ""
1258
+
1259
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:65
1260
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1261
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1262
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1263
+ msgid "9 Months"
1264
+ msgstr ""
1265
+
1266
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:66
1267
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1268
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1269
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1270
+ msgid "1 Year"
1271
+ msgstr ""
1272
+
1273
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
1274
+ msgid "Total Exclusions: %s"
1275
+ msgstr ""
1276
+
1277
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:77
1278
+ msgid "Exclusions Statistical Chart"
1279
+ msgstr ""
1280
+
1281
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1282
+ msgid "Excluded hits in the last"
1283
+ msgstr ""
1284
+
1285
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1286
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1287
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1288
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
1289
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
1290
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
1291
+ msgid "days"
1292
+ msgstr ""
1293
+
1294
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:120
1295
+ msgid "Number of excluded hits"
1296
+ msgstr ""
1297
+
1298
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
1299
+ msgid "Hits Statistics Chart"
1300
+ msgstr ""
1301
+
1302
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1303
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
1304
+ msgid "Hits in the last"
1305
+ msgstr ""
1306
+
1307
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:81
1308
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:72
1309
+ msgid "Number of visits and visitors"
1310
+ msgstr ""
1311
+
1312
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
1313
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
1314
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:30
1315
+ msgid "Visit"
1316
+ msgstr ""
1317
+
1318
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:95
1319
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:86
1320
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:29
1321
+ msgid "Visitor"
1322
+ msgstr ""
1323
+
1324
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:64
1325
+ msgid "Latest Search Word Statistics"
1326
+ msgstr ""
1327
+
1328
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:99
1329
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
1330
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:50
1331
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1332
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1333
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
1334
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:32
1335
+ msgid "#hash#"
1336
+ msgstr ""
1337
+
1338
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:104
1339
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:103
1340
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:55
1341
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1342
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1343
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
1344
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:33
1345
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:113
1346
+ msgid "Map"
1347
+ msgstr ""
1348
+
1349
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1350
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1351
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1352
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1353
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1354
+ msgid "Page"
1355
+ msgstr ""
1356
+
1357
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1358
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1359
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1360
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1361
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1362
+ msgid "From"
1363
+ msgstr ""
1364
+
1365
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:46
1366
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:33
1367
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1368
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1369
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1370
+ msgid "All"
1371
+ msgstr ""
1372
+
1373
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
1374
+ msgid "Search for"
1375
+ msgstr ""
1376
+
1377
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:65
1378
+ msgid "Recent Visitor Statistics"
1379
+ msgstr ""
1380
+
1381
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
1382
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
1383
+ msgid "Online Users"
1384
+ msgstr ""
1385
+
1386
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:75
1387
+ msgid "Online for "
1388
+ msgstr ""
1389
+
1390
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
1391
+ msgid "Page Trend for Post ID"
1392
+ msgstr ""
1393
+
1394
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:48
1395
+ msgid "Page Trend"
1396
+ msgstr ""
1397
+
1398
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:11
1399
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:30
1400
+ msgid "Search Engine Referral Statistics"
1401
+ msgstr ""
1402
+
1403
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1404
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
1405
+ msgid "Search engine referrals in the last"
1406
+ msgstr ""
1407
+
1408
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:92
1409
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:76
1410
+ msgid "Number of referrals"
1411
+ msgstr ""
1412
+
1413
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
1414
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1415
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1416
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
1417
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:104
1418
+ msgid "Total"
1419
+ msgstr ""
1420
+
1421
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:11
1422
+ msgid "Top Countries"
1423
+ msgstr ""
1424
+
1425
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:20
1426
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:30
1427
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:27
1428
+ msgid "Rank"
1429
+ msgstr ""
1430
+
1431
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:21
1432
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:31
1433
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:29
1434
+ msgid "Flag"
1435
+ msgstr ""
1436
+
1437
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:22
1438
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:32
1439
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:30
1440
+ msgid "Country"
1441
+ msgstr ""
1442
+
1443
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:23
1444
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:33
1445
+ msgid "Visitor Count"
1446
+ msgstr ""
1447
+
1448
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:13
1449
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:138
1450
+ msgid "Top Pages"
1451
+ msgstr ""
1452
+
1453
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:20
1454
+ msgid "Top 5 Pages Trends"
1455
+ msgstr ""
1456
+
1457
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:49
1458
+ msgid "Top 5 Page Trending Stats"
1459
+ msgstr ""
1460
+
1461
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1462
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:60
1463
+ msgid "Number of Hits"
1464
+ msgstr ""
1465
+
1466
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:166
1467
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:32
1468
+ msgid "No page title found"
1469
+ msgstr ""
1470
+
1471
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:169
1472
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:35
1473
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:37
1474
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:122
1475
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:127
1476
+ msgid "Visits"
1477
+ msgstr ""
1478
+
1479
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
1480
+ msgid "To be added soon"
1481
+ msgstr ""
1482
+
1483
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:40
1484
+ msgid "Referring sites from"
1485
+ msgstr ""
1486
+
1487
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:110
1488
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:30
1489
+ msgid "References"
1490
+ msgstr ""
1491
+
1492
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
1493
+ msgid "Top 100 Visitors Today"
1494
+ msgstr ""
1495
+
1496
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
1497
+ msgid "About WP Statistics Version %s"
1498
+ msgstr ""
1499
+
1500
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:25
1501
+ msgid "Website"
1502
+ msgstr ""
1503
+
1504
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:26
1505
+ msgid "Rate and Review"
1506
+ msgstr ""
1507
+
1508
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:30
1509
+ msgid "More Information"
1510
+ msgstr ""
1511
+
1512
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:39
1513
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:12
1514
+ msgid "This product includes GeoLite2 data created by MaxMind, available from %s."
1515
+ msgstr ""
1516
+
1517
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1518
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/countries.php:11
1519
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:8
1520
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/pages.php:11
1521
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
1522
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:13
1523
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:7
1524
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
1525
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:8
1526
+ msgid "More"
1527
+ msgstr ""
1528
+
1529
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:47
1530
+ msgid "Other"
1531
+ msgstr ""
1532
+
1533
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:9
1534
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:9
1535
+ msgid "Today Visitors Map"
1536
+ msgstr ""
1537
+
1538
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/referring.php:31
1539
+ msgid "Address"
1540
+ msgstr ""
1541
+
1542
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:23
1543
+ msgid "User(s) Online"
1544
+ msgstr ""
1545
+
1546
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:34
1547
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:79
1548
+ msgid "Today"
1549
+ msgstr ""
1550
+
1551
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:40
1552
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:80
1553
+ msgid "Yesterday"
1554
+ msgstr ""
1555
+
1556
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1557
+ msgid "Daily Total"
1558
+ msgstr ""
1559
+
1560
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
1561
+ msgid "Current Time and Date"
1562
+ msgstr ""
1563
+
1564
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
1565
+ msgid "(Adjustment)"
1566
+ msgstr ""
1567
+
1568
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:121
1569
+ msgid "Date: %s"
1570
+ msgstr ""
1571
+
1572
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:125
1573
+ msgid "Time: %s"
1574
+ msgstr ""
1575
+
1576
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1577
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:219
1578
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
1579
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
1580
+ msgid "Hits"
1581
+ msgstr ""
1582
+
1583
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
1584
+ msgid "IP"
1585
+ msgstr ""
1586
+
1587
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
1588
+ msgid "Agent"
1589
+ msgstr ""
1590
+
1591
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
1592
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1593
+ msgid "Version"
1594
+ msgstr ""
1595
+
1596
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
1597
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
1598
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
1599
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
1600
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:6
1601
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:6
1602
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:5
1603
+ msgid "Access denied!"
1604
+ msgstr ""
1605
+
1606
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
1607
+ msgid "%s agent data deleted successfully."
1608
+ msgstr ""
1609
+
1610
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
1611
+ msgid "No agent data found to remove!"
1612
+ msgstr ""
1613
+
1614
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1615
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1616
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1617
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:80
1618
+ msgid "Please select the desired items."
1619
+ msgstr ""
1620
+
1621
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
1622
+ msgid "%s platform data deleted successfully."
1623
+ msgstr ""
1624
+
1625
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
1626
+ msgid "No platform data found to remove!"
1627
+ msgstr ""
1628
+
1629
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
1630
+ msgid "%s table data deleted successfully."
1631
+ msgstr ""
1632
+
1633
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:57
1634
+ msgid "Error, %s not emptied!"
1635
+ msgstr ""
1636
+
1637
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
1638
+ msgid "Database Setup"
1639
+ msgstr ""
1640
+
1641
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:10
1642
+ msgid "Re-run Install"
1643
+ msgstr ""
1644
+
1645
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:14
1646
+ msgid "Install Now!"
1647
+ msgstr ""
1648
+
1649
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:15
1650
+ 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."
1651
+ msgstr ""
1652
+
1653
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:20
1654
+ msgid "Database Index"
1655
+ msgstr ""
1656
+
1657
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1658
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1659
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
1660
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
1661
+ msgid "Countries"
1662
+ msgstr ""
1663
+
1664
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:39
1665
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:25
1666
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:40
1667
+ msgid "Update Now!"
1668
+ msgstr ""
1669
+
1670
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:40
1671
+ 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."
1672
+ msgstr ""
1673
+
1674
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:41
1675
+ msgid "This operation could take a long time on installs with many rows in the visitors table."
1676
+ msgstr ""
1677
+
1678
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:46
1679
+ 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."
1680
+ msgstr ""
1681
+
1682
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:47
1683
+ msgid "Congratulations, your installation is already up to date, nothing to do."
1684
+ msgstr ""
1685
+
1686
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:7
1687
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:147
1688
+ msgid "Export"
1689
+ msgstr ""
1690
+
1691
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:12
1692
+ msgid "Export from"
1693
+ msgstr ""
1694
+
1695
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:17
1696
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:35
1697
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:129
1698
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:170
1699
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:194
1700
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:134
1701
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:164
1702
+ msgid "Please select"
1703
+ msgstr ""
1704
+
1705
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:24
1706
+ msgid "Select the table for the output file."
1707
+ msgstr ""
1708
+
1709
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:30
1710
+ msgid "Export To"
1711
+ msgstr ""
1712
+
1713
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:41
1714
+ msgid "Select the output file type."
1715
+ msgstr ""
1716
+
1717
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:47
1718
+ msgid "Include Header Row"
1719
+ msgstr ""
1720
+
1721
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:52
1722
+ msgid "Include a header row as the first line of the exported file."
1723
+ msgstr ""
1724
+
1725
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-export.php:53
1726
+ msgid "Start Now!"
1727
+ msgstr ""
1728
+
1729
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
1730
+ msgid "Historical Values"
1731
+ msgstr ""
1732
+
1733
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1734
+ msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1735
+ msgstr ""
1736
+
1737
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1738
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1739
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1740
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:304
1741
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:377
1742
+ msgid "Visitors"
1743
+ msgstr ""
1744
+
1745
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
1746
+ msgid "Number of historical number of visitors to the site (current value is %s)."
1747
+ msgstr ""
1748
+
1749
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
1750
+ msgid "Number of historical number of visits to the site (current value is %s)."
1751
+ msgstr ""
1752
+
1753
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
1754
+ msgid "Update now!"
1755
+ msgstr ""
1756
+
1757
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
1758
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
1759
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:63
1760
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:91
1761
+ msgid "Are you sure?"
1762
+ msgstr ""
1763
+
1764
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:119
1765
+ msgid "Data"
1766
+ msgstr ""
1767
+
1768
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:124
1769
+ msgid "Empty Table"
1770
+ msgstr ""
1771
+
1772
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:137
1773
+ msgid "All data table will be lost."
1774
+ msgstr ""
1775
+
1776
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:138
1777
+ msgid "Clear now!"
1778
+ msgstr ""
1779
+
1780
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:146
1781
+ msgid "Purge records older than"
1782
+ msgstr ""
1783
+
1784
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:152
1785
+ msgid "Deleted user statistics data older than the selected number of days. Minimum value is 30 days."
1786
+ msgstr ""
1787
+
1788
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:153
1789
+ msgid "Purge now!"
1790
+ msgstr ""
1791
+
1792
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:160
1793
+ msgid "Delete User Agent Types"
1794
+ msgstr ""
1795
+
1796
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:165
1797
+ msgid "Delete Agents"
1798
+ msgstr ""
1799
+
1800
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:180
1801
+ msgid "All visitor data will be lost for this agent type."
1802
+ msgstr ""
1803
+
1804
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:181
1805
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:205
1806
+ msgid "Delete now!"
1807
+ msgstr ""
1808
+
1809
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:189
1810
+ msgid "Delete Platforms"
1811
+ msgstr ""
1812
+
1813
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:204
1814
+ msgid "All visitor data will be lost for this platform type."
1815
+ msgstr ""
1816
+
1817
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:17
1818
+ msgid "Resources"
1819
+ msgstr ""
1820
+
1821
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:22
1822
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:27
1823
+ msgid "Memory usage in PHP"
1824
+ msgstr ""
1825
+
1826
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:26
1827
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:37
1828
+ msgid "Byte"
1829
+ msgstr ""
1830
+
1831
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
1832
+ msgid "Last Overview page memory usage"
1833
+ msgstr ""
1834
+
1835
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
1836
+ msgid "Memory usage in the overview page"
1837
+ msgstr ""
1838
+
1839
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
1840
+ msgid "PHP Memory Limit"
1841
+ msgstr ""
1842
+
1843
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:49
1844
+ msgid "The memory limit a script is allowed to consume, set in php.ini."
1845
+ msgstr ""
1846
+
1847
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:55
1848
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:66
1849
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:77
1850
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:88
1851
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:99
1852
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:110
1853
+ msgid "Number of rows in the %s table"
1854
+ msgstr ""
1855
+
1856
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:59
1857
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:70
1858
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:81
1859
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:92
1860
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:103
1861
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:114
1862
+ msgid "Row"
1863
+ msgstr ""
1864
+
1865
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:60
1866
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:71
1867
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:82
1868
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:93
1869
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:104
1870
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:115
1871
+ msgid "Number of rows"
1872
+ msgstr ""
1873
+
1874
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:120
1875
+ msgid "Version Info"
1876
+ msgstr ""
1877
+
1878
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:125
1879
+ msgid "WP Statistics Version"
1880
+ msgstr ""
1881
+
1882
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:130
1883
+ msgid "The WP Statistics version you are running."
1884
+ msgstr ""
1885
+
1886
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:136
1887
+ msgid "PHP Version"
1888
+ msgstr ""
1889
+
1890
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:141
1891
+ msgid "The PHP version you are running."
1892
+ msgstr ""
1893
+
1894
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:147
1895
+ msgid "PHP Safe Mode"
1896
+ msgstr ""
1897
+
1898
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:152
1899
+ msgid "Is PHP Safe Mode active. The GeoIP code is not supported in Safe Mode."
1900
+ msgstr ""
1901
+
1902
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:158
1903
+ msgid "jQuery Version"
1904
+ msgstr ""
1905
+
1906
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:163
1907
+ msgid "The jQuery version you are running."
1908
+ msgstr ""
1909
+
1910
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:169
1911
+ msgid "cURL Version"
1912
+ msgstr ""
1913
+
1914
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:173
1915
+ msgid "cURL not installed"
1916
+ msgstr ""
1917
+
1918
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:174
1919
+ 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."
1920
+ msgstr ""
1921
+
1922
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:180
1923
+ msgid "BC Math"
1924
+ msgstr ""
1925
+
1926
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
1927
+ msgid "Installed"
1928
+ msgstr ""
1929
+
1930
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:184
1931
+ msgid "Not installed"
1932
+ msgstr ""
1933
+
1934
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:185
1935
+ 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."
1936
+ msgstr ""
1937
+
1938
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:190
1939
+ msgid "File Info"
1940
+ msgstr ""
1941
+
1942
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:195
1943
+ msgid "GeoIP Database"
1944
+ msgstr ""
1945
+
1946
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:204
1947
+ msgid "Database file does not exist."
1948
+ msgstr ""
1949
+
1950
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:206
1951
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:225
1952
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:244
1953
+ msgid ", created on "
1954
+ msgstr ""
1955
+
1956
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:208
1957
+ msgid "The file size and date of the GeoIP database."
1958
+ msgstr ""
1959
+
1960
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:214
1961
+ msgid "browscap.ini File"
1962
+ msgstr ""
1963
+
1964
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:223
1965
+ msgid "browscap.ini file does not exist."
1966
+ msgstr ""
1967
+
1968
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:227
1969
+ msgid "The file size and date of the browscap.ini file."
1970
+ msgstr ""
1971
+
1972
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:233
1973
+ msgid "browscap Cache File"
1974
+ msgstr ""
1975
+
1976
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:242
1977
+ msgid "browscap cache file does not exist."
1978
+ msgstr ""
1979
+
1980
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:246
1981
+ msgid "The file size and date of the browscap cache file."
1982
+ msgstr ""
1983
+
1984
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:251
1985
+ msgid "Client Info"
1986
+ msgstr ""
1987
+
1988
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:256
1989
+ msgid "Client IP"
1990
+ msgstr ""
1991
+
1992
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:261
1993
+ msgid "The client IP address."
1994
+ msgstr ""
1995
+
1996
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:267
1997
+ msgid "User Agent"
1998
+ msgstr ""
1999
+
2000
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:272
2001
+ msgid "The client user agent string."
2002
+ msgstr ""
2003
+
2004
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
2005
+ msgid "Browser"
2006
+ msgstr ""
2007
+
2008
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
2009
+ msgid "The detected client browser."
2010
+ msgstr ""
2011
+
2012
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
2013
+ msgid "The detected client browser version."
2014
+ msgstr ""
2015
+
2016
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
2017
+ msgid "The detected client platform."
2018
+ msgstr ""
2019
+
2020
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
2021
+ msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2022
+ msgstr ""
2023
+
2024
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:16
2025
+ msgid "GeoIP Options"
2026
+ msgstr ""
2027
+
2028
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:26
2029
+ msgid "Updates any unknown location data in the database, this may take a while"
2030
+ msgstr ""
2031
+
2032
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:31
2033
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:66
2034
+ msgid "IP Addresses"
2035
+ msgstr ""
2036
+
2037
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:36
2038
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:71
2039
+ msgid "Hash IP Addresses"
2040
+ msgstr ""
2041
+
2042
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:41
2043
+ 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"
2044
+ msgstr ""
2045
+
2046
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:43
2047
+ msgid "IP Addresses replaced with hash values."
2048
+ msgstr ""
2049
+
2050
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:51
2051
+ msgid "Install routine complete."
2052
+ msgstr ""
2053
+
2054
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:146
2055
+ msgid "Resources/Information"
2056
+ msgstr ""
2057
+
2058
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:148
2059
+ msgid "Purging"
2060
+ msgstr ""
2061
+
2062
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:149
2063
+ msgid "Database"
2064
+ msgstr ""
2065
+
2066
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:150
2067
+ msgid "Updates"
2068
+ msgstr ""
2069
+
2070
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
2071
+ msgid "Historical"
2072
+ msgstr ""
2073
+
2074
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
2075
+ msgid "WP Statistics V%s"
2076
+ msgstr ""
2077
+
2078
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:20
2079
+ msgid "Visit Us Online"
2080
+ msgstr ""
2081
+
2082
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
2083
+ msgid "Come visit our great new %s and keep up to date on the latest news about WP Statistics."
2084
+ msgstr ""
2085
+
2086
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:24
2087
+ msgid "website"
2088
+ msgstr ""
2089
+
2090
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:28
2091
+ msgid "Rate and Review at WordPress.org"
2092
+ msgstr ""
2093
+
2094
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
2095
+ msgid "Thanks for installing WP Statistics, we encourage you to submit a "
2096
+ msgstr ""
2097
+
2098
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
2099
+ msgid "rating and review"
2100
+ msgstr ""
2101
+
2102
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:32
2103
+ msgid "over at WordPress.org. Your feedback is greatly appreciated!"
2104
+ msgstr ""
2105
+
2106
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:36
2107
+ msgid "Translations"
2108
+ msgstr ""
2109
+
2110
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
2111
+ 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."
2112
+ msgstr ""
2113
+
2114
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
2115
+ msgid "translation collaboration site"
2116
+ msgstr ""
2117
+
2118
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:40
2119
+ msgid "drop us a line"
2120
+ msgstr ""
2121
+
2122
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:44
2123
+ msgid "Support"
2124
+ msgstr ""
2125
+
2126
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:49
2127
+ 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:"
2128
+ msgstr ""
2129
+
2130
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
2131
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
2132
+ msgid "Have you read the %s?"
2133
+ msgstr ""
2134
+
2135
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
2136
+ msgid "FAQs"
2137
+ msgstr ""
2138
+
2139
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
2140
+ msgid "manual"
2141
+ msgstr ""
2142
+
2143
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
2144
+ msgid "Have you search the %s for a similar issue?"
2145
+ msgstr ""
2146
+
2147
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
2148
+ msgid "support forum"
2149
+ msgstr ""
2150
+
2151
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:55
2152
+ msgid "Have you search the Internet for any error messages you are receiving?"
2153
+ msgstr ""
2154
+
2155
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
2156
+ msgid "Make sure you have access to your PHP error logs."
2157
+ msgstr ""
2158
+
2159
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
2160
+ msgid "And a few things to double-check:"
2161
+ msgstr ""
2162
+
2163
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:62
2164
+ msgid "How's your memory_limit in php.ini?"
2165
+ msgstr ""
2166
+
2167
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:63
2168
+ msgid "Have you tried disabling any other plugins you may have installed?"
2169
+ msgstr ""
2170
+
2171
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:64
2172
+ msgid "Have you tried using the default WordPress theme?"
2173
+ msgstr ""
2174
+
2175
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:65
2176
+ msgid "Have you double checked the plugin settings?"
2177
+ msgstr ""
2178
+
2179
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:66
2180
+ msgid "Do you have all the required PHP extensions installed?"
2181
+ msgstr ""
2182
+
2183
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:67
2184
+ 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?"
2185
+ msgstr ""
2186
+
2187
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:68
2188
+ msgid "Have you checked your PHP and web server error logs?"
2189
+ msgstr ""
2190
+
2191
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
2192
+ msgid "Still not having any luck?"
2193
+ msgstr ""
2194
+
2195
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
2196
+ msgid "Then please open a new thread on the %s and we'll respond as soon as possible."
2197
+ msgstr ""
2198
+
2199
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:71
2200
+ msgid "WordPress.org support forum"
2201
+ msgstr ""
2202
+
2203
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
2204
+ msgid "Alternatively %s support is available as well."
2205
+ msgstr ""
2206
+
2207
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
2208
+ msgid "Farsi"
2209
+ msgstr ""
2210
+
2211
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
2212
+ msgid "WP Statistics Honey Pot Page"
2213
+ msgstr ""
2214
+
2215
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
2216
+ msgid "This is the honey pot for WP Statistics to use, do not delete."
2217
+ msgstr ""
2218
+
2219
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
2220
+ msgid "Access Levels"
2221
+ msgstr ""
2222
+
2223
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:74
2224
+ msgid "Required user level to view WP Statistics"
2225
+ msgstr ""
2226
+
2227
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:89
2228
+ msgid "Required user level to manage WP Statistics"
2229
+ msgstr ""
2230
+
2231
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
2232
+ msgid "See the %s for details on capability levels."
2233
+ msgstr ""
2234
+
2235
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
2236
+ msgid "WordPress Roles and Capabilities page"
2237
+ msgstr ""
2238
+
2239
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:98
2240
+ msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
2241
+ msgstr ""
2242
+
2243
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:99
2244
+ 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."
2245
+ msgstr ""
2246
+
2247
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:100
2248
+ msgid "If you need a more robust solution to delegate access you might want to look at %s in the WordPress plugin directory."
2249
+ msgstr ""
2250
+
2251
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
2253
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
2254
+ msgid "Exclusions"
2255
+ msgstr ""
2256
+
2257
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:109
2258
+ msgid "Record exclusions"
2259
+ msgstr ""
2260
+
2261
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:111
2262
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:165
2263
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:192
2264
+ msgid "Enable"
2265
+ msgstr ""
2266
+
2267
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:112
2268
+ 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."
2269
+ msgstr ""
2270
+
2271
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:117
2272
+ msgid "Exclude User Roles"
2273
+ msgstr ""
2274
+
2275
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:133
2276
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:247
2277
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:254
2278
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:261
2279
+ msgid "Exclude"
2280
+ msgstr ""
2281
+
2282
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:134
2283
+ msgid "Exclude %s role from data collection."
2284
+ msgstr ""
2285
+
2286
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:140
2287
+ msgid "IP/Robot Exclusions"
2288
+ msgstr ""
2289
+
2290
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:144
2291
+ msgid "Robot list"
2292
+ msgstr ""
2293
+
2294
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:157
2295
+ 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."
2296
+ msgstr ""
2297
+
2298
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:158
2299
+ msgid "Reset to Default"
2300
+ msgstr ""
2301
+
2302
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:163
2303
+ msgid "Force robot list update after upgrades"
2304
+ msgstr ""
2305
+
2306
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:166
2307
+ 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."
2308
+ msgstr ""
2309
+
2310
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
2311
+ msgid "Robot visit threshold"
2312
+ msgstr ""
2313
+
2314
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
2315
+ msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2316
+ msgstr ""
2317
+
2318
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
2319
+ msgid "Excluded IP address list"
2320
+ msgstr ""
2321
+
2322
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:182
2323
+ 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."
2324
+ msgstr ""
2325
+
2326
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:183
2327
+ msgid "Add 10.0.0.0"
2328
+ msgstr ""
2329
+
2330
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:184
2331
+ msgid "Add 172.16.0.0"
2332
+ msgstr ""
2333
+
2334
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:185
2335
+ msgid "Add 192.168.0.0"
2336
+ msgstr ""
2337
+
2338
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
2339
+ msgid "Use honey pot"
2340
+ msgstr ""
2341
+
2342
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
2343
+ msgid "Use a honey pot page to identify robots."
2344
+ msgstr ""
2345
+
2346
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
2347
+ msgid "Honey pot post id"
2348
+ msgstr ""
2349
+
2350
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
2351
+ msgid "The post id to use for the honeypot page."
2352
+ msgstr ""
2353
+
2354
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
2355
+ msgid "Create a new honey pot page"
2356
+ msgstr ""
2357
+
2358
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
2359
+ msgid "GeoIP Exclusions"
2360
+ msgstr ""
2361
+
2362
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
2363
+ msgid "Excluded countries list"
2364
+ msgstr ""
2365
+
2366
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
2367
+ 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."
2368
+ msgstr ""
2369
+
2370
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
2371
+ msgid "Included countries list"
2372
+ msgstr ""
2373
+
2374
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
2375
+ 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."
2376
+ msgstr ""
2377
+
2378
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
2379
+ msgid "Host Exclusions"
2380
+ msgstr ""
2381
+
2382
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
2383
+ msgid "Excluded hosts list"
2384
+ msgstr ""
2385
+
2386
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
2387
+ msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2388
+ msgstr ""
2389
+
2390
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
2391
+ 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."
2392
+ msgstr ""
2393
+
2394
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
2395
+ msgid "Site URL Exclusions"
2396
+ msgstr ""
2397
+
2398
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:245
2399
+ msgid "Excluded login page"
2400
+ msgstr ""
2401
+
2402
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:248
2403
+ msgid "Exclude the login page for registering as a hit."
2404
+ msgstr ""
2405
+
2406
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:252
2407
+ msgid "Excluded admin pages"
2408
+ msgstr ""
2409
+
2410
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:255
2411
+ msgid "Exclude the admin pages for registering as a hit."
2412
+ msgstr ""
2413
+
2414
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
2415
+ msgid "Excluded RSS feeds"
2416
+ msgstr ""
2417
+
2418
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
2419
+ msgid "Exclude the RSS feeds for registering as a hit."
2420
+ msgstr ""
2421
+
2422
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
2423
+ msgid "browscap settings"
2424
+ msgstr ""
2425
+
2426
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:27
2427
+ msgid "browscap usage"
2428
+ msgstr ""
2429
+
2430
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:32
2431
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:56
2432
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:76
2433
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:92
2434
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:116
2435
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:132
2436
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:148
2437
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:160
2438
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:187
2439
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:199
2440
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:214
2441
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:228
2442
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2443
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2444
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
2445
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:329
2446
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2447
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2448
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
2449
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:40
2450
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:69
2451
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:81
2452
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:93
2453
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:105
2454
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:121
2455
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:87
2456
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:107
2457
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:147
2458
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:159
2459
+ msgid "Active"
2460
+ msgstr ""
2461
+
2462
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:33
2463
+ msgid "The browscap database will be downloaded and used to detect robots."
2464
+ msgstr ""
2465
+
2466
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:39
2467
+ msgid "Update browscap Info"
2468
+ msgstr ""
2469
+
2470
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:44
2471
+ msgid "Download browscap Database"
2472
+ msgstr ""
2473
+
2474
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:45
2475
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:60
2476
+ msgid "Save changes on this page to download the update."
2477
+ msgstr ""
2478
+
2479
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:51
2480
+ msgid "Schedule weekly update of browscap DB"
2481
+ msgstr ""
2482
+
2483
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:59
2484
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:74
2485
+ msgid "Next update will be"
2486
+ msgstr ""
2487
+
2488
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:74
2489
+ msgid "Download of the browscap database will be scheduled for once a week."
2490
+ msgstr ""
2491
+
2492
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:50
2493
+ msgid "This will delete the manual when you save the settings, are you sure?"
2494
+ msgstr ""
2495
+
2496
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:77
2497
+ 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."
2498
+ msgstr ""
2499
+
2500
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:82
2501
+ msgid "Users Online"
2502
+ msgstr ""
2503
+
2504
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2505
+ msgid "User online"
2506
+ msgstr ""
languages/wp_statistics-cs.mo CHANGED
Binary file
languages/wp_statistics-cs.po CHANGED
@@ -2,17 +2,129 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-01-27 19:17-0500\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
10
- "X-Generator: Poedit 1.7.4\n"
11
  "Project-Id-Version: WP Statistics\n"
12
- "POT-Creation-Date: \n"
13
- "Last-Translator: \n"
14
- "Language-Team: \n"
15
- "Language: cs\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
18
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
@@ -38,11 +150,11 @@ msgstr "Čas pro kontrolu přesné online uživatele v síti. Nyní: %s druhé"
38
 
39
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
40
  msgid "Record all user"
41
- msgstr "Zaznamenejte všechny uživatelské"
42
 
43
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
44
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
45
- msgstr "Ignoruje nastavení pro vyloučení a zaznamenává všechny uživatele, kteří jsou online (včetně samostatné doporučení a roboty). Měly by být použity pouze pro řešení problémů."
46
 
47
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
48
  msgid "Store entire user agent string"
@@ -62,8 +174,8 @@ msgstr "Pro každou návštěvu k účtu pro několik hitů. V současné době
62
 
63
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
64
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
65
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:295
66
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
67
  msgid "Pages"
68
  msgstr "Stránky"
69
 
@@ -73,11 +185,11 @@ msgstr "Sledovat všechny stránky"
73
 
74
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
75
  msgid "Strip parameters from URI"
76
- msgstr "Strip parametry URI"
77
 
78
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
79
  msgid "This will remove anything after the ? in a URL."
80
- msgstr "Tím se odstraní něco po? v URL."
81
 
82
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
83
  msgid "Disable hits column in post/pages list"
@@ -121,7 +233,7 @@ msgstr "Ve výchozím nastavení ukládá statistiky WP admin ruční v adresá
121
 
122
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
123
  msgid "Search Engines"
124
- msgstr "Vyhledávače"
125
 
126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
127
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
@@ -193,11 +305,11 @@ msgstr "Aktualizovat chybějící GeoIP data po stažení nové databáze."
193
 
194
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
195
  msgid "Country code for private IP addresses"
196
- msgstr "Kód země pro soukromé IP adresy"
197
 
198
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
199
  msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
200
- msgstr "Standardní dva code Mezinárodní písmeno země (např. US = Spojené státy, CA = Kanada, atd.), Pro soukromé (bez směrování) IP adresy (např. 10.0.0.1, 192.158.1.1, 127.0.0.1, atd.). Pomocí &quot;000&quot; (tři nuly), k použití &quot;neznámé&quot;, protože kód země."
201
 
202
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
203
  msgid "GeoIP collection is disabled due to the following reasons:"
@@ -249,7 +361,7 @@ msgstr "Počet dnů zachovat statistiky. Minimální hodnota je 30 dní. Neplatn
249
 
250
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
251
  msgid "Common Report Options"
252
- msgstr "Možnosti Společné zprávy"
253
 
254
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
255
  msgid "E-mail addresses"
@@ -257,20 +369,22 @@ msgstr "E-mail adresy"
257
 
258
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
259
  msgid "A comma separated list of e-mail addresses to send reports to."
260
- msgstr "Čárkou oddělený seznam e-mailových adres pro odeslání zprávy."
261
 
262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
263
  msgid "Update Reports"
264
- msgstr "Zprávy o update"
265
 
 
266
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
267
  msgid "Browscap"
268
- msgstr "Browscap"
269
 
270
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
271
  msgid "Send a report whenever the browscap.ini is updated."
272
- msgstr "Poslat zprávu, jakmile je Browscap.ini aktualizován."
273
 
 
274
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
275
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
276
  msgid "GeoIP"
@@ -278,27 +392,27 @@ msgstr "GeoIP"
278
 
279
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
280
  msgid "Send a report whenever the GeoIP database is updated."
281
- msgstr "Poslat zprávu, jakmile je databáze GeoIP aktualizován."
282
 
283
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
284
  msgid "Pruning"
285
- msgstr "Prořezávání"
286
 
287
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
288
  msgid "Send a report whenever the pruning of database is run."
289
- msgstr "Poslat zprávu, jakmile se spustí prořezávání databáze."
290
 
291
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
292
  msgid "Upgrade"
293
- msgstr "Upgrade"
294
 
295
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
296
  msgid "Send a report whenever the plugin is upgraded."
297
- msgstr "Poslat zprávu, jakmile je plugin inovován."
298
 
299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
300
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
301
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
302
  msgid "Statistical reporting"
303
  msgstr "Statistický reporting"
304
 
@@ -308,7 +422,7 @@ msgstr "Plán"
308
 
309
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
310
  msgid "Select how often to receive statistical report."
311
- msgstr "Vyberte, jak často chcete dostávat statistickou zprávu."
312
 
313
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
314
  msgid "Send reports via"
@@ -324,7 +438,7 @@ msgstr "SMS"
324
 
325
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
326
  msgid "Select delivery method for statistical report."
327
- msgstr "Zvolit způsob doručení pro statistické zprávy."
328
 
329
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
330
  msgid "Note: To send SMS text messages please install the %s plugin."
@@ -340,16 +454,16 @@ msgstr "Tělo reportu"
340
 
341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
342
  msgid "Enter the contents of the report."
343
- msgstr "Zadejte obsah zprávy."
344
 
345
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
346
  msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
347
- msgstr "Jakékoli zkrácený podporována instalace WordPress, zahrnují všechny Shortcodes pro WP statistiky (viz návod admin pro seznam kódů dostupných), jsou podporovány v těle zprávy. Zde je několik příkladů:"
348
 
349
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
351
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
352
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:464
353
  msgid "User Online"
354
  msgstr "Online uživatelé"
355
 
@@ -416,38 +530,39 @@ msgstr "Top navštívené stránky"
416
 
417
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
418
  msgid "Dashboard"
419
- msgstr "Palubní deska"
420
 
421
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
422
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
423
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
424
  msgid "The following items are global to all users."
425
- msgstr "Následující položky jsou globální pro všechny uživatele."
426
 
427
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
428
  msgid "Disable dashboard widgets"
429
- msgstr "Zakázat Dashboard Widgety"
430
 
431
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
432
  msgid "Disable the dashboard widgets."
433
- msgstr "Zakázat Dashboard Widgety."
434
 
435
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
436
  msgid "Page/Post Editor"
437
- msgstr "Page / Post Editor"
438
 
439
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
440
  msgid "Disable post/page editor widget"
441
- msgstr "Zakázat pošta / strana editor Widget"
442
 
443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
444
  msgid "Disable the page/post editor widget."
445
- msgstr "Zakázat strana / editor příspěvků widgetu."
446
 
447
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
448
  msgid "Map type"
449
  msgstr "Typ mapy"
450
 
 
451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
452
  msgid "Google"
453
  msgstr "Google"
@@ -482,7 +597,7 @@ msgstr "Tato funkce může způsobit snížení výkonu při prohlížení stati
482
 
483
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
484
  msgid "Overview Widgets to Display"
485
- msgstr "Přehled Widgety na zobrazení"
486
 
487
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
488
  msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
@@ -531,31 +646,31 @@ msgstr "N/A"
531
 
532
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
533
  msgid "Slot 7"
534
- msgstr "Slot 7"
535
 
536
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
537
  msgid "WP Statisitcs Removal"
538
- msgstr "WP Statisitcs Odstranění"
539
 
540
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
541
  msgid "Uninstalling WP Statistics will not remove the data and settings, you can use this option to remove the WP Statistics data from your install before uninstalling the plugin."
542
- msgstr "Odinstalace WP Statistika neodstraní data a nastavení, můžete použít tuto možnost k odstranění dat WP statistiky z vašeho nainstalovat před odinstalováním plugin."
543
 
544
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
545
  msgid "Once you submit this form the settings will be deleted during the page load, however WP Statistics will still show up in your Admin menu until another page load is executed."
546
- msgstr "Po odeslání tohoto formuláře nastavení budou v průběhu zatížení stránky smazané, ale WP Statistiky budou i nadále zobrazovat v nabídce pro správu, dokud je další načítání stránky popraven."
547
 
548
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
549
  msgid "Remove data and settings"
550
- msgstr "Odstranit data a nastavení"
551
 
552
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
553
  msgid "Remove"
554
- msgstr "Odstranit"
555
 
556
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
557
  msgid "Remove data and settings, this action cannot be undone."
558
- msgstr "Odstranit data a nastavení, se tato akce nelze vzít zpět."
559
 
560
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
561
  msgid "General"
@@ -563,11 +678,11 @@ msgstr "Obecné"
563
 
564
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
565
  msgid "Notifications"
566
- msgstr "Oznámení"
567
 
568
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
569
  msgid "Dashboard/Overview"
570
- msgstr "Dashboard / Přehled"
571
 
572
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
573
  msgid "Access/Exclusions"
@@ -583,7 +698,7 @@ msgstr "Údržba"
583
 
584
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
585
  msgid "Removal"
586
- msgstr "Odstranění"
587
 
588
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
589
  msgid "Update"
@@ -610,8 +725,8 @@ msgid "Once Every 4 Weeks"
610
  msgstr "Jednou za 4 týdny"
611
 
612
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
613
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:284
614
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:321
615
  msgid "Statistics"
616
  msgstr "Statistiky"
617
 
@@ -697,7 +812,7 @@ msgid "Items"
697
  msgstr "Položky"
698
 
699
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
700
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:489
701
  msgid "Yesterday visit"
702
  msgstr "Včera návštěv"
703
 
@@ -709,172 +824,172 @@ msgstr "Vyhledávač podle"
709
  msgid "Select type of search engine"
710
  msgstr "Vyberte typ vyhledávače"
711
 
712
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
713
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
714
  msgstr "Chyba: WP Statistics zjistila nepodporovanou verzi PHP, WP Statistics nebude fungovat bez verze PHP "
715
 
716
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
717
  msgid " or higher!"
718
  msgstr "nebo vyšší!"
719
 
720
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
721
  msgid "Your current PHP version is"
722
- msgstr "Vaše aktuální verze PHP je"
723
 
724
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:42
725
  msgid "WP Statistics has been removed, please disable and delete it."
726
- msgstr "WP Statistika byla odstraněna, prosím, vypněte a odstraňte ji."
727
 
728
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:53
729
  msgid "WP Statistics"
730
  msgstr "WP Statistiky"
731
 
732
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:54
733
  msgid "Complete statistics for your WordPress site."
734
  msgstr "Kompletní statistiky pro váš web WordPress."
735
 
736
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
737
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
738
  msgstr "On-line sledování v WP Statistics uživatelů není povoleno, přejděte na %s a umožňují."
739
 
740
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
741
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
742
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
743
  msgid "setting page"
744
  msgstr "nastavení stránky"
745
 
746
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
747
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
748
  msgstr "Sledování přístupů v WP Statistics není povoleno, přejděte na %s a umožňují."
749
 
750
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
751
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
752
  msgstr "Návštěvník v WP Statistics sledování není povoleno, přejděte na %s a umožňují."
753
 
754
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
755
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
756
  msgstr "GeoIP kolekce není aktivní, přejděte na %s a tuto funkci povolit."
757
 
758
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
759
  msgid "Setting page > GeoIP"
760
  msgstr "Nastavení stránky > GeoIP"
761
 
762
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:191
763
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
764
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
765
  msgid "Settings"
766
  msgstr "Nastavení"
767
 
768
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
769
  msgid "Click here to visit the plugin on WordPress.org"
770
  msgstr "Chcete-li navštívit plugin WordPress.org"
771
 
772
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
773
  msgid "Visit WordPress.org page"
774
  msgstr "Navštivte stránku WordPress.org"
775
 
776
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
777
  msgid "Click here to rate and review this plugin on WordPress.org"
778
  msgstr "Klikněte zde pro hodnocení a recenzování tento plugin na WordPress.org"
779
 
780
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
781
  msgid "Rate this plugin"
782
  msgstr "Ohodnoť tento plugin"
783
 
784
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:250
785
  msgid "WP Statistics - Hits"
786
  msgstr "WP Statistics - Hits"
787
 
788
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:287
789
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:324
790
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:362
791
  msgid "Overview"
792
  msgstr "Přehled"
793
 
794
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
795
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
796
  msgid "Online"
797
- msgstr "Online"
798
 
799
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
800
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
801
  msgid "Referrers"
802
- msgstr "Odkazující"
803
 
804
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
805
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
806
  msgid "Searches"
807
  msgstr "Vyhledávání"
808
 
809
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
810
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
811
  msgid "Search Words"
812
  msgstr "Hledaná slova"
813
 
814
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
815
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
816
  msgid "Top Visitors Today"
817
- msgstr "Top Návštěvníci dnes"
818
 
819
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
820
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
821
  msgid "Optimization"
822
  msgstr "Optimalizace"
823
 
824
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
825
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:338
826
  msgid "Manual"
827
  msgstr "Manuál"
828
 
829
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
830
  msgid "Site"
831
- msgstr "Site"
832
 
833
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:354
834
  msgid "Options"
835
- msgstr "Možnosti"
836
 
837
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:471
838
  msgid "Today visitor"
839
  msgstr "Dnešní návštěvník"
840
 
841
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:477
842
  msgid "Today visit"
843
  msgstr "Dnešní návštěva"
844
 
845
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:483
846
  msgid "Yesterday visitor"
847
  msgstr "Včera návštěvníků"
848
 
849
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:495
850
  msgid "View Stats"
851
  msgstr "Zobrazit statistiky"
852
 
853
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
854
  msgid "Download ODF file"
855
  msgstr "Stáhnout soubor ODF"
856
 
857
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
858
  msgid "Download HTML file"
859
  msgstr "Stáhnout HTML soubor"
860
 
861
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
862
  msgid "Manual file not found."
863
  msgstr "Ruční soubor nebyl nalezen."
864
 
865
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
866
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:702
867
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
868
  msgid "You do not have sufficient permissions to access this page."
869
  msgstr "Nemáte dostatečná práva pro přístup na tuto stránku."
870
 
871
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:604
872
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
873
- msgstr "Plugin tabulky neexistují v databázi! Prosím, znovu spustit%s instalací rutinní%s."
874
 
875
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
876
  msgid "WP Statistics %s installed on"
877
- msgstr "WP Statistika%s instalován na"
878
 
879
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
880
  msgid "Error downloading GeoIP database from: %s - %s"
@@ -894,7 +1009,7 @@ msgstr "GeoIP Databáze byla úspěšně aktualizována!"
894
 
895
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
896
  msgid "GeoIP update on"
897
- msgstr "GeoIP aktualizuje"
898
 
899
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
900
  msgid "Error downloading browscap database from: %s - %s"
@@ -906,11 +1021,11 @@ msgstr "Browscap databáze úspěšně aktualizován!"
906
 
907
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
908
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
909
- msgstr "browscap aktualizace databáze se nezdařilo! Soubor Cache příliš velký, návrat k předchozímu Browscap.ini."
910
 
911
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
912
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
913
- msgstr "browscap aktualizace databáze se nezdařilo! New Browscap.ini je mis-identifing uživatelských agentů jako roboti, návrat k předchozímu Browscap.ini."
914
 
915
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
916
  msgid "browscap already at current version!"
@@ -918,11 +1033,11 @@ msgstr "Browscap již v aktuální verzi!"
918
 
919
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
920
  msgid "Browscap.ini update on"
921
- msgstr "Browscap.ini aktualizace"
922
 
923
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
924
  msgid "Quick Stats"
925
- msgstr "Rychlé statistiky"
926
 
927
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
928
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
@@ -937,7 +1052,7 @@ msgstr "Pořadí"
937
 
938
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
939
  msgid "Today's Visitor Map"
940
- msgstr "Mapa Návštěvník Dnešní"
941
 
942
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
943
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
@@ -952,7 +1067,7 @@ msgid "Top 10 Pages"
952
  msgstr "Top 10 stránek"
953
 
954
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
955
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:30
956
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
957
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
958
  msgid "Recent Visitors"
@@ -988,25 +1103,25 @@ msgstr "Poslední vyhledávaný slova"
988
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
989
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
990
  msgid "Top 10 Visitors Today"
991
- msgstr "Top 10 Návštěvníci dnes"
992
 
993
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
994
  msgid "Please reload the dashboard to display the content of this widget."
995
- msgstr "Obnovte palubní desku pro zobrazení obsahu tohoto udělátka."
996
 
997
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
998
  msgid "WP Statistics Overview"
999
- msgstr "WP Statistics Přehled"
1000
 
1001
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
1002
  msgid "This post is not yet published."
1003
- msgstr "Tento příspěvek je dosud nezveřejněné."
1004
 
1005
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
1006
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1007
  msgstr "Nemožné nahrát GeoIP databázi, zajistěte stažení v nastavení."
1008
 
1009
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:50
1010
  msgid "Updated %s GeoIP records in the visitors database."
1011
  msgstr "Aktualizovat %s GeoIP záznamy v databázi návětěvníků."
1012
 
@@ -1026,7 +1141,7 @@ msgstr "Žádné záznamy nalezeny očistit od %s!"
1026
 
1027
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
1028
  msgid "Database pruned on"
1029
- msgstr "Databáze prořezaný na"
1030
 
1031
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
1032
  msgid "Please select a value over 30 days."
@@ -1039,10 +1154,10 @@ msgstr "Statistiky prohlížečů"
1039
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1040
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1041
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1042
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
1043
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1044
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
1045
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:60
1046
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1047
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1048
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
@@ -1068,8 +1183,8 @@ msgstr "Klik na vypínač"
1068
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1070
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1071
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
1072
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:363
1073
  msgid "Browsers"
1074
  msgstr "Prohlížeče"
1075
 
@@ -1095,79 +1210,79 @@ msgstr "%s Verze"
1095
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1096
  msgstr "Pozor: Vyloučení nejsou nastaveny v současnosti zaznamenávají, výsledky níže nemusí odrážet aktuální statistiky!"
1097
 
1098
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
1099
  msgid "Exclusions Statistics"
1100
  msgstr "Vyloučení statistiky"
1101
 
1102
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
1103
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1104
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1105
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1106
  msgid "10 Days"
1107
  msgstr "10 Dnů"
1108
 
1109
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
1110
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1111
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1112
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1113
  msgid "20 Days"
1114
  msgstr "20 Dnů"
1115
 
1116
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1117
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1118
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1119
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1120
  msgid "30 Days"
1121
  msgstr "30 Dnů"
1122
 
1123
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1124
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1125
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1127
  msgid "2 Months"
1128
  msgstr "2 Měsíce"
1129
 
1130
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1131
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1132
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1133
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1134
  msgid "3 Months"
1135
  msgstr "3 Měsíce"
1136
 
1137
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1138
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1139
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1140
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1141
  msgid "6 Months"
1142
  msgstr "6 Měsíců"
1143
 
1144
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1145
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1147
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1148
  msgid "9 Months"
1149
  msgstr "9 Měsíců"
1150
 
1151
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1152
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1153
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1155
  msgid "1 Year"
1156
  msgstr "1 Rok"
1157
 
1158
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
1159
  msgid "Total Exclusions: %s"
1160
  msgstr "Celkem vyjímek: %s"
1161
 
1162
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
1163
  msgid "Exclusions Statistical Chart"
1164
  msgstr "Statistický graf vyjímek"
1165
 
1166
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1167
  msgid "Excluded hits in the last"
1168
  msgstr "Vyloučené hity v posledních"
1169
 
1170
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1171
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1172
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1173
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
@@ -1176,7 +1291,7 @@ msgstr "Vyloučené hity v posledních"
1176
  msgid "days"
1177
  msgstr "dnů"
1178
 
1179
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:118
1180
  msgid "Number of excluded hits"
1181
  msgstr "Počet vyjmutých hitů"
1182
 
@@ -1206,13 +1321,13 @@ msgstr "Návštěva"
1206
  msgid "Visitor"
1207
  msgstr "Návštěvník"
1208
 
1209
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:62
1210
  msgid "Latest Search Word Statistics"
1211
  msgstr "Stastiky posledně vyhledávaných slov"
1212
 
1213
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:97
1214
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
1215
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:48
1216
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1217
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
@@ -1220,9 +1335,9 @@ msgstr "Stastiky posledně vyhledávaných slov"
1220
  msgid "#hash#"
1221
  msgstr "#hash #"
1222
 
1223
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:102
1224
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:102
1225
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:53
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1228
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
@@ -1231,45 +1346,46 @@ msgstr "#hash #"
1231
  msgid "Map"
1232
  msgstr "Mapa"
1233
 
1234
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1235
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1236
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1237
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1238
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1239
  msgid "Page"
1240
  msgstr "Stránka"
1241
 
1242
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1243
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1244
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1245
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1247
  msgid "From"
1248
  msgstr "Od"
1249
 
1250
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
 
1251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1252
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1254
  msgid "All"
1255
  msgstr "Všechno"
1256
 
1257
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
1258
  msgid "Search for"
1259
  msgstr "Hledat"
1260
 
1261
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
1262
  msgid "Recent Visitor Statistics"
1263
  msgstr "Nedávné statistiky návštěvnosti"
1264
 
1265
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
1266
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
1267
  msgid "Online Users"
1268
- msgstr "Online uživatelé"
1269
 
1270
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:73
1271
  msgid "Online for "
1272
- msgstr "Online pro"
1273
 
1274
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
1275
  msgid "Page Trend for Post ID"
@@ -1294,6 +1410,7 @@ msgstr "Vyhledávací stroj doporučení v posledních"
1294
  msgid "Number of referrals"
1295
  msgstr "Počet odkazů"
1296
 
 
1297
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1298
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
@@ -1342,7 +1459,7 @@ msgid "Top 5 Page Trending Stats"
1342
  msgstr "Top 5 stránek trendy statistiky"
1343
 
1344
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1345
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:58
1346
  msgid "Number of Hits"
1347
  msgstr "Počet přístupů"
1348
 
@@ -1374,7 +1491,7 @@ msgstr "Odkazy"
1374
 
1375
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
1376
  msgid "Top 100 Visitors Today"
1377
- msgstr "Top 100 Návštěvníci dnes"
1378
 
1379
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
1380
  msgid "About WP Statistics Version %s"
@@ -1436,18 +1553,6 @@ msgstr "Dnes"
1436
  msgid "Yesterday"
1437
  msgstr "Včera"
1438
 
1439
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
1440
- msgid "Week"
1441
- msgstr "Týden"
1442
-
1443
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
1444
- msgid "Month"
1445
- msgstr "Měsíc"
1446
-
1447
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
1448
- msgid "Year"
1449
- msgstr "Rok"
1450
-
1451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1452
  msgid "Daily Total"
1453
  msgstr "Denně celkem"
@@ -1469,24 +1574,24 @@ msgid "Time: %s"
1469
  msgstr "Čas: %s"
1470
 
1471
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1472
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:215
1473
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:293
1474
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
1475
  msgid "Hits"
1476
  msgstr "Hity"
1477
 
1478
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
1479
  msgid "IP"
1480
- msgstr "IP"
1481
 
1482
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
1483
  msgid "Agent"
1484
- msgstr "Agent"
1485
 
1486
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
1487
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1488
  msgid "Version"
1489
- msgstr "Verze"
1490
 
1491
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
1492
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
@@ -1504,12 +1609,12 @@ msgstr "%s agenta data úspěšně smazána."
1504
 
1505
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
1506
  msgid "No agent data found to remove!"
1507
- msgstr "Žádné údaje agentů bylo zjištěno, že odstranit!"
1508
 
1509
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1510
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1511
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1512
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
1513
  msgid "Please select the desired items."
1514
  msgstr "Prosím vyber požadované položky."
1515
 
@@ -1519,7 +1624,7 @@ msgstr "údaje platforma %s úspěšně smazána."
1519
 
1520
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
1521
  msgid "No platform data found to remove!"
1522
- msgstr "Žádná data nástupištěm odstranit!"
1523
 
1524
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
1525
  msgid "%s table data deleted successfully."
@@ -1551,8 +1656,8 @@ msgstr "Databáze Index"
1551
 
1552
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1553
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1554
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:290
1555
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:364
1556
  msgid "Countries"
1557
  msgstr "Země"
1558
 
@@ -1623,31 +1728,31 @@ msgstr "Start Nyní!"
1623
 
1624
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
1625
  msgid "Historical Values"
1626
- msgstr "Historické hodnoty"
1627
 
1628
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1629
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1630
- msgstr "Poznámka: Jak jste právě očistil databázi, musíte znovu načíst tuto stránku na tato čísla za správné."
1631
 
1632
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1633
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1634
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1635
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
1636
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
1637
  msgid "Visitors"
1638
  msgstr "Návštěvníci"
1639
 
1640
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
1641
  msgid "Number of historical number of visitors to the site (current value is %s)."
1642
- msgstr "Počet historické počtu návštěvníků stránek (aktuální hodnota je%s)."
1643
 
1644
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
1645
  msgid "Number of historical number of visits to the site (current value is %s)."
1646
- msgstr "Počet historické počtu návštěv stránek (aktuální hodnota je%s)."
1647
 
1648
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
1649
  msgid "Update now!"
1650
- msgstr "Aktualizovat nyní!"
1651
 
1652
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
1653
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
@@ -1725,11 +1830,11 @@ msgstr "Bytů"
1725
 
1726
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
1727
  msgid "Last Overview page memory usage"
1728
- msgstr "Poslední Přehled využití strana paměti"
1729
 
1730
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
1731
  msgid "Memory usage in the overview page"
1732
- msgstr "Využití paměti na přehledové stránce"
1733
 
1734
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
1735
  msgid "PHP Memory Limit"
@@ -1898,19 +2003,19 @@ msgstr "Řetězec agenta uživatele klienta."
1898
 
1899
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
1900
  msgid "Browser"
1901
- msgstr "Browser"
1902
 
1903
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
1904
  msgid "The detected client browser."
1905
- msgstr "Zjištěna Prohlížeč klienta."
1906
 
1907
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
1908
  msgid "The detected client browser version."
1909
- msgstr "Zjištěna verze klienta prohlížeče."
1910
 
1911
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
1912
  msgid "The detected client platform."
1913
- msgstr "Zjištěna Klient platformu."
1914
 
1915
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
1916
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
@@ -1964,7 +2069,7 @@ msgstr "Aktualizace"
1964
 
1965
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
1966
  msgid "Historical"
1967
- msgstr "Historický"
1968
 
1969
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
1970
  msgid "WP Statistics V%s"
@@ -2049,7 +2154,7 @@ msgstr "Už jste Hledat na internetu pro všechny chybové zprávy, které obdr
2049
 
2050
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
2051
  msgid "Make sure you have access to your PHP error logs."
2052
- msgstr "Ujistěte se, že máte přístup k PHP chybové protokoly."
2053
 
2054
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
2055
  msgid "And a few things to double-check:"
@@ -2105,11 +2210,11 @@ msgstr "Farsi"
2105
 
2106
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
2107
  msgid "WP Statistics Honey Pot Page"
2108
- msgstr "WP Statistics Honey Pot Page"
2109
 
2110
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
2111
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2112
- msgstr "To je med hrnec pro WP statistiky k použití, neodstraňujte."
2113
 
2114
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
2115
  msgid "Access Levels"
@@ -2144,8 +2249,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2144
  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."
2145
 
2146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2147
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
2148
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
2149
  msgid "Exclusions"
2150
  msgstr "Vyjímky"
2151
 
@@ -2204,11 +2309,11 @@ msgstr "Platnost seznamu robota tak, aby obnovit na výchozí po aktualizaci sta
2204
 
2205
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
2206
  msgid "Robot visit threshold"
2207
- msgstr "Robot práh návštěva"
2208
 
2209
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
2210
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2211
- msgstr "Dopřejte návštěvníky s více než tento počet návštěv za den, jako roboti. 0 = vypnuto."
2212
 
2213
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
2214
  msgid "Excluded IP address list"
@@ -2232,59 +2337,59 @@ msgstr "Přidat 192.168.0.0"
2232
 
2233
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
2234
  msgid "Use honey pot"
2235
- msgstr "Použít Honey Pot"
2236
 
2237
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
2238
  msgid "Use a honey pot page to identify robots."
2239
- msgstr "Použijte stránku Honey Pot identifikovat roboty."
2240
 
2241
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
2242
  msgid "Honey pot post id"
2243
- msgstr "Honey pot příspěvek id"
2244
 
2245
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
2246
  msgid "The post id to use for the honeypot page."
2247
- msgstr "Příspěvek id použít pro stránku honeypot."
2248
 
2249
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
2250
  msgid "Create a new honey pot page"
2251
- msgstr "Vytvoření nové Honey Pot stránku"
2252
 
2253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
2254
  msgid "GeoIP Exclusions"
2255
- msgstr "GeoIP Vyloučení"
2256
 
2257
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
2258
  msgid "Excluded countries list"
2259
- msgstr "Vyloučené seznam zemí"
2260
 
2261
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
2262
  msgid "A list of country codes (one per line, two letters each) to exclude from statistics collection. Use \"000\" (three zeros) to exclude unknown countries."
2263
- msgstr "Seznam kódů zemí (jeden na řádek, dva dopisy, každý) vyloučit ze sběru statistických údajů. Pomocí &quot;000&quot; (tři nuly) vyloučit neznámých zemí."
2264
 
2265
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
2266
  msgid "Included countries list"
2267
- msgstr "Součástí seznamu zemí"
2268
 
2269
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
2270
  msgid "A list of country codes (one per line, two letters each) to include in statistics collection, if this list is not empty, only visitors from the included countries will be recorded. Use \"000\" (three zeros) to exclude unknown countries."
2271
- msgstr "Seznam kódů zemí (jeden na řádek, dva dopisy, každý) zahrnout do sběru statistických údajů, je-li tento seznam není prázdný, bude zaznamenán pouze návštěvníci z přiloženého zemí. Pomocí &quot;000&quot; (tři nuly) vyloučit neznámých zemí."
2272
 
2273
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
2274
  msgid "Host Exclusions"
2275
- msgstr "Hostitelské Vyloučení"
2276
 
2277
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
2278
  msgid "Excluded hosts list"
2279
- msgstr "Vyloučené seznam hostitelé"
2280
 
2281
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
2282
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2283
- msgstr "Seznam plně kvalifikovaných názvů hostitelů (ie. Server.example.com, jedna řádka na), vyloučit z sběru statistických údajů."
2284
 
2285
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
2286
  msgid "Note: this option will NOT perform a reverse DNS lookup on each page load but instead cache the IP address for the provided hostnames for one hour. If you are excluding dynamically assigned hosts you may find some degree of overlap when the host changes it's IP address and when the cache is updated resulting in some hits recorded."
2287
- msgstr "Poznámka: Tato volba nebude provádět zpětné vyhledávání DNS na každé stránce zatížení, ale místo toho mezipaměti IP adresy za poskytnuté hostitelů po dobu jedné hodiny. Pokud jste bez dynamicky přiřazeny hostitele, pro které může najít nějaký stupeň překrývání, když hostitel mění svou IP adresu, a když je mezipaměť aktualizována končit v některých hitů zaznamenaných."
2288
 
2289
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
2290
  msgid "Site URL Exclusions"
@@ -2308,11 +2413,11 @@ msgstr "Vylučte admin stránky pro registraci jako hit."
2308
 
2309
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
2310
  msgid "Excluded RSS feeds"
2311
- msgstr "Vyloučené kanály RSS"
2312
 
2313
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
2314
  msgid "Exclude the RSS feeds for registering as a hit."
2315
- msgstr "Vyloučit RSS kanály pro registraci jako hit."
2316
 
2317
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
2318
  msgid "browscap settings"
@@ -2337,6 +2442,7 @@ msgstr "Browscap využití"
2337
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2338
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2339
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
 
2340
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
@@ -2397,4 +2503,4 @@ msgstr "Uživatelé online"
2397
 
2398
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2399
  msgid "User online"
2400
- msgstr "Uživatel online"
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-01-23 13:18:27+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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
10
+ "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
+
13
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:330
14
+ msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
15
+ msgstr ""
16
+
17
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:324
18
+ msgid "Force English"
19
+ msgstr ""
20
+
21
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
22
+ msgid "Languages"
23
+ msgstr ""
24
+
25
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
26
+ 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."
27
+ msgstr ""
28
+
29
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:269
30
+ msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
31
+ msgstr ""
32
+
33
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:266
34
+ msgid "Excluded URLs list"
35
+ msgstr ""
36
+
37
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
38
+ msgid "Excluded URL"
39
+ msgstr ""
40
+
41
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
42
+ msgid "Last 365 Days (Year)"
43
+ msgstr ""
44
+
45
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
46
+ msgid "Last 30 Days (Month)"
47
+ msgstr ""
48
+
49
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
50
+ msgid "Last 7 Days (Week)"
51
+ msgstr ""
52
+
53
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
54
+ msgid "Yahoo!"
55
+ msgstr ""
56
+
57
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:399
58
+ msgid "Yandex"
59
+ msgstr ""
60
+
61
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
62
+ msgid "clearch.org"
63
+ msgstr ""
64
+
65
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
66
+ msgid "DuckDuckGo"
67
+ msgstr ""
68
+
69
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:394
70
+ msgid "Bing"
71
+ msgstr ""
72
+
73
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:393
74
+ msgid "Baidu"
75
+ msgstr ""
76
+
77
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:69
78
+ msgid "Hits in the last 20 days"
79
+ msgstr ""
80
+
81
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
82
+ msgid "Feeds"
83
+ msgstr ""
84
+
85
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
86
+ msgid "User Role"
87
+ msgstr ""
88
+
89
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
90
+ msgid "Login Page"
91
+ msgstr ""
92
+
93
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
94
+ msgid "Admin Page"
95
+ msgstr ""
96
+
97
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
98
+ msgid "Self Referral"
99
+ msgstr ""
100
+
101
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
102
+ msgid "IP Match"
103
+ msgstr ""
104
+
105
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
106
+ msgid "Robot"
107
+ msgstr ""
108
+
109
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:100
110
+ msgid "Currently there are no users online in the site."
111
+ msgstr ""
112
+
113
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
114
+ msgid "Robot Threshold"
115
+ msgstr ""
116
+
117
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
118
+ msgid "Honey Pot"
119
+ msgstr ""
120
+
121
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:6
122
+ msgid "Page Trending Stats"
123
+ msgstr ""
124
+
125
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
126
+ msgid "Hostname"
127
+ msgstr ""
128
 
129
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
130
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
150
 
151
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
152
  msgid "Record all user"
153
+ msgstr ""
154
 
155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
156
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
157
+ msgstr ""
158
 
159
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
160
  msgid "Store entire user agent string"
174
 
175
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
176
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
177
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
178
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
179
  msgid "Pages"
180
  msgstr "Stránky"
181
 
185
 
186
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
187
  msgid "Strip parameters from URI"
188
+ msgstr ""
189
 
190
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
191
  msgid "This will remove anything after the ? in a URL."
192
+ msgstr ""
193
 
194
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
195
  msgid "Disable hits column in post/pages list"
233
 
234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
235
  msgid "Search Engines"
236
+ msgstr ""
237
 
238
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
239
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
305
 
306
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
307
  msgid "Country code for private IP addresses"
308
+ msgstr ""
309
 
310
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
311
  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."
312
+ msgstr ""
313
 
314
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
315
  msgid "GeoIP collection is disabled due to the following reasons:"
361
 
362
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
363
  msgid "Common Report Options"
364
+ msgstr ""
365
 
366
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
367
  msgid "E-mail addresses"
369
 
370
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
371
  msgid "A comma separated list of e-mail addresses to send reports to."
372
+ msgstr ""
373
 
374
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
375
  msgid "Update Reports"
376
+ msgstr ""
377
 
378
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
379
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
380
  msgid "Browscap"
381
+ msgstr ""
382
 
383
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
384
  msgid "Send a report whenever the browscap.ini is updated."
385
+ msgstr ""
386
 
387
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
388
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
389
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
390
  msgid "GeoIP"
392
 
393
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
394
  msgid "Send a report whenever the GeoIP database is updated."
395
+ msgstr ""
396
 
397
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
398
  msgid "Pruning"
399
+ msgstr ""
400
 
401
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
402
  msgid "Send a report whenever the pruning of database is run."
403
+ msgstr ""
404
 
405
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
406
  msgid "Upgrade"
407
+ msgstr ""
408
 
409
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
410
  msgid "Send a report whenever the plugin is upgraded."
411
+ msgstr ""
412
 
413
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
415
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
416
  msgid "Statistical reporting"
417
  msgstr "Statistický reporting"
418
 
422
 
423
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
424
  msgid "Select how often to receive statistical report."
425
+ msgstr ""
426
 
427
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
428
  msgid "Send reports via"
438
 
439
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
440
  msgid "Select delivery method for statistical report."
441
+ msgstr ""
442
 
443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
444
  msgid "Note: To send SMS text messages please install the %s plugin."
454
 
455
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
456
  msgid "Enter the contents of the report."
457
+ msgstr ""
458
 
459
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
460
  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:"
461
+ msgstr ""
462
 
463
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
464
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
465
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
466
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:468
467
  msgid "User Online"
468
  msgstr "Online uživatelé"
469
 
530
 
531
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
532
  msgid "Dashboard"
533
+ msgstr ""
534
 
535
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
536
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
537
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
538
  msgid "The following items are global to all users."
539
+ msgstr ""
540
 
541
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
542
  msgid "Disable dashboard widgets"
543
+ msgstr ""
544
 
545
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
546
  msgid "Disable the dashboard widgets."
547
+ msgstr ""
548
 
549
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
550
  msgid "Page/Post Editor"
551
+ msgstr ""
552
 
553
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
554
  msgid "Disable post/page editor widget"
555
+ msgstr ""
556
 
557
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
558
  msgid "Disable the page/post editor widget."
559
+ msgstr ""
560
 
561
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
562
  msgid "Map type"
563
  msgstr "Typ mapy"
564
 
565
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:397
566
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
567
  msgid "Google"
568
  msgstr "Google"
597
 
598
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
599
  msgid "Overview Widgets to Display"
600
+ msgstr ""
601
 
602
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
603
  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."
646
 
647
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
648
  msgid "Slot 7"
649
+ msgstr ""
650
 
651
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
652
  msgid "WP Statisitcs Removal"
653
+ msgstr ""
654
 
655
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
656
  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."
657
+ msgstr ""
658
 
659
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
660
  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."
661
+ msgstr ""
662
 
663
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
664
  msgid "Remove data and settings"
665
+ msgstr ""
666
 
667
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
668
  msgid "Remove"
669
+ msgstr ""
670
 
671
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
672
  msgid "Remove data and settings, this action cannot be undone."
673
+ msgstr ""
674
 
675
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
676
  msgid "General"
678
 
679
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
680
  msgid "Notifications"
681
+ msgstr ""
682
 
683
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
684
  msgid "Dashboard/Overview"
685
+ msgstr ""
686
 
687
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
688
  msgid "Access/Exclusions"
698
 
699
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
700
  msgid "Removal"
701
+ msgstr ""
702
 
703
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
704
  msgid "Update"
725
  msgstr "Jednou za 4 týdny"
726
 
727
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
728
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
729
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:325
730
  msgid "Statistics"
731
  msgstr "Statistiky"
732
 
812
  msgstr "Položky"
813
 
814
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
815
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:493
816
  msgid "Yesterday visit"
817
  msgstr "Včera návštěv"
818
 
824
  msgid "Select type of search engine"
825
  msgstr "Vyberte typ vyhledávače"
826
 
827
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
828
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
829
  msgstr "Chyba: WP Statistics zjistila nepodporovanou verzi PHP, WP Statistics nebude fungovat bez verze PHP "
830
 
831
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
832
  msgid " or higher!"
833
  msgstr "nebo vyšší!"
834
 
835
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
836
  msgid "Your current PHP version is"
837
+ msgstr ""
838
 
839
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:51
840
  msgid "WP Statistics has been removed, please disable and delete it."
841
+ msgstr ""
842
 
843
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
844
  msgid "WP Statistics"
845
  msgstr "WP Statistiky"
846
 
847
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:28
848
  msgid "Complete statistics for your WordPress site."
849
  msgstr "Kompletní statistiky pro váš web WordPress."
850
 
851
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
852
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
853
  msgstr "On-line sledování v WP Statistics uživatelů není povoleno, přejděte na %s a umožňují."
854
 
855
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
856
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
857
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
858
  msgid "setting page"
859
  msgstr "nastavení stránky"
860
 
861
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
862
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
863
  msgstr "Sledování přístupů v WP Statistics není povoleno, přejděte na %s a umožňují."
864
 
865
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
866
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
867
  msgstr "Návštěvník v WP Statistics sledování není povoleno, přejděte na %s a umožňují."
868
 
869
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
870
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
871
  msgstr "GeoIP kolekce není aktivní, přejděte na %s a tuto funkci povolit."
872
 
873
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
874
  msgid "Setting page > GeoIP"
875
  msgstr "Nastavení stránky > GeoIP"
876
 
877
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
878
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
879
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
880
  msgid "Settings"
881
  msgstr "Nastavení"
882
 
883
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
884
  msgid "Click here to visit the plugin on WordPress.org"
885
  msgstr "Chcete-li navštívit plugin WordPress.org"
886
 
887
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
888
  msgid "Visit WordPress.org page"
889
  msgstr "Navštivte stránku WordPress.org"
890
 
891
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
892
  msgid "Click here to rate and review this plugin on WordPress.org"
893
  msgstr "Klikněte zde pro hodnocení a recenzování tento plugin na WordPress.org"
894
 
895
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
896
  msgid "Rate this plugin"
897
  msgstr "Ohodnoť tento plugin"
898
 
899
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:254
900
  msgid "WP Statistics - Hits"
901
  msgstr "WP Statistics - Hits"
902
 
903
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:291
904
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
905
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
906
  msgid "Overview"
907
  msgstr "Přehled"
908
 
909
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
910
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
911
  msgid "Online"
912
+ msgstr ""
913
 
914
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
915
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
916
  msgid "Referrers"
917
+ msgstr ""
918
 
919
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:301
920
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
921
  msgid "Searches"
922
  msgstr "Vyhledávání"
923
 
924
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
925
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
926
  msgid "Search Words"
927
  msgstr "Hledaná slova"
928
 
929
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
930
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:376
931
  msgid "Top Visitors Today"
932
+ msgstr ""
933
 
934
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:306
935
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
936
  msgid "Optimization"
937
  msgstr "Optimalizace"
938
 
939
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:311
940
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:342
941
  msgid "Manual"
942
  msgstr "Manuál"
943
 
944
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:357
945
  msgid "Site"
946
+ msgstr ""
947
 
948
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:358
949
  msgid "Options"
950
+ msgstr ""
951
 
952
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:475
953
  msgid "Today visitor"
954
  msgstr "Dnešní návštěvník"
955
 
956
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:481
957
  msgid "Today visit"
958
  msgstr "Dnešní návštěva"
959
 
960
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:487
961
  msgid "Yesterday visitor"
962
  msgstr "Včera návštěvníků"
963
 
964
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
965
  msgid "View Stats"
966
  msgstr "Zobrazit statistiky"
967
 
968
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:523
969
  msgid "Download ODF file"
970
  msgstr "Stáhnout soubor ODF"
971
 
972
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
973
  msgid "Download HTML file"
974
  msgstr "Stáhnout HTML soubor"
975
 
976
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:528
977
  msgid "Manual file not found."
978
  msgstr "Ruční soubor nebyl nalezen."
979
 
980
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
981
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:706
982
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:740
983
  msgid "You do not have sufficient permissions to access this page."
984
  msgstr "Nemáte dostatečná práva pro přístup na tuto stránku."
985
 
986
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:608
987
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
988
+ msgstr ""
989
 
990
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
991
  msgid "WP Statistics %s installed on"
992
+ msgstr ""
993
 
994
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
995
  msgid "Error downloading GeoIP database from: %s - %s"
1009
 
1010
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
1011
  msgid "GeoIP update on"
1012
+ msgstr ""
1013
 
1014
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
1015
  msgid "Error downloading browscap database from: %s - %s"
1021
 
1022
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
1023
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1024
+ msgstr ""
1025
 
1026
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
1027
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1028
+ msgstr ""
1029
 
1030
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
1031
  msgid "browscap already at current version!"
1033
 
1034
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
1035
  msgid "Browscap.ini update on"
1036
+ msgstr ""
1037
 
1038
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
1039
  msgid "Quick Stats"
1040
+ msgstr ""
1041
 
1042
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
1043
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
1052
 
1053
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
1054
  msgid "Today's Visitor Map"
1055
+ msgstr ""
1056
 
1057
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
1058
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
1067
  msgstr "Top 10 stránek"
1068
 
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
1070
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:31
1071
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
1072
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
1073
  msgid "Recent Visitors"
1103
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
1104
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
1105
  msgid "Top 10 Visitors Today"
1106
+ msgstr ""
1107
 
1108
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
1109
  msgid "Please reload the dashboard to display the content of this widget."
1110
+ msgstr ""
1111
 
1112
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
1113
  msgid "WP Statistics Overview"
1114
+ msgstr ""
1115
 
1116
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
1117
  msgid "This post is not yet published."
1118
+ msgstr ""
1119
 
1120
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:24
1121
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1122
  msgstr "Nemožné nahrát GeoIP databázi, zajistěte stažení v nastavení."
1123
 
1124
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:48
1125
  msgid "Updated %s GeoIP records in the visitors database."
1126
  msgstr "Aktualizovat %s GeoIP záznamy v databázi návětěvníků."
1127
 
1141
 
1142
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
1143
  msgid "Database pruned on"
1144
+ msgstr ""
1145
 
1146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
1147
  msgid "Please select a value over 30 days."
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1156
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1157
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:76
1158
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1159
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
1160
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
1161
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1162
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1163
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
1183
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1184
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1185
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1186
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
1187
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
1188
  msgid "Browsers"
1189
  msgstr "Prohlížeče"
1190
 
1210
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1211
  msgstr "Pozor: Vyloučení nejsou nastaveny v současnosti zaznamenávají, výsledky níže nemusí odrážet aktuální statistiky!"
1212
 
1213
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
1214
  msgid "Exclusions Statistics"
1215
  msgstr "Vyloučení statistiky"
1216
 
1217
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1219
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1220
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1221
  msgid "10 Days"
1222
  msgstr "10 Dnů"
1223
 
1224
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1225
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1228
  msgid "20 Days"
1229
  msgstr "20 Dnů"
1230
 
1231
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1232
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1233
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1235
  msgid "30 Days"
1236
  msgstr "30 Dnů"
1237
 
1238
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1239
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1240
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1241
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1242
  msgid "2 Months"
1243
  msgstr "2 Měsíce"
1244
 
1245
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1247
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1248
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1249
  msgid "3 Months"
1250
  msgstr "3 Měsíce"
1251
 
1252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1254
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1255
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1256
  msgid "6 Months"
1257
  msgstr "6 Měsíců"
1258
 
1259
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:65
1260
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1261
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1263
  msgid "9 Months"
1264
  msgstr "9 Měsíců"
1265
 
1266
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:66
1267
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1268
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1269
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1270
  msgid "1 Year"
1271
  msgstr "1 Rok"
1272
 
1273
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
1274
  msgid "Total Exclusions: %s"
1275
  msgstr "Celkem vyjímek: %s"
1276
 
1277
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:77
1278
  msgid "Exclusions Statistical Chart"
1279
  msgstr "Statistický graf vyjímek"
1280
 
1281
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1282
  msgid "Excluded hits in the last"
1283
  msgstr "Vyloučené hity v posledních"
1284
 
1285
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1286
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1287
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1288
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
1291
  msgid "days"
1292
  msgstr "dnů"
1293
 
1294
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:120
1295
  msgid "Number of excluded hits"
1296
  msgstr "Počet vyjmutých hitů"
1297
 
1321
  msgid "Visitor"
1322
  msgstr "Návštěvník"
1323
 
1324
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:64
1325
  msgid "Latest Search Word Statistics"
1326
  msgstr "Stastiky posledně vyhledávaných slov"
1327
 
1328
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:99
1329
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
1330
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:50
1331
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1332
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1333
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
1335
  msgid "#hash#"
1336
  msgstr "#hash #"
1337
 
1338
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:104
1339
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:103
1340
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:55
1341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1343
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
1346
  msgid "Map"
1347
  msgstr "Mapa"
1348
 
1349
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1350
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1351
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1352
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1353
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1354
  msgid "Page"
1355
  msgstr "Stránka"
1356
 
1357
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1358
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1359
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1360
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1361
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1362
  msgid "From"
1363
  msgstr "Od"
1364
 
1365
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:46
1366
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:33
1367
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1368
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1369
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1370
  msgid "All"
1371
  msgstr "Všechno"
1372
 
1373
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
1374
  msgid "Search for"
1375
  msgstr "Hledat"
1376
 
1377
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:65
1378
  msgid "Recent Visitor Statistics"
1379
  msgstr "Nedávné statistiky návštěvnosti"
1380
 
1381
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
1382
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
1383
  msgid "Online Users"
1384
+ msgstr ""
1385
 
1386
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:75
1387
  msgid "Online for "
1388
+ msgstr ""
1389
 
1390
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
1391
  msgid "Page Trend for Post ID"
1410
  msgid "Number of referrals"
1411
  msgstr "Počet odkazů"
1412
 
1413
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
1414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1415
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1416
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
1459
  msgstr "Top 5 stránek trendy statistiky"
1460
 
1461
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1462
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:60
1463
  msgid "Number of Hits"
1464
  msgstr "Počet přístupů"
1465
 
1491
 
1492
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
1493
  msgid "Top 100 Visitors Today"
1494
+ msgstr ""
1495
 
1496
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
1497
  msgid "About WP Statistics Version %s"
1553
  msgid "Yesterday"
1554
  msgstr "Včera"
1555
 
 
 
 
 
 
 
 
 
 
 
 
 
1556
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1557
  msgid "Daily Total"
1558
  msgstr "Denně celkem"
1574
  msgstr "Čas: %s"
1575
 
1576
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1577
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:219
1578
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
1579
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
1580
  msgid "Hits"
1581
  msgstr "Hity"
1582
 
1583
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
1584
  msgid "IP"
1585
+ msgstr ""
1586
 
1587
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
1588
  msgid "Agent"
1589
+ msgstr ""
1590
 
1591
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
1592
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1593
  msgid "Version"
1594
+ msgstr ""
1595
 
1596
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
1597
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
1609
 
1610
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
1611
  msgid "No agent data found to remove!"
1612
+ msgstr ""
1613
 
1614
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1615
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1616
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1617
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:80
1618
  msgid "Please select the desired items."
1619
  msgstr "Prosím vyber požadované položky."
1620
 
1624
 
1625
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
1626
  msgid "No platform data found to remove!"
1627
+ msgstr ""
1628
 
1629
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
1630
  msgid "%s table data deleted successfully."
1656
 
1657
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1658
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1659
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
1660
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
1661
  msgid "Countries"
1662
  msgstr "Země"
1663
 
1728
 
1729
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
1730
  msgid "Historical Values"
1731
+ msgstr ""
1732
 
1733
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1734
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1735
+ msgstr ""
1736
 
1737
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1738
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1739
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1740
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:304
1741
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:377
1742
  msgid "Visitors"
1743
  msgstr "Návštěvníci"
1744
 
1745
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
1746
  msgid "Number of historical number of visitors to the site (current value is %s)."
1747
+ msgstr ""
1748
 
1749
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
1750
  msgid "Number of historical number of visits to the site (current value is %s)."
1751
+ msgstr ""
1752
 
1753
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
1754
  msgid "Update now!"
1755
+ msgstr ""
1756
 
1757
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
1758
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
1830
 
1831
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
1832
  msgid "Last Overview page memory usage"
1833
+ msgstr ""
1834
 
1835
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
1836
  msgid "Memory usage in the overview page"
1837
+ msgstr ""
1838
 
1839
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
1840
  msgid "PHP Memory Limit"
2003
 
2004
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
2005
  msgid "Browser"
2006
+ msgstr ""
2007
 
2008
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
2009
  msgid "The detected client browser."
2010
+ msgstr ""
2011
 
2012
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
2013
  msgid "The detected client browser version."
2014
+ msgstr ""
2015
 
2016
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
2017
  msgid "The detected client platform."
2018
+ msgstr ""
2019
 
2020
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
2021
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2069
 
2070
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
2071
  msgid "Historical"
2072
+ msgstr ""
2073
 
2074
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
2075
  msgid "WP Statistics V%s"
2154
 
2155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
2156
  msgid "Make sure you have access to your PHP error logs."
2157
+ msgstr ""
2158
 
2159
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
2160
  msgid "And a few things to double-check:"
2210
 
2211
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
2212
  msgid "WP Statistics Honey Pot Page"
2213
+ msgstr ""
2214
 
2215
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
2216
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2217
+ msgstr ""
2218
 
2219
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
2220
  msgid "Access Levels"
2249
  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."
2250
 
2251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
2253
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
2254
  msgid "Exclusions"
2255
  msgstr "Vyjímky"
2256
 
2309
 
2310
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
2311
  msgid "Robot visit threshold"
2312
+ msgstr ""
2313
 
2314
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
2315
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2316
+ msgstr ""
2317
 
2318
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
2319
  msgid "Excluded IP address list"
2337
 
2338
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
2339
  msgid "Use honey pot"
2340
+ msgstr ""
2341
 
2342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
2343
  msgid "Use a honey pot page to identify robots."
2344
+ msgstr ""
2345
 
2346
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
2347
  msgid "Honey pot post id"
2348
+ msgstr ""
2349
 
2350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
2351
  msgid "The post id to use for the honeypot page."
2352
+ msgstr ""
2353
 
2354
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
2355
  msgid "Create a new honey pot page"
2356
+ msgstr ""
2357
 
2358
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
2359
  msgid "GeoIP Exclusions"
2360
+ msgstr ""
2361
 
2362
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
2363
  msgid "Excluded countries list"
2364
+ msgstr ""
2365
 
2366
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
2367
  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."
2368
+ msgstr ""
2369
 
2370
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
2371
  msgid "Included countries list"
2372
+ msgstr ""
2373
 
2374
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
2375
  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."
2376
+ msgstr ""
2377
 
2378
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
2379
  msgid "Host Exclusions"
2380
+ msgstr ""
2381
 
2382
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
2383
  msgid "Excluded hosts list"
2384
+ msgstr ""
2385
 
2386
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
2387
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2388
+ msgstr ""
2389
 
2390
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
2391
  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."
2392
+ msgstr ""
2393
 
2394
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
2395
  msgid "Site URL Exclusions"
2413
 
2414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
2415
  msgid "Excluded RSS feeds"
2416
+ msgstr ""
2417
 
2418
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
2419
  msgid "Exclude the RSS feeds for registering as a hit."
2420
+ msgstr ""
2421
 
2422
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
2423
  msgid "browscap settings"
2442
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2444
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
2445
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:329
2446
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2447
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2448
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
2503
 
2504
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2505
  msgid "User online"
2506
+ msgstr "Uživatel online"
languages/wp_statistics-de_DE.mo CHANGED
Binary file
languages/wp_statistics-de_DE.po CHANGED
@@ -2,17 +2,129 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-01-27 19:15-0500\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: Poedit 1.7.4\n"
11
  "Project-Id-Version: WP Statistics\n"
12
- "POT-Creation-Date: \n"
13
- "Last-Translator: \n"
14
- "Language-Team: \n"
15
- "Language: de_DE\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
18
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
@@ -38,11 +150,11 @@ msgstr "Zeit, um auf neue Besucher zu überprüfen. Aktuell: %s Sekunden."
38
 
39
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
40
  msgid "Record all user"
41
- msgstr "Notieren Sie alle Benutzer"
42
 
43
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
44
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
45
- msgstr "Ignoriert die Bedingung die Parameter und zeichnet alle Benutzer, die online (einschließlich Selbst Einladungen und Roboter) sind. Sollte nur für die Fehlersuche verwendet werden."
46
 
47
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
48
  msgid "Store entire user agent string"
@@ -62,8 +174,8 @@ msgstr "Koeffizient - ein Besucher z&auml;hlt \"X\" Aufrufe. Aktuell: %s."
62
 
63
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
64
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
65
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:295
66
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
67
  msgid "Pages"
68
  msgstr "Seitenaufrufe"
69
 
@@ -73,11 +185,11 @@ msgstr "Alle Seiten (Kategorien, Archive, etc.) ber&uuml;cksichtigen"
73
 
74
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
75
  msgid "Strip parameters from URI"
76
- msgstr "Streifen Parameter URI"
77
 
78
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
79
  msgid "This will remove anything after the ? in a URL."
80
- msgstr "Das wird alles nach dem entfernen? in einem URL."
81
 
82
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
83
  msgid "Disable hits column in post/pages list"
@@ -121,7 +233,7 @@ msgstr "WP Statistics speichert standardm&auml;&szlig;ig die Benutzerdokumentati
121
 
122
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
123
  msgid "Search Engines"
124
- msgstr "Suchmaschinen"
125
 
126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
127
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
@@ -193,11 +305,11 @@ msgstr "Aktualisiert alle fehlenden GeoIP-Daten nachdem eine neue GeoIP-Datenban
193
 
194
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
195
  msgid "Country code for private IP addresses"
196
- msgstr "Ländercode für private IP-Adressen"
197
 
198
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
199
  msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
200
- msgstr "Die internationalen zweistelligen Ländercode (dh. US = USA, CA = Kanada, etc.) für die private (nicht-routingfähige) IP-Adressen (dh. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Verwenden Sie &quot;000&quot; (drei Nullen) auf &quot;Unbekannt&quot; als Ländercode zu verwenden."
201
 
202
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
203
  msgid "GeoIP collection is disabled due to the following reasons:"
@@ -209,15 +321,15 @@ msgstr "GeoIP ben&ouml;tigt die PHP-Version %s oder h&ouml;her, die installierte
209
 
210
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:135
211
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
212
- msgstr "GeoIP Sammlung erfordert die cURL-PHP-Erweiterung und wird nicht von Ihrer Version von PHP geladen!"
213
 
214
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:141
215
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
216
- msgstr "GeoIP Sammlung erfordert die BC Math PHP-Erweiterung und wird nicht von Ihrer Version von PHP geladen!"
217
 
218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:147
219
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
220
- msgstr "PHP Safe Mode erkannt! GeoIP Sammlung ist nicht der sichere Modus aktiviert PHP unterstützt!"
221
 
222
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:20
223
  msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
@@ -263,6 +375,7 @@ msgstr "Komma-getrennte Liste an E-Mail-Adressen, an die Benachrichtigungen vers
263
  msgid "Update Reports"
264
  msgstr "Update-Benachrichtigungen"
265
 
 
266
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
267
  msgid "Browscap"
268
  msgstr "Browscap"
@@ -271,6 +384,7 @@ msgstr "Browscap"
271
  msgid "Send a report whenever the browscap.ini is updated."
272
  msgstr "Bei Update der \"browscap.ini\"-Datei benachrichtigen"
273
 
 
274
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
275
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
276
  msgid "GeoIP"
@@ -298,7 +412,7 @@ msgstr "Bei Update des Plugins benachrichtigen"
298
 
299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
300
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
301
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
302
  msgid "Statistical reporting"
303
  msgstr "Statistik-Reports"
304
 
@@ -332,7 +446,7 @@ msgstr "Hinweis: um Statistik-Reports per SMS versenden zu k&ouml;nnen, muss das
332
 
333
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
334
  msgid "WordPress SMS"
335
- msgstr "Wordpress SMS"
336
 
337
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:180
338
  msgid "Report body"
@@ -349,7 +463,7 @@ msgstr "Alle Shortcodes deiner WordPress-Installation und die eigenen Shortcodes
349
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
351
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
352
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:464
353
  msgid "User Online"
354
  msgstr "Besucher aktuell"
355
 
@@ -434,27 +548,28 @@ msgstr "Feature aktivieren oder deaktivieren"
434
 
435
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
436
  msgid "Page/Post Editor"
437
- msgstr "Seite / Post-Editor"
438
 
439
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
440
  msgid "Disable post/page editor widget"
441
- msgstr "Deaktivieren Beitrag / Seite-Editor Widget"
442
 
443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
444
  msgid "Disable the page/post editor widget."
445
- msgstr "Deaktivieren Sie die Seite / Post-Editor-Widget."
446
 
447
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
448
  msgid "Map type"
449
  msgstr "Karten-Typ"
450
 
 
451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
452
  msgid "Google"
453
  msgstr "Google"
454
 
455
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
456
  msgid "JQVMap"
457
- msgstr "JQVMap"
458
 
459
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:135
460
  msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
@@ -527,11 +642,11 @@ msgstr "Position 6"
527
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:348
528
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:370
529
  msgid "N/A"
530
- msgstr "N / A"
531
 
532
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
533
  msgid "Slot 7"
534
- msgstr "Steckplatz 7"
535
 
536
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
537
  msgid "WP Statisitcs Removal"
@@ -595,7 +710,7 @@ msgstr "Benutzerdokumentation nicht gefunden: %s"
595
 
596
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:39
597
  msgid "Invalid file type selected: %s"
598
- msgstr "Ungültiger Dateityp ausgewählt:%s"
599
 
600
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:10
601
  msgid "Once Weekly"
@@ -610,14 +725,14 @@ msgid "Once Every 4 Weeks"
610
  msgstr "Alle vier Wochen"
611
 
612
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
613
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:284
614
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:321
615
  msgid "Statistics"
616
  msgstr "Statistik"
617
 
618
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:15
619
  msgid "Show site stats in sidebar."
620
- msgstr "Website anzeigen Statistiken in der Seitenleiste."
621
 
622
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:73
623
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:260
@@ -637,11 +752,11 @@ msgstr "Aufrufe im Jahr"
637
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:108
638
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:275
639
  msgid "Total Page Views"
640
- msgstr "Gesamt Seitenaufrufe"
641
 
642
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:116
643
  msgid "Search Engine referred"
644
- msgstr "Search Engine bezeichnet"
645
 
646
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:123
647
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:298
@@ -697,184 +812,184 @@ msgid "Items"
697
  msgstr "Elemente"
698
 
699
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
700
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:489
701
  msgid "Yesterday visit"
702
  msgstr "Aufrufe gestern"
703
 
704
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:278
705
  msgid "Search Engine Referred"
706
- msgstr "Suchmaschine Geworben"
707
 
708
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:281
709
  msgid "Select type of search engine"
710
  msgstr "Wähle die Suchmaschine"
711
 
712
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
713
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
714
- msgstr "ERROR: WP Statistik hat eine nicht unterstützte Version von PHP erkannt werden, wird WP Statistik nicht ohne PHP Version funktionieren"
715
 
716
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
717
  msgid " or higher!"
718
- msgstr "oder höher!"
719
 
720
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
721
  msgid "Your current PHP version is"
722
- msgstr "Ihre aktuellen PHP-Version"
723
 
724
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:42
725
  msgid "WP Statistics has been removed, please disable and delete it."
726
- msgstr "WP Statistik wurde entfernt, deaktivieren und löschen."
727
 
728
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:53
729
  msgid "WP Statistics"
730
- msgstr "WP Statistik"
731
 
732
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:54
733
  msgid "Complete statistics for your WordPress site."
734
  msgstr "Umfangreiche Statistik f&uuml;r WordPress."
735
 
736
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
737
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
738
- msgstr "Online User-Tracking in WP Statistik nicht aktiviert ist, um%s finden Sie und aktivieren Sie es."
739
 
740
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
741
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
742
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
743
  msgid "setting page"
744
- msgstr "Einstellungsseite"
745
 
746
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
747
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
748
- msgstr "Hit-Tracking in WP Statistik nicht aktiviert ist, um%s finden Sie und aktivieren Sie es."
749
 
750
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
751
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
752
- msgstr "Besucher-Tracking in WP Statistik nicht aktiviert ist, um%s finden Sie und aktivieren Sie es."
753
 
754
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
755
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
756
- msgstr "GeoIP Sammlung nicht aktiv ist, um%s und finden Sie diese Funktion aktivieren."
757
 
758
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
759
  msgid "Setting page > GeoIP"
760
- msgstr "Einstellungsseite&gt; GeoIP"
761
 
762
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:191
763
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
764
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
765
  msgid "Settings"
766
  msgstr "Einstellungen"
767
 
768
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
769
  msgid "Click here to visit the plugin on WordPress.org"
770
- msgstr "Klicken Sie hier, um das Plugin auf WordPress.org besuchen"
771
 
772
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
773
  msgid "Visit WordPress.org page"
774
  msgstr "Besuch die Plugin-Seite auf WordPress.org"
775
 
776
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
777
  msgid "Click here to rate and review this plugin on WordPress.org"
778
- msgstr "Klicken Sie hier, bewerten und überprüfen dieses Plugin auf WordPress.org"
779
 
780
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
781
  msgid "Rate this plugin"
782
  msgstr "Bewerte das Plugin"
783
 
784
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:250
785
  msgid "WP Statistics - Hits"
786
- msgstr "WP Statistik - Hits"
787
 
788
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:287
789
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:324
790
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:362
791
  msgid "Overview"
792
  msgstr "&Uuml;bersicht"
793
 
794
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
795
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
796
  msgid "Online"
797
  msgstr "Zurzeit online"
798
 
799
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
800
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
801
  msgid "Referrers"
802
- msgstr "Verweise"
803
 
804
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
805
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
806
  msgid "Searches"
807
  msgstr "Suchmaschinen"
808
 
809
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
810
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
811
  msgid "Search Words"
812
  msgstr "Suchbegriffe"
813
 
814
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
815
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
816
  msgid "Top Visitors Today"
817
- msgstr "Top Besucher heute"
818
 
819
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
820
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
821
  msgid "Optimization"
822
  msgstr "Optimierung"
823
 
824
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
825
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:338
826
  msgid "Manual"
827
- msgstr "Handbuch"
828
 
829
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
830
  msgid "Site"
831
- msgstr "Baustelle"
832
 
833
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:354
834
  msgid "Options"
835
- msgstr "Optionen"
836
 
837
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:471
838
  msgid "Today visitor"
839
  msgstr "Besucher heute"
840
 
841
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:477
842
  msgid "Today visit"
843
  msgstr "Aufrufe heute"
844
 
845
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:483
846
  msgid "Yesterday visitor"
847
  msgstr "Besucher gestern"
848
 
849
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:495
850
  msgid "View Stats"
851
  msgstr "Statistiken"
852
 
853
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
854
  msgid "Download ODF file"
855
- msgstr "Laden Sie ODF-Datei"
856
 
857
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
858
  msgid "Download HTML file"
859
- msgstr "HTML-Datei herunterladen"
860
 
861
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
862
  msgid "Manual file not found."
863
  msgstr "Benutzerdokumentation nicht gefunden."
864
 
865
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
866
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:702
867
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
868
  msgid "You do not have sufficient permissions to access this page."
869
  msgstr "Du hast keine Zugriffsrechte, um diese Seite zu sehen."
870
 
871
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:604
872
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
873
  msgstr "Die Plugin-Tabellen existieren nicht in deiner Datenbank! Bitte f&uuml;hre die %s Plugin-Installationsroutine %s noch einmal aus."
874
 
875
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
876
  msgid "WP Statistics %s installed on"
877
- msgstr "WP Statistik%s installiert auf"
878
 
879
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
880
  msgid "Error downloading GeoIP database from: %s - %s"
@@ -882,11 +997,11 @@ msgstr "Fehler beim Herunterladen der GeoIP-Datenbank von: %s - %s"
882
 
883
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:45
884
  msgid "Error could not open downloaded GeoIP database for reading: %s"
885
- msgstr "Fehler konnte nicht geöffnet herunter GeoIP-Datenbank zu lesen:%s"
886
 
887
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:52
888
  msgid "Error could not open destination GeoIP database for writing %s"
889
- msgstr "Fehler konnte nicht geöffnet Ziel GeoIP-Datenbank für das Schreiben von%s"
890
 
891
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:68
892
  msgid "GeoIP Database updated successfully!"
@@ -894,31 +1009,31 @@ msgstr "GeoIP-Datenbank erfolgreich aktualisiert!"
894
 
895
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
896
  msgid "GeoIP update on"
897
- msgstr "GeoIP auf aktualisieren"
898
 
899
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
900
  msgid "Error downloading browscap database from: %s - %s"
901
- msgstr "Fehler beim Herunterladen browscap Datenbank aus:%s -%s"
902
 
903
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:262
904
  msgid "browscap database updated successfully!"
905
- msgstr "browscap Datenbank erfolgreich aktualisiert!"
906
 
907
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
908
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
909
- msgstr "browscap Datenbank aktualisiert fehlgeschlagen! Cache-Datei ist zu groß, Rückkehr zu früheren browscap.ini."
910
 
911
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
912
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
913
- msgstr "browscap Datenbank aktualisiert fehlgeschlagen! New browscap.ini ist falsch identifing Benutzeragenten als Crawler, Rückkehr zu früheren browscap.ini."
914
 
915
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
916
  msgid "browscap already at current version!"
917
- msgstr "bereits browscap auf aktuelle Version!"
918
 
919
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
920
  msgid "Browscap.ini update on"
921
- msgstr "Browscap.ini Update"
922
 
923
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
924
  msgid "Quick Stats"
@@ -937,7 +1052,7 @@ msgstr "Top 10 L&auml;nder"
937
 
938
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
939
  msgid "Today's Visitor Map"
940
- msgstr "Heutige Besucher Karte"
941
 
942
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
943
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
@@ -952,7 +1067,7 @@ msgid "Top 10 Pages"
952
  msgstr "Top 10 Seiten"
953
 
954
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
955
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:30
956
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
957
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
958
  msgid "Recent Visitors"
@@ -988,7 +1103,7 @@ msgstr "Suchbegriffe"
988
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
989
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
990
  msgid "Top 10 Visitors Today"
991
- msgstr "Top 10 Besucher heute"
992
 
993
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
994
  msgid "Please reload the dashboard to display the content of this widget."
@@ -1000,13 +1115,13 @@ msgstr "Statistik-&Uuml;bersicht"
1000
 
1001
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
1002
  msgid "This post is not yet published."
1003
- msgstr "Dieser Beitrag ist noch nicht veröffentlicht."
1004
 
1005
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
1006
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1007
  msgstr "GeoIP-Datenbank konnte nicht geladen werden. Bitte pr&uuml;fe in den Einstellungen, ob diese erfolgreich heruntergeladen wurde."
1008
 
1009
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:50
1010
  msgid "Updated %s GeoIP records in the visitors database."
1011
  msgstr "%s GeoIP-Eintr&auml;ge in der Besucher-Tabelle aktualisiert."
1012
 
@@ -1015,18 +1130,18 @@ msgstr "%s GeoIP-Eintr&auml;ge in der Besucher-Tabelle aktualisiert."
1015
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:50
1016
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:83
1017
  msgid "%s data older than %s days purged successfully."
1018
- msgstr "%s Daten, die älter als%s Tage erfolgreich gespült."
1019
 
1020
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:23
1021
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:41
1022
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:52
1023
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:85
1024
  msgid "No records found to purge from %s!"
1025
- msgstr "Keine Datensätze gefunden, von%s zu löschen!"
1026
 
1027
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
1028
  msgid "Database pruned on"
1029
- msgstr "Datenbank bereinigt auf"
1030
 
1031
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
1032
  msgid "Please select a value over 30 days."
@@ -1039,10 +1154,10 @@ msgstr "Browser-Statistiken"
1039
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1040
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1041
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1042
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
1043
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1044
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
1045
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:60
1046
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1047
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1048
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
@@ -1068,8 +1183,8 @@ msgstr "Klicken, um umzuschalten"
1068
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1070
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1071
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
1072
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:363
1073
  msgid "Browsers"
1074
  msgstr "Browser"
1075
 
@@ -1095,79 +1210,79 @@ msgstr "%s-Version"
1095
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1096
  msgstr "ACHTUNG: die Aufzeichnung von Ausnahmen ist aktuell deaktiviert. Die nachfolgenden Ergebnisse spiegeln also nicht die aktuelle Statistik wider!"
1097
 
1098
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
1099
  msgid "Exclusions Statistics"
1100
  msgstr "Ausnahmenstatistik"
1101
 
1102
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
1103
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1104
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1105
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1106
  msgid "10 Days"
1107
  msgstr "10 Tage"
1108
 
1109
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
1110
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1111
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1112
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1113
  msgid "20 Days"
1114
  msgstr "20 Tage"
1115
 
1116
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1117
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1118
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1119
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1120
  msgid "30 Days"
1121
  msgstr "30 Tage"
1122
 
1123
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1124
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1125
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1127
  msgid "2 Months"
1128
  msgstr "2 Monate"
1129
 
1130
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1131
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1132
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1133
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1134
  msgid "3 Months"
1135
  msgstr "3 Monate"
1136
 
1137
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1138
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1139
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1140
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1141
  msgid "6 Months"
1142
  msgstr "6 Monate"
1143
 
1144
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1145
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1147
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1148
  msgid "9 Months"
1149
  msgstr "9 Monate"
1150
 
1151
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1152
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1153
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1155
  msgid "1 Year"
1156
  msgstr "1 Jahr"
1157
 
1158
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
1159
  msgid "Total Exclusions: %s"
1160
  msgstr "Gesamt-Ausnahmen: %s"
1161
 
1162
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
1163
  msgid "Exclusions Statistical Chart"
1164
  msgstr "Ausnahmen - Verlauf"
1165
 
1166
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1167
  msgid "Excluded hits in the last"
1168
  msgstr "Ausnahmen in den letzten"
1169
 
1170
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1171
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1172
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1173
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
@@ -1176,7 +1291,7 @@ msgstr "Ausnahmen in den letzten"
1176
  msgid "days"
1177
  msgstr "Tagen"
1178
 
1179
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:118
1180
  msgid "Number of excluded hits"
1181
  msgstr "Anzahl der Ausnahmen"
1182
 
@@ -1206,13 +1321,13 @@ msgstr "Aufrufe"
1206
  msgid "Visitor"
1207
  msgstr "Besucher"
1208
 
1209
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:62
1210
  msgid "Latest Search Word Statistics"
1211
  msgstr "Verwendete Suchbegriffe"
1212
 
1213
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:97
1214
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
1215
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:48
1216
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1217
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
@@ -1220,9 +1335,9 @@ msgstr "Verwendete Suchbegriffe"
1220
  msgid "#hash#"
1221
  msgstr "#anonymisiert#"
1222
 
1223
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:102
1224
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:102
1225
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:53
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1228
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
@@ -1231,34 +1346,35 @@ msgstr "#anonymisiert#"
1231
  msgid "Map"
1232
  msgstr "Weltkarte"
1233
 
1234
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1235
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1236
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1237
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1238
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1239
  msgid "Page"
1240
  msgstr "Seite"
1241
 
1242
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1243
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1244
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1245
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1247
  msgid "From"
1248
  msgstr "von"
1249
 
1250
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
 
1251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1252
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1254
  msgid "All"
1255
  msgstr "Alle"
1256
 
1257
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
1258
  msgid "Search for"
1259
- msgstr "Suchen nach"
1260
 
1261
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
1262
  msgid "Recent Visitor Statistics"
1263
  msgstr "Letzte Besucher"
1264
 
@@ -1267,7 +1383,7 @@ msgstr "Letzte Besucher"
1267
  msgid "Online Users"
1268
  msgstr "Zurzeit online"
1269
 
1270
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:73
1271
  msgid "Online for "
1272
  msgstr "Besucher ist online seit "
1273
 
@@ -1294,6 +1410,7 @@ msgstr "Suchmaschinen-Verweise in den letzten"
1294
  msgid "Number of referrals"
1295
  msgstr "Anzahl der Verweise"
1296
 
 
1297
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1298
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
@@ -1342,7 +1459,7 @@ msgid "Top 5 Page Trending Stats"
1342
  msgstr "Aufrufe der Top 5 Seiten"
1343
 
1344
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1345
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:58
1346
  msgid "Number of Hits"
1347
  msgstr "Anzahl der Aufrufe"
1348
 
@@ -1361,7 +1478,7 @@ msgstr "Aufrufe"
1361
 
1362
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
1363
  msgid "To be added soon"
1364
- msgstr "In Kürze hinzugefügt werden"
1365
 
1366
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:40
1367
  msgid "Referring sites from"
@@ -1374,11 +1491,11 @@ msgstr "Verweise"
1374
 
1375
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
1376
  msgid "Top 100 Visitors Today"
1377
- msgstr "Top 100 Besucher heute"
1378
 
1379
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
1380
  msgid "About WP Statistics Version %s"
1381
- msgstr "Über WP Statistik Version%s"
1382
 
1383
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:25
1384
  msgid "Website"
@@ -1436,18 +1553,6 @@ msgstr "Heute"
1436
  msgid "Yesterday"
1437
  msgstr "Gestern"
1438
 
1439
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
1440
- msgid "Week"
1441
- msgstr "Woche"
1442
-
1443
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
1444
- msgid "Month"
1445
- msgstr "Monat"
1446
-
1447
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
1448
- msgid "Year"
1449
- msgstr "Jahr"
1450
-
1451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1452
  msgid "Daily Total"
1453
  msgstr "Heute gesamt"
@@ -1462,31 +1567,31 @@ msgstr "(&auml;ndern)"
1462
 
1463
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:121
1464
  msgid "Date: %s"
1465
- msgstr "Datum:%s"
1466
 
1467
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:125
1468
  msgid "Time: %s"
1469
- msgstr "Zeit:%s"
1470
 
1471
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1472
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:215
1473
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:293
1474
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
1475
  msgid "Hits"
1476
  msgstr "Website-Aufrufe"
1477
 
1478
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
1479
  msgid "IP"
1480
- msgstr "IP"
1481
 
1482
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
1483
  msgid "Agent"
1484
- msgstr "Agent"
1485
 
1486
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
1487
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1488
  msgid "Version"
1489
- msgstr "Version"
1490
 
1491
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
1492
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
@@ -1500,34 +1605,34 @@ msgstr "Zugriff verweigert."
1500
 
1501
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
1502
  msgid "%s agent data deleted successfully."
1503
- msgstr "%s-Agent Daten erfolgreich gelöscht."
1504
 
1505
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
1506
  msgid "No agent data found to remove!"
1507
- msgstr "Keine Daten gefunden Mittel zu entfernen!"
1508
 
1509
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1510
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1511
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1512
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
1513
  msgid "Please select the desired items."
1514
  msgstr "Bitte wähle die gew&uuml;nschetn Eintr&auml;ge aus."
1515
 
1516
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
1517
  msgid "%s platform data deleted successfully."
1518
- msgstr "%s-Plattform Daten erfolgreich gelöscht."
1519
 
1520
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
1521
  msgid "No platform data found to remove!"
1522
- msgstr "Keine Daten gefunden Plattform zu entfernen!"
1523
 
1524
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
1525
  msgid "%s table data deleted successfully."
1526
- msgstr "%s Tabellendaten erfolgreich gelöscht."
1527
 
1528
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:57
1529
  msgid "Error, %s not emptied!"
1530
- msgstr "Fehler%s nicht geleert!"
1531
 
1532
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
1533
  msgid "Database Setup"
@@ -1551,8 +1656,8 @@ msgstr "Datenbank-Index"
1551
 
1552
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1553
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1554
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:290
1555
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:364
1556
  msgid "Countries"
1557
  msgstr "L&auml;nder"
1558
 
@@ -1564,11 +1669,11 @@ msgstr "Jetzt aktualisieren"
1564
 
1565
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:40
1566
  msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table. To create the index on the older installs duplicate entries must be deleted first. Clicking \"Update Now\" will scan the vistitors table, delete duplicate entries and add the index."
1567
- msgstr "Ältere Installationen von WP Statistiken erlauben doppelte Einträge in der Besucher-Tabelle in eine Ecke Fall. Neuere Installationen zum Schutz gegen diese mit einem eindeutigen Index für die Tabelle. Um den Index für die älteren erstellen installiert doppelte Einträge müssen zuerst gelöscht werden. Durch Klicken auf &quot;Jetzt aktualisieren&quot; wird die vistitors Tabelle scannen, doppelte Einträge zu löschen und den Index."
1568
 
1569
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:41
1570
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1571
- msgstr "Dieser Vorgang kann einige Zeit auf Installationen mit vielen Zeilen in der Besucher-Tabelle zu nehmen."
1572
 
1573
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:46
1574
  msgid "Older installs of WP Statistics allow for duplicate entries in the visitors table in a corner case. Newer installs protect against this with a unique index on the table."
@@ -1627,13 +1732,13 @@ msgstr "Historische Angaben"
1627
 
1628
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1629
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1630
- msgstr "Hinweis: Wenn Sie nur die Datenbank gelöscht haben, müssen Sie diese Seite neu zu laden für diese Zahlen korrekt zu sein."
1631
 
1632
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1633
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1634
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1635
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
1636
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
1637
  msgid "Visitors"
1638
  msgstr "Besucher"
1639
 
@@ -1898,7 +2003,7 @@ msgstr "User Agent-Kennung des zurzeit aktiven Clients"
1898
 
1899
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
1900
  msgid "Browser"
1901
- msgstr "Browser"
1902
 
1903
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
1904
  msgid "The detected client browser."
@@ -1944,7 +2049,7 @@ msgstr "IP-Adressen erfolgreich anonymisiert."
1944
 
1945
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:51
1946
  msgid "Install routine complete."
1947
- msgstr "Install-Routine abgeschlossen."
1948
 
1949
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:146
1950
  msgid "Resources/Information"
@@ -1960,7 +2065,7 @@ msgstr "Datenbank"
1960
 
1961
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:150
1962
  msgid "Updates"
1963
- msgstr "Aktuelles"
1964
 
1965
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
1966
  msgid "Historical"
@@ -1968,7 +2073,7 @@ msgstr "Historie"
1968
 
1969
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
1970
  msgid "WP Statistics V%s"
1971
- msgstr "WP Statistik V%s"
1972
 
1973
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:20
1974
  msgid "Visit Us Online"
@@ -2101,15 +2206,15 @@ msgstr "Alternativ ist auch %s-Unterst&uuml;tzung verf&uuml;gbar."
2101
 
2102
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
2103
  msgid "Farsi"
2104
- msgstr "Farsi"
2105
 
2106
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
2107
  msgid "WP Statistics Honey Pot Page"
2108
- msgstr "WP Statistik Honey Pot Seite"
2109
 
2110
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
2111
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2112
- msgstr "Dies ist die Honigtopf für WP Statistik zu bedienen, nicht löschen."
2113
 
2114
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
2115
  msgid "Access Levels"
@@ -2129,7 +2234,7 @@ msgstr "Siehe %s, um Details der WordPress-Benutzerrechte zu erfahren."
2129
 
2130
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
2131
  msgid "WordPress Roles and Capabilities page"
2132
- msgstr "Wordpress-Rollen und Berechtigungen Seite"
2133
 
2134
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:98
2135
  msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
@@ -2144,8 +2249,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2144
  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."
2145
 
2146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2147
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
2148
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
2149
  msgid "Exclusions"
2150
  msgstr "Ausnahmen"
2151
 
@@ -2204,11 +2309,11 @@ msgstr "Erzwingt das Zur&uuml;cksetzen der Robots-Liste auf die Standardwerte na
2204
 
2205
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
2206
  msgid "Robot visit threshold"
2207
- msgstr "Robot Besuch Schwelle"
2208
 
2209
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
2210
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2211
- msgstr "Gönnen Besucher mit mehr als diese Anzahl der Besuche pro Tag als Roboter. 0 = gesperrt."
2212
 
2213
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
2214
  msgid "Excluded IP address list"
@@ -2232,59 +2337,59 @@ msgstr "192.168.0.0 hinzuf&uuml;gen"
2232
 
2233
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
2234
  msgid "Use honey pot"
2235
- msgstr "Verwenden Honigtopf"
2236
 
2237
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
2238
  msgid "Use a honey pot page to identify robots."
2239
- msgstr "Verwenden Sie einen Honigtopf-Seite, um Roboter zu identifizieren."
2240
 
2241
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
2242
  msgid "Honey pot post id"
2243
- msgstr "Honigtopf Post-ID"
2244
 
2245
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
2246
  msgid "The post id to use for the honeypot page."
2247
- msgstr "Die Post-ID für die Honeypot-Seite verwenden."
2248
 
2249
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
2250
  msgid "Create a new honey pot page"
2251
- msgstr "Eine neue Honigtopf Seite erstellen"
2252
 
2253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
2254
  msgid "GeoIP Exclusions"
2255
- msgstr "GeoIP Ausschlüsse"
2256
 
2257
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
2258
  msgid "Excluded countries list"
2259
- msgstr "Liste ausgeschlossen Ländern"
2260
 
2261
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
2262
  msgid "A list of country codes (one per line, two letters each) to exclude from statistics collection. Use \"000\" (three zeros) to exclude unknown countries."
2263
- msgstr "Eine Liste der Ländercodes (eine pro Zeile mit jeweils zwei Buchstaben) von Statistikerfassung auszuschließen. Verwenden Sie &quot;000&quot; (drei Nullen) zu unbekannten Ländern auszuschließen."
2264
 
2265
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
2266
  msgid "Included countries list"
2267
- msgstr "Liste der enthaltenen Länder"
2268
 
2269
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
2270
  msgid "A list of country codes (one per line, two letters each) to include in statistics collection, if this list is not empty, only visitors from the included countries will be recorded. Use \"000\" (three zeros) to exclude unknown countries."
2271
- msgstr "Eine Liste der Ländercodes (eine pro Zeile mit jeweils zwei Buchstaben) in Statistikerfassung gehören, wenn diese Liste nicht leer ist, werden nur die Besucher aus den Ländern enthalten aufgezeichnet werden. Verwenden Sie &quot;000&quot; (drei Nullen) zu unbekannten Ländern auszuschließen."
2272
 
2273
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
2274
  msgid "Host Exclusions"
2275
- msgstr "Host-Ausschlüsse"
2276
 
2277
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
2278
  msgid "Excluded hosts list"
2279
- msgstr "Liste ausgeschlossen Gastgeber"
2280
 
2281
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
2282
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2283
- msgstr "Eine Liste mit vollständig qualifizierten Hostnamen (server.example.com, eine pro Zeile also.), Von Statistikerfassung auszuschließen."
2284
 
2285
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
2286
  msgid "Note: this option will NOT perform a reverse DNS lookup on each page load but instead cache the IP address for the provided hostnames for one hour. If you are excluding dynamically assigned hosts you may find some degree of overlap when the host changes it's IP address and when the cache is updated resulting in some hits recorded."
2287
- msgstr "Hinweis: Diese Option wird ein Reverse-DNS-Lookup der IP-Adresse NICHT durchführen auf jeder Seite zu laden, sondern zwischenspeichern für die vorgesehenen Hostnamen für eine Stunde. Wenn Sie ohne dynamisch zugewiesene Hosts Sie ein gewisses Maß an Überlappung kann es bei der Host wechselt er die IP-Adresse und wenn der Cache was in einigen Hits aufgenommen aktualisiert."
2288
 
2289
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
2290
  msgid "Site URL Exclusions"
@@ -2308,11 +2413,11 @@ msgstr "Alle Seiten des Administrationsbereichs von der Statistik ausschlie&szli
2308
 
2309
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
2310
  msgid "Excluded RSS feeds"
2311
- msgstr "Ausgeschlossen RSS-Feeds"
2312
 
2313
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
2314
  msgid "Exclude the RSS feeds for registering as a hit."
2315
- msgstr "Ausschließen die RSS-Feeds für die Registrierung als Treffer."
2316
 
2317
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
2318
  msgid "browscap settings"
@@ -2337,6 +2442,7 @@ msgstr "Browscap verwenden"
2337
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2338
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2339
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
 
2340
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
@@ -2377,7 +2483,7 @@ msgstr "Automat. Aktualisierung von Browscap"
2377
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:59
2378
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:74
2379
  msgid "Next update will be"
2380
- msgstr "Nächstes Update werden"
2381
 
2382
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:74
2383
  msgid "Download of the browscap database will be scheduled for once a week."
@@ -2397,4 +2503,4 @@ msgstr "Besucher online"
2397
 
2398
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2399
  msgid "User online"
2400
- msgstr "Besucher online"
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-03-03 23:57:16+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
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:330
14
+ msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
15
+ msgstr ""
16
+
17
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:324
18
+ msgid "Force English"
19
+ msgstr ""
20
+
21
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
22
+ msgid "Languages"
23
+ msgstr ""
24
+
25
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
26
+ 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."
27
+ msgstr ""
28
+
29
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:269
30
+ msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
31
+ msgstr ""
32
+
33
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:266
34
+ msgid "Excluded URLs list"
35
+ msgstr ""
36
+
37
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
38
+ msgid "Excluded URL"
39
+ msgstr ""
40
+
41
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
42
+ msgid "Last 365 Days (Year)"
43
+ msgstr ""
44
+
45
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
46
+ msgid "Last 30 Days (Month)"
47
+ msgstr ""
48
+
49
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
50
+ msgid "Last 7 Days (Week)"
51
+ msgstr ""
52
+
53
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
54
+ msgid "Yahoo!"
55
+ msgstr ""
56
+
57
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:399
58
+ msgid "Yandex"
59
+ msgstr "Yandex"
60
+
61
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
62
+ msgid "clearch.org"
63
+ msgstr ""
64
+
65
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
66
+ msgid "DuckDuckGo"
67
+ msgstr "DuckDuckGo"
68
+
69
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:394
70
+ msgid "Bing"
71
+ msgstr "Bing"
72
+
73
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:393
74
+ msgid "Baidu"
75
+ msgstr "Baidu"
76
+
77
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:69
78
+ msgid "Hits in the last 20 days"
79
+ msgstr ""
80
+
81
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
82
+ msgid "Feeds"
83
+ msgstr ""
84
+
85
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
86
+ msgid "User Role"
87
+ msgstr ""
88
+
89
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
90
+ msgid "Login Page"
91
+ msgstr ""
92
+
93
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
94
+ msgid "Admin Page"
95
+ msgstr ""
96
+
97
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
98
+ msgid "Self Referral"
99
+ msgstr ""
100
+
101
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
102
+ msgid "IP Match"
103
+ msgstr ""
104
+
105
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
106
+ msgid "Robot"
107
+ msgstr ""
108
+
109
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:100
110
+ msgid "Currently there are no users online in the site."
111
+ msgstr ""
112
+
113
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
114
+ msgid "Robot Threshold"
115
+ msgstr ""
116
+
117
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
118
+ msgid "Honey Pot"
119
+ msgstr ""
120
+
121
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:6
122
+ msgid "Page Trending Stats"
123
+ msgstr ""
124
+
125
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
126
+ msgid "Hostname"
127
+ msgstr ""
128
 
129
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
130
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
150
 
151
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
152
  msgid "Record all user"
153
+ msgstr ""
154
 
155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
156
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
157
+ msgstr ""
158
 
159
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
160
  msgid "Store entire user agent string"
174
 
175
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
176
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
177
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
178
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
179
  msgid "Pages"
180
  msgstr "Seitenaufrufe"
181
 
185
 
186
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
187
  msgid "Strip parameters from URI"
188
+ msgstr ""
189
 
190
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
191
  msgid "This will remove anything after the ? in a URL."
192
+ msgstr ""
193
 
194
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
195
  msgid "Disable hits column in post/pages list"
233
 
234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
235
  msgid "Search Engines"
236
+ msgstr ""
237
 
238
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
239
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
305
 
306
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
307
  msgid "Country code for private IP addresses"
308
+ msgstr ""
309
 
310
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
311
  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."
312
+ msgstr ""
313
 
314
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
315
  msgid "GeoIP collection is disabled due to the following reasons:"
321
 
322
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:135
323
  msgid "GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!"
324
+ msgstr ""
325
 
326
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:141
327
  msgid "GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!"
328
+ msgstr ""
329
 
330
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:147
331
  msgid "PHP safe mode detected! GeoIP collection is not supported with PHP's safe mode enabled!"
332
+ msgstr ""
333
 
334
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-maintenance.php:20
335
  msgid "This will permanently delete data from the database each day, are you sure you want to enable this option?"
375
  msgid "Update Reports"
376
  msgstr "Update-Benachrichtigungen"
377
 
378
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
379
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
380
  msgid "Browscap"
381
  msgstr "Browscap"
384
  msgid "Send a report whenever the browscap.ini is updated."
385
  msgstr "Bei Update der \"browscap.ini\"-Datei benachrichtigen"
386
 
387
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
388
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
389
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
390
  msgid "GeoIP"
412
 
413
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
415
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
416
  msgid "Statistical reporting"
417
  msgstr "Statistik-Reports"
418
 
446
 
447
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
448
  msgid "WordPress SMS"
449
+ msgstr ""
450
 
451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:180
452
  msgid "Report body"
463
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
464
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
465
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
466
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:468
467
  msgid "User Online"
468
  msgstr "Besucher aktuell"
469
 
548
 
549
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
550
  msgid "Page/Post Editor"
551
+ msgstr ""
552
 
553
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
554
  msgid "Disable post/page editor widget"
555
+ msgstr ""
556
 
557
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
558
  msgid "Disable the page/post editor widget."
559
+ msgstr ""
560
 
561
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
562
  msgid "Map type"
563
  msgstr "Karten-Typ"
564
 
565
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:397
566
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
567
  msgid "Google"
568
  msgstr "Google"
569
 
570
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
571
  msgid "JQVMap"
572
+ msgstr ""
573
 
574
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:135
575
  msgid "The \"Google\" option will use Google's mapping service to plot the recent visitors (requires access to Google)."
642
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:348
643
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:370
644
  msgid "N/A"
645
+ msgstr ""
646
 
647
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
648
  msgid "Slot 7"
649
+ msgstr ""
650
 
651
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
652
  msgid "WP Statisitcs Removal"
710
 
711
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/manual/manual.php:39
712
  msgid "Invalid file type selected: %s"
713
+ msgstr ""
714
 
715
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:10
716
  msgid "Once Weekly"
725
  msgstr "Alle vier Wochen"
726
 
727
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
728
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
729
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:325
730
  msgid "Statistics"
731
  msgstr "Statistik"
732
 
733
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:15
734
  msgid "Show site stats in sidebar."
735
+ msgstr ""
736
 
737
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:73
738
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:260
752
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:108
753
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:275
754
  msgid "Total Page Views"
755
+ msgstr ""
756
 
757
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:116
758
  msgid "Search Engine referred"
759
+ msgstr ""
760
 
761
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:123
762
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:298
812
  msgstr "Elemente"
813
 
814
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
815
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:493
816
  msgid "Yesterday visit"
817
  msgstr "Aufrufe gestern"
818
 
819
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:278
820
  msgid "Search Engine Referred"
821
+ msgstr ""
822
 
823
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:281
824
  msgid "Select type of search engine"
825
  msgstr "Wähle die Suchmaschine"
826
 
827
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
828
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
829
+ msgstr ""
830
 
831
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
832
  msgid " or higher!"
833
+ msgstr ""
834
 
835
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
836
  msgid "Your current PHP version is"
837
+ msgstr ""
838
 
839
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:51
840
  msgid "WP Statistics has been removed, please disable and delete it."
841
+ msgstr ""
842
 
843
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
844
  msgid "WP Statistics"
845
+ msgstr ""
846
 
847
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:28
848
  msgid "Complete statistics for your WordPress site."
849
  msgstr "Umfangreiche Statistik f&uuml;r WordPress."
850
 
851
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
852
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
853
+ msgstr ""
854
 
855
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
856
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
857
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
858
  msgid "setting page"
859
+ msgstr ""
860
 
861
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
862
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
863
+ msgstr ""
864
 
865
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
866
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
867
+ msgstr ""
868
 
869
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
870
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
871
+ msgstr ""
872
 
873
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
874
  msgid "Setting page > GeoIP"
875
+ msgstr ""
876
 
877
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
878
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
879
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
880
  msgid "Settings"
881
  msgstr "Einstellungen"
882
 
883
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
884
  msgid "Click here to visit the plugin on WordPress.org"
885
+ msgstr ""
886
 
887
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
888
  msgid "Visit WordPress.org page"
889
  msgstr "Besuch die Plugin-Seite auf WordPress.org"
890
 
891
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
892
  msgid "Click here to rate and review this plugin on WordPress.org"
893
+ msgstr ""
894
 
895
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
896
  msgid "Rate this plugin"
897
  msgstr "Bewerte das Plugin"
898
 
899
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:254
900
  msgid "WP Statistics - Hits"
901
+ msgstr ""
902
 
903
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:291
904
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
905
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
906
  msgid "Overview"
907
  msgstr "&Uuml;bersicht"
908
 
909
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
910
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
911
  msgid "Online"
912
  msgstr "Zurzeit online"
913
 
914
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
915
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
916
  msgid "Referrers"
917
+ msgstr ""
918
 
919
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:301
920
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
921
  msgid "Searches"
922
  msgstr "Suchmaschinen"
923
 
924
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
925
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
926
  msgid "Search Words"
927
  msgstr "Suchbegriffe"
928
 
929
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
930
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:376
931
  msgid "Top Visitors Today"
932
+ msgstr ""
933
 
934
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:306
935
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
936
  msgid "Optimization"
937
  msgstr "Optimierung"
938
 
939
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:311
940
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:342
941
  msgid "Manual"
942
+ msgstr ""
943
 
944
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:357
945
  msgid "Site"
946
+ msgstr ""
947
 
948
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:358
949
  msgid "Options"
950
+ msgstr ""
951
 
952
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:475
953
  msgid "Today visitor"
954
  msgstr "Besucher heute"
955
 
956
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:481
957
  msgid "Today visit"
958
  msgstr "Aufrufe heute"
959
 
960
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:487
961
  msgid "Yesterday visitor"
962
  msgstr "Besucher gestern"
963
 
964
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
965
  msgid "View Stats"
966
  msgstr "Statistiken"
967
 
968
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:523
969
  msgid "Download ODF file"
970
+ msgstr ""
971
 
972
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
973
  msgid "Download HTML file"
974
+ msgstr ""
975
 
976
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:528
977
  msgid "Manual file not found."
978
  msgstr "Benutzerdokumentation nicht gefunden."
979
 
980
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
981
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:706
982
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:740
983
  msgid "You do not have sufficient permissions to access this page."
984
  msgstr "Du hast keine Zugriffsrechte, um diese Seite zu sehen."
985
 
986
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:608
987
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
988
  msgstr "Die Plugin-Tabellen existieren nicht in deiner Datenbank! Bitte f&uuml;hre die %s Plugin-Installationsroutine %s noch einmal aus."
989
 
990
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
991
  msgid "WP Statistics %s installed on"
992
+ msgstr ""
993
 
994
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
995
  msgid "Error downloading GeoIP database from: %s - %s"
997
 
998
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:45
999
  msgid "Error could not open downloaded GeoIP database for reading: %s"
1000
+ msgstr ""
1001
 
1002
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:52
1003
  msgid "Error could not open destination GeoIP database for writing %s"
1004
+ msgstr ""
1005
 
1006
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:68
1007
  msgid "GeoIP Database updated successfully!"
1009
 
1010
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
1011
  msgid "GeoIP update on"
1012
+ msgstr ""
1013
 
1014
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
1015
  msgid "Error downloading browscap database from: %s - %s"
1016
+ msgstr ""
1017
 
1018
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:262
1019
  msgid "browscap database updated successfully!"
1020
+ msgstr ""
1021
 
1022
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
1023
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1024
+ msgstr ""
1025
 
1026
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
1027
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1028
+ msgstr ""
1029
 
1030
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
1031
  msgid "browscap already at current version!"
1032
+ msgstr ""
1033
 
1034
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
1035
  msgid "Browscap.ini update on"
1036
+ msgstr ""
1037
 
1038
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
1039
  msgid "Quick Stats"
1052
 
1053
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
1054
  msgid "Today's Visitor Map"
1055
+ msgstr ""
1056
 
1057
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
1058
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
1067
  msgstr "Top 10 Seiten"
1068
 
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
1070
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:31
1071
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
1072
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
1073
  msgid "Recent Visitors"
1103
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
1104
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
1105
  msgid "Top 10 Visitors Today"
1106
+ msgstr ""
1107
 
1108
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
1109
  msgid "Please reload the dashboard to display the content of this widget."
1115
 
1116
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
1117
  msgid "This post is not yet published."
1118
+ msgstr ""
1119
 
1120
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:24
1121
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1122
  msgstr "GeoIP-Datenbank konnte nicht geladen werden. Bitte pr&uuml;fe in den Einstellungen, ob diese erfolgreich heruntergeladen wurde."
1123
 
1124
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:48
1125
  msgid "Updated %s GeoIP records in the visitors database."
1126
  msgstr "%s GeoIP-Eintr&auml;ge in der Besucher-Tabelle aktualisiert."
1127
 
1130
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:50
1131
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:83
1132
  msgid "%s data older than %s days purged successfully."
1133
+ msgstr ""
1134
 
1135
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:23
1136
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:41
1137
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:52
1138
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:85
1139
  msgid "No records found to purge from %s!"
1140
+ msgstr ""
1141
 
1142
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
1143
  msgid "Database pruned on"
1144
+ msgstr ""
1145
 
1146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
1147
  msgid "Please select a value over 30 days."
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1156
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1157
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:76
1158
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1159
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
1160
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
1161
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1162
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1163
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
1183
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1184
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1185
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1186
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
1187
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
1188
  msgid "Browsers"
1189
  msgstr "Browser"
1190
 
1210
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1211
  msgstr "ACHTUNG: die Aufzeichnung von Ausnahmen ist aktuell deaktiviert. Die nachfolgenden Ergebnisse spiegeln also nicht die aktuelle Statistik wider!"
1212
 
1213
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
1214
  msgid "Exclusions Statistics"
1215
  msgstr "Ausnahmenstatistik"
1216
 
1217
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1219
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1220
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1221
  msgid "10 Days"
1222
  msgstr "10 Tage"
1223
 
1224
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1225
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1228
  msgid "20 Days"
1229
  msgstr "20 Tage"
1230
 
1231
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1232
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1233
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1235
  msgid "30 Days"
1236
  msgstr "30 Tage"
1237
 
1238
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1239
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1240
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1241
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1242
  msgid "2 Months"
1243
  msgstr "2 Monate"
1244
 
1245
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1247
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1248
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1249
  msgid "3 Months"
1250
  msgstr "3 Monate"
1251
 
1252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1254
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1255
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1256
  msgid "6 Months"
1257
  msgstr "6 Monate"
1258
 
1259
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:65
1260
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1261
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1263
  msgid "9 Months"
1264
  msgstr "9 Monate"
1265
 
1266
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:66
1267
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1268
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1269
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1270
  msgid "1 Year"
1271
  msgstr "1 Jahr"
1272
 
1273
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
1274
  msgid "Total Exclusions: %s"
1275
  msgstr "Gesamt-Ausnahmen: %s"
1276
 
1277
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:77
1278
  msgid "Exclusions Statistical Chart"
1279
  msgstr "Ausnahmen - Verlauf"
1280
 
1281
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1282
  msgid "Excluded hits in the last"
1283
  msgstr "Ausnahmen in den letzten"
1284
 
1285
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1286
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1287
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1288
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
1291
  msgid "days"
1292
  msgstr "Tagen"
1293
 
1294
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:120
1295
  msgid "Number of excluded hits"
1296
  msgstr "Anzahl der Ausnahmen"
1297
 
1321
  msgid "Visitor"
1322
  msgstr "Besucher"
1323
 
1324
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:64
1325
  msgid "Latest Search Word Statistics"
1326
  msgstr "Verwendete Suchbegriffe"
1327
 
1328
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:99
1329
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
1330
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:50
1331
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1332
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1333
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
1335
  msgid "#hash#"
1336
  msgstr "#anonymisiert#"
1337
 
1338
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:104
1339
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:103
1340
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:55
1341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1343
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
1346
  msgid "Map"
1347
  msgstr "Weltkarte"
1348
 
1349
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1350
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1351
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1352
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1353
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1354
  msgid "Page"
1355
  msgstr "Seite"
1356
 
1357
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1358
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1359
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1360
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1361
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1362
  msgid "From"
1363
  msgstr "von"
1364
 
1365
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:46
1366
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:33
1367
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1368
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1369
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1370
  msgid "All"
1371
  msgstr "Alle"
1372
 
1373
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
1374
  msgid "Search for"
1375
+ msgstr ""
1376
 
1377
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:65
1378
  msgid "Recent Visitor Statistics"
1379
  msgstr "Letzte Besucher"
1380
 
1383
  msgid "Online Users"
1384
  msgstr "Zurzeit online"
1385
 
1386
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:75
1387
  msgid "Online for "
1388
  msgstr "Besucher ist online seit "
1389
 
1410
  msgid "Number of referrals"
1411
  msgstr "Anzahl der Verweise"
1412
 
1413
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
1414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1415
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1416
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
1459
  msgstr "Aufrufe der Top 5 Seiten"
1460
 
1461
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1462
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:60
1463
  msgid "Number of Hits"
1464
  msgstr "Anzahl der Aufrufe"
1465
 
1478
 
1479
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
1480
  msgid "To be added soon"
1481
+ msgstr ""
1482
 
1483
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:40
1484
  msgid "Referring sites from"
1491
 
1492
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
1493
  msgid "Top 100 Visitors Today"
1494
+ msgstr ""
1495
 
1496
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
1497
  msgid "About WP Statistics Version %s"
1498
+ msgstr ""
1499
 
1500
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:25
1501
  msgid "Website"
1553
  msgid "Yesterday"
1554
  msgstr "Gestern"
1555
 
 
 
 
 
 
 
 
 
 
 
 
 
1556
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1557
  msgid "Daily Total"
1558
  msgstr "Heute gesamt"
1567
 
1568
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:121
1569
  msgid "Date: %s"
1570
+ msgstr ""
1571
 
1572
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:125
1573
  msgid "Time: %s"
1574
+ msgstr ""
1575
 
1576
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1577
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:219
1578
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
1579
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
1580
  msgid "Hits"
1581
  msgstr "Website-Aufrufe"
1582
 
1583
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
1584
  msgid "IP"
1585
+ msgstr ""
1586
 
1587
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
1588
  msgid "Agent"
1589
+ msgstr ""
1590
 
1591
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
1592
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1593
  msgid "Version"
1594
+ msgstr ""
1595
 
1596
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
1597
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
1605
 
1606
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
1607
  msgid "%s agent data deleted successfully."
1608
+ msgstr ""
1609
 
1610
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
1611
  msgid "No agent data found to remove!"
1612
+ msgstr ""
1613
 
1614
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1615
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1616
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1617
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:80
1618
  msgid "Please select the desired items."
1619
  msgstr "Bitte wähle die gew&uuml;nschetn Eintr&auml;ge aus."
1620
 
1621
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
1622
  msgid "%s platform data deleted successfully."
1623
+ msgstr ""
1624
 
1625
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
1626
  msgid "No platform data found to remove!"
1627
+ msgstr ""
1628
 
1629
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
1630
  msgid "%s table data deleted successfully."
1631
+ msgstr ""
1632
 
1633
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:57
1634
  msgid "Error, %s not emptied!"
1635
+ msgstr ""
1636
 
1637
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:5
1638
  msgid "Database Setup"
1656
 
1657
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1658
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1659
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
1660
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
1661
  msgid "Countries"
1662
  msgstr "L&auml;nder"
1663
 
1669
 
1670
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:40
1671
  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."
1672
+ msgstr ""
1673
 
1674
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:41
1675
  msgid "This operation could take a long time on installs with many rows in the visitors table."
1676
+ msgstr ""
1677
 
1678
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:46
1679
  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."
1732
 
1733
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1734
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1735
+ msgstr ""
1736
 
1737
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1738
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1739
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1740
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:304
1741
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:377
1742
  msgid "Visitors"
1743
  msgstr "Besucher"
1744
 
2003
 
2004
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
2005
  msgid "Browser"
2006
+ msgstr ""
2007
 
2008
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
2009
  msgid "The detected client browser."
2049
 
2050
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:51
2051
  msgid "Install routine complete."
2052
+ msgstr ""
2053
 
2054
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:146
2055
  msgid "Resources/Information"
2065
 
2066
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:150
2067
  msgid "Updates"
2068
+ msgstr ""
2069
 
2070
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
2071
  msgid "Historical"
2073
 
2074
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
2075
  msgid "WP Statistics V%s"
2076
+ msgstr ""
2077
 
2078
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:20
2079
  msgid "Visit Us Online"
2206
 
2207
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:75
2208
  msgid "Farsi"
2209
+ msgstr ""
2210
 
2211
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
2212
  msgid "WP Statistics Honey Pot Page"
2213
+ msgstr ""
2214
 
2215
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
2216
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2217
+ msgstr ""
2218
 
2219
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
2220
  msgid "Access Levels"
2234
 
2235
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:97
2236
  msgid "WordPress Roles and Capabilities page"
2237
+ msgstr ""
2238
 
2239
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:98
2240
  msgid "Hint: manage_network = Super Admin Network, manage_options = Administrator, edit_others_posts = Editor, publish_posts = Author, edit_posts = Contributor, read = Everyone."
2249
  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."
2250
 
2251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
2253
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
2254
  msgid "Exclusions"
2255
  msgstr "Ausnahmen"
2256
 
2309
 
2310
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
2311
  msgid "Robot visit threshold"
2312
+ msgstr ""
2313
 
2314
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
2315
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2316
+ msgstr ""
2317
 
2318
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
2319
  msgid "Excluded IP address list"
2337
 
2338
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
2339
  msgid "Use honey pot"
2340
+ msgstr ""
2341
 
2342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
2343
  msgid "Use a honey pot page to identify robots."
2344
+ msgstr ""
2345
 
2346
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
2347
  msgid "Honey pot post id"
2348
+ msgstr ""
2349
 
2350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
2351
  msgid "The post id to use for the honeypot page."
2352
+ msgstr ""
2353
 
2354
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
2355
  msgid "Create a new honey pot page"
2356
+ msgstr ""
2357
 
2358
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
2359
  msgid "GeoIP Exclusions"
2360
+ msgstr ""
2361
 
2362
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
2363
  msgid "Excluded countries list"
2364
+ msgstr ""
2365
 
2366
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
2367
  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."
2368
+ msgstr ""
2369
 
2370
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
2371
  msgid "Included countries list"
2372
+ msgstr ""
2373
 
2374
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
2375
  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."
2376
+ msgstr ""
2377
 
2378
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
2379
  msgid "Host Exclusions"
2380
+ msgstr ""
2381
 
2382
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
2383
  msgid "Excluded hosts list"
2384
+ msgstr ""
2385
 
2386
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
2387
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2388
+ msgstr ""
2389
 
2390
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
2391
  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."
2392
+ msgstr ""
2393
 
2394
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
2395
  msgid "Site URL Exclusions"
2413
 
2414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
2415
  msgid "Excluded RSS feeds"
2416
+ msgstr ""
2417
 
2418
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
2419
  msgid "Exclude the RSS feeds for registering as a hit."
2420
+ msgstr ""
2421
 
2422
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
2423
  msgid "browscap settings"
2442
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2444
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
2445
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:329
2446
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2447
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2448
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
2483
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:59
2484
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:74
2485
  msgid "Next update will be"
2486
+ msgstr ""
2487
 
2488
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:74
2489
  msgid "Download of the browscap database will be scheduled for once a week."
2503
 
2504
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2505
  msgid "User online"
2506
+ msgstr "Besucher online"
languages/wp_statistics-es_ES.mo CHANGED
Binary file
languages/wp_statistics-es_ES.po CHANGED
@@ -2,17 +2,129 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-01-27 19:22-0500\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: Poedit 1.7.4\n"
11
  "Project-Id-Version: WP Statistics\n"
12
- "POT-Creation-Date: \n"
13
- "Last-Translator: \n"
14
- "Language-Team: \n"
15
- "Language: es_ES\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
18
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
@@ -38,11 +150,11 @@ msgstr "Tiempo para el usuario en línea exacta verificación en el sitio. Ahora
38
 
39
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
40
  msgid "Record all user"
41
- msgstr "Registre todos los usuarios"
42
 
43
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
44
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
45
- msgstr "Ignora los parámetros de exclusión y registra todos los usuarios que están en línea (incluyendo auto-referencias y robots). Sólo se debe utilizar para solucionar problemas."
46
 
47
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
48
  msgid "Store entire user agent string"
@@ -62,8 +174,8 @@ msgstr "Por cada visita para tener en cuenta varios golpes. Actualmente %s."
62
 
63
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
64
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
65
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:295
66
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
67
  msgid "Pages"
68
  msgstr "Páginas"
69
 
@@ -73,11 +185,11 @@ msgstr "Rastrear todas las páginas"
73
 
74
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
75
  msgid "Strip parameters from URI"
76
- msgstr "Parámetros de la tira de URI"
77
 
78
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
79
  msgid "This will remove anything after the ? in a URL."
80
- msgstr "Esto eliminará cualquier cosa después de la? en una dirección URL."
81
 
82
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
83
  msgid "Disable hits column in post/pages list"
@@ -121,7 +233,7 @@ msgstr "Por defecto las estadísticas WP almacena el admin manual en el director
121
 
122
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
123
  msgid "Search Engines"
124
- msgstr "Motores de búsqueda"
125
 
126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
127
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
@@ -193,11 +305,11 @@ msgstr "Actualizar cualquier dato GeoIP desaparecido después de descargar una n
193
 
194
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
195
  msgid "Country code for private IP addresses"
196
- msgstr "Código de país para las direcciones IP privadas"
197
 
198
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
199
  msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
200
- msgstr "El estándar de código de dos letras del país internacional (es decir. EEUU = Estados Unidos, CA = Canadá, etc.) para (no enrutables) Las direcciones IP privadas (es decir. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Utilice &quot;000&quot; (tres ceros) de utilizar &quot;Desconocido&quot; como el código de país."
201
 
202
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
203
  msgid "GeoIP collection is disabled due to the following reasons:"
@@ -249,7 +361,7 @@ msgstr "El número de días para mantener estadísticas. Valor mínimo es de 30
249
 
250
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
251
  msgid "Common Report Options"
252
- msgstr "Opciones de informe común"
253
 
254
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
255
  msgid "E-mail addresses"
@@ -257,20 +369,22 @@ msgstr "Direcciones de correo electrónico"
257
 
258
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
259
  msgid "A comma separated list of e-mail addresses to send reports to."
260
- msgstr "Una lista separada por comas de direcciones de correo electrónico para enviar informes a."
261
 
262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
263
  msgid "Update Reports"
264
- msgstr "Informes de Actualización"
265
 
 
266
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
267
  msgid "Browscap"
268
- msgstr "Browscap"
269
 
270
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
271
  msgid "Send a report whenever the browscap.ini is updated."
272
- msgstr "Enviar un informe cada vez que se actualiza el browscap.ini."
273
 
 
274
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
275
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
276
  msgid "GeoIP"
@@ -278,27 +392,27 @@ msgstr "GeoIP"
278
 
279
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
280
  msgid "Send a report whenever the GeoIP database is updated."
281
- msgstr "Enviar un informe cada vez que se actualiza la base de datos GeoIP."
282
 
283
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
284
  msgid "Pruning"
285
- msgstr "Poda"
286
 
287
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
288
  msgid "Send a report whenever the pruning of database is run."
289
- msgstr "Enviar un informe cada vez que se ejecuta la poda de base de datos."
290
 
291
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
292
  msgid "Upgrade"
293
- msgstr "Modernización"
294
 
295
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
296
  msgid "Send a report whenever the plugin is upgraded."
297
- msgstr "Enviar un informe cada vez que se actualice el plugin."
298
 
299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
300
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
301
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
302
  msgid "Statistical reporting"
303
  msgstr "Informes estadísticos"
304
 
@@ -308,7 +422,7 @@ msgstr "Horario"
308
 
309
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
310
  msgid "Select how often to receive statistical report."
311
- msgstr "Seleccione la frecuencia para recibir informe estadístico."
312
 
313
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
314
  msgid "Send reports via"
@@ -324,7 +438,7 @@ msgstr "SMS"
324
 
325
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
326
  msgid "Select delivery method for statistical report."
327
- msgstr "Elija un método de entrega de informe estadístico."
328
 
329
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
330
  msgid "Note: To send SMS text messages please install the %s plugin."
@@ -340,16 +454,16 @@ msgstr "Informe cuerpo"
340
 
341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
342
  msgid "Enter the contents of the report."
343
- msgstr "Introduzca el contenido del informe."
344
 
345
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
346
  msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
347
- msgstr "Cualquier código corto es compatible con su instalación de WordPress, incluye todos los códigos cortos de Estadística WP (consulte el manual de administración para obtener una lista de códigos disponibles) están soportados en el cuerpo del mensaje. He aquí algunos ejemplos:"
348
 
349
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
351
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
352
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:464
353
  msgid "User Online"
354
  msgstr "Usuarios conectados"
355
 
@@ -416,38 +530,39 @@ msgstr "Top páginas visitadas"
416
 
417
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
418
  msgid "Dashboard"
419
- msgstr "Salpicadero"
420
 
421
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
422
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
423
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
424
  msgid "The following items are global to all users."
425
- msgstr "Los siguientes artículos son globales para todos los usuarios."
426
 
427
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
428
  msgid "Disable dashboard widgets"
429
- msgstr "Desactivar widgets del Dashboard"
430
 
431
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
432
  msgid "Disable the dashboard widgets."
433
- msgstr "Desactivar los widgets del Dashboard."
434
 
435
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
436
  msgid "Page/Post Editor"
437
- msgstr "Página / Editor Publicar"
438
 
439
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
440
  msgid "Disable post/page editor widget"
441
- msgstr "Puesto Desactivar / widget de editor de páginas"
442
 
443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
444
  msgid "Disable the page/post editor widget."
445
- msgstr "Desactivar el widget editor de páginas / post."
446
 
447
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
448
  msgid "Map type"
449
  msgstr "Tipo de mapa"
450
 
 
451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
452
  msgid "Google"
453
  msgstr "Google"
@@ -482,7 +597,7 @@ msgstr "Esta característica puede provocar una degradación del rendimiento al
482
 
483
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
484
  msgid "Overview Widgets to Display"
485
- msgstr "Información general Widgets para Mostrar"
486
 
487
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
488
  msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
@@ -531,31 +646,31 @@ msgstr "N / A"
531
 
532
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
533
  msgid "Slot 7"
534
- msgstr "Ranura 7"
535
 
536
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
537
  msgid "WP Statisitcs Removal"
538
- msgstr "Remoción WP statisitcs"
539
 
540
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
541
  msgid "Uninstalling WP Statistics will not remove the data and settings, you can use this option to remove the WP Statistics data from your install before uninstalling the plugin."
542
- msgstr "La desinstalación de WP Estadísticas no eliminará los datos y la configuración, puede utilizar esta opción para eliminar los datos de la estadística de WP de su instalación antes de desinstalar el plugin."
543
 
544
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
545
  msgid "Once you submit this form the settings will be deleted during the page load, however WP Statistics will still show up in your Admin menu until another page load is executed."
546
- msgstr "Una vez que presente esta forma los ajustes se borrarán durante la carga de la página, sin embargo WP Estadísticas todavía se mostrará en el menú de administración hasta que se ejecute otra carga de la página."
547
 
548
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
549
  msgid "Remove data and settings"
550
- msgstr "Eliminar datos y ajustes"
551
 
552
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
553
  msgid "Remove"
554
- msgstr "Quitar"
555
 
556
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
557
  msgid "Remove data and settings, this action cannot be undone."
558
- msgstr "Eliminar datos y configuraciones, esta acción no se puede deshacer."
559
 
560
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
561
  msgid "General"
@@ -563,11 +678,11 @@ msgstr "General"
563
 
564
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
565
  msgid "Notifications"
566
- msgstr "Notificaciones"
567
 
568
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
569
  msgid "Dashboard/Overview"
570
- msgstr "Dashboard / Información general"
571
 
572
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
573
  msgid "Access/Exclusions"
@@ -583,7 +698,7 @@ msgstr "Mantenimiento"
583
 
584
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
585
  msgid "Removal"
586
- msgstr "Eliminación"
587
 
588
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
589
  msgid "Update"
@@ -610,8 +725,8 @@ msgid "Once Every 4 Weeks"
610
  msgstr "Una vez cada 4 semanas"
611
 
612
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
613
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:284
614
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:321
615
  msgid "Statistics"
616
  msgstr "Estadísticas"
617
 
@@ -697,7 +812,7 @@ msgid "Items"
697
  msgstr "Elementos"
698
 
699
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
700
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:489
701
  msgid "Yesterday visit"
702
  msgstr "Visitas ayer"
703
 
@@ -709,172 +824,172 @@ msgstr "Motor de búsqueda se refiere"
709
  msgid "Select type of search engine"
710
  msgstr "Selecciona el tipo de motor de búsqueda"
711
 
712
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
713
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
714
  msgstr "ERROR: WP Statistics ha detectado una versión no compatible de PHP, WP Statistics no funcionará sin la versión de PHP "
715
 
716
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
717
  msgid " or higher!"
718
  msgstr "o superior."
719
 
720
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
721
  msgid "Your current PHP version is"
722
- msgstr "Su versión de PHP actual es"
723
 
724
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:42
725
  msgid "WP Statistics has been removed, please disable and delete it."
726
- msgstr "WP Statistics se ha eliminado, por favor, desactivar y eliminarlo."
727
 
728
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:53
729
  msgid "WP Statistics"
730
  msgstr "Estadísticas de WP"
731
 
732
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:54
733
  msgid "Complete statistics for your WordPress site."
734
  msgstr "Estadísticas completas para su sitio de WordPress."
735
 
736
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
737
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
738
  msgstr "Usuario en línea de seguimiento en las WP Statistics no está habilitado, por favor vaya a %s y habilitarlo."
739
 
740
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
741
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
742
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
743
  msgid "setting page"
744
  msgstr "Página de configuración"
745
 
746
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
747
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
748
  msgstr "Seguimiento golpe en las WP Statistics no está habilitado, por favor vaya a %s y habilitarlo."
749
 
750
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
751
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
752
  msgstr "Visita de seguimiento en las WP Statistics no está habilitado, por favor vaya a %s y habilitarlo."
753
 
754
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
755
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
756
  msgstr "GeoIP colección no está activo, por favor vaya a %s y activar esta función."
757
 
758
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
759
  msgid "Setting page > GeoIP"
760
  msgstr "Página Configuración > GeoIP"
761
 
762
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:191
763
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
764
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
765
  msgid "Settings"
766
  msgstr "Configuración"
767
 
768
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
769
  msgid "Click here to visit the plugin on WordPress.org"
770
  msgstr "Haga clic aquí para visitar el plugin en WordPress.org"
771
 
772
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
773
  msgid "Visit WordPress.org page"
774
  msgstr "Visita la página de WordPress.org"
775
 
776
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
777
  msgid "Click here to rate and review this plugin on WordPress.org"
778
  msgstr "Haga clic aquí para calificar y revisar este plugin en WordPress.org"
779
 
780
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
781
  msgid "Rate this plugin"
782
  msgstr "Tasa de este plugin"
783
 
784
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:250
785
  msgid "WP Statistics - Hits"
786
  msgstr "Estadísticas de WP - Hits"
787
 
788
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:287
789
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:324
790
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:362
791
  msgid "Overview"
792
  msgstr "Resumen"
793
 
794
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
795
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
796
  msgid "Online"
797
- msgstr "Online"
798
 
799
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
800
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
801
  msgid "Referrers"
802
- msgstr "Referido"
803
 
804
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
805
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
806
  msgid "Searches"
807
  msgstr "Búsquedas"
808
 
809
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
810
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
811
  msgid "Search Words"
812
  msgstr "Palabras de búsqueda"
813
 
814
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
815
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
816
  msgid "Top Visitors Today"
817
- msgstr "Top visitantes de hoy"
818
 
819
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
820
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
821
  msgid "Optimization"
822
  msgstr "Optimización"
823
 
824
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
825
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:338
826
  msgid "Manual"
827
  msgstr "Manual"
828
 
829
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
830
  msgid "Site"
831
- msgstr "Sitio"
832
 
833
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:354
834
  msgid "Options"
835
- msgstr "Opciones"
836
 
837
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:471
838
  msgid "Today visitor"
839
  msgstr "Visitante de hoy"
840
 
841
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:477
842
  msgid "Today visit"
843
  msgstr "Visite hoy"
844
 
845
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:483
846
  msgid "Yesterday visitor"
847
  msgstr "Ayer visitante"
848
 
849
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:495
850
  msgid "View Stats"
851
  msgstr "Ver estadísticas"
852
 
853
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
854
  msgid "Download ODF file"
855
  msgstr "Descargar archivo ODF"
856
 
857
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
858
  msgid "Download HTML file"
859
  msgstr "Descargar archivo HTML"
860
 
861
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
862
  msgid "Manual file not found."
863
  msgstr "Manual archivo no encontrado."
864
 
865
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
866
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:702
867
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
868
  msgid "You do not have sufficient permissions to access this page."
869
  msgstr "No tienes permisos suficientes para acceder a esta página."
870
 
871
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:604
872
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
873
- msgstr "Tablas Plugin no existen en la base de datos! Por favor, vuelva a ejecutar la rutina de instalación%s%s."
874
 
875
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
876
  msgid "WP Statistics %s installed on"
877
- msgstr "Estadísticas WP%s instalado en"
878
 
879
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
880
  msgid "Error downloading GeoIP database from: %s - %s"
@@ -894,7 +1009,7 @@ msgstr "GeoIP de base de datos actualizada!"
894
 
895
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
896
  msgid "GeoIP update on"
897
- msgstr "Geoip actualizar en"
898
 
899
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
900
  msgid "Error downloading browscap database from: %s - %s"
@@ -906,11 +1021,11 @@ msgstr "browscap base de datos actualizada!"
906
 
907
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
908
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
909
- msgstr "base de datos browscap no ACTUALIZADO! Archivo de caché demasiado grande, volviendo a browscap.ini anterior."
910
 
911
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
912
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
913
- msgstr "base de datos browscap no ACTUALIZADO! Nueva browscap.ini está mal identificando los agentes de usuario como rastreadores, volviendo a browscap.ini anterior."
914
 
915
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
916
  msgid "browscap already at current version!"
@@ -918,11 +1033,11 @@ msgstr "browscap ya en la versión actual."
918
 
919
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
920
  msgid "Browscap.ini update on"
921
- msgstr "Actualización Browscap.ini en"
922
 
923
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
924
  msgid "Quick Stats"
925
- msgstr "Estadísticas rápidas"
926
 
927
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
928
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
@@ -937,7 +1052,7 @@ msgstr "Top 10 países"
937
 
938
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
939
  msgid "Today's Visitor Map"
940
- msgstr "De hoy Mapa del visitante"
941
 
942
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
943
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
@@ -952,7 +1067,7 @@ msgid "Top 10 Pages"
952
  msgstr "Top 10 páginas"
953
 
954
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
955
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:30
956
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
957
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
958
  msgid "Recent Visitors"
@@ -988,25 +1103,25 @@ msgstr "Las últimas palabras de búsqueda"
988
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
989
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
990
  msgid "Top 10 Visitors Today"
991
- msgstr "Top 10 de los visitantes de hoy"
992
 
993
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
994
  msgid "Please reload the dashboard to display the content of this widget."
995
- msgstr "Por favor, vuelva a cargar el panel de control para mostrar el contenido de este widget."
996
 
997
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
998
  msgid "WP Statistics Overview"
999
- msgstr "WP Estadísticas"
1000
 
1001
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
1002
  msgid "This post is not yet published."
1003
- msgstr "Este blog aún no se publica."
1004
 
1005
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
1006
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1007
  msgstr "No se puede cargar la base de datos GeoIP, asegúrese de que lo hayas descargado en la página de configuración."
1008
 
1009
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:50
1010
  msgid "Updated %s GeoIP records in the visitors database."
1011
  msgstr "Actualizado %s GeoIP registros en la base de datos de los visitantes."
1012
 
@@ -1026,7 +1141,7 @@ msgstr "No hay registros encontrados para purgar de %s!"
1026
 
1027
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
1028
  msgid "Database pruned on"
1029
- msgstr "Base de datos sobre podado"
1030
 
1031
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
1032
  msgid "Please select a value over 30 days."
@@ -1039,10 +1154,10 @@ msgstr "Estadísticas de navegador"
1039
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1040
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1041
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1042
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
1043
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1044
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
1045
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:60
1046
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1047
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1048
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
@@ -1068,8 +1183,8 @@ msgstr "Haga clic para alternar"
1068
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1070
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1071
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
1072
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:363
1073
  msgid "Browsers"
1074
  msgstr "Navegadores"
1075
 
@@ -1095,79 +1210,79 @@ msgstr "versión de %s"
1095
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1096
  msgstr "Atención: La exclusión no son actualmente establecido en grabarse, abajo los resultados pueden no reflejar estadísticas actuales!"
1097
 
1098
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
1099
  msgid "Exclusions Statistics"
1100
  msgstr "Estadísticas de exclusiones"
1101
 
1102
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
1103
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1104
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1105
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1106
  msgid "10 Days"
1107
  msgstr "10 días"
1108
 
1109
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
1110
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1111
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1112
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1113
  msgid "20 Days"
1114
  msgstr "20 días"
1115
 
1116
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1117
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1118
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1119
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1120
  msgid "30 Days"
1121
  msgstr "30 días"
1122
 
1123
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1124
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1125
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1127
  msgid "2 Months"
1128
  msgstr "2 meses"
1129
 
1130
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1131
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1132
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1133
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1134
  msgid "3 Months"
1135
  msgstr "3 meses"
1136
 
1137
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1138
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1139
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1140
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1141
  msgid "6 Months"
1142
  msgstr "6 meses"
1143
 
1144
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1145
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1147
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1148
  msgid "9 Months"
1149
  msgstr "9 meses"
1150
 
1151
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1152
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1153
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1155
  msgid "1 Year"
1156
  msgstr "1 año"
1157
 
1158
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
1159
  msgid "Total Exclusions: %s"
1160
  msgstr "Total de exclusiones: %s"
1161
 
1162
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
1163
  msgid "Exclusions Statistical Chart"
1164
  msgstr "Tabla estadística de exclusiones"
1165
 
1166
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1167
  msgid "Excluded hits in the last"
1168
  msgstr "Excluyen golpes en los últimos"
1169
 
1170
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1171
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1172
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1173
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
@@ -1176,7 +1291,7 @@ msgstr "Excluyen golpes en los últimos"
1176
  msgid "days"
1177
  msgstr "días"
1178
 
1179
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:118
1180
  msgid "Number of excluded hits"
1181
  msgstr "Número de golpes excluidos"
1182
 
@@ -1206,13 +1321,13 @@ msgstr "Visita"
1206
  msgid "Visitor"
1207
  msgstr "Visitante"
1208
 
1209
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:62
1210
  msgid "Latest Search Word Statistics"
1211
  msgstr "Últimas estadísticas de la palabra de búsqueda"
1212
 
1213
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:97
1214
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
1215
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:48
1216
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1217
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
@@ -1220,9 +1335,9 @@ msgstr "Últimas estadísticas de la palabra de búsqueda"
1220
  msgid "#hash#"
1221
  msgstr "#hash #"
1222
 
1223
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:102
1224
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:102
1225
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:53
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1228
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
@@ -1231,45 +1346,46 @@ msgstr "#hash #"
1231
  msgid "Map"
1232
  msgstr "Mapa"
1233
 
1234
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1235
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1236
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1237
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1238
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1239
  msgid "Page"
1240
  msgstr "Página"
1241
 
1242
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1243
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1244
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1245
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1247
  msgid "From"
1248
  msgstr "De"
1249
 
1250
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
 
1251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1252
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1254
  msgid "All"
1255
  msgstr "Todo"
1256
 
1257
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
1258
  msgid "Search for"
1259
  msgstr "Búsqueda para"
1260
 
1261
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
1262
  msgid "Recent Visitor Statistics"
1263
  msgstr "Estadísticas recientes de visitante"
1264
 
1265
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
1266
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
1267
  msgid "Online Users"
1268
- msgstr "Usuarios en línea"
1269
 
1270
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:73
1271
  msgid "Online for "
1272
- msgstr "En línea para"
1273
 
1274
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
1275
  msgid "Page Trend for Post ID"
@@ -1294,6 +1410,7 @@ msgstr "Búsqueda motor referidos en los últimos"
1294
  msgid "Number of referrals"
1295
  msgstr "Número de referencias"
1296
 
 
1297
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1298
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
@@ -1342,7 +1459,7 @@ msgid "Top 5 Page Trending Stats"
1342
  msgstr "Top 5 página tendencias estadísticas"
1343
 
1344
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1345
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:58
1346
  msgid "Number of Hits"
1347
  msgstr "Número de visitas"
1348
 
@@ -1374,7 +1491,7 @@ msgstr "Referencias"
1374
 
1375
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
1376
  msgid "Top 100 Visitors Today"
1377
- msgstr "Top 100 visitantes de hoy"
1378
 
1379
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
1380
  msgid "About WP Statistics Version %s"
@@ -1436,18 +1553,6 @@ msgstr "Hoy"
1436
  msgid "Yesterday"
1437
  msgstr "Ayer"
1438
 
1439
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
1440
- msgid "Week"
1441
- msgstr "Semana"
1442
-
1443
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
1444
- msgid "Month"
1445
- msgstr "Mes"
1446
-
1447
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
1448
- msgid "Year"
1449
- msgstr "Año"
1450
-
1451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1452
  msgid "Daily Total"
1453
  msgstr "Total diaria"
@@ -1469,24 +1574,24 @@ msgid "Time: %s"
1469
  msgstr "Tiempo: %s"
1470
 
1471
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1472
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:215
1473
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:293
1474
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
1475
  msgid "Hits"
1476
  msgstr "Hits"
1477
 
1478
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
1479
  msgid "IP"
1480
- msgstr "IP"
1481
 
1482
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
1483
  msgid "Agent"
1484
- msgstr "Agente"
1485
 
1486
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
1487
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1488
  msgid "Version"
1489
- msgstr "Versión"
1490
 
1491
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
1492
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
@@ -1504,12 +1609,12 @@ msgstr "datos de %s agente eliminados satisfactoriamente."
1504
 
1505
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
1506
  msgid "No agent data found to remove!"
1507
- msgstr "No hay datos de agentes que se encuentran para eliminar!"
1508
 
1509
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1510
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1511
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1512
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
1513
  msgid "Please select the desired items."
1514
  msgstr "Por favor, seleccione los elementos deseados."
1515
 
@@ -1519,7 +1624,7 @@ msgstr "datos de %s plataforma eliminados satisfactoriamente."
1519
 
1520
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
1521
  msgid "No platform data found to remove!"
1522
- msgstr "No hay datos de la plataforma se encuentran para eliminar!"
1523
 
1524
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
1525
  msgid "%s table data deleted successfully."
@@ -1551,8 +1656,8 @@ msgstr "Índice de base de datos"
1551
 
1552
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1553
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1554
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:290
1555
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:364
1556
  msgid "Countries"
1557
  msgstr "Países"
1558
 
@@ -1623,31 +1728,31 @@ msgstr "¡ Empiece ahora!"
1623
 
1624
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
1625
  msgid "Historical Values"
1626
- msgstr "Valores históricos"
1627
 
1628
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1629
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1630
- msgstr "Nota: Como usted acaba de purgar la base de datos debe volver a cargar esta página para que estos números sean correctos."
1631
 
1632
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1633
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1634
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1635
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
1636
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
1637
  msgid "Visitors"
1638
  msgstr "Visitantes"
1639
 
1640
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
1641
  msgid "Number of historical number of visitors to the site (current value is %s)."
1642
- msgstr "Número de serie histórica de los visitantes al sitio (valor actual es%s)."
1643
 
1644
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
1645
  msgid "Number of historical number of visits to the site (current value is %s)."
1646
- msgstr "Número de serie histórica de las visitas al sitio (valor actual es%s)."
1647
 
1648
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
1649
  msgid "Update now!"
1650
- msgstr "Actualizar ahora!"
1651
 
1652
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
1653
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
@@ -1725,11 +1830,11 @@ msgstr "Byte"
1725
 
1726
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
1727
  msgid "Last Overview page memory usage"
1728
- msgstr "Última general el uso de memoria página"
1729
 
1730
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
1731
  msgid "Memory usage in the overview page"
1732
- msgstr "El uso de memoria en la página de la información"
1733
 
1734
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
1735
  msgid "PHP Memory Limit"
@@ -1898,19 +2003,19 @@ msgstr "La cadena de agente de usuario cliente."
1898
 
1899
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
1900
  msgid "Browser"
1901
- msgstr "Navegador"
1902
 
1903
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
1904
  msgid "The detected client browser."
1905
- msgstr "El navegador del cliente detectado."
1906
 
1907
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
1908
  msgid "The detected client browser version."
1909
- msgstr "La versión del navegador cliente detectado."
1910
 
1911
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
1912
  msgid "The detected client platform."
1913
- msgstr "La plataforma cliente detectado."
1914
 
1915
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
1916
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
@@ -1964,7 +2069,7 @@ msgstr "Actualizaciones"
1964
 
1965
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
1966
  msgid "Historical"
1967
- msgstr "Histórico"
1968
 
1969
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
1970
  msgid "WP Statistics V%s"
@@ -2049,7 +2154,7 @@ msgstr "¿Tienes que buscar en Internet para cualquier mensaje de error que est
2049
 
2050
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
2051
  msgid "Make sure you have access to your PHP error logs."
2052
- msgstr "Asegúrese de tener acceso a sus registros de errores de PHP."
2053
 
2054
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
2055
  msgid "And a few things to double-check:"
@@ -2105,11 +2210,11 @@ msgstr "Farsi"
2105
 
2106
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
2107
  msgid "WP Statistics Honey Pot Page"
2108
- msgstr "WP Estadísticas Honey Pot Página"
2109
 
2110
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
2111
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2112
- msgstr "Este es el bote de miel de Estadística WP de usar, no lo elimine."
2113
 
2114
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
2115
  msgid "Access Levels"
@@ -2144,8 +2249,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2144
  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."
2145
 
2146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2147
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
2148
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
2149
  msgid "Exclusions"
2150
  msgstr "Exclusiones"
2151
 
@@ -2204,11 +2309,11 @@ msgstr "La lista de robot a restablecer por defecto después de una actualizaci
2204
 
2205
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
2206
  msgid "Robot visit threshold"
2207
- msgstr "Visita umbral Robot"
2208
 
2209
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
2210
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2211
- msgstr "Tratar a los visitantes con más de esta cantidad de visitas por día como robots. 0 = desactivado."
2212
 
2213
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
2214
  msgid "Excluded IP address list"
@@ -2232,59 +2337,59 @@ msgstr "Añadir 192.168.0.0"
2232
 
2233
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
2234
  msgid "Use honey pot"
2235
- msgstr "Utilice tarro de miel"
2236
 
2237
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
2238
  msgid "Use a honey pot page to identify robots."
2239
- msgstr "Use una página tarro de miel para identificar robots."
2240
 
2241
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
2242
  msgid "Honey pot post id"
2243
- msgstr "Miel ID del mensaje olla"
2244
 
2245
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
2246
  msgid "The post id to use for the honeypot page."
2247
- msgstr "El ID del mensaje a utilizar para la página honeypot."
2248
 
2249
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
2250
  msgid "Create a new honey pot page"
2251
- msgstr "Crear una nueva página tarro de miel"
2252
 
2253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
2254
  msgid "GeoIP Exclusions"
2255
- msgstr "GeoIP Exclusiones"
2256
 
2257
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
2258
  msgid "Excluded countries list"
2259
- msgstr "Lista de países excluidos"
2260
 
2261
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
2262
  msgid "A list of country codes (one per line, two letters each) to exclude from statistics collection. Use \"000\" (three zeros) to exclude unknown countries."
2263
- msgstr "Una lista de códigos de países (uno por línea, dos cartas de cada uno), a excluir de la recopilación de estadísticas. Utilice &quot;000&quot; (tres ceros) para excluir a países desconocidos."
2264
 
2265
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
2266
  msgid "Included countries list"
2267
- msgstr "Lista de países incluidos"
2268
 
2269
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
2270
  msgid "A list of country codes (one per line, two letters each) to include in statistics collection, if this list is not empty, only visitors from the included countries will be recorded. Use \"000\" (three zeros) to exclude unknown countries."
2271
- msgstr "Una lista de códigos de países (uno por línea, dos cartas cada una) para incluir en la recopilación de estadísticas, si la lista no está vacía, sólo se grabarán los visitantes de los países incluidos. Utilice &quot;000&quot; (tres ceros) para excluir a países desconocidos."
2272
 
2273
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
2274
  msgid "Host Exclusions"
2275
- msgstr "Exclusiones de host"
2276
 
2277
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
2278
  msgid "Excluded hosts list"
2279
- msgstr "Lista de anfitriones Excluidos"
2280
 
2281
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
2282
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2283
- msgstr "Una lista de nombres de host completos (es decir. Server.example.com, una línea por cada) para excluir de la recopilación de estadísticas."
2284
 
2285
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
2286
  msgid "Note: this option will NOT perform a reverse DNS lookup on each page load but instead cache the IP address for the provided hostnames for one hour. If you are excluding dynamically assigned hosts you may find some degree of overlap when the host changes it's IP address and when the cache is updated resulting in some hits recorded."
2287
- msgstr "Nota: esta opción no realizará una búsqueda DNS inversa en cada carga de página, pero en lugar caché la dirección IP de los nombres de host proporcionados durante una hora. Si usted está excluyendo anfitriones asignados dinámicamente usted puede encontrar un cierto grado de solapamiento cuando el host cambia su dirección IP y cuando la memoria caché se actualiza lo que resulta en algunos de los éxitos grabados."
2288
 
2289
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
2290
  msgid "Site URL Exclusions"
@@ -2308,11 +2413,11 @@ msgstr "Excluir las páginas admin para registrarse como un éxito."
2308
 
2309
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
2310
  msgid "Excluded RSS feeds"
2311
- msgstr "RSS Excluidos"
2312
 
2313
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
2314
  msgid "Exclude the RSS feeds for registering as a hit."
2315
- msgstr "Excluir los feeds RSS para registrarse como un éxito."
2316
 
2317
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
2318
  msgid "browscap settings"
@@ -2337,6 +2442,7 @@ msgstr "uso Browscap"
2337
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2338
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2339
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
 
2340
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
@@ -2397,4 +2503,4 @@ msgstr "Usuarios en línea"
2397
 
2398
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2399
  msgid "User online"
2400
- msgstr "Usuario en línea"
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-01-23 13:10:28+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
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:330
14
+ msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
15
+ msgstr ""
16
+
17
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:324
18
+ msgid "Force English"
19
+ msgstr ""
20
+
21
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
22
+ msgid "Languages"
23
+ msgstr ""
24
+
25
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
26
+ 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."
27
+ msgstr ""
28
+
29
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:269
30
+ msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
31
+ msgstr ""
32
+
33
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:266
34
+ msgid "Excluded URLs list"
35
+ msgstr ""
36
+
37
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
38
+ msgid "Excluded URL"
39
+ msgstr ""
40
+
41
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
42
+ msgid "Last 365 Days (Year)"
43
+ msgstr ""
44
+
45
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
46
+ msgid "Last 30 Days (Month)"
47
+ msgstr ""
48
+
49
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
50
+ msgid "Last 7 Days (Week)"
51
+ msgstr ""
52
+
53
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
54
+ msgid "Yahoo!"
55
+ msgstr ""
56
+
57
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:399
58
+ msgid "Yandex"
59
+ msgstr ""
60
+
61
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
62
+ msgid "clearch.org"
63
+ msgstr ""
64
+
65
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
66
+ msgid "DuckDuckGo"
67
+ msgstr ""
68
+
69
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:394
70
+ msgid "Bing"
71
+ msgstr ""
72
+
73
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:393
74
+ msgid "Baidu"
75
+ msgstr ""
76
+
77
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:69
78
+ msgid "Hits in the last 20 days"
79
+ msgstr ""
80
+
81
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
82
+ msgid "Feeds"
83
+ msgstr ""
84
+
85
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
86
+ msgid "User Role"
87
+ msgstr ""
88
+
89
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
90
+ msgid "Login Page"
91
+ msgstr ""
92
+
93
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
94
+ msgid "Admin Page"
95
+ msgstr ""
96
+
97
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
98
+ msgid "Self Referral"
99
+ msgstr ""
100
+
101
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
102
+ msgid "IP Match"
103
+ msgstr ""
104
+
105
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
106
+ msgid "Robot"
107
+ msgstr ""
108
+
109
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:100
110
+ msgid "Currently there are no users online in the site."
111
+ msgstr ""
112
+
113
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
114
+ msgid "Robot Threshold"
115
+ msgstr ""
116
+
117
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
118
+ msgid "Honey Pot"
119
+ msgstr ""
120
+
121
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:6
122
+ msgid "Page Trending Stats"
123
+ msgstr ""
124
+
125
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
126
+ msgid "Hostname"
127
+ msgstr ""
128
 
129
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
130
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
150
 
151
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
152
  msgid "Record all user"
153
+ msgstr ""
154
 
155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
156
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
157
+ msgstr ""
158
 
159
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
160
  msgid "Store entire user agent string"
174
 
175
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
176
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
177
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
178
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
179
  msgid "Pages"
180
  msgstr "Páginas"
181
 
185
 
186
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
187
  msgid "Strip parameters from URI"
188
+ msgstr ""
189
 
190
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
191
  msgid "This will remove anything after the ? in a URL."
192
+ msgstr ""
193
 
194
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
195
  msgid "Disable hits column in post/pages list"
233
 
234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
235
  msgid "Search Engines"
236
+ msgstr ""
237
 
238
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
239
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
305
 
306
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
307
  msgid "Country code for private IP addresses"
308
+ msgstr ""
309
 
310
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
311
  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."
312
+ msgstr ""
313
 
314
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
315
  msgid "GeoIP collection is disabled due to the following reasons:"
361
 
362
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
363
  msgid "Common Report Options"
364
+ msgstr ""
365
 
366
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
367
  msgid "E-mail addresses"
369
 
370
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
371
  msgid "A comma separated list of e-mail addresses to send reports to."
372
+ msgstr ""
373
 
374
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
375
  msgid "Update Reports"
376
+ msgstr ""
377
 
378
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
379
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
380
  msgid "Browscap"
381
+ msgstr ""
382
 
383
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
384
  msgid "Send a report whenever the browscap.ini is updated."
385
+ msgstr ""
386
 
387
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
388
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
389
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
390
  msgid "GeoIP"
392
 
393
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
394
  msgid "Send a report whenever the GeoIP database is updated."
395
+ msgstr ""
396
 
397
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
398
  msgid "Pruning"
399
+ msgstr ""
400
 
401
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
402
  msgid "Send a report whenever the pruning of database is run."
403
+ msgstr ""
404
 
405
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
406
  msgid "Upgrade"
407
+ msgstr ""
408
 
409
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
410
  msgid "Send a report whenever the plugin is upgraded."
411
+ msgstr ""
412
 
413
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
415
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
416
  msgid "Statistical reporting"
417
  msgstr "Informes estadísticos"
418
 
422
 
423
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
424
  msgid "Select how often to receive statistical report."
425
+ msgstr ""
426
 
427
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
428
  msgid "Send reports via"
438
 
439
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
440
  msgid "Select delivery method for statistical report."
441
+ msgstr ""
442
 
443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
444
  msgid "Note: To send SMS text messages please install the %s plugin."
454
 
455
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
456
  msgid "Enter the contents of the report."
457
+ msgstr ""
458
 
459
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
460
  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:"
461
+ msgstr ""
462
 
463
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
464
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
465
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
466
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:468
467
  msgid "User Online"
468
  msgstr "Usuarios conectados"
469
 
530
 
531
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
532
  msgid "Dashboard"
533
+ msgstr ""
534
 
535
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
536
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
537
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
538
  msgid "The following items are global to all users."
539
+ msgstr ""
540
 
541
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
542
  msgid "Disable dashboard widgets"
543
+ msgstr ""
544
 
545
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
546
  msgid "Disable the dashboard widgets."
547
+ msgstr ""
548
 
549
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
550
  msgid "Page/Post Editor"
551
+ msgstr ""
552
 
553
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
554
  msgid "Disable post/page editor widget"
555
+ msgstr ""
556
 
557
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
558
  msgid "Disable the page/post editor widget."
559
+ msgstr ""
560
 
561
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
562
  msgid "Map type"
563
  msgstr "Tipo de mapa"
564
 
565
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:397
566
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
567
  msgid "Google"
568
  msgstr "Google"
597
 
598
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
599
  msgid "Overview Widgets to Display"
600
+ msgstr ""
601
 
602
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
603
  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."
646
 
647
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
648
  msgid "Slot 7"
649
+ msgstr ""
650
 
651
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
652
  msgid "WP Statisitcs Removal"
653
+ msgstr ""
654
 
655
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
656
  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."
657
+ msgstr ""
658
 
659
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
660
  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."
661
+ msgstr ""
662
 
663
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
664
  msgid "Remove data and settings"
665
+ msgstr ""
666
 
667
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
668
  msgid "Remove"
669
+ msgstr ""
670
 
671
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
672
  msgid "Remove data and settings, this action cannot be undone."
673
+ msgstr ""
674
 
675
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
676
  msgid "General"
678
 
679
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
680
  msgid "Notifications"
681
+ msgstr ""
682
 
683
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
684
  msgid "Dashboard/Overview"
685
+ msgstr ""
686
 
687
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
688
  msgid "Access/Exclusions"
698
 
699
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
700
  msgid "Removal"
701
+ msgstr ""
702
 
703
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
704
  msgid "Update"
725
  msgstr "Una vez cada 4 semanas"
726
 
727
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
728
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
729
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:325
730
  msgid "Statistics"
731
  msgstr "Estadísticas"
732
 
812
  msgstr "Elementos"
813
 
814
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
815
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:493
816
  msgid "Yesterday visit"
817
  msgstr "Visitas ayer"
818
 
824
  msgid "Select type of search engine"
825
  msgstr "Selecciona el tipo de motor de búsqueda"
826
 
827
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
828
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
829
  msgstr "ERROR: WP Statistics ha detectado una versión no compatible de PHP, WP Statistics no funcionará sin la versión de PHP "
830
 
831
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
832
  msgid " or higher!"
833
  msgstr "o superior."
834
 
835
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
836
  msgid "Your current PHP version is"
837
+ msgstr ""
838
 
839
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:51
840
  msgid "WP Statistics has been removed, please disable and delete it."
841
+ msgstr ""
842
 
843
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
844
  msgid "WP Statistics"
845
  msgstr "Estadísticas de WP"
846
 
847
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:28
848
  msgid "Complete statistics for your WordPress site."
849
  msgstr "Estadísticas completas para su sitio de WordPress."
850
 
851
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
852
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
853
  msgstr "Usuario en línea de seguimiento en las WP Statistics no está habilitado, por favor vaya a %s y habilitarlo."
854
 
855
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
856
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
857
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
858
  msgid "setting page"
859
  msgstr "Página de configuración"
860
 
861
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
862
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
863
  msgstr "Seguimiento golpe en las WP Statistics no está habilitado, por favor vaya a %s y habilitarlo."
864
 
865
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
866
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
867
  msgstr "Visita de seguimiento en las WP Statistics no está habilitado, por favor vaya a %s y habilitarlo."
868
 
869
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
870
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
871
  msgstr "GeoIP colección no está activo, por favor vaya a %s y activar esta función."
872
 
873
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
874
  msgid "Setting page > GeoIP"
875
  msgstr "Página Configuración > GeoIP"
876
 
877
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
878
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
879
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
880
  msgid "Settings"
881
  msgstr "Configuración"
882
 
883
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
884
  msgid "Click here to visit the plugin on WordPress.org"
885
  msgstr "Haga clic aquí para visitar el plugin en WordPress.org"
886
 
887
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
888
  msgid "Visit WordPress.org page"
889
  msgstr "Visita la página de WordPress.org"
890
 
891
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
892
  msgid "Click here to rate and review this plugin on WordPress.org"
893
  msgstr "Haga clic aquí para calificar y revisar este plugin en WordPress.org"
894
 
895
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
896
  msgid "Rate this plugin"
897
  msgstr "Tasa de este plugin"
898
 
899
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:254
900
  msgid "WP Statistics - Hits"
901
  msgstr "Estadísticas de WP - Hits"
902
 
903
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:291
904
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
905
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
906
  msgid "Overview"
907
  msgstr "Resumen"
908
 
909
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
910
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
911
  msgid "Online"
912
+ msgstr ""
913
 
914
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
915
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
916
  msgid "Referrers"
917
+ msgstr ""
918
 
919
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:301
920
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
921
  msgid "Searches"
922
  msgstr "Búsquedas"
923
 
924
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
925
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
926
  msgid "Search Words"
927
  msgstr "Palabras de búsqueda"
928
 
929
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
930
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:376
931
  msgid "Top Visitors Today"
932
+ msgstr ""
933
 
934
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:306
935
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
936
  msgid "Optimization"
937
  msgstr "Optimización"
938
 
939
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:311
940
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:342
941
  msgid "Manual"
942
  msgstr "Manual"
943
 
944
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:357
945
  msgid "Site"
946
+ msgstr ""
947
 
948
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:358
949
  msgid "Options"
950
+ msgstr ""
951
 
952
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:475
953
  msgid "Today visitor"
954
  msgstr "Visitante de hoy"
955
 
956
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:481
957
  msgid "Today visit"
958
  msgstr "Visite hoy"
959
 
960
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:487
961
  msgid "Yesterday visitor"
962
  msgstr "Ayer visitante"
963
 
964
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
965
  msgid "View Stats"
966
  msgstr "Ver estadísticas"
967
 
968
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:523
969
  msgid "Download ODF file"
970
  msgstr "Descargar archivo ODF"
971
 
972
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
973
  msgid "Download HTML file"
974
  msgstr "Descargar archivo HTML"
975
 
976
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:528
977
  msgid "Manual file not found."
978
  msgstr "Manual archivo no encontrado."
979
 
980
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
981
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:706
982
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:740
983
  msgid "You do not have sufficient permissions to access this page."
984
  msgstr "No tienes permisos suficientes para acceder a esta página."
985
 
986
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:608
987
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
988
+ msgstr ""
989
 
990
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
991
  msgid "WP Statistics %s installed on"
992
+ msgstr ""
993
 
994
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
995
  msgid "Error downloading GeoIP database from: %s - %s"
1009
 
1010
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
1011
  msgid "GeoIP update on"
1012
+ msgstr ""
1013
 
1014
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
1015
  msgid "Error downloading browscap database from: %s - %s"
1021
 
1022
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
1023
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1024
+ msgstr ""
1025
 
1026
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
1027
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1028
+ msgstr ""
1029
 
1030
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
1031
  msgid "browscap already at current version!"
1033
 
1034
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
1035
  msgid "Browscap.ini update on"
1036
+ msgstr ""
1037
 
1038
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
1039
  msgid "Quick Stats"
1040
+ msgstr ""
1041
 
1042
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
1043
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
1052
 
1053
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
1054
  msgid "Today's Visitor Map"
1055
+ msgstr ""
1056
 
1057
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
1058
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
1067
  msgstr "Top 10 páginas"
1068
 
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
1070
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:31
1071
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
1072
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
1073
  msgid "Recent Visitors"
1103
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
1104
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
1105
  msgid "Top 10 Visitors Today"
1106
+ msgstr ""
1107
 
1108
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
1109
  msgid "Please reload the dashboard to display the content of this widget."
1110
+ msgstr ""
1111
 
1112
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
1113
  msgid "WP Statistics Overview"
1114
+ msgstr ""
1115
 
1116
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
1117
  msgid "This post is not yet published."
1118
+ msgstr ""
1119
 
1120
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:24
1121
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1122
  msgstr "No se puede cargar la base de datos GeoIP, asegúrese de que lo hayas descargado en la página de configuración."
1123
 
1124
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:48
1125
  msgid "Updated %s GeoIP records in the visitors database."
1126
  msgstr "Actualizado %s GeoIP registros en la base de datos de los visitantes."
1127
 
1141
 
1142
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
1143
  msgid "Database pruned on"
1144
+ msgstr ""
1145
 
1146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
1147
  msgid "Please select a value over 30 days."
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1156
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1157
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:76
1158
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1159
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
1160
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
1161
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1162
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1163
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
1183
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1184
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1185
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1186
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
1187
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
1188
  msgid "Browsers"
1189
  msgstr "Navegadores"
1190
 
1210
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1211
  msgstr "Atención: La exclusión no son actualmente establecido en grabarse, abajo los resultados pueden no reflejar estadísticas actuales!"
1212
 
1213
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
1214
  msgid "Exclusions Statistics"
1215
  msgstr "Estadísticas de exclusiones"
1216
 
1217
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1219
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1220
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1221
  msgid "10 Days"
1222
  msgstr "10 días"
1223
 
1224
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1225
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1228
  msgid "20 Days"
1229
  msgstr "20 días"
1230
 
1231
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1232
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1233
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1235
  msgid "30 Days"
1236
  msgstr "30 días"
1237
 
1238
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1239
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1240
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1241
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1242
  msgid "2 Months"
1243
  msgstr "2 meses"
1244
 
1245
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1247
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1248
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1249
  msgid "3 Months"
1250
  msgstr "3 meses"
1251
 
1252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1254
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1255
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1256
  msgid "6 Months"
1257
  msgstr "6 meses"
1258
 
1259
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:65
1260
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1261
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1263
  msgid "9 Months"
1264
  msgstr "9 meses"
1265
 
1266
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:66
1267
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1268
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1269
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1270
  msgid "1 Year"
1271
  msgstr "1 año"
1272
 
1273
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
1274
  msgid "Total Exclusions: %s"
1275
  msgstr "Total de exclusiones: %s"
1276
 
1277
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:77
1278
  msgid "Exclusions Statistical Chart"
1279
  msgstr "Tabla estadística de exclusiones"
1280
 
1281
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1282
  msgid "Excluded hits in the last"
1283
  msgstr "Excluyen golpes en los últimos"
1284
 
1285
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1286
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1287
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1288
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
1291
  msgid "days"
1292
  msgstr "días"
1293
 
1294
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:120
1295
  msgid "Number of excluded hits"
1296
  msgstr "Número de golpes excluidos"
1297
 
1321
  msgid "Visitor"
1322
  msgstr "Visitante"
1323
 
1324
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:64
1325
  msgid "Latest Search Word Statistics"
1326
  msgstr "Últimas estadísticas de la palabra de búsqueda"
1327
 
1328
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:99
1329
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
1330
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:50
1331
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1332
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1333
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
1335
  msgid "#hash#"
1336
  msgstr "#hash #"
1337
 
1338
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:104
1339
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:103
1340
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:55
1341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1343
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
1346
  msgid "Map"
1347
  msgstr "Mapa"
1348
 
1349
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1350
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1351
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1352
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1353
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1354
  msgid "Page"
1355
  msgstr "Página"
1356
 
1357
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1358
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1359
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1360
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1361
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1362
  msgid "From"
1363
  msgstr "De"
1364
 
1365
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:46
1366
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:33
1367
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1368
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1369
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1370
  msgid "All"
1371
  msgstr "Todo"
1372
 
1373
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
1374
  msgid "Search for"
1375
  msgstr "Búsqueda para"
1376
 
1377
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:65
1378
  msgid "Recent Visitor Statistics"
1379
  msgstr "Estadísticas recientes de visitante"
1380
 
1381
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
1382
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
1383
  msgid "Online Users"
1384
+ msgstr ""
1385
 
1386
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:75
1387
  msgid "Online for "
1388
+ msgstr ""
1389
 
1390
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
1391
  msgid "Page Trend for Post ID"
1410
  msgid "Number of referrals"
1411
  msgstr "Número de referencias"
1412
 
1413
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
1414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1415
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1416
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
1459
  msgstr "Top 5 página tendencias estadísticas"
1460
 
1461
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1462
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:60
1463
  msgid "Number of Hits"
1464
  msgstr "Número de visitas"
1465
 
1491
 
1492
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
1493
  msgid "Top 100 Visitors Today"
1494
+ msgstr ""
1495
 
1496
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
1497
  msgid "About WP Statistics Version %s"
1553
  msgid "Yesterday"
1554
  msgstr "Ayer"
1555
 
 
 
 
 
 
 
 
 
 
 
 
 
1556
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1557
  msgid "Daily Total"
1558
  msgstr "Total diaria"
1574
  msgstr "Tiempo: %s"
1575
 
1576
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1577
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:219
1578
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
1579
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
1580
  msgid "Hits"
1581
  msgstr "Hits"
1582
 
1583
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
1584
  msgid "IP"
1585
+ msgstr ""
1586
 
1587
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
1588
  msgid "Agent"
1589
+ msgstr ""
1590
 
1591
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
1592
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1593
  msgid "Version"
1594
+ msgstr ""
1595
 
1596
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
1597
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
1609
 
1610
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
1611
  msgid "No agent data found to remove!"
1612
+ msgstr ""
1613
 
1614
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1615
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1616
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1617
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:80
1618
  msgid "Please select the desired items."
1619
  msgstr "Por favor, seleccione los elementos deseados."
1620
 
1624
 
1625
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
1626
  msgid "No platform data found to remove!"
1627
+ msgstr ""
1628
 
1629
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
1630
  msgid "%s table data deleted successfully."
1656
 
1657
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1658
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1659
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
1660
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
1661
  msgid "Countries"
1662
  msgstr "Países"
1663
 
1728
 
1729
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
1730
  msgid "Historical Values"
1731
+ msgstr ""
1732
 
1733
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1734
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1735
+ msgstr ""
1736
 
1737
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1738
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1739
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1740
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:304
1741
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:377
1742
  msgid "Visitors"
1743
  msgstr "Visitantes"
1744
 
1745
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
1746
  msgid "Number of historical number of visitors to the site (current value is %s)."
1747
+ msgstr ""
1748
 
1749
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
1750
  msgid "Number of historical number of visits to the site (current value is %s)."
1751
+ msgstr ""
1752
 
1753
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
1754
  msgid "Update now!"
1755
+ msgstr ""
1756
 
1757
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
1758
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
1830
 
1831
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
1832
  msgid "Last Overview page memory usage"
1833
+ msgstr ""
1834
 
1835
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
1836
  msgid "Memory usage in the overview page"
1837
+ msgstr ""
1838
 
1839
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
1840
  msgid "PHP Memory Limit"
2003
 
2004
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
2005
  msgid "Browser"
2006
+ msgstr ""
2007
 
2008
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
2009
  msgid "The detected client browser."
2010
+ msgstr ""
2011
 
2012
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
2013
  msgid "The detected client browser version."
2014
+ msgstr ""
2015
 
2016
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
2017
  msgid "The detected client platform."
2018
+ msgstr ""
2019
 
2020
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
2021
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2069
 
2070
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
2071
  msgid "Historical"
2072
+ msgstr ""
2073
 
2074
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
2075
  msgid "WP Statistics V%s"
2154
 
2155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
2156
  msgid "Make sure you have access to your PHP error logs."
2157
+ msgstr ""
2158
 
2159
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
2160
  msgid "And a few things to double-check:"
2210
 
2211
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
2212
  msgid "WP Statistics Honey Pot Page"
2213
+ msgstr ""
2214
 
2215
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
2216
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2217
+ msgstr ""
2218
 
2219
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
2220
  msgid "Access Levels"
2249
  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."
2250
 
2251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
2253
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
2254
  msgid "Exclusions"
2255
  msgstr "Exclusiones"
2256
 
2309
 
2310
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
2311
  msgid "Robot visit threshold"
2312
+ msgstr ""
2313
 
2314
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
2315
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2316
+ msgstr ""
2317
 
2318
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
2319
  msgid "Excluded IP address list"
2337
 
2338
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
2339
  msgid "Use honey pot"
2340
+ msgstr ""
2341
 
2342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
2343
  msgid "Use a honey pot page to identify robots."
2344
+ msgstr ""
2345
 
2346
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
2347
  msgid "Honey pot post id"
2348
+ msgstr ""
2349
 
2350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
2351
  msgid "The post id to use for the honeypot page."
2352
+ msgstr ""
2353
 
2354
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
2355
  msgid "Create a new honey pot page"
2356
+ msgstr ""
2357
 
2358
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
2359
  msgid "GeoIP Exclusions"
2360
+ msgstr ""
2361
 
2362
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
2363
  msgid "Excluded countries list"
2364
+ msgstr ""
2365
 
2366
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
2367
  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."
2368
+ msgstr ""
2369
 
2370
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
2371
  msgid "Included countries list"
2372
+ msgstr ""
2373
 
2374
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
2375
  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."
2376
+ msgstr ""
2377
 
2378
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
2379
  msgid "Host Exclusions"
2380
+ msgstr ""
2381
 
2382
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
2383
  msgid "Excluded hosts list"
2384
+ msgstr ""
2385
 
2386
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
2387
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2388
+ msgstr ""
2389
 
2390
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
2391
  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."
2392
+ msgstr ""
2393
 
2394
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
2395
  msgid "Site URL Exclusions"
2413
 
2414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
2415
  msgid "Excluded RSS feeds"
2416
+ msgstr ""
2417
 
2418
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
2419
  msgid "Exclude the RSS feeds for registering as a hit."
2420
+ msgstr ""
2421
 
2422
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
2423
  msgid "browscap settings"
2442
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2444
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
2445
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:329
2446
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2447
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2448
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
2503
 
2504
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2505
  msgid "User online"
2506
+ msgstr "Usuario en línea"
languages/wp_statistics-fa_IR.mo CHANGED
Binary file
languages/wp_statistics-fa_IR.po CHANGED
@@ -2,17 +2,129 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-01-27 19:26-0500\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=1; plural=0;\n"
10
- "X-Generator: Poedit 1.7.4\n"
11
  "Project-Id-Version: WP Statistics\n"
12
- "POT-Creation-Date: \n"
13
- "Last-Translator: \n"
14
- "Language-Team: \n"
15
- "Language: fa_IR\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
18
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
@@ -62,8 +174,8 @@ msgstr "ضریب محاسبه هر بازدید کننده را در آمار م
62
 
63
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
64
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
65
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:295
66
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
67
  msgid "Pages"
68
  msgstr "برگه‌ها"
69
 
@@ -263,6 +375,7 @@ msgstr "برای دریافت ایمیل گزارش، آدرس ایمیل‌ها
263
  msgid "Update Reports"
264
  msgstr "به‌روز رسانی گزارش"
265
 
 
266
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
267
  msgid "Browscap"
268
  msgstr "Browscap"
@@ -271,6 +384,7 @@ msgstr "Browscap"
271
  msgid "Send a report whenever the browscap.ini is updated."
272
  msgstr "ارسال گزارش زمانیکه browscap.ini به‌روز شد."
273
 
 
274
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
275
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
276
  msgid "GeoIP"
@@ -298,7 +412,7 @@ msgstr "ارسال گزارش زمانیکه افزونه به‌روز شد."
298
 
299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
300
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
301
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
302
  msgid "Statistical reporting"
303
  msgstr "گزارش آماری"
304
 
@@ -349,7 +463,7 @@ msgstr "هر کدکوتاهی توسط وردپرس شما پشتیبانی می
349
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
351
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
352
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:464
353
  msgid "User Online"
354
  msgstr "کاربران حاضر"
355
 
@@ -448,6 +562,7 @@ msgstr "غیرفعال ابزارک در نوشته/برگه"
448
  msgid "Map type"
449
  msgstr "نوع نقشه"
450
 
 
451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
452
  msgid "Google"
453
  msgstr "گوگل"
@@ -610,8 +725,8 @@ msgid "Once Every 4 Weeks"
610
  msgstr "هر 4 هفته"
611
 
612
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
613
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:284
614
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:321
615
  msgid "Statistics"
616
  msgstr "آمار"
617
 
@@ -697,7 +812,7 @@ msgid "Items"
697
  msgstr "آیتم‌ها"
698
 
699
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
700
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:489
701
  msgid "Yesterday visit"
702
  msgstr "بازدید دیروز"
703
 
@@ -709,168 +824,168 @@ msgstr "ورودی موتور جستجو"
709
  msgid "Select type of search engine"
710
  msgstr "انتخاب نوع موتورجستجو"
711
 
712
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
713
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
714
  msgstr "خطا: افزونه آمار وردپرس نسخه پشتیبانی نشده PHP را شناسایی کرده است. افزونه بدون توابع نسخه PHP کار نمی‌کند."
715
 
716
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
717
  msgid " or higher!"
718
  msgstr "و یا بالاتر!"
719
 
720
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
721
  msgid "Your current PHP version is"
722
  msgstr "نسخه جاری PHP شما"
723
 
724
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:42
725
  msgid "WP Statistics has been removed, please disable and delete it."
726
  msgstr "افزونه آمار وردپرس حذف شد، لطفاً افزونه را غیرفعال و پاک کنید."
727
 
728
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:53
729
  msgid "WP Statistics"
730
  msgstr "آمار وردپرس"
731
 
732
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:54
733
  msgid "Complete statistics for your WordPress site."
734
  msgstr "آماری کامل برای سایت وردپرسی شما."
735
 
736
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
737
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
738
  msgstr "کاربران آنلاین در افزونه آمار وردپرس غیرفعال است لطفا به %s بروید و آن را فعال کنید."
739
 
740
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
741
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
742
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
743
  msgid "setting page"
744
  msgstr "تنظیمات صفحه"
745
 
746
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
747
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
748
  msgstr "ردیابی بازدید در افزونه آمار وردپرس فعال نیست، لطفاً به %s بروید و آن را فعال کنید."
749
 
750
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
751
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
752
  msgstr "ردیابی بازدیدکنندگاه در افزونه آمار وردپرس فعال نیست، لطفاً به %s بروید و آن را فعال کنید."
753
 
754
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
755
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
756
  msgstr "مجموعه GeoIP فعال نیست لطفا به قسمت %s بروید و این ویژگی را فعال کنید."
757
 
758
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
759
  msgid "Setting page > GeoIP"
760
  msgstr "صفحه تنظیمات > GeoIP"
761
 
762
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:191
763
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
764
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
765
  msgid "Settings"
766
  msgstr "تنظیمات"
767
 
768
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
769
  msgid "Click here to visit the plugin on WordPress.org"
770
  msgstr "برای مشاهده افزونه در Wordpress.org کلیک کنید."
771
 
772
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
773
  msgid "Visit WordPress.org page"
774
  msgstr "مشاهده برگه‌ی Wordpress.org"
775
 
776
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
777
  msgid "Click here to rate and review this plugin on WordPress.org"
778
  msgstr "برای دادن امتیاز و بررسی افزونه در Wordpress.org کلیک کنید."
779
 
780
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
781
  msgid "Rate this plugin"
782
  msgstr "امتیاز به افزونه"
783
 
784
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:250
785
  msgid "WP Statistics - Hits"
786
- msgstr "افزونه آمار وردپرس - بازدیدها"
787
 
788
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:287
789
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:324
790
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:362
791
  msgid "Overview"
792
  msgstr "مرور کلی"
793
 
794
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
795
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
796
  msgid "Online"
797
  msgstr "آنلاین"
798
 
799
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
800
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
801
  msgid "Referrers"
802
  msgstr "ارجاع‌دهنده‌ها"
803
 
804
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
805
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
806
  msgid "Searches"
807
  msgstr "جستجوها"
808
 
809
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
810
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
811
  msgid "Search Words"
812
  msgstr "کلمات جستجو شده"
813
 
814
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
815
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
816
  msgid "Top Visitors Today"
817
  msgstr "برترین بازدیدکنندگان"
818
 
819
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
820
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
821
  msgid "Optimization"
822
  msgstr "بهینه سازی"
823
 
824
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
825
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:338
826
  msgid "Manual"
827
  msgstr "راهنما"
828
 
829
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
830
  msgid "Site"
831
  msgstr "سایت"
832
 
833
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:354
834
  msgid "Options"
835
  msgstr "تنظیمات"
836
 
837
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:471
838
  msgid "Today visitor"
839
  msgstr "بازدید کننده امروز"
840
 
841
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:477
842
  msgid "Today visit"
843
  msgstr "بازدید امروز"
844
 
845
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:483
846
  msgid "Yesterday visitor"
847
  msgstr "بازدید کننده دیروز"
848
 
849
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:495
850
  msgid "View Stats"
851
  msgstr "نمایش آمار"
852
 
853
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
854
  msgid "Download ODF file"
855
  msgstr "دریافت فایل ODF"
856
 
857
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
858
  msgid "Download HTML file"
859
  msgstr "دریافت فایل HTML"
860
 
861
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
862
  msgid "Manual file not found."
863
  msgstr "راهنما یافت نشد."
864
 
865
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
866
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:702
867
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
868
  msgid "You do not have sufficient permissions to access this page."
869
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
870
 
871
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:604
872
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
873
- msgstr "جداول پلاگین را در پایگاه داده وجود ندارد! لطفا دوباره اجرا کنید٪ s را نصب از٪ s معمول."
874
 
875
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
876
  msgid "WP Statistics %s installed on"
@@ -952,7 +1067,7 @@ msgid "Top 10 Pages"
952
  msgstr "10 برگه برتر"
953
 
954
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
955
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:30
956
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
957
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
958
  msgid "Recent Visitors"
@@ -996,17 +1111,17 @@ msgstr "برای مشاهده محتوای ابزارک، صفحه را یکبا
996
 
997
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
998
  msgid "WP Statistics Overview"
999
- msgstr "افزونه آمار وردپرس در یک نگاه"
1000
 
1001
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
1002
  msgid "This post is not yet published."
1003
  msgstr "این پست هنوز منتشر نشده است."
1004
 
1005
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
1006
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1007
  msgstr "قادر به بارگزاری پایگاه‌داده GeoIP نیست، مطمئن شوید در برگه‌ی تنظیمات دریافت می‌شود."
1008
 
1009
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:50
1010
  msgid "Updated %s GeoIP records in the visitors database."
1011
  msgstr "%s رکورد GeoIP در پایگاه داده به‌روز شد."
1012
 
@@ -1039,10 +1154,10 @@ msgstr "آمار مرورگرها"
1039
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1040
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1041
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1042
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
1043
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1044
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
1045
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:60
1046
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1047
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1048
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
@@ -1068,8 +1183,8 @@ msgstr "برای باز و بستن کلیک کنید"
1068
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1070
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1071
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
1072
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:363
1073
  msgid "Browsers"
1074
  msgstr "مرورگرها"
1075
 
@@ -1095,88 +1210,88 @@ msgstr "نسخه %s"
1095
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1096
  msgstr "توجه: در حال حاظر استثنائات برای رکوردها تنظیم نشده‌اند. نتایج زیر ممکن است آمار فعلی را منعکس نکند."
1097
 
1098
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
1099
  msgid "Exclusions Statistics"
1100
  msgstr "استثنائات آمار"
1101
 
1102
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
1103
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1104
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1105
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1106
  msgid "10 Days"
1107
- msgstr "10 روز"
1108
 
1109
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
1110
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1111
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1112
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1113
  msgid "20 Days"
1114
- msgstr "20 روز"
1115
 
1116
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1117
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1118
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1119
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1120
  msgid "30 Days"
1121
- msgstr "30 روز"
1122
 
1123
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1124
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1125
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1127
  msgid "2 Months"
1128
- msgstr "2 ماهه"
1129
 
1130
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1131
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1132
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1133
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1134
  msgid "3 Months"
1135
- msgstr "3 ماهه"
1136
 
1137
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1138
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1139
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1140
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1141
  msgid "6 Months"
1142
- msgstr "6 ماهه"
1143
 
1144
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1145
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1147
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1148
  msgid "9 Months"
1149
- msgstr "9 ماهه"
1150
 
1151
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1152
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1153
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1155
  msgid "1 Year"
1156
- msgstr "1 ساله"
1157
 
1158
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
1159
  msgid "Total Exclusions: %s"
1160
  msgstr "کل استثنائات %s"
1161
 
1162
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
1163
  msgid "Exclusions Statistical Chart"
1164
  msgstr "نمودار آمار استثنائات"
1165
 
1166
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1167
  msgid "Excluded hits in the last"
1168
  msgstr "بازدید آخرین استثنائات"
1169
 
1170
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1171
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1172
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1173
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
1174
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
1175
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
1176
  msgid "days"
1177
- msgstr "روز"
1178
 
1179
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:118
1180
  msgid "Number of excluded hits"
1181
  msgstr "تعداد بازدید استثنائات"
1182
 
@@ -1187,7 +1302,7 @@ msgstr "نمودار آمار بازدیدها"
1187
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1188
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
1189
  msgid "Hits in the last"
1190
- msgstr "آخرین بازدیدها"
1191
 
1192
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:81
1193
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:72
@@ -1206,13 +1321,13 @@ msgstr "بازدید"
1206
  msgid "Visitor"
1207
  msgstr "بازدیدکننده"
1208
 
1209
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:62
1210
  msgid "Latest Search Word Statistics"
1211
  msgstr "آخرین آمار کلمات جستجو شده"
1212
 
1213
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:97
1214
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
1215
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:48
1216
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1217
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
@@ -1220,9 +1335,9 @@ msgstr "آخرین آمار کلمات جستجو شده"
1220
  msgid "#hash#"
1221
  msgstr "#hash#"
1222
 
1223
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:102
1224
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:102
1225
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:53
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1228
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
@@ -1231,34 +1346,35 @@ msgstr "#hash#"
1231
  msgid "Map"
1232
  msgstr "نقشه"
1233
 
1234
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1235
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1236
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1237
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1238
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1239
  msgid "Page"
1240
  msgstr "صفحه"
1241
 
1242
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1243
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1244
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1245
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1247
  msgid "From"
1248
  msgstr "از"
1249
 
1250
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
 
1251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1252
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1254
  msgid "All"
1255
  msgstr "همه"
1256
 
1257
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
1258
  msgid "Search for"
1259
  msgstr "جستجو برای"
1260
 
1261
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
1262
  msgid "Recent Visitor Statistics"
1263
  msgstr "آخرین آمار بازدیدکنندگان"
1264
 
@@ -1267,7 +1383,7 @@ msgstr "آخرین آمار بازدیدکنندگان"
1267
  msgid "Online Users"
1268
  msgstr "کاربران حاضر"
1269
 
1270
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:73
1271
  msgid "Online for "
1272
  msgstr "آنلاین شده در"
1273
 
@@ -1294,6 +1410,7 @@ msgstr "آخرین ورودی‌‌ها از موتورهای جستجوگر"
1294
  msgid "Number of referrals"
1295
  msgstr "تعداد ورودی‌ها"
1296
 
 
1297
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1298
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
@@ -1342,7 +1459,7 @@ msgid "Top 5 Page Trending Stats"
1342
  msgstr "برترین بازدید 5 برگه"
1343
 
1344
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1345
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:58
1346
  msgid "Number of Hits"
1347
  msgstr "تعداد بازدید"
1348
 
@@ -1436,21 +1553,9 @@ msgstr "امروز"
1436
  msgid "Yesterday"
1437
  msgstr "دیروز"
1438
 
1439
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
1440
- msgid "Week"
1441
- msgstr "هفته"
1442
-
1443
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
1444
- msgid "Month"
1445
- msgstr "ماه"
1446
-
1447
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
1448
- msgid "Year"
1449
- msgstr "سال"
1450
-
1451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1452
  msgid "Daily Total"
1453
- msgstr "کل روزانه‌ها"
1454
 
1455
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
1456
  msgid "Current Time and Date"
@@ -1469,9 +1574,9 @@ msgid "Time: %s"
1469
  msgstr "زمان: %s"
1470
 
1471
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1472
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:215
1473
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:293
1474
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
1475
  msgid "Hits"
1476
  msgstr "بازدیدها"
1477
 
@@ -1509,7 +1614,7 @@ msgstr "داده‌های مرورگر برای حذف شدن یافت نشد!"
1509
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1510
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1511
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1512
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
1513
  msgid "Please select the desired items."
1514
  msgstr "لطفا موارد مورد نظر را انتخاب کنید."
1515
 
@@ -1551,8 +1656,8 @@ msgstr "شاخص پایگاه‌داده"
1551
 
1552
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1553
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1554
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:290
1555
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:364
1556
  msgid "Countries"
1557
  msgstr "کشورها"
1558
 
@@ -1632,8 +1737,8 @@ msgstr "نکته: همانطوری که پایگاه‌داده را پاک سا
1632
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1633
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1634
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1635
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
1636
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
1637
  msgid "Visitors"
1638
  msgstr "بازدیدکننده‌گان"
1639
 
@@ -1944,7 +2049,7 @@ msgstr "آدرس آی‌پی با مقادیر خش جایگزینه می‌شو
1944
 
1945
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:51
1946
  msgid "Install routine complete."
1947
- msgstr "روال کامل نصب کنید."
1948
 
1949
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:146
1950
  msgid "Resources/Information"
@@ -2025,7 +2130,7 @@ msgstr "اگر با افزونه آمار وردپرس مشکل دارید، م
2025
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
2026
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
2027
  msgid "Have you read the %s?"
2028
- msgstr "شما باید %s را بخوانید؟"
2029
 
2030
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
2031
  msgid "FAQs"
@@ -2037,7 +2142,7 @@ msgstr "کتابچه راهنمای کاربر"
2037
 
2038
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
2039
  msgid "Have you search the %s for a similar issue?"
2040
- msgstr "جستجو در %s برای موضوع مشابه دارید؟"
2041
 
2042
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
2043
  msgid "support forum"
@@ -2144,8 +2249,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2144
  msgstr "اگر نیاز به راه‌حل‌های بیشتری در رابطه با نقش‌های کاربری وردپرس داشتید، نگاهی به افزونه %s بیندازید."
2145
 
2146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2147
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
2148
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
2149
  msgid "Exclusions"
2150
  msgstr "استثنائات"
2151
 
@@ -2337,6 +2442,7 @@ msgstr "استفاده از browscap"
2337
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2338
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2339
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
 
2340
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
@@ -2397,4 +2503,4 @@ msgstr "کاربران حاضر"
2397
 
2398
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2399
  msgid "User online"
2400
- msgstr "کاربران حاضر"
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-03-10 20:36:09+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=1; plural=0;\n"
10
+ "X-Generator: GlotPress/1.0-alpha-1000\n"
11
  "Project-Id-Version: WP Statistics\n"
12
+
13
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:330
14
+ msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
15
+ msgstr "اگر نمیخواهید افزونه برای شما ترجمه شود و از زبان پیش‌فرض انگلیسی استفاده شود. (نیازمند بارگزاری صفحه است)"
16
+
17
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:324
18
+ msgid "Force English"
19
+ msgstr "اجبار به انگلیسی"
20
+
21
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
22
+ msgid "Languages"
23
+ msgstr "زبان‌ها"
24
+
25
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
26
+ 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."
27
+ msgstr "نکته: این گزینه نمی‌تواند به آدرس های طولانی (هرچیزی پس از ؟) رسیدگی کند، تنها نام اسکریپت را وارد کنید. محتوا‌های کمتر از 2 کارکتر نادیده گرفته می‌شود."
28
+
29
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:269
30
+ msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
31
+ msgstr "یک لیست از آدرس‌های محلی (به‌عنوان مثال: /wordpress/about، هر یک خط) که از مجموعه آماری استثنا باشند."
32
+
33
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:266
34
+ msgid "Excluded URLs list"
35
+ msgstr "لیست استثنائات آدرس‌ها"
36
+
37
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
38
+ msgid "Excluded URL"
39
+ msgstr "آدرس‌های محاسبه نشده"
40
+
41
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
42
+ msgid "Last 365 Days (Year)"
43
+ msgstr "365 روز گذشته (سال)"
44
+
45
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
46
+ msgid "Last 30 Days (Month)"
47
+ msgstr "30 روز گذشته (ماه)"
48
+
49
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
50
+ msgid "Last 7 Days (Week)"
51
+ msgstr "7 روز گذشته (هفته)"
52
+
53
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
54
+ msgid "Yahoo!"
55
+ msgstr "یاهو!"
56
+
57
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:399
58
+ msgid "Yandex"
59
+ msgstr "یاندکس"
60
+
61
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
62
+ msgid "clearch.org"
63
+ msgstr "clearch.org"
64
+
65
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
66
+ msgid "DuckDuckGo"
67
+ msgstr "داک‌داک‌گو"
68
+
69
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:394
70
+ msgid "Bing"
71
+ msgstr "بینگ"
72
+
73
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:393
74
+ msgid "Baidu"
75
+ msgstr "بایدو"
76
+
77
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:69
78
+ msgid "Hits in the last 20 days"
79
+ msgstr "آخرین بازدیدها در 20 روز گذشته"
80
+
81
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
82
+ msgid "Feeds"
83
+ msgstr "خوراک‌ها"
84
+
85
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
86
+ msgid "User Role"
87
+ msgstr "نقش کاربری"
88
+
89
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
90
+ msgid "Login Page"
91
+ msgstr "صفحه ورود"
92
+
93
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
94
+ msgid "Admin Page"
95
+ msgstr "صفحه مدیریت"
96
+
97
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
98
+ msgid "Self Referral"
99
+ msgstr "ورودی‌های خودی"
100
+
101
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
102
+ msgid "IP Match"
103
+ msgstr "تطبیق آی‌پی"
104
+
105
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
106
+ msgid "Robot"
107
+ msgstr "روبات"
108
+
109
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:100
110
+ msgid "Currently there are no users online in the site."
111
+ msgstr "در حال حاضر هیچ کاربری در سایت آنلاین نیست."
112
+
113
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
114
+ msgid "Robot Threshold"
115
+ msgstr "روبات"
116
+
117
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
118
+ msgid "Honey Pot"
119
+ msgstr "Honey Pot"
120
+
121
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:6
122
+ msgid "Page Trending Stats"
123
+ msgstr "روند آمار برگه‌ها"
124
+
125
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
126
+ msgid "Hostname"
127
+ msgstr "نام میزبان"
128
 
129
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
130
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
174
 
175
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
176
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
177
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
178
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
179
  msgid "Pages"
180
  msgstr "برگه‌ها"
181
 
375
  msgid "Update Reports"
376
  msgstr "به‌روز رسانی گزارش"
377
 
378
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
379
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
380
  msgid "Browscap"
381
  msgstr "Browscap"
384
  msgid "Send a report whenever the browscap.ini is updated."
385
  msgstr "ارسال گزارش زمانیکه browscap.ini به‌روز شد."
386
 
387
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
388
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
389
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
390
  msgid "GeoIP"
412
 
413
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
415
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
416
  msgid "Statistical reporting"
417
  msgstr "گزارش آماری"
418
 
463
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
464
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
465
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
466
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:468
467
  msgid "User Online"
468
  msgstr "کاربران حاضر"
469
 
562
  msgid "Map type"
563
  msgstr "نوع نقشه"
564
 
565
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:397
566
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
567
  msgid "Google"
568
  msgstr "گوگل"
725
  msgstr "هر 4 هفته"
726
 
727
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
728
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
729
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:325
730
  msgid "Statistics"
731
  msgstr "آمار"
732
 
812
  msgstr "آیتم‌ها"
813
 
814
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
815
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:493
816
  msgid "Yesterday visit"
817
  msgstr "بازدید دیروز"
818
 
824
  msgid "Select type of search engine"
825
  msgstr "انتخاب نوع موتورجستجو"
826
 
827
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
828
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
829
  msgstr "خطا: افزونه آمار وردپرس نسخه پشتیبانی نشده PHP را شناسایی کرده است. افزونه بدون توابع نسخه PHP کار نمی‌کند."
830
 
831
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
832
  msgid " or higher!"
833
  msgstr "و یا بالاتر!"
834
 
835
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
836
  msgid "Your current PHP version is"
837
  msgstr "نسخه جاری PHP شما"
838
 
839
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:51
840
  msgid "WP Statistics has been removed, please disable and delete it."
841
  msgstr "افزونه آمار وردپرس حذف شد، لطفاً افزونه را غیرفعال و پاک کنید."
842
 
843
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
844
  msgid "WP Statistics"
845
  msgstr "آمار وردپرس"
846
 
847
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:28
848
  msgid "Complete statistics for your WordPress site."
849
  msgstr "آماری کامل برای سایت وردپرسی شما."
850
 
851
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
852
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
853
  msgstr "کاربران آنلاین در افزونه آمار وردپرس غیرفعال است لطفا به %s بروید و آن را فعال کنید."
854
 
855
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
856
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
857
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
858
  msgid "setting page"
859
  msgstr "تنظیمات صفحه"
860
 
861
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
862
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
863
  msgstr "ردیابی بازدید در افزونه آمار وردپرس فعال نیست، لطفاً به %s بروید و آن را فعال کنید."
864
 
865
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
866
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
867
  msgstr "ردیابی بازدیدکنندگاه در افزونه آمار وردپرس فعال نیست، لطفاً به %s بروید و آن را فعال کنید."
868
 
869
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
870
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
871
  msgstr "مجموعه GeoIP فعال نیست لطفا به قسمت %s بروید و این ویژگی را فعال کنید."
872
 
873
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
874
  msgid "Setting page > GeoIP"
875
  msgstr "صفحه تنظیمات > GeoIP"
876
 
877
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
878
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
879
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
880
  msgid "Settings"
881
  msgstr "تنظیمات"
882
 
883
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
884
  msgid "Click here to visit the plugin on WordPress.org"
885
  msgstr "برای مشاهده افزونه در Wordpress.org کلیک کنید."
886
 
887
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
888
  msgid "Visit WordPress.org page"
889
  msgstr "مشاهده برگه‌ی Wordpress.org"
890
 
891
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
892
  msgid "Click here to rate and review this plugin on WordPress.org"
893
  msgstr "برای دادن امتیاز و بررسی افزونه در Wordpress.org کلیک کنید."
894
 
895
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
896
  msgid "Rate this plugin"
897
  msgstr "امتیاز به افزونه"
898
 
899
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:254
900
  msgid "WP Statistics - Hits"
901
+ msgstr "آمار وردپرس - بازدید"
902
 
903
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:291
904
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
905
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
906
  msgid "Overview"
907
  msgstr "مرور کلی"
908
 
909
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
910
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
911
  msgid "Online"
912
  msgstr "آنلاین"
913
 
914
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
915
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
916
  msgid "Referrers"
917
  msgstr "ارجاع‌دهنده‌ها"
918
 
919
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:301
920
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
921
  msgid "Searches"
922
  msgstr "جستجوها"
923
 
924
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
925
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
926
  msgid "Search Words"
927
  msgstr "کلمات جستجو شده"
928
 
929
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
930
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:376
931
  msgid "Top Visitors Today"
932
  msgstr "برترین بازدیدکنندگان"
933
 
934
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:306
935
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
936
  msgid "Optimization"
937
  msgstr "بهینه سازی"
938
 
939
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:311
940
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:342
941
  msgid "Manual"
942
  msgstr "راهنما"
943
 
944
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:357
945
  msgid "Site"
946
  msgstr "سایت"
947
 
948
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:358
949
  msgid "Options"
950
  msgstr "تنظیمات"
951
 
952
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:475
953
  msgid "Today visitor"
954
  msgstr "بازدید کننده امروز"
955
 
956
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:481
957
  msgid "Today visit"
958
  msgstr "بازدید امروز"
959
 
960
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:487
961
  msgid "Yesterday visitor"
962
  msgstr "بازدید کننده دیروز"
963
 
964
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
965
  msgid "View Stats"
966
  msgstr "نمایش آمار"
967
 
968
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:523
969
  msgid "Download ODF file"
970
  msgstr "دریافت فایل ODF"
971
 
972
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
973
  msgid "Download HTML file"
974
  msgstr "دریافت فایل HTML"
975
 
976
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:528
977
  msgid "Manual file not found."
978
  msgstr "راهنما یافت نشد."
979
 
980
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
981
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:706
982
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:740
983
  msgid "You do not have sufficient permissions to access this page."
984
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
985
 
986
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:608
987
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
988
+ msgstr "جدول‌های افزونه در پایگاه‌داده وجود ندارند! لطفاً %s را اجرا کنید برای نصب %s."
989
 
990
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
991
  msgid "WP Statistics %s installed on"
1067
  msgstr "10 برگه برتر"
1068
 
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
1070
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:31
1071
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
1072
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
1073
  msgid "Recent Visitors"
1111
 
1112
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
1113
  msgid "WP Statistics Overview"
1114
+ msgstr " آمار وردپرس در یک نگاه"
1115
 
1116
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
1117
  msgid "This post is not yet published."
1118
  msgstr "این پست هنوز منتشر نشده است."
1119
 
1120
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:24
1121
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1122
  msgstr "قادر به بارگزاری پایگاه‌داده GeoIP نیست، مطمئن شوید در برگه‌ی تنظیمات دریافت می‌شود."
1123
 
1124
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:48
1125
  msgid "Updated %s GeoIP records in the visitors database."
1126
  msgstr "%s رکورد GeoIP در پایگاه داده به‌روز شد."
1127
 
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1156
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1157
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:76
1158
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1159
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
1160
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
1161
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1162
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1163
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
1183
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1184
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1185
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1186
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
1187
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
1188
  msgid "Browsers"
1189
  msgstr "مرورگرها"
1190
 
1210
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1211
  msgstr "توجه: در حال حاظر استثنائات برای رکوردها تنظیم نشده‌اند. نتایج زیر ممکن است آمار فعلی را منعکس نکند."
1212
 
1213
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
1214
  msgid "Exclusions Statistics"
1215
  msgstr "استثنائات آمار"
1216
 
1217
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1219
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1220
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1221
  msgid "10 Days"
1222
+ msgstr "10 روز گذشته"
1223
 
1224
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1225
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1228
  msgid "20 Days"
1229
+ msgstr "20 روز گذشته"
1230
 
1231
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1232
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1233
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1235
  msgid "30 Days"
1236
+ msgstr "30 روز گذشته"
1237
 
1238
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1239
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1240
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1241
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1242
  msgid "2 Months"
1243
+ msgstr "2 ماهه گذشته"
1244
 
1245
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1247
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1248
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1249
  msgid "3 Months"
1250
+ msgstr "3 ماهه گذشته"
1251
 
1252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1254
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1255
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1256
  msgid "6 Months"
1257
+ msgstr "6 ماهه گذشته"
1258
 
1259
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:65
1260
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1261
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1263
  msgid "9 Months"
1264
+ msgstr "9 ماهه گذشته"
1265
 
1266
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:66
1267
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1268
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1269
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1270
  msgid "1 Year"
1271
+ msgstr "1 ساله گذشته"
1272
 
1273
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
1274
  msgid "Total Exclusions: %s"
1275
  msgstr "کل استثنائات %s"
1276
 
1277
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:77
1278
  msgid "Exclusions Statistical Chart"
1279
  msgstr "نمودار آمار استثنائات"
1280
 
1281
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1282
  msgid "Excluded hits in the last"
1283
  msgstr "بازدید آخرین استثنائات"
1284
 
1285
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1286
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1287
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1288
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
1289
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:55
1290
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:151
1291
  msgid "days"
1292
+ msgstr "روز گذشته"
1293
 
1294
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:120
1295
  msgid "Number of excluded hits"
1296
  msgstr "تعداد بازدید استثنائات"
1297
 
1302
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1303
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
1304
  msgid "Hits in the last"
1305
+ msgstr "آخرین بازدیدها در"
1306
 
1307
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:81
1308
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:72
1321
  msgid "Visitor"
1322
  msgstr "بازدیدکننده"
1323
 
1324
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:64
1325
  msgid "Latest Search Word Statistics"
1326
  msgstr "آخرین آمار کلمات جستجو شده"
1327
 
1328
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:99
1329
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
1330
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:50
1331
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1332
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1333
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
1335
  msgid "#hash#"
1336
  msgstr "#hash#"
1337
 
1338
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:104
1339
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:103
1340
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:55
1341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1343
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
1346
  msgid "Map"
1347
  msgstr "نقشه"
1348
 
1349
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1350
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1351
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1352
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1353
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1354
  msgid "Page"
1355
  msgstr "صفحه"
1356
 
1357
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1358
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1359
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1360
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1361
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1362
  msgid "From"
1363
  msgstr "از"
1364
 
1365
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:46
1366
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:33
1367
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1368
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1369
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1370
  msgid "All"
1371
  msgstr "همه"
1372
 
1373
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
1374
  msgid "Search for"
1375
  msgstr "جستجو برای"
1376
 
1377
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:65
1378
  msgid "Recent Visitor Statistics"
1379
  msgstr "آخرین آمار بازدیدکنندگان"
1380
 
1383
  msgid "Online Users"
1384
  msgstr "کاربران حاضر"
1385
 
1386
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:75
1387
  msgid "Online for "
1388
  msgstr "آنلاین شده در"
1389
 
1410
  msgid "Number of referrals"
1411
  msgstr "تعداد ورودی‌ها"
1412
 
1413
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
1414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1415
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1416
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
1459
  msgstr "برترین بازدید 5 برگه"
1460
 
1461
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1462
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:60
1463
  msgid "Number of Hits"
1464
  msgstr "تعداد بازدید"
1465
 
1553
  msgid "Yesterday"
1554
  msgstr "دیروز"
1555
 
 
 
 
 
 
 
 
 
 
 
 
 
1556
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1557
  msgid "Daily Total"
1558
+ msgstr "کل امروز"
1559
 
1560
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:117
1561
  msgid "Current Time and Date"
1574
  msgstr "زمان: %s"
1575
 
1576
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1577
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:219
1578
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
1579
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
1580
  msgid "Hits"
1581
  msgstr "بازدیدها"
1582
 
1614
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1615
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1616
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1617
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:80
1618
  msgid "Please select the desired items."
1619
  msgstr "لطفا موارد مورد نظر را انتخاب کنید."
1620
 
1656
 
1657
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1658
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1659
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
1660
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
1661
  msgid "Countries"
1662
  msgstr "کشورها"
1663
 
1737
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1738
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1739
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1740
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:304
1741
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:377
1742
  msgid "Visitors"
1743
  msgstr "بازدیدکننده‌گان"
1744
 
2049
 
2050
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:51
2051
  msgid "Install routine complete."
2052
+ msgstr "نصب کامل شد."
2053
 
2054
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:146
2055
  msgid "Resources/Information"
2130
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
2131
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:53
2132
  msgid "Have you read the %s?"
2133
+ msgstr "آیا شما %s را خونده‌اید؟"
2134
 
2135
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:52
2136
  msgid "FAQs"
2142
 
2143
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
2144
  msgid "Have you search the %s for a similar issue?"
2145
+ msgstr "در %s برای موضوع‌های مشابه جستجو کرده‌اید؟"
2146
 
2147
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:54
2148
  msgid "support forum"
2249
  msgstr "اگر نیاز به راه‌حل‌های بیشتری در رابطه با نقش‌های کاربری وردپرس داشتید، نگاهی به افزونه %s بیندازید."
2250
 
2251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
2253
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
2254
  msgid "Exclusions"
2255
  msgstr "استثنائات"
2256
 
2442
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2444
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
2445
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:329
2446
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2447
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2448
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
2503
 
2504
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2505
  msgid "User online"
2506
+ msgstr "کاربران حاضر"
languages/wp_statistics-fr_FR.mo CHANGED
Binary file
languages/wp_statistics-fr_FR.po CHANGED
@@ -2,17 +2,129 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-01-27 19:27-0500\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n > 1;\n"
10
- "X-Generator: Poedit 1.7.4\n"
11
  "Project-Id-Version: WP Statistics\n"
12
- "POT-Creation-Date: \n"
13
- "Last-Translator: \n"
14
- "Language-Team: \n"
15
- "Language: fr_FR\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
18
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
@@ -62,8 +174,8 @@ msgstr "Pour chaque visite tenir compte de plusieurs hits. Actuellement %s."
62
 
63
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
64
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
65
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:295
66
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
67
  msgid "Pages"
68
  msgstr "Pages"
69
 
@@ -263,6 +375,7 @@ msgstr ".Une virgule sépare une liste d'adresses e-mails auxquelles envoyer les
263
  msgid "Update Reports"
264
  msgstr "Actualiser les rapports"
265
 
 
266
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
267
  msgid "Browscap"
268
  msgstr "limite d'exploration"
@@ -271,6 +384,7 @@ msgstr "limite d'exploration"
271
  msgid "Send a report whenever the browscap.ini is updated."
272
  msgstr ".envoyer un rapport quand browscap.ini est actualisé"
273
 
 
274
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
275
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
276
  msgid "GeoIP"
@@ -298,7 +412,7 @@ msgstr ".Envoyer un rapport si le plugin est mis à jour"
298
 
299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
300
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
301
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
302
  msgid "Statistical reporting"
303
  msgstr "Rapports statistiques"
304
 
@@ -349,7 +463,7 @@ msgstr "N'importe quel code courtsupporté par votre installation de Wordpress,
349
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
351
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
352
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:464
353
  msgid "User Online"
354
  msgstr "Utilisateur en ligne"
355
 
@@ -448,6 +562,7 @@ msgstr ".Désactive le gadget de l'éditeur de page/article"
448
  msgid "Map type"
449
  msgstr "Type de carte"
450
 
 
451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
452
  msgid "Google"
453
  msgstr "Google"
@@ -610,8 +725,8 @@ msgid "Once Every 4 Weeks"
610
  msgstr "Une fois toutes les 4 semaines"
611
 
612
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
613
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:284
614
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:321
615
  msgid "Statistics"
616
  msgstr "Statistiques"
617
 
@@ -697,7 +812,7 @@ msgid "Items"
697
  msgstr "Éléments"
698
 
699
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
700
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:489
701
  msgid "Yesterday visit"
702
  msgstr "Visite hier"
703
 
@@ -709,166 +824,166 @@ msgstr "Moteur de recherche visée"
709
  msgid "Select type of search engine"
710
  msgstr "Sélectionnez le type de moteur de recherche"
711
 
712
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
713
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
714
  msgstr "ERREUR : WP Statistics a détecté une version non prise en charge de PHP, WP Statistics ne fonctionnera pas sans la Version de PHP "
715
 
716
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
717
  msgid " or higher!"
718
  msgstr "ou supérieur !"
719
 
720
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
721
  msgid "Your current PHP version is"
722
  msgstr "Votre version PHP actuelle est "
723
 
724
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:42
725
  msgid "WP Statistics has been removed, please disable and delete it."
726
  msgstr ".WP Statistics a été désinstallé. Merci de le désactiver et de le supprimer"
727
 
728
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:53
729
  msgid "WP Statistics"
730
  msgstr "WP Statistics"
731
 
732
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:54
733
  msgid "Complete statistics for your WordPress site."
734
  msgstr "Statistiques complètes pour votre site WordPress."
735
 
736
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
737
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
738
  msgstr "Utilisation en ligne de suivi dans les WP Statistics n'est pas activée, rendez-vous sur %s et activez-le."
739
 
740
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
741
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
742
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
743
  msgid "setting page"
744
  msgstr "mise en page"
745
 
746
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
747
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
748
  msgstr "Succès suivi dans les WP Statistics n'est pas activé, rendez-vous sur %s et activez-le."
749
 
750
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
751
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
752
  msgstr "Visiteur de suivi dans les WP Statistics n'est pas activée, rendez-vous sur %s et activez-le."
753
 
754
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
755
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
756
  msgstr "GeoIP collection n'est pas active, s'il vous plaît aller à %s et activer cette fonctionnalité."
757
 
758
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
759
  msgid "Setting page > GeoIP"
760
  msgstr "Mise en page > GeoIP"
761
 
762
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:191
763
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
764
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
765
  msgid "Settings"
766
  msgstr "Paramètres"
767
 
768
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
769
  msgid "Click here to visit the plugin on WordPress.org"
770
  msgstr "Cliquez ici pour visiter le plugin sur WordPress.org"
771
 
772
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
773
  msgid "Visit WordPress.org page"
774
  msgstr "Visitez la page de WordPress.org"
775
 
776
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
777
  msgid "Click here to rate and review this plugin on WordPress.org"
778
  msgstr "Cliquez ici pour évaluer et revoir ce plugin sur WordPress.org"
779
 
780
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
781
  msgid "Rate this plugin"
782
  msgstr "Noter ce plugin"
783
 
784
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:250
785
  msgid "WP Statistics - Hits"
786
  msgstr "WP Statistics - Hits"
787
 
788
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:287
789
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:324
790
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:362
791
  msgid "Overview"
792
  msgstr "Vue d'ensemble"
793
 
794
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
795
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
796
  msgid "Online"
797
  msgstr "En ligne"
798
 
799
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
800
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
801
  msgid "Referrers"
802
  msgstr "Référents"
803
 
804
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
805
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
806
  msgid "Searches"
807
  msgstr "Recherches"
808
 
809
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
810
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
811
  msgid "Search Words"
812
  msgstr "Recherche par mots"
813
 
814
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
815
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
816
  msgid "Top Visitors Today"
817
  msgstr "Top des visiteurs du jour"
818
 
819
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
820
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
821
  msgid "Optimization"
822
  msgstr "Optimisation"
823
 
824
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
825
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:338
826
  msgid "Manual"
827
  msgstr "Manuelle"
828
 
829
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
830
  msgid "Site"
831
  msgstr "Site"
832
 
833
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:354
834
  msgid "Options"
835
  msgstr "Options"
836
 
837
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:471
838
  msgid "Today visitor"
839
  msgstr "Visiteur aujourd'hui"
840
 
841
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:477
842
  msgid "Today visit"
843
  msgstr "Aujourd'hui, visiter"
844
 
845
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:483
846
  msgid "Yesterday visitor"
847
  msgstr "Hier le visiteur"
848
 
849
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:495
850
  msgid "View Stats"
851
  msgstr "Voir ses Stats"
852
 
853
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
854
  msgid "Download ODF file"
855
  msgstr "Télécharger fichier ODF"
856
 
857
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
858
  msgid "Download HTML file"
859
  msgstr "Télécharger le fichier HTML"
860
 
861
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
862
  msgid "Manual file not found."
863
  msgstr "Manuel fichier non trouvé."
864
 
865
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
866
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:702
867
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
868
  msgid "You do not have sufficient permissions to access this page."
869
  msgstr "Vous n'avez pas les autorisations suffisantes pour accéder à cette page."
870
 
871
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:604
872
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
873
  msgstr "La table du plugin n'existe pas dans la base de données ! Merci de relancer la %s installation de la routine %s"
874
 
@@ -952,7 +1067,7 @@ msgid "Top 10 Pages"
952
  msgstr "Top 10 Pages"
953
 
954
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
955
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:30
956
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
957
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
958
  msgid "Recent Visitors"
@@ -1002,11 +1117,11 @@ msgstr "Vue globale de WP Statistics"
1002
  msgid "This post is not yet published."
1003
  msgstr ".Cet article n'est pas encore publié"
1004
 
1005
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
1006
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1007
  msgstr "Impossible de charger la base de données GeoIP, assurez-vous que vous avez téléchargé dans la page Paramètres."
1008
 
1009
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:50
1010
  msgid "Updated %s GeoIP records in the visitors database."
1011
  msgstr "Mise à jour de %s GeoIP enregistrements dans la base de données de visiteurs."
1012
 
@@ -1039,10 +1154,10 @@ msgstr "Statistiques de navigateur"
1039
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1040
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1041
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1042
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
1043
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1044
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
1045
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:60
1046
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1047
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1048
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
@@ -1068,8 +1183,8 @@ msgstr "Cliquez ici pour activer/désactiver"
1068
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1070
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1071
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
1072
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:363
1073
  msgid "Browsers"
1074
  msgstr "Navigateurs"
1075
 
@@ -1095,79 +1210,79 @@ msgstr "version %s"
1095
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1096
  msgstr "ATTENTION : Exclusion ne sont pas actuellement définis pour être enregistré, les résultats ci-dessous peuvent ne pas refléter les statistiques actuelles !"
1097
 
1098
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
1099
  msgid "Exclusions Statistics"
1100
  msgstr "Statistiques d'exclusions"
1101
 
1102
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
1103
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1104
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1105
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1106
  msgid "10 Days"
1107
  msgstr "10 jours"
1108
 
1109
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
1110
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1111
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1112
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1113
  msgid "20 Days"
1114
  msgstr "20 jours"
1115
 
1116
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1117
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1118
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1119
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1120
  msgid "30 Days"
1121
  msgstr "30 jours"
1122
 
1123
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1124
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1125
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1127
  msgid "2 Months"
1128
  msgstr "2 mois"
1129
 
1130
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1131
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1132
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1133
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1134
  msgid "3 Months"
1135
  msgstr "3 mois"
1136
 
1137
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1138
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1139
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1140
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1141
  msgid "6 Months"
1142
  msgstr "6 mois"
1143
 
1144
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1145
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1147
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1148
  msgid "9 Months"
1149
  msgstr "9 mois"
1150
 
1151
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1152
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1153
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1155
  msgid "1 Year"
1156
  msgstr "1 an"
1157
 
1158
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
1159
  msgid "Total Exclusions: %s"
1160
  msgstr "Total des Exclusions : %s"
1161
 
1162
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
1163
  msgid "Exclusions Statistical Chart"
1164
  msgstr "Exclusions graphique statistique"
1165
 
1166
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1167
  msgid "Excluded hits in the last"
1168
  msgstr "Exclu hits dans le dernier"
1169
 
1170
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1171
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1172
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1173
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
@@ -1176,7 +1291,7 @@ msgstr "Exclu hits dans le dernier"
1176
  msgid "days"
1177
  msgstr "jours"
1178
 
1179
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:118
1180
  msgid "Number of excluded hits"
1181
  msgstr "Nombre de visites exclus"
1182
 
@@ -1206,13 +1321,13 @@ msgstr "Visite"
1206
  msgid "Visitor"
1207
  msgstr "Visiteur"
1208
 
1209
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:62
1210
  msgid "Latest Search Word Statistics"
1211
  msgstr "Recherche mot statistiques les plus récentes"
1212
 
1213
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:97
1214
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
1215
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:48
1216
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1217
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
@@ -1220,9 +1335,9 @@ msgstr "Recherche mot statistiques les plus récentes"
1220
  msgid "#hash#"
1221
  msgstr "#hash #"
1222
 
1223
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:102
1224
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:102
1225
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:53
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1228
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
@@ -1231,34 +1346,35 @@ msgstr "#hash #"
1231
  msgid "Map"
1232
  msgstr "Carte"
1233
 
1234
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1235
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1236
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1237
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1238
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1239
  msgid "Page"
1240
  msgstr "Page"
1241
 
1242
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1243
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1244
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1245
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1247
  msgid "From"
1248
  msgstr "De"
1249
 
1250
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
 
1251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1252
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1254
  msgid "All"
1255
  msgstr "Tous les"
1256
 
1257
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
1258
  msgid "Search for"
1259
  msgstr "Recherche de"
1260
 
1261
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
1262
  msgid "Recent Visitor Statistics"
1263
  msgstr "Statistiques récentes de visiteur"
1264
 
@@ -1267,7 +1383,7 @@ msgstr "Statistiques récentes de visiteur"
1267
  msgid "Online Users"
1268
  msgstr "Utilisateurs en ligne"
1269
 
1270
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:73
1271
  msgid "Online for "
1272
  msgstr "En ligne depuis"
1273
 
@@ -1294,6 +1410,7 @@ msgstr "Redirections de moteur de recherche dans le dernier"
1294
  msgid "Number of referrals"
1295
  msgstr "Nombre de renvois"
1296
 
 
1297
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1298
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
@@ -1342,7 +1459,7 @@ msgid "Top 5 Page Trending Stats"
1342
  msgstr "Top 5 Page tendance Stats"
1343
 
1344
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1345
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:58
1346
  msgid "Number of Hits"
1347
  msgstr "Nombre de Hits"
1348
 
@@ -1436,18 +1553,6 @@ msgstr "Aujourd'hui"
1436
  msgid "Yesterday"
1437
  msgstr "Hier"
1438
 
1439
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
1440
- msgid "Week"
1441
- msgstr "Semaine"
1442
-
1443
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
1444
- msgid "Month"
1445
- msgstr "Mois"
1446
-
1447
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
1448
- msgid "Year"
1449
- msgstr "Année"
1450
-
1451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1452
  msgid "Daily Total"
1453
  msgstr "Total journalier"
@@ -1469,9 +1574,9 @@ msgid "Time: %s"
1469
  msgstr "Temps : %s"
1470
 
1471
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1472
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:215
1473
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:293
1474
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
1475
  msgid "Hits"
1476
  msgstr "Hits"
1477
 
@@ -1509,7 +1614,7 @@ msgstr "!Pas d'agent client à supprimer trouvé"
1509
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1510
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1511
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1512
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
1513
  msgid "Please select the desired items."
1514
  msgstr "Veuillez sélectionner les éléments souhaités."
1515
 
@@ -1551,8 +1656,8 @@ msgstr "Index de base de données"
1551
 
1552
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1553
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1554
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:290
1555
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:364
1556
  msgid "Countries"
1557
  msgstr "Pays"
1558
 
@@ -1632,8 +1737,8 @@ msgstr "Note : comme vous avez purgé la base de données, vous devez recharger
1632
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1633
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1634
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1635
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
1636
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
1637
  msgid "Visitors"
1638
  msgstr "Visiteurs"
1639
 
@@ -2144,8 +2249,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2144
  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."
2145
 
2146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2147
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
2148
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
2149
  msgid "Exclusions"
2150
  msgstr "Exclusions"
2151
 
@@ -2337,6 +2442,7 @@ msgstr "utilisation de Browscap"
2337
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2338
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2339
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
 
2340
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
@@ -2397,4 +2503,4 @@ msgstr "Utilisateurs en ligne"
2397
 
2398
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2399
  msgid "User online"
2400
- msgstr "Utilisateur en ligne"
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-01-23 13:22:35+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
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:330
14
+ msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
15
+ msgstr ""
16
+
17
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:324
18
+ msgid "Force English"
19
+ msgstr ""
20
+
21
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
22
+ msgid "Languages"
23
+ msgstr ""
24
+
25
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
26
+ 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."
27
+ msgstr ""
28
+
29
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:269
30
+ msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
31
+ msgstr ""
32
+
33
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:266
34
+ msgid "Excluded URLs list"
35
+ msgstr ""
36
+
37
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
38
+ msgid "Excluded URL"
39
+ msgstr ""
40
+
41
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
42
+ msgid "Last 365 Days (Year)"
43
+ msgstr ""
44
+
45
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
46
+ msgid "Last 30 Days (Month)"
47
+ msgstr ""
48
+
49
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
50
+ msgid "Last 7 Days (Week)"
51
+ msgstr ""
52
+
53
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
54
+ msgid "Yahoo!"
55
+ msgstr ""
56
+
57
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:399
58
+ msgid "Yandex"
59
+ msgstr ""
60
+
61
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
62
+ msgid "clearch.org"
63
+ msgstr ""
64
+
65
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
66
+ msgid "DuckDuckGo"
67
+ msgstr ""
68
+
69
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:394
70
+ msgid "Bing"
71
+ msgstr ""
72
+
73
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:393
74
+ msgid "Baidu"
75
+ msgstr ""
76
+
77
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:69
78
+ msgid "Hits in the last 20 days"
79
+ msgstr ""
80
+
81
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
82
+ msgid "Feeds"
83
+ msgstr ""
84
+
85
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
86
+ msgid "User Role"
87
+ msgstr ""
88
+
89
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
90
+ msgid "Login Page"
91
+ msgstr ""
92
+
93
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
94
+ msgid "Admin Page"
95
+ msgstr ""
96
+
97
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
98
+ msgid "Self Referral"
99
+ msgstr ""
100
+
101
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
102
+ msgid "IP Match"
103
+ msgstr ""
104
+
105
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
106
+ msgid "Robot"
107
+ msgstr ""
108
+
109
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:100
110
+ msgid "Currently there are no users online in the site."
111
+ msgstr ""
112
+
113
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
114
+ msgid "Robot Threshold"
115
+ msgstr ""
116
+
117
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
118
+ msgid "Honey Pot"
119
+ msgstr ""
120
+
121
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:6
122
+ msgid "Page Trending Stats"
123
+ msgstr ""
124
+
125
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
126
+ msgid "Hostname"
127
+ msgstr ""
128
 
129
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
130
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
174
 
175
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
176
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
177
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
178
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
179
  msgid "Pages"
180
  msgstr "Pages"
181
 
375
  msgid "Update Reports"
376
  msgstr "Actualiser les rapports"
377
 
378
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
379
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
380
  msgid "Browscap"
381
  msgstr "limite d'exploration"
384
  msgid "Send a report whenever the browscap.ini is updated."
385
  msgstr ".envoyer un rapport quand browscap.ini est actualisé"
386
 
387
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
388
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
389
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
390
  msgid "GeoIP"
412
 
413
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
415
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
416
  msgid "Statistical reporting"
417
  msgstr "Rapports statistiques"
418
 
463
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
464
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
465
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
466
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:468
467
  msgid "User Online"
468
  msgstr "Utilisateur en ligne"
469
 
562
  msgid "Map type"
563
  msgstr "Type de carte"
564
 
565
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:397
566
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
567
  msgid "Google"
568
  msgstr "Google"
725
  msgstr "Une fois toutes les 4 semaines"
726
 
727
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
728
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
729
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:325
730
  msgid "Statistics"
731
  msgstr "Statistiques"
732
 
812
  msgstr "Éléments"
813
 
814
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
815
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:493
816
  msgid "Yesterday visit"
817
  msgstr "Visite hier"
818
 
824
  msgid "Select type of search engine"
825
  msgstr "Sélectionnez le type de moteur de recherche"
826
 
827
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
828
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
829
  msgstr "ERREUR : WP Statistics a détecté une version non prise en charge de PHP, WP Statistics ne fonctionnera pas sans la Version de PHP "
830
 
831
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
832
  msgid " or higher!"
833
  msgstr "ou supérieur !"
834
 
835
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
836
  msgid "Your current PHP version is"
837
  msgstr "Votre version PHP actuelle est "
838
 
839
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:51
840
  msgid "WP Statistics has been removed, please disable and delete it."
841
  msgstr ".WP Statistics a été désinstallé. Merci de le désactiver et de le supprimer"
842
 
843
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
844
  msgid "WP Statistics"
845
  msgstr "WP Statistics"
846
 
847
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:28
848
  msgid "Complete statistics for your WordPress site."
849
  msgstr "Statistiques complètes pour votre site WordPress."
850
 
851
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
852
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
853
  msgstr "Utilisation en ligne de suivi dans les WP Statistics n'est pas activée, rendez-vous sur %s et activez-le."
854
 
855
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
856
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
857
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
858
  msgid "setting page"
859
  msgstr "mise en page"
860
 
861
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
862
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
863
  msgstr "Succès suivi dans les WP Statistics n'est pas activé, rendez-vous sur %s et activez-le."
864
 
865
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
866
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
867
  msgstr "Visiteur de suivi dans les WP Statistics n'est pas activée, rendez-vous sur %s et activez-le."
868
 
869
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
870
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
871
  msgstr "GeoIP collection n'est pas active, s'il vous plaît aller à %s et activer cette fonctionnalité."
872
 
873
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
874
  msgid "Setting page > GeoIP"
875
  msgstr "Mise en page > GeoIP"
876
 
877
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
878
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
879
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
880
  msgid "Settings"
881
  msgstr "Paramètres"
882
 
883
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
884
  msgid "Click here to visit the plugin on WordPress.org"
885
  msgstr "Cliquez ici pour visiter le plugin sur WordPress.org"
886
 
887
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
888
  msgid "Visit WordPress.org page"
889
  msgstr "Visitez la page de WordPress.org"
890
 
891
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
892
  msgid "Click here to rate and review this plugin on WordPress.org"
893
  msgstr "Cliquez ici pour évaluer et revoir ce plugin sur WordPress.org"
894
 
895
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
896
  msgid "Rate this plugin"
897
  msgstr "Noter ce plugin"
898
 
899
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:254
900
  msgid "WP Statistics - Hits"
901
  msgstr "WP Statistics - Hits"
902
 
903
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:291
904
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
905
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
906
  msgid "Overview"
907
  msgstr "Vue d'ensemble"
908
 
909
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
910
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
911
  msgid "Online"
912
  msgstr "En ligne"
913
 
914
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
915
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
916
  msgid "Referrers"
917
  msgstr "Référents"
918
 
919
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:301
920
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
921
  msgid "Searches"
922
  msgstr "Recherches"
923
 
924
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
925
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
926
  msgid "Search Words"
927
  msgstr "Recherche par mots"
928
 
929
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
930
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:376
931
  msgid "Top Visitors Today"
932
  msgstr "Top des visiteurs du jour"
933
 
934
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:306
935
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
936
  msgid "Optimization"
937
  msgstr "Optimisation"
938
 
939
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:311
940
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:342
941
  msgid "Manual"
942
  msgstr "Manuelle"
943
 
944
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:357
945
  msgid "Site"
946
  msgstr "Site"
947
 
948
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:358
949
  msgid "Options"
950
  msgstr "Options"
951
 
952
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:475
953
  msgid "Today visitor"
954
  msgstr "Visiteur aujourd'hui"
955
 
956
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:481
957
  msgid "Today visit"
958
  msgstr "Aujourd'hui, visiter"
959
 
960
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:487
961
  msgid "Yesterday visitor"
962
  msgstr "Hier le visiteur"
963
 
964
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
965
  msgid "View Stats"
966
  msgstr "Voir ses Stats"
967
 
968
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:523
969
  msgid "Download ODF file"
970
  msgstr "Télécharger fichier ODF"
971
 
972
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
973
  msgid "Download HTML file"
974
  msgstr "Télécharger le fichier HTML"
975
 
976
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:528
977
  msgid "Manual file not found."
978
  msgstr "Manuel fichier non trouvé."
979
 
980
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
981
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:706
982
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:740
983
  msgid "You do not have sufficient permissions to access this page."
984
  msgstr "Vous n'avez pas les autorisations suffisantes pour accéder à cette page."
985
 
986
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:608
987
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
988
  msgstr "La table du plugin n'existe pas dans la base de données ! Merci de relancer la %s installation de la routine %s"
989
 
1067
  msgstr "Top 10 Pages"
1068
 
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
1070
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:31
1071
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
1072
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
1073
  msgid "Recent Visitors"
1117
  msgid "This post is not yet published."
1118
  msgstr ".Cet article n'est pas encore publié"
1119
 
1120
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:24
1121
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1122
  msgstr "Impossible de charger la base de données GeoIP, assurez-vous que vous avez téléchargé dans la page Paramètres."
1123
 
1124
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:48
1125
  msgid "Updated %s GeoIP records in the visitors database."
1126
  msgstr "Mise à jour de %s GeoIP enregistrements dans la base de données de visiteurs."
1127
 
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1156
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1157
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:76
1158
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1159
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
1160
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
1161
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1162
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1163
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
1183
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1184
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1185
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1186
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
1187
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
1188
  msgid "Browsers"
1189
  msgstr "Navigateurs"
1190
 
1210
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1211
  msgstr "ATTENTION : Exclusion ne sont pas actuellement définis pour être enregistré, les résultats ci-dessous peuvent ne pas refléter les statistiques actuelles !"
1212
 
1213
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
1214
  msgid "Exclusions Statistics"
1215
  msgstr "Statistiques d'exclusions"
1216
 
1217
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1219
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1220
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1221
  msgid "10 Days"
1222
  msgstr "10 jours"
1223
 
1224
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1225
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1228
  msgid "20 Days"
1229
  msgstr "20 jours"
1230
 
1231
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1232
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1233
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1235
  msgid "30 Days"
1236
  msgstr "30 jours"
1237
 
1238
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1239
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1240
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1241
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1242
  msgid "2 Months"
1243
  msgstr "2 mois"
1244
 
1245
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1247
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1248
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1249
  msgid "3 Months"
1250
  msgstr "3 mois"
1251
 
1252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1254
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1255
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1256
  msgid "6 Months"
1257
  msgstr "6 mois"
1258
 
1259
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:65
1260
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1261
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1263
  msgid "9 Months"
1264
  msgstr "9 mois"
1265
 
1266
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:66
1267
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1268
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1269
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1270
  msgid "1 Year"
1271
  msgstr "1 an"
1272
 
1273
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
1274
  msgid "Total Exclusions: %s"
1275
  msgstr "Total des Exclusions : %s"
1276
 
1277
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:77
1278
  msgid "Exclusions Statistical Chart"
1279
  msgstr "Exclusions graphique statistique"
1280
 
1281
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1282
  msgid "Excluded hits in the last"
1283
  msgstr "Exclu hits dans le dernier"
1284
 
1285
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1286
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1287
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1288
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
1291
  msgid "days"
1292
  msgstr "jours"
1293
 
1294
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:120
1295
  msgid "Number of excluded hits"
1296
  msgstr "Nombre de visites exclus"
1297
 
1321
  msgid "Visitor"
1322
  msgstr "Visiteur"
1323
 
1324
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:64
1325
  msgid "Latest Search Word Statistics"
1326
  msgstr "Recherche mot statistiques les plus récentes"
1327
 
1328
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:99
1329
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
1330
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:50
1331
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1332
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1333
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
1335
  msgid "#hash#"
1336
  msgstr "#hash #"
1337
 
1338
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:104
1339
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:103
1340
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:55
1341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1343
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
1346
  msgid "Map"
1347
  msgstr "Carte"
1348
 
1349
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1350
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1351
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1352
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1353
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1354
  msgid "Page"
1355
  msgstr "Page"
1356
 
1357
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1358
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1359
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1360
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1361
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1362
  msgid "From"
1363
  msgstr "De"
1364
 
1365
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:46
1366
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:33
1367
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1368
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1369
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1370
  msgid "All"
1371
  msgstr "Tous les"
1372
 
1373
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
1374
  msgid "Search for"
1375
  msgstr "Recherche de"
1376
 
1377
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:65
1378
  msgid "Recent Visitor Statistics"
1379
  msgstr "Statistiques récentes de visiteur"
1380
 
1383
  msgid "Online Users"
1384
  msgstr "Utilisateurs en ligne"
1385
 
1386
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:75
1387
  msgid "Online for "
1388
  msgstr "En ligne depuis"
1389
 
1410
  msgid "Number of referrals"
1411
  msgstr "Nombre de renvois"
1412
 
1413
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
1414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1415
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1416
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
1459
  msgstr "Top 5 Page tendance Stats"
1460
 
1461
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1462
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:60
1463
  msgid "Number of Hits"
1464
  msgstr "Nombre de Hits"
1465
 
1553
  msgid "Yesterday"
1554
  msgstr "Hier"
1555
 
 
 
 
 
 
 
 
 
 
 
 
 
1556
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1557
  msgid "Daily Total"
1558
  msgstr "Total journalier"
1574
  msgstr "Temps : %s"
1575
 
1576
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1577
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:219
1578
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
1579
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
1580
  msgid "Hits"
1581
  msgstr "Hits"
1582
 
1614
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1615
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1616
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1617
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:80
1618
  msgid "Please select the desired items."
1619
  msgstr "Veuillez sélectionner les éléments souhaités."
1620
 
1656
 
1657
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1658
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1659
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
1660
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
1661
  msgid "Countries"
1662
  msgstr "Pays"
1663
 
1737
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1738
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1739
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1740
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:304
1741
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:377
1742
  msgid "Visitors"
1743
  msgstr "Visiteurs"
1744
 
2249
  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."
2250
 
2251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
2253
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
2254
  msgid "Exclusions"
2255
  msgstr "Exclusions"
2256
 
2442
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2444
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
2445
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:329
2446
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2447
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2448
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
2503
 
2504
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2505
  msgid "User online"
2506
+ msgstr "Utilisateur en ligne"
languages/wp_statistics-hu_HU.mo CHANGED
Binary file
languages/wp_statistics-hu_HU.po CHANGED
@@ -2,17 +2,129 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-01-27 19:18-0500\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: Poedit 1.7.4\n"
11
  "Project-Id-Version: WP Statistics\n"
12
- "POT-Creation-Date: \n"
13
- "Last-Translator: \n"
14
- "Language-Team: \n"
15
- "Language: hu_HU\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
18
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
@@ -38,11 +150,11 @@ msgstr "Itt az ideje a pontos jelenlévő felhasználók ellenőrzésére az old
38
 
39
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
40
  msgid "Record all user"
41
- msgstr "Rögzíti az összes felhasználó"
42
 
43
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
44
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
45
- msgstr "Figyelmen kívül hagyja a kizárási beállítások és rögzíti az összes felhasználó olvas bennünket (beleértve az önálló áttételek és robotok). Csak akkor érdemes használni a hibaelhárítás."
46
 
47
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
48
  msgid "Store entire user agent string"
@@ -62,8 +174,8 @@ msgstr "Egy azonosított felhasználó minden egyes találatának egységesíté
62
 
63
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
64
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
65
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:295
66
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
67
  msgid "Pages"
68
  msgstr "Oldal"
69
 
@@ -73,11 +185,11 @@ msgstr "Nyomon követi az összes oldalak"
73
 
74
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
75
  msgid "Strip parameters from URI"
76
- msgstr "Strip paraméterek URI"
77
 
78
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
79
  msgid "This will remove anything after the ? in a URL."
80
- msgstr "Ez eltávolítja bármit után? egy URL."
81
 
82
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
83
  msgid "Disable hits column in post/pages list"
@@ -121,7 +233,7 @@ msgstr "Mellett hiba WP Statistics tárolja az admin kézi a plugin könyvtárba
121
 
122
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
123
  msgid "Search Engines"
124
- msgstr "A keresőmotorok"
125
 
126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
127
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
@@ -193,11 +305,11 @@ msgstr "Minden hiányzó GeoIP adatok frissítése után letöltő egy új adatb
193
 
194
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
195
  msgid "Country code for private IP addresses"
196
- msgstr "Ország kódot privát IP-címek"
197
 
198
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
199
  msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
200
- msgstr "A nemzetközi szabvány kétbetűs országkód (azaz. US = Egyesült Államok, CA = Kanada, stb) magán (nem irányítható) IP-címek (pl. 10.0.0.1, 192.158.1.1, 127.0.0.1, stb). Használd a &quot;000&quot; (három nullát) kell használni &quot;Ismeretlen&quot;, mint az ország kódot."
201
 
202
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
203
  msgid "GeoIP collection is disabled due to the following reasons:"
@@ -249,7 +361,7 @@ msgstr "És tartsa statisztikájának napok száma. Minimális érték 30 napok.
249
 
250
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
251
  msgid "Common Report Options"
252
- msgstr "Közös jelentés opciók"
253
 
254
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
255
  msgid "E-mail addresses"
@@ -257,20 +369,22 @@ msgstr "E-mail címek"
257
 
258
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
259
  msgid "A comma separated list of e-mail addresses to send reports to."
260
- msgstr "A vesszővel elválasztott listája e-mail címeket küldeni jelentéseket."
261
 
262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
263
  msgid "Update Reports"
264
- msgstr "Jelentések"
265
 
 
266
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
267
  msgid "Browscap"
268
- msgstr "Browscap"
269
 
270
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
271
  msgid "Send a report whenever the browscap.ini is updated."
272
- msgstr "Jelentést küld, ha a browscap.ini frissítik."
273
 
 
274
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
275
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
276
  msgid "GeoIP"
@@ -278,27 +392,27 @@ msgstr "GeoIP"
278
 
279
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
280
  msgid "Send a report whenever the GeoIP database is updated."
281
- msgstr "Jelentést küld, ha a GeoIP adatbázis frissítése."
282
 
283
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
284
  msgid "Pruning"
285
- msgstr "Fametszés"
286
 
287
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
288
  msgid "Send a report whenever the pruning of database is run."
289
- msgstr "Jelentést küld, ha a metszés adatbázis fut."
290
 
291
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
292
  msgid "Upgrade"
293
- msgstr "Frissítés"
294
 
295
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
296
  msgid "Send a report whenever the plugin is upgraded."
297
- msgstr "Jelentést küld, ha a plugin korszerűsítenek."
298
 
299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
300
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
301
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
302
  msgid "Statistical reporting"
303
  msgstr "Statisztikai adatszolgáltatás"
304
 
@@ -308,7 +422,7 @@ msgstr "Menetrend"
308
 
309
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
310
  msgid "Select how often to receive statistical report."
311
- msgstr "Válassza ki, hogy milyen gyakran kap statisztikai jelentés."
312
 
313
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
314
  msgid "Send reports via"
@@ -324,7 +438,7 @@ msgstr "SMS"
324
 
325
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
326
  msgid "Select delivery method for statistical report."
327
- msgstr "Válassza ki a szállítási módot statisztikai jelentést."
328
 
329
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
330
  msgid "Note: To send SMS text messages please install the %s plugin."
@@ -340,16 +454,16 @@ msgstr "Jelentés törzsében"
340
 
341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
342
  msgid "Enter the contents of the report."
343
- msgstr "Adja meg a tartalmát a jelentést."
344
 
345
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
346
  msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
347
- msgstr "Bármilyen shortcode támogatja a telepítést a WordPress, az összes shortcodes a WP Statisztika (lásd az admin kézikönyv a fenti kód áll rendelkezésre) támogatja a levél törzsében. Íme néhány példa:"
348
 
349
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
351
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
352
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:464
353
  msgid "User Online"
354
  msgstr "Jelenlévő felhasználó"
355
 
@@ -416,38 +530,39 @@ msgstr "Legtöbbet meglátogatott oldalak"
416
 
417
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
418
  msgid "Dashboard"
419
- msgstr "Műszerfal"
420
 
421
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
422
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
423
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
424
  msgid "The following items are global to all users."
425
- msgstr "A következő elemek globálisan az összes felhasználó számára."
426
 
427
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
428
  msgid "Disable dashboard widgets"
429
- msgstr "Tiltsa műszerfal widgetek"
430
 
431
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
432
  msgid "Disable the dashboard widgets."
433
- msgstr "Tiltsa le a műszerfal kütyü."
434
 
435
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
436
  msgid "Page/Post Editor"
437
- msgstr "Oldal / Bejegyzésszerkesztő"
438
 
439
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
440
  msgid "Disable post/page editor widget"
441
- msgstr "Disable post / oldal szerkesztője widget-"
442
 
443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
444
  msgid "Disable the page/post editor widget."
445
- msgstr "Tiltsa le a oldal / post-szerkesztő widget."
446
 
447
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
448
  msgid "Map type"
449
  msgstr "Típusa"
450
 
 
451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
452
  msgid "Google"
453
  msgstr "Google"
@@ -482,7 +597,7 @@ msgstr "Ez a funkció egy teljesítménycsökkenést okozhat, amikor statisztika
482
 
483
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
484
  msgid "Overview Widgets to Display"
485
- msgstr "Áttekintés Widgets megjeleníteni"
486
 
487
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
488
  msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
@@ -531,31 +646,31 @@ msgstr "NINCS ADAT"
531
 
532
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
533
  msgid "Slot 7"
534
- msgstr "7. hely"
535
 
536
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
537
  msgid "WP Statisitcs Removal"
538
- msgstr "WP Statisitcs eltávolítása"
539
 
540
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
541
  msgid "Uninstalling WP Statistics will not remove the data and settings, you can use this option to remove the WP Statistics data from your install before uninstalling the plugin."
542
- msgstr "Eltávolítása WP Statisztika nem távolítja el az adatokat és beállításokat, akkor használd ezt a lehetőséget, hogy távolítsa el a WP Statisztika adatokat a telepíteni eltávolítása előtt plugin."
543
 
544
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
545
  msgid "Once you submit this form the settings will be deleted during the page load, however WP Statistics will still show up in your Admin menu until another page load is executed."
546
- msgstr "Miután ezt az űrlapot a beállítások törlődnek alatt oldalon terhelésnél azonban WP statisztikákat is megjelennek az admin menüben, amíg a másik oldal teher kerül végrehajtásra."
547
 
548
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
549
  msgid "Remove data and settings"
550
- msgstr "Távolítsuk el az adatok és beállítások"
551
 
552
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
553
  msgid "Remove"
554
- msgstr "Eltávolít"
555
 
556
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
557
  msgid "Remove data and settings, this action cannot be undone."
558
- msgstr "Távolítsuk el az adatok és beállítások, ez a művelet nem vonható vissza."
559
 
560
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
561
  msgid "General"
@@ -563,11 +678,11 @@ msgstr "Általános"
563
 
564
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
565
  msgid "Notifications"
566
- msgstr "Értesítések"
567
 
568
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
569
  msgid "Dashboard/Overview"
570
- msgstr "Dashboard / áttekintés"
571
 
572
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
573
  msgid "Access/Exclusions"
@@ -583,7 +698,7 @@ msgstr "Karbantartás"
583
 
584
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
585
  msgid "Removal"
586
- msgstr "Eltávolítás"
587
 
588
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
589
  msgid "Update"
@@ -610,8 +725,8 @@ msgid "Once Every 4 Weeks"
610
  msgstr "4 hetente egyszer"
611
 
612
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
613
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:284
614
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:321
615
  msgid "Statistics"
616
  msgstr "Statisztikák"
617
 
@@ -697,7 +812,7 @@ msgid "Items"
697
  msgstr "Tételek"
698
 
699
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
700
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:489
701
  msgid "Yesterday visit"
702
  msgstr "Tegnapi látogatás"
703
 
@@ -709,172 +824,172 @@ msgstr "Említett kereső"
709
  msgid "Select type of search engine"
710
  msgstr "Kereső motor típusának kiválasztása"
711
 
712
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
713
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
714
  msgstr "Hiba: WP Statistics észlelt nem támogatott verziójú PHP, WP Statistics nem fog működni anélkül, PHP verzió "
715
 
716
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
717
  msgid " or higher!"
718
  msgstr "vagy magasabb!"
719
 
720
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
721
  msgid "Your current PHP version is"
722
- msgstr "Az aktuális PHP verzió"
723
 
724
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:42
725
  msgid "WP Statistics has been removed, please disable and delete it."
726
- msgstr "WP Statisztika törölték, kérjük, tiltsa le, és törölje."
727
 
728
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:53
729
  msgid "WP Statistics"
730
  msgstr "WP Statisztika"
731
 
732
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:54
733
  msgid "Complete statistics for your WordPress site."
734
  msgstr "Teljes statisztikája a WordPress telek."
735
 
736
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
737
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
738
  msgstr "Követés-ban WP Statistics online felhasználó nem engedélyezett, kérjük megy (% s), és lehetővé teszi."
739
 
740
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
741
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
742
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
743
  msgid "setting page"
744
  msgstr "elintézés oldal"
745
 
746
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
747
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
748
  msgstr "Hit-WP Statistics követés nincs engedélyezve, kérjük %s megy, és lehetővé teszi."
749
 
750
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
751
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
752
  msgstr "Látogató követés-ban WP Statistics nincs engedélyezve, legyen szíves megy (% s), és lehetővé teszi."
753
 
754
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
755
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
756
  msgstr "GeoIP gyűjtemény nincs aktív, legyen szíves megy (% s), és képessé tesz ez vonás."
757
 
758
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
759
  msgid "Setting page > GeoIP"
760
  msgstr "Elintézés oldal > GeoIP"
761
 
762
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:191
763
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
764
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
765
  msgid "Settings"
766
  msgstr "Beállítások"
767
 
768
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
769
  msgid "Click here to visit the plugin on WordPress.org"
770
  msgstr "Kattintson ide, hogy látogassa meg a plugin a WordPress.org"
771
 
772
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
773
  msgid "Visit WordPress.org page"
774
  msgstr "WordPress.org oldal megtekintése"
775
 
776
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
777
  msgid "Click here to rate and review this plugin on WordPress.org"
778
  msgstr "Kattintson ide, és tekintse át ezt a plugint a WordPress.org"
779
 
780
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
781
  msgid "Rate this plugin"
782
  msgstr "Bővítmény sebessége"
783
 
784
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:250
785
  msgid "WP Statistics - Hits"
786
  msgstr "WP Statisztika - találatok"
787
 
788
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:287
789
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:324
790
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:362
791
  msgid "Overview"
792
  msgstr "Áttekintés"
793
 
794
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
795
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
796
  msgid "Online"
797
- msgstr "Online"
798
 
799
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
800
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
801
  msgid "Referrers"
802
- msgstr "Hivatkozók"
803
 
804
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
805
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
806
  msgid "Searches"
807
  msgstr "Kereső-robotok"
808
 
809
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
810
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
811
  msgid "Search Words"
812
  msgstr "Kulcsszavak"
813
 
814
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
815
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
816
  msgid "Top Visitors Today"
817
- msgstr "Top Mai látogatók"
818
 
819
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
820
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
821
  msgid "Optimization"
822
  msgstr "Optimalizálás"
823
 
824
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
825
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:338
826
  msgid "Manual"
827
  msgstr "Kézikönyv"
828
 
829
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
830
  msgid "Site"
831
- msgstr "Hely"
832
 
833
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:354
834
  msgid "Options"
835
- msgstr "Opciók"
836
 
837
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:471
838
  msgid "Today visitor"
839
  msgstr "Mai Látogató"
840
 
841
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:477
842
  msgid "Today visit"
843
  msgstr "Mai látogatás"
844
 
845
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:483
846
  msgid "Yesterday visitor"
847
  msgstr "Tegnapi Látogató"
848
 
849
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:495
850
  msgid "View Stats"
851
  msgstr "Statisztikák megtekintése"
852
 
853
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
854
  msgid "Download ODF file"
855
  msgstr "ODF fájl letöltése"
856
 
857
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
858
  msgid "Download HTML file"
859
  msgstr "HTML fájl letöltése"
860
 
861
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
862
  msgid "Manual file not found."
863
  msgstr "Kézikönyv nem található."
864
 
865
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
866
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:702
867
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
868
  msgid "You do not have sufficient permissions to access this page."
869
  msgstr "Nincs megfelelő jogosultság az oldal megtekintéséhez."
870
 
871
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:604
872
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
873
- msgstr "Plugin táblázatok nem létezik az adatbázisban! Kérjük, futtassa újra a%s telepítését a rutin%s."
874
 
875
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
876
  msgid "WP Statistics %s installed on"
877
- msgstr "WP Statisztika%s telepített"
878
 
879
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
880
  msgid "Error downloading GeoIP database from: %s - %s"
@@ -894,7 +1009,7 @@ msgstr "A GeoIP adatbázis frissítése sikeresen megtörtént!"
894
 
895
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
896
  msgid "GeoIP update on"
897
- msgstr "Geoip frissíti a"
898
 
899
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
900
  msgid "Error downloading browscap database from: %s - %s"
@@ -906,11 +1021,11 @@ msgstr "browscap adatbázis sikeresen frissítve!"
906
 
907
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
908
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
909
- msgstr "browscap adatbázis frissítve sikerült! Cache fájl túl nagy, visszatérve az előző browscap.ini."
910
 
911
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
912
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
913
- msgstr "browscap adatbázis frissítve sikerült! Új browscap.ini a mis-identifing felhasználói alkalmazások, mint bejárók, visszatérve az előző browscap.ini."
914
 
915
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
916
  msgid "browscap already at current version!"
@@ -918,11 +1033,11 @@ msgstr "browscap már az aktuális verzió!"
918
 
919
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
920
  msgid "Browscap.ini update on"
921
- msgstr "Browscap.ini frissítés"
922
 
923
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
924
  msgid "Quick Stats"
925
- msgstr "Gyors statisztika"
926
 
927
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
928
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
@@ -937,7 +1052,7 @@ msgstr "A 10 leggyakoribb ország"
937
 
938
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
939
  msgid "Today's Visitor Map"
940
- msgstr "A mai Látogatói térkép"
941
 
942
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
943
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
@@ -952,7 +1067,7 @@ msgid "Top 10 Pages"
952
  msgstr "Top 10 oldal"
953
 
954
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
955
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:30
956
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
957
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
958
  msgid "Recent Visitors"
@@ -988,25 +1103,25 @@ msgstr "Utolsó keresett szavak"
988
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
989
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
990
  msgid "Top 10 Visitors Today"
991
- msgstr "Top 10 Látogatók Ma"
992
 
993
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
994
  msgid "Please reload the dashboard to display the content of this widget."
995
- msgstr "Kérjük, töltse be újra a műszerfal, hogy megjelenjen a tartalom ezen widget."
996
 
997
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
998
  msgid "WP Statistics Overview"
999
- msgstr "WP Statisztika áttekintés"
1000
 
1001
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
1002
  msgid "This post is not yet published."
1003
- msgstr "Ez a bejegyzés még nem tették közzé."
1004
 
1005
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
1006
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1007
  msgstr "Képtelen-hoz teher a GeoIP adatbázis, győződj meg Önnek van letöltött ez-ban elintézés oldal."
1008
 
1009
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:50
1010
  msgid "Updated %s GeoIP records in the visitors database."
1011
  msgstr "Frissíti %s GeoIP adatbázisrekordok látogatók."
1012
 
@@ -1026,7 +1141,7 @@ msgstr "Nincs rekord törlése: %s!"
1026
 
1027
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
1028
  msgid "Database pruned on"
1029
- msgstr "Adatbázis metszeni a"
1030
 
1031
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
1032
  msgid "Please select a value over 30 days."
@@ -1039,10 +1154,10 @@ msgstr "Böngésző statisztikák"
1039
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1040
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1041
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1042
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
1043
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1044
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
1045
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:60
1046
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1047
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1048
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
@@ -1068,8 +1183,8 @@ msgstr "Bővebben kikapcsolás/bekapcsolás"
1068
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1070
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1071
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
1072
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:363
1073
  msgid "Browsers"
1074
  msgstr "Böngészők"
1075
 
@@ -1095,79 +1210,79 @@ msgstr "%s Verzió"
1095
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1096
  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!"
1097
 
1098
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
1099
  msgid "Exclusions Statistics"
1100
  msgstr "Statisztika kizárások"
1101
 
1102
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
1103
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1104
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1105
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1106
  msgid "10 Days"
1107
  msgstr "10 nap"
1108
 
1109
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
1110
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1111
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1112
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1113
  msgid "20 Days"
1114
  msgstr "20 nap"
1115
 
1116
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1117
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1118
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1119
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1120
  msgid "30 Days"
1121
  msgstr "30 nap"
1122
 
1123
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1124
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1125
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1127
  msgid "2 Months"
1128
  msgstr "2 hónap"
1129
 
1130
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1131
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1132
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1133
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1134
  msgid "3 Months"
1135
  msgstr "3 hónap"
1136
 
1137
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1138
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1139
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1140
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1141
  msgid "6 Months"
1142
  msgstr "6 hónap"
1143
 
1144
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1145
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1147
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1148
  msgid "9 Months"
1149
  msgstr "9 hónap"
1150
 
1151
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1152
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1153
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1155
  msgid "1 Year"
1156
  msgstr "1 év"
1157
 
1158
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
1159
  msgid "Total Exclusions: %s"
1160
  msgstr "Kizárások összesen: %s"
1161
 
1162
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
1163
  msgid "Exclusions Statistical Chart"
1164
  msgstr "Kizárások statisztikai diagram"
1165
 
1166
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1167
  msgid "Excluded hits in the last"
1168
  msgstr "Kizárt az utolsó találatok"
1169
 
1170
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1171
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1172
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1173
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
@@ -1176,7 +1291,7 @@ msgstr "Kizárt az utolsó találatok"
1176
  msgid "days"
1177
  msgstr "napban"
1178
 
1179
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:118
1180
  msgid "Number of excluded hits"
1181
  msgstr "Kizárt találatok száma"
1182
 
@@ -1206,13 +1321,13 @@ msgstr "Megtekintés"
1206
  msgid "Visitor"
1207
  msgstr "Látogató"
1208
 
1209
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:62
1210
  msgid "Latest Search Word Statistics"
1211
  msgstr "Legújabb keresési szót statisztika"
1212
 
1213
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:97
1214
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
1215
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:48
1216
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1217
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
@@ -1220,9 +1335,9 @@ msgstr "Legújabb keresési szót statisztika"
1220
  msgid "#hash#"
1221
  msgstr "#hash #"
1222
 
1223
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:102
1224
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:102
1225
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:53
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1228
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
@@ -1231,45 +1346,46 @@ msgstr "#hash #"
1231
  msgid "Map"
1232
  msgstr "Térkép"
1233
 
1234
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1235
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1236
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1237
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1238
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1239
  msgid "Page"
1240
  msgstr "Oldal"
1241
 
1242
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1243
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1244
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1245
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1247
  msgid "From"
1248
  msgstr "/"
1249
 
1250
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
 
1251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1252
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1254
  msgid "All"
1255
  msgstr "Mind"
1256
 
1257
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
1258
  msgid "Search for"
1259
  msgstr "Keresés"
1260
 
1261
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
1262
  msgid "Recent Visitor Statistics"
1263
  msgstr "Legutóbbi látogatói statisztika"
1264
 
1265
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
1266
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
1267
  msgid "Online Users"
1268
- msgstr "Online felhasználók"
1269
 
1270
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:73
1271
  msgid "Online for "
1272
- msgstr "Online"
1273
 
1274
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
1275
  msgid "Page Trend for Post ID"
@@ -1294,6 +1410,7 @@ msgstr "Search engine áttétel az utolsó"
1294
  msgid "Number of referrals"
1295
  msgstr "Átirányítások száma"
1296
 
 
1297
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1298
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
@@ -1342,7 +1459,7 @@ msgid "Top 5 Page Trending Stats"
1342
  msgstr "Top 5 oldal trend statisztika"
1343
 
1344
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1345
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:58
1346
  msgid "Number of Hits"
1347
  msgstr "Találatok száma"
1348
 
@@ -1374,7 +1491,7 @@ msgstr "Referenciák"
1374
 
1375
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
1376
  msgid "Top 100 Visitors Today"
1377
- msgstr "Top 100 látogatók ma"
1378
 
1379
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
1380
  msgid "About WP Statistics Version %s"
@@ -1436,18 +1553,6 @@ msgstr "Ma"
1436
  msgid "Yesterday"
1437
  msgstr "Tegnap"
1438
 
1439
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
1440
- msgid "Week"
1441
- msgstr "Hét"
1442
-
1443
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
1444
- msgid "Month"
1445
- msgstr "Hónap"
1446
-
1447
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
1448
- msgid "Year"
1449
- msgstr "Év"
1450
-
1451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1452
  msgid "Daily Total"
1453
  msgstr "Napi összes"
@@ -1469,24 +1574,24 @@ msgid "Time: %s"
1469
  msgstr "Idő: %s"
1470
 
1471
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1472
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:215
1473
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:293
1474
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
1475
  msgid "Hits"
1476
  msgstr "Találatok"
1477
 
1478
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
1479
  msgid "IP"
1480
- msgstr "IP"
1481
 
1482
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
1483
  msgid "Agent"
1484
- msgstr "Ügynök"
1485
 
1486
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
1487
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1488
  msgid "Version"
1489
- msgstr "Változat"
1490
 
1491
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
1492
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
@@ -1504,12 +1609,12 @@ msgstr "a(z) %s minőségben adatait sikeresen törölve."
1504
 
1505
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
1506
  msgid "No agent data found to remove!"
1507
- msgstr "Nem szer talált adatok eltávolítására!"
1508
 
1509
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1510
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1511
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1512
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
1513
  msgid "Please select the desired items."
1514
  msgstr "Kérjük, kiválasztani a kívánt elemeket."
1515
 
@@ -1519,7 +1624,7 @@ msgstr "a(z) %s platform adatok sikeresen törölve."
1519
 
1520
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
1521
  msgid "No platform data found to remove!"
1522
- msgstr "Nem platform adatok kiderült, hogy eltávolítja!"
1523
 
1524
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
1525
  msgid "%s table data deleted successfully."
@@ -1551,8 +1656,8 @@ msgstr "Index adatbázis"
1551
 
1552
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1553
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1554
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:290
1555
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:364
1556
  msgid "Countries"
1557
  msgstr "Országok"
1558
 
@@ -1623,31 +1728,31 @@ msgstr "Indítás most!"
1623
 
1624
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
1625
  msgid "Historical Values"
1626
- msgstr "Történelmi értékek"
1627
 
1628
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1629
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1630
- msgstr "Megjegyzés: Ahogy az imént kitisztítják az adatbázis újra be kell töltenie ezt az oldalt, ezek a számok, hogy helyes."
1631
 
1632
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1633
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1634
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1635
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
1636
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
1637
  msgid "Visitors"
1638
  msgstr "Megtekintések"
1639
 
1640
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
1641
  msgid "Number of historical number of visitors to the site (current value is %s)."
1642
- msgstr "Számos történelmi látogatóinak száma az oldalon (aktuális érték%s)."
1643
 
1644
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
1645
  msgid "Number of historical number of visits to the site (current value is %s)."
1646
- msgstr "Számos történelmi látogatások száma az oldalon (aktuális érték%s)."
1647
 
1648
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
1649
  msgid "Update now!"
1650
- msgstr "Frissítse most!"
1651
 
1652
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
1653
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
@@ -1725,11 +1830,11 @@ msgstr "Byte"
1725
 
1726
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
1727
  msgid "Last Overview page memory usage"
1728
- msgstr "Utolsó Áttekintés oldalon memóriahasználat"
1729
 
1730
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
1731
  msgid "Memory usage in the overview page"
1732
- msgstr "Memóriahasználat az áttekintő oldalra"
1733
 
1734
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
1735
  msgid "PHP Memory Limit"
@@ -1898,19 +2003,19 @@ msgstr "Az ügyfél felhasználói ügynök karakterlánca."
1898
 
1899
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
1900
  msgid "Browser"
1901
- msgstr "Böngésző"
1902
 
1903
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
1904
  msgid "The detected client browser."
1905
- msgstr "Az észlelt kliens böngészőnek."
1906
 
1907
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
1908
  msgid "The detected client browser version."
1909
- msgstr "Az észlelt kliens böngésző verzió."
1910
 
1911
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
1912
  msgid "The detected client platform."
1913
- msgstr "Az észlelt kliens platform."
1914
 
1915
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
1916
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
@@ -1964,7 +2069,7 @@ msgstr "Frissítések"
1964
 
1965
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
1966
  msgid "Historical"
1967
- msgstr "Történelmi"
1968
 
1969
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
1970
  msgid "WP Statistics V%s"
@@ -2049,7 +2154,7 @@ msgstr "Már keresni az interneten valamilyen hibaüzenetet kapsz?"
2049
 
2050
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
2051
  msgid "Make sure you have access to your PHP error logs."
2052
- msgstr "Győződjön meg róla, hogy hozzáférést biztosít a PHP hiba naplóit."
2053
 
2054
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
2055
  msgid "And a few things to double-check:"
@@ -2105,11 +2210,11 @@ msgstr "Fórum"
2105
 
2106
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
2107
  msgid "WP Statistics Honey Pot Page"
2108
- msgstr "WP Statisztika Honey Pot oldal"
2109
 
2110
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
2111
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2112
- msgstr "Ez a Honey Pot for WP Statisztika használni, ne törölje."
2113
 
2114
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
2115
  msgid "Access Levels"
@@ -2144,8 +2249,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2144
  msgstr "Ha szüksége van a meghatalmazást erőteljesebb megoldást érdemes nézni a WordPress plugin könyvtárban (% s)."
2145
 
2146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2147
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
2148
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
2149
  msgid "Exclusions"
2150
  msgstr "Kizárások"
2151
 
@@ -2204,11 +2309,11 @@ msgstr "Erő a robot lista alaphelyzetbe kell állítani az alapértelmezett WP
2204
 
2205
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
2206
  msgid "Robot visit threshold"
2207
- msgstr "Robot látogatása küszöböt"
2208
 
2209
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
2210
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2211
- msgstr "Kényeztesse látogatók több, mint ez a látogatások száma naponta, mint a robotok. 0 = kikapcsolva."
2212
 
2213
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
2214
  msgid "Excluded IP address list"
@@ -2232,59 +2337,59 @@ msgstr "192.168.0.0 hozzáadása"
2232
 
2233
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
2234
  msgid "Use honey pot"
2235
- msgstr "Használja Honey Pot"
2236
 
2237
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
2238
  msgid "Use a honey pot page to identify robots."
2239
- msgstr "Használja a Honey Pot oldalt azonosítani robotok."
2240
 
2241
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
2242
  msgid "Honey pot post id"
2243
- msgstr "Honey pot utáni id"
2244
 
2245
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
2246
  msgid "The post id to use for the honeypot page."
2247
- msgstr "A poszt id használni a honeypot oldalon."
2248
 
2249
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
2250
  msgid "Create a new honey pot page"
2251
- msgstr "Hozzon létre egy új Honey Pot oldal"
2252
 
2253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
2254
  msgid "GeoIP Exclusions"
2255
- msgstr "GeoIP kizárások"
2256
 
2257
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
2258
  msgid "Excluded countries list"
2259
- msgstr "Kizárt országok listája"
2260
 
2261
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
2262
  msgid "A list of country codes (one per line, two letters each) to exclude from statistics collection. Use \"000\" (three zeros) to exclude unknown countries."
2263
- msgstr "A fenti országok kódok (soronként, két betű minden), hogy kizárja a statisztikák gyűjtését. Használd a &quot;000&quot; (három nullát), hogy kizárják ismeretlen országban."
2264
 
2265
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
2266
  msgid "Included countries list"
2267
- msgstr "Mellékelt országok listája"
2268
 
2269
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
2270
  msgid "A list of country codes (one per line, two letters each) to include in statistics collection, if this list is not empty, only visitors from the included countries will be recorded. Use \"000\" (three zeros) to exclude unknown countries."
2271
- msgstr "A fenti országok kódok (soronként, két betű minden) tartalmazza a statisztikai adatgyűjtésben, ha ez a lista nem üres, csak a látogatók a mellékelt országok kerülnek rögzítésre. Használd a &quot;000&quot; (három nullát), hogy kizárják ismeretlen országban."
2272
 
2273
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
2274
  msgid "Host Exclusions"
2275
- msgstr "Host kizárások"
2276
 
2277
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
2278
  msgid "Excluded hosts list"
2279
- msgstr "Kizárt hosztlistából"
2280
 
2281
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
2282
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2283
- msgstr "A fenti teljesen minősített host nevek (pl. Server.example.com, soronként egyet), hogy kizárja a statisztikák gyűjtését."
2284
 
2285
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
2286
  msgid "Note: this option will NOT perform a reverse DNS lookup on each page load but instead cache the IP address for the provided hostnames for one hour. If you are excluding dynamically assigned hosts you may find some degree of overlap when the host changes it's IP address and when the cache is updated resulting in some hits recorded."
2287
- msgstr "Megjegyzés: Ez a lehetőség nem elvégzésére fordított DNS lekérdezést egyes oldalak betöltési hanem cache IP-címet a biztosított gépnevekhez egy órán keresztül. Ha kivételével dinamikusan kiosztott házigazdák előfordulhat némi átfedés, amikor a fogadó megváltoztatja annak IP-címét, és a gyorsítótár frissített ami néhány rögzített találatokkal."
2288
 
2289
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
2290
  msgid "Site URL Exclusions"
@@ -2308,11 +2413,11 @@ msgstr "Zárja ki az admin oldalak részére beiktat mint egy megüt."
2308
 
2309
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
2310
  msgid "Excluded RSS feeds"
2311
- msgstr "Kizárt RSS hírcsatornák"
2312
 
2313
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
2314
  msgid "Exclude the RSS feeds for registering as a hit."
2315
- msgstr "Zárja ki az RSS csatornák regisztráció a hit."
2316
 
2317
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
2318
  msgid "browscap settings"
@@ -2337,6 +2442,7 @@ msgstr "browscap használat"
2337
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2338
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2339
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
 
2340
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
@@ -2397,4 +2503,4 @@ msgstr "Jelenlévő látogatók"
2397
 
2398
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2399
  msgid "User online"
2400
- msgstr "Jelenlévő látogató"
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-01-23 13:23:18+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
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:330
14
+ msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
15
+ msgstr ""
16
+
17
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:324
18
+ msgid "Force English"
19
+ msgstr ""
20
+
21
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
22
+ msgid "Languages"
23
+ msgstr ""
24
+
25
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
26
+ 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."
27
+ msgstr ""
28
+
29
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:269
30
+ msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
31
+ msgstr ""
32
+
33
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:266
34
+ msgid "Excluded URLs list"
35
+ msgstr ""
36
+
37
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
38
+ msgid "Excluded URL"
39
+ msgstr ""
40
+
41
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
42
+ msgid "Last 365 Days (Year)"
43
+ msgstr ""
44
+
45
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
46
+ msgid "Last 30 Days (Month)"
47
+ msgstr ""
48
+
49
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
50
+ msgid "Last 7 Days (Week)"
51
+ msgstr ""
52
+
53
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
54
+ msgid "Yahoo!"
55
+ msgstr ""
56
+
57
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:399
58
+ msgid "Yandex"
59
+ msgstr ""
60
+
61
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
62
+ msgid "clearch.org"
63
+ msgstr ""
64
+
65
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
66
+ msgid "DuckDuckGo"
67
+ msgstr ""
68
+
69
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:394
70
+ msgid "Bing"
71
+ msgstr ""
72
+
73
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:393
74
+ msgid "Baidu"
75
+ msgstr ""
76
+
77
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:69
78
+ msgid "Hits in the last 20 days"
79
+ msgstr ""
80
+
81
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
82
+ msgid "Feeds"
83
+ msgstr ""
84
+
85
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
86
+ msgid "User Role"
87
+ msgstr ""
88
+
89
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
90
+ msgid "Login Page"
91
+ msgstr ""
92
+
93
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
94
+ msgid "Admin Page"
95
+ msgstr ""
96
+
97
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
98
+ msgid "Self Referral"
99
+ msgstr ""
100
+
101
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
102
+ msgid "IP Match"
103
+ msgstr ""
104
+
105
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
106
+ msgid "Robot"
107
+ msgstr ""
108
+
109
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:100
110
+ msgid "Currently there are no users online in the site."
111
+ msgstr ""
112
+
113
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
114
+ msgid "Robot Threshold"
115
+ msgstr ""
116
+
117
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
118
+ msgid "Honey Pot"
119
+ msgstr ""
120
+
121
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:6
122
+ msgid "Page Trending Stats"
123
+ msgstr ""
124
+
125
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
126
+ msgid "Hostname"
127
+ msgstr ""
128
 
129
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
130
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
150
 
151
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
152
  msgid "Record all user"
153
+ msgstr ""
154
 
155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
156
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
157
+ msgstr ""
158
 
159
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
160
  msgid "Store entire user agent string"
174
 
175
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
176
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
177
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
178
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
179
  msgid "Pages"
180
  msgstr "Oldal"
181
 
185
 
186
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
187
  msgid "Strip parameters from URI"
188
+ msgstr ""
189
 
190
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
191
  msgid "This will remove anything after the ? in a URL."
192
+ msgstr ""
193
 
194
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
195
  msgid "Disable hits column in post/pages list"
233
 
234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
235
  msgid "Search Engines"
236
+ msgstr ""
237
 
238
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
239
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
305
 
306
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
307
  msgid "Country code for private IP addresses"
308
+ msgstr ""
309
 
310
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
311
  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."
312
+ msgstr ""
313
 
314
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
315
  msgid "GeoIP collection is disabled due to the following reasons:"
361
 
362
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
363
  msgid "Common Report Options"
364
+ msgstr ""
365
 
366
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
367
  msgid "E-mail addresses"
369
 
370
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
371
  msgid "A comma separated list of e-mail addresses to send reports to."
372
+ msgstr ""
373
 
374
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
375
  msgid "Update Reports"
376
+ msgstr ""
377
 
378
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
379
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
380
  msgid "Browscap"
381
+ msgstr ""
382
 
383
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
384
  msgid "Send a report whenever the browscap.ini is updated."
385
+ msgstr ""
386
 
387
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
388
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
389
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
390
  msgid "GeoIP"
392
 
393
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
394
  msgid "Send a report whenever the GeoIP database is updated."
395
+ msgstr ""
396
 
397
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
398
  msgid "Pruning"
399
+ msgstr ""
400
 
401
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
402
  msgid "Send a report whenever the pruning of database is run."
403
+ msgstr ""
404
 
405
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
406
  msgid "Upgrade"
407
+ msgstr ""
408
 
409
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
410
  msgid "Send a report whenever the plugin is upgraded."
411
+ msgstr ""
412
 
413
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
415
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
416
  msgid "Statistical reporting"
417
  msgstr "Statisztikai adatszolgáltatás"
418
 
422
 
423
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
424
  msgid "Select how often to receive statistical report."
425
+ msgstr ""
426
 
427
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
428
  msgid "Send reports via"
438
 
439
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
440
  msgid "Select delivery method for statistical report."
441
+ msgstr ""
442
 
443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
444
  msgid "Note: To send SMS text messages please install the %s plugin."
454
 
455
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
456
  msgid "Enter the contents of the report."
457
+ msgstr ""
458
 
459
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
460
  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:"
461
+ msgstr ""
462
 
463
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
464
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
465
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
466
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:468
467
  msgid "User Online"
468
  msgstr "Jelenlévő felhasználó"
469
 
530
 
531
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
532
  msgid "Dashboard"
533
+ msgstr ""
534
 
535
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
536
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
537
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
538
  msgid "The following items are global to all users."
539
+ msgstr ""
540
 
541
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
542
  msgid "Disable dashboard widgets"
543
+ msgstr ""
544
 
545
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
546
  msgid "Disable the dashboard widgets."
547
+ msgstr ""
548
 
549
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
550
  msgid "Page/Post Editor"
551
+ msgstr ""
552
 
553
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
554
  msgid "Disable post/page editor widget"
555
+ msgstr ""
556
 
557
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
558
  msgid "Disable the page/post editor widget."
559
+ msgstr ""
560
 
561
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
562
  msgid "Map type"
563
  msgstr "Típusa"
564
 
565
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:397
566
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
567
  msgid "Google"
568
  msgstr "Google"
597
 
598
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
599
  msgid "Overview Widgets to Display"
600
+ msgstr ""
601
 
602
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
603
  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."
646
 
647
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
648
  msgid "Slot 7"
649
+ msgstr ""
650
 
651
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
652
  msgid "WP Statisitcs Removal"
653
+ msgstr ""
654
 
655
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
656
  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."
657
+ msgstr ""
658
 
659
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
660
  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."
661
+ msgstr ""
662
 
663
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
664
  msgid "Remove data and settings"
665
+ msgstr ""
666
 
667
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
668
  msgid "Remove"
669
+ msgstr ""
670
 
671
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
672
  msgid "Remove data and settings, this action cannot be undone."
673
+ msgstr ""
674
 
675
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
676
  msgid "General"
678
 
679
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
680
  msgid "Notifications"
681
+ msgstr ""
682
 
683
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
684
  msgid "Dashboard/Overview"
685
+ msgstr ""
686
 
687
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
688
  msgid "Access/Exclusions"
698
 
699
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
700
  msgid "Removal"
701
+ msgstr ""
702
 
703
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
704
  msgid "Update"
725
  msgstr "4 hetente egyszer"
726
 
727
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
728
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
729
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:325
730
  msgid "Statistics"
731
  msgstr "Statisztikák"
732
 
812
  msgstr "Tételek"
813
 
814
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
815
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:493
816
  msgid "Yesterday visit"
817
  msgstr "Tegnapi látogatás"
818
 
824
  msgid "Select type of search engine"
825
  msgstr "Kereső motor típusának kiválasztása"
826
 
827
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
828
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
829
  msgstr "Hiba: WP Statistics észlelt nem támogatott verziójú PHP, WP Statistics nem fog működni anélkül, PHP verzió "
830
 
831
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
832
  msgid " or higher!"
833
  msgstr "vagy magasabb!"
834
 
835
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
836
  msgid "Your current PHP version is"
837
+ msgstr ""
838
 
839
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:51
840
  msgid "WP Statistics has been removed, please disable and delete it."
841
+ msgstr ""
842
 
843
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
844
  msgid "WP Statistics"
845
  msgstr "WP Statisztika"
846
 
847
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:28
848
  msgid "Complete statistics for your WordPress site."
849
  msgstr "Teljes statisztikája a WordPress telek."
850
 
851
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
852
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
853
  msgstr "Követés-ban WP Statistics online felhasználó nem engedélyezett, kérjük megy (% s), és lehetővé teszi."
854
 
855
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
856
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
857
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
858
  msgid "setting page"
859
  msgstr "elintézés oldal"
860
 
861
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
862
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
863
  msgstr "Hit-WP Statistics követés nincs engedélyezve, kérjük %s megy, és lehetővé teszi."
864
 
865
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
866
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
867
  msgstr "Látogató követés-ban WP Statistics nincs engedélyezve, legyen szíves megy (% s), és lehetővé teszi."
868
 
869
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
870
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
871
  msgstr "GeoIP gyűjtemény nincs aktív, legyen szíves megy (% s), és képessé tesz ez vonás."
872
 
873
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
874
  msgid "Setting page > GeoIP"
875
  msgstr "Elintézés oldal > GeoIP"
876
 
877
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
878
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
879
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
880
  msgid "Settings"
881
  msgstr "Beállítások"
882
 
883
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
884
  msgid "Click here to visit the plugin on WordPress.org"
885
  msgstr "Kattintson ide, hogy látogassa meg a plugin a WordPress.org"
886
 
887
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
888
  msgid "Visit WordPress.org page"
889
  msgstr "WordPress.org oldal megtekintése"
890
 
891
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
892
  msgid "Click here to rate and review this plugin on WordPress.org"
893
  msgstr "Kattintson ide, és tekintse át ezt a plugint a WordPress.org"
894
 
895
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
896
  msgid "Rate this plugin"
897
  msgstr "Bővítmény sebessége"
898
 
899
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:254
900
  msgid "WP Statistics - Hits"
901
  msgstr "WP Statisztika - találatok"
902
 
903
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:291
904
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
905
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
906
  msgid "Overview"
907
  msgstr "Áttekintés"
908
 
909
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
910
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
911
  msgid "Online"
912
+ msgstr ""
913
 
914
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
915
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
916
  msgid "Referrers"
917
+ msgstr ""
918
 
919
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:301
920
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
921
  msgid "Searches"
922
  msgstr "Kereső-robotok"
923
 
924
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
925
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
926
  msgid "Search Words"
927
  msgstr "Kulcsszavak"
928
 
929
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
930
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:376
931
  msgid "Top Visitors Today"
932
+ msgstr ""
933
 
934
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:306
935
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
936
  msgid "Optimization"
937
  msgstr "Optimalizálás"
938
 
939
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:311
940
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:342
941
  msgid "Manual"
942
  msgstr "Kézikönyv"
943
 
944
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:357
945
  msgid "Site"
946
+ msgstr ""
947
 
948
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:358
949
  msgid "Options"
950
+ msgstr ""
951
 
952
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:475
953
  msgid "Today visitor"
954
  msgstr "Mai Látogató"
955
 
956
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:481
957
  msgid "Today visit"
958
  msgstr "Mai látogatás"
959
 
960
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:487
961
  msgid "Yesterday visitor"
962
  msgstr "Tegnapi Látogató"
963
 
964
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
965
  msgid "View Stats"
966
  msgstr "Statisztikák megtekintése"
967
 
968
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:523
969
  msgid "Download ODF file"
970
  msgstr "ODF fájl letöltése"
971
 
972
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
973
  msgid "Download HTML file"
974
  msgstr "HTML fájl letöltése"
975
 
976
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:528
977
  msgid "Manual file not found."
978
  msgstr "Kézikönyv nem található."
979
 
980
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
981
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:706
982
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:740
983
  msgid "You do not have sufficient permissions to access this page."
984
  msgstr "Nincs megfelelő jogosultság az oldal megtekintéséhez."
985
 
986
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:608
987
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
988
+ msgstr ""
989
 
990
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
991
  msgid "WP Statistics %s installed on"
992
+ msgstr ""
993
 
994
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
995
  msgid "Error downloading GeoIP database from: %s - %s"
1009
 
1010
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
1011
  msgid "GeoIP update on"
1012
+ msgstr ""
1013
 
1014
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
1015
  msgid "Error downloading browscap database from: %s - %s"
1021
 
1022
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
1023
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1024
+ msgstr ""
1025
 
1026
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
1027
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1028
+ msgstr ""
1029
 
1030
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
1031
  msgid "browscap already at current version!"
1033
 
1034
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
1035
  msgid "Browscap.ini update on"
1036
+ msgstr ""
1037
 
1038
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
1039
  msgid "Quick Stats"
1040
+ msgstr ""
1041
 
1042
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
1043
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
1052
 
1053
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
1054
  msgid "Today's Visitor Map"
1055
+ msgstr ""
1056
 
1057
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
1058
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
1067
  msgstr "Top 10 oldal"
1068
 
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
1070
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:31
1071
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
1072
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
1073
  msgid "Recent Visitors"
1103
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
1104
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
1105
  msgid "Top 10 Visitors Today"
1106
+ msgstr ""
1107
 
1108
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
1109
  msgid "Please reload the dashboard to display the content of this widget."
1110
+ msgstr ""
1111
 
1112
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
1113
  msgid "WP Statistics Overview"
1114
+ msgstr ""
1115
 
1116
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
1117
  msgid "This post is not yet published."
1118
+ msgstr ""
1119
 
1120
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:24
1121
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1122
  msgstr "Képtelen-hoz teher a GeoIP adatbázis, győződj meg Önnek van letöltött ez-ban elintézés oldal."
1123
 
1124
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:48
1125
  msgid "Updated %s GeoIP records in the visitors database."
1126
  msgstr "Frissíti %s GeoIP adatbázisrekordok látogatók."
1127
 
1141
 
1142
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
1143
  msgid "Database pruned on"
1144
+ msgstr ""
1145
 
1146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
1147
  msgid "Please select a value over 30 days."
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1156
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1157
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:76
1158
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1159
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
1160
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
1161
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1162
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1163
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
1183
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1184
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1185
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1186
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
1187
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
1188
  msgid "Browsers"
1189
  msgstr "Böngészők"
1190
 
1210
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1211
  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!"
1212
 
1213
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
1214
  msgid "Exclusions Statistics"
1215
  msgstr "Statisztika kizárások"
1216
 
1217
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1219
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1220
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1221
  msgid "10 Days"
1222
  msgstr "10 nap"
1223
 
1224
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1225
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1228
  msgid "20 Days"
1229
  msgstr "20 nap"
1230
 
1231
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1232
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1233
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1235
  msgid "30 Days"
1236
  msgstr "30 nap"
1237
 
1238
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1239
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1240
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1241
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1242
  msgid "2 Months"
1243
  msgstr "2 hónap"
1244
 
1245
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1247
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1248
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1249
  msgid "3 Months"
1250
  msgstr "3 hónap"
1251
 
1252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1254
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1255
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1256
  msgid "6 Months"
1257
  msgstr "6 hónap"
1258
 
1259
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:65
1260
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1261
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1263
  msgid "9 Months"
1264
  msgstr "9 hónap"
1265
 
1266
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:66
1267
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1268
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1269
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1270
  msgid "1 Year"
1271
  msgstr "1 év"
1272
 
1273
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
1274
  msgid "Total Exclusions: %s"
1275
  msgstr "Kizárások összesen: %s"
1276
 
1277
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:77
1278
  msgid "Exclusions Statistical Chart"
1279
  msgstr "Kizárások statisztikai diagram"
1280
 
1281
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1282
  msgid "Excluded hits in the last"
1283
  msgstr "Kizárt az utolsó találatok"
1284
 
1285
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1286
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1287
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1288
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
1291
  msgid "days"
1292
  msgstr "napban"
1293
 
1294
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:120
1295
  msgid "Number of excluded hits"
1296
  msgstr "Kizárt találatok száma"
1297
 
1321
  msgid "Visitor"
1322
  msgstr "Látogató"
1323
 
1324
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:64
1325
  msgid "Latest Search Word Statistics"
1326
  msgstr "Legújabb keresési szót statisztika"
1327
 
1328
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:99
1329
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
1330
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:50
1331
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1332
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1333
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
1335
  msgid "#hash#"
1336
  msgstr "#hash #"
1337
 
1338
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:104
1339
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:103
1340
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:55
1341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1343
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
1346
  msgid "Map"
1347
  msgstr "Térkép"
1348
 
1349
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1350
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1351
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1352
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1353
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1354
  msgid "Page"
1355
  msgstr "Oldal"
1356
 
1357
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1358
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1359
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1360
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1361
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1362
  msgid "From"
1363
  msgstr "/"
1364
 
1365
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:46
1366
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:33
1367
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1368
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1369
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1370
  msgid "All"
1371
  msgstr "Mind"
1372
 
1373
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
1374
  msgid "Search for"
1375
  msgstr "Keresés"
1376
 
1377
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:65
1378
  msgid "Recent Visitor Statistics"
1379
  msgstr "Legutóbbi látogatói statisztika"
1380
 
1381
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
1382
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
1383
  msgid "Online Users"
1384
+ msgstr ""
1385
 
1386
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:75
1387
  msgid "Online for "
1388
+ msgstr ""
1389
 
1390
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
1391
  msgid "Page Trend for Post ID"
1410
  msgid "Number of referrals"
1411
  msgstr "Átirányítások száma"
1412
 
1413
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
1414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1415
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1416
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
1459
  msgstr "Top 5 oldal trend statisztika"
1460
 
1461
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1462
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:60
1463
  msgid "Number of Hits"
1464
  msgstr "Találatok száma"
1465
 
1491
 
1492
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
1493
  msgid "Top 100 Visitors Today"
1494
+ msgstr ""
1495
 
1496
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
1497
  msgid "About WP Statistics Version %s"
1553
  msgid "Yesterday"
1554
  msgstr "Tegnap"
1555
 
 
 
 
 
 
 
 
 
 
 
 
 
1556
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1557
  msgid "Daily Total"
1558
  msgstr "Napi összes"
1574
  msgstr "Idő: %s"
1575
 
1576
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1577
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:219
1578
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
1579
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
1580
  msgid "Hits"
1581
  msgstr "Találatok"
1582
 
1583
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
1584
  msgid "IP"
1585
+ msgstr ""
1586
 
1587
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
1588
  msgid "Agent"
1589
+ msgstr ""
1590
 
1591
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
1592
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1593
  msgid "Version"
1594
+ msgstr ""
1595
 
1596
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
1597
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
1609
 
1610
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
1611
  msgid "No agent data found to remove!"
1612
+ msgstr ""
1613
 
1614
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1615
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1616
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1617
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:80
1618
  msgid "Please select the desired items."
1619
  msgstr "Kérjük, kiválasztani a kívánt elemeket."
1620
 
1624
 
1625
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
1626
  msgid "No platform data found to remove!"
1627
+ msgstr ""
1628
 
1629
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
1630
  msgid "%s table data deleted successfully."
1656
 
1657
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1658
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1659
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
1660
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
1661
  msgid "Countries"
1662
  msgstr "Országok"
1663
 
1728
 
1729
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
1730
  msgid "Historical Values"
1731
+ msgstr ""
1732
 
1733
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1734
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1735
+ msgstr ""
1736
 
1737
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1738
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1739
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1740
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:304
1741
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:377
1742
  msgid "Visitors"
1743
  msgstr "Megtekintések"
1744
 
1745
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
1746
  msgid "Number of historical number of visitors to the site (current value is %s)."
1747
+ msgstr ""
1748
 
1749
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
1750
  msgid "Number of historical number of visits to the site (current value is %s)."
1751
+ msgstr ""
1752
 
1753
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
1754
  msgid "Update now!"
1755
+ msgstr ""
1756
 
1757
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
1758
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
1830
 
1831
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
1832
  msgid "Last Overview page memory usage"
1833
+ msgstr ""
1834
 
1835
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
1836
  msgid "Memory usage in the overview page"
1837
+ msgstr ""
1838
 
1839
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
1840
  msgid "PHP Memory Limit"
2003
 
2004
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
2005
  msgid "Browser"
2006
+ msgstr ""
2007
 
2008
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
2009
  msgid "The detected client browser."
2010
+ msgstr ""
2011
 
2012
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
2013
  msgid "The detected client browser version."
2014
+ msgstr ""
2015
 
2016
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
2017
  msgid "The detected client platform."
2018
+ msgstr ""
2019
 
2020
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
2021
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2069
 
2070
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
2071
  msgid "Historical"
2072
+ msgstr ""
2073
 
2074
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
2075
  msgid "WP Statistics V%s"
2154
 
2155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
2156
  msgid "Make sure you have access to your PHP error logs."
2157
+ msgstr ""
2158
 
2159
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
2160
  msgid "And a few things to double-check:"
2210
 
2211
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
2212
  msgid "WP Statistics Honey Pot Page"
2213
+ msgstr ""
2214
 
2215
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
2216
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2217
+ msgstr ""
2218
 
2219
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
2220
  msgid "Access Levels"
2249
  msgstr "Ha szüksége van a meghatalmazást erőteljesebb megoldást érdemes nézni a WordPress plugin könyvtárban (% s)."
2250
 
2251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
2253
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
2254
  msgid "Exclusions"
2255
  msgstr "Kizárások"
2256
 
2309
 
2310
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
2311
  msgid "Robot visit threshold"
2312
+ msgstr ""
2313
 
2314
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
2315
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2316
+ msgstr ""
2317
 
2318
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
2319
  msgid "Excluded IP address list"
2337
 
2338
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
2339
  msgid "Use honey pot"
2340
+ msgstr ""
2341
 
2342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
2343
  msgid "Use a honey pot page to identify robots."
2344
+ msgstr ""
2345
 
2346
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
2347
  msgid "Honey pot post id"
2348
+ msgstr ""
2349
 
2350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
2351
  msgid "The post id to use for the honeypot page."
2352
+ msgstr ""
2353
 
2354
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
2355
  msgid "Create a new honey pot page"
2356
+ msgstr ""
2357
 
2358
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
2359
  msgid "GeoIP Exclusions"
2360
+ msgstr ""
2361
 
2362
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
2363
  msgid "Excluded countries list"
2364
+ msgstr ""
2365
 
2366
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
2367
  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."
2368
+ msgstr ""
2369
 
2370
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
2371
  msgid "Included countries list"
2372
+ msgstr ""
2373
 
2374
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
2375
  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."
2376
+ msgstr ""
2377
 
2378
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
2379
  msgid "Host Exclusions"
2380
+ msgstr ""
2381
 
2382
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
2383
  msgid "Excluded hosts list"
2384
+ msgstr ""
2385
 
2386
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
2387
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2388
+ msgstr ""
2389
 
2390
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
2391
  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."
2392
+ msgstr ""
2393
 
2394
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
2395
  msgid "Site URL Exclusions"
2413
 
2414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
2415
  msgid "Excluded RSS feeds"
2416
+ msgstr ""
2417
 
2418
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
2419
  msgid "Exclude the RSS feeds for registering as a hit."
2420
+ msgstr ""
2421
 
2422
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
2423
  msgid "browscap settings"
2442
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2444
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
2445
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:329
2446
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2447
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2448
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
2503
 
2504
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2505
  msgid "User online"
2506
+ msgstr "Jelenlévő látogató"
languages/wp_statistics-id_ID.mo CHANGED
Binary file
languages/wp_statistics-id_ID.po CHANGED
@@ -2,17 +2,129 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-01-27 19:20-0500\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n > 1;\n"
10
- "X-Generator: Poedit 1.7.4\n"
11
  "Project-Id-Version: WP Statistics\n"
12
- "POT-Creation-Date: \n"
13
- "Last-Translator: \n"
14
- "Language-Team: \n"
15
- "Language: id_ID\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
18
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
@@ -38,11 +150,11 @@ msgstr "Waktu untuk check akurat online pengguna di situs. Sekarang: %s kedua"
38
 
39
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
40
  msgid "Record all user"
41
- msgstr "Merekam semua pengguna"
42
 
43
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
44
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
45
- msgstr "Mengabaikan pengaturan pengecualian dan mencatat semua pengguna yang secara online (termasuk arahan diri dan robot). Seharusnya hanya digunakan untuk pemecahan masalah."
46
 
47
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
48
  msgid "Store entire user agent string"
@@ -62,8 +174,8 @@ msgstr "Untuk setiap kunjungan untuk mendata beberapa hit. Saat ini %s."
62
 
63
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
64
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
65
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:295
66
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
67
  msgid "Pages"
68
  msgstr "Halaman"
69
 
@@ -73,11 +185,11 @@ msgstr "Melacak semua halaman"
73
 
74
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
75
  msgid "Strip parameters from URI"
76
- msgstr "Parameter Jalur dari URI"
77
 
78
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
79
  msgid "This will remove anything after the ? in a URL."
80
- msgstr "Ini akan menghapus apa-apa setelah? dalam URL."
81
 
82
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
83
  msgid "Disable hits column in post/pages list"
@@ -121,7 +233,7 @@ msgstr "Secara default WP Statistics toko admin manual dalam direktori plugin (~
121
 
122
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
123
  msgid "Search Engines"
124
- msgstr "Mesin Pencari"
125
 
126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
127
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
@@ -193,11 +305,11 @@ msgstr "Memperbarui data GeoIP hilang setelah men-download database baru."
193
 
194
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
195
  msgid "Country code for private IP addresses"
196
- msgstr "Kode negara untuk alamat IP privat"
197
 
198
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
199
  msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
200
- msgstr "Standar internasional dua huruf kode negara (mis. AS = Amerika Serikat, CA = Kanada, dll) untuk swasta (non-routable) alamat IP (mis. 10.0.0.1, 192.158.1.1, 127.0.0.1, dll). Gunakan &quot;000&quot; (tiga nol) untuk menggunakan &quot;Unknown&quot; sebagai kode negara."
201
 
202
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
203
  msgid "GeoIP collection is disabled due to the following reasons:"
@@ -249,7 +361,7 @@ msgstr "Jumlah hari untuk menjaga statistik untuk. Nilai minimum adalah 30 hari.
249
 
250
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
251
  msgid "Common Report Options"
252
- msgstr "Umum Laporan Pilihan"
253
 
254
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
255
  msgid "E-mail addresses"
@@ -257,20 +369,22 @@ msgstr "Alamat e-mail"
257
 
258
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
259
  msgid "A comma separated list of e-mail addresses to send reports to."
260
- msgstr "Sebuah daftar dipisahkan koma alamat e-mail untuk mengirim laporan ke."
261
 
262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
263
  msgid "Update Reports"
264
- msgstr "Laporan pembaruan"
265
 
 
266
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
267
  msgid "Browscap"
268
- msgstr "Browscap"
269
 
270
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
271
  msgid "Send a report whenever the browscap.ini is updated."
272
- msgstr "Mengirim laporan setiap kali Browscap.ini diperbarui."
273
 
 
274
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
275
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
276
  msgid "GeoIP"
@@ -278,27 +392,27 @@ msgstr "GeoIP"
278
 
279
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
280
  msgid "Send a report whenever the GeoIP database is updated."
281
- msgstr "Kirim Laporan kapan database GeoIP diperbarui."
282
 
283
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
284
  msgid "Pruning"
285
- msgstr "Pemangkasan"
286
 
287
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
288
  msgid "Send a report whenever the pruning of database is run."
289
- msgstr "Kirim Laporan kapan pemangkasan database dijalankan."
290
 
291
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
292
  msgid "Upgrade"
293
- msgstr "Meningkatkan"
294
 
295
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
296
  msgid "Send a report whenever the plugin is upgraded."
297
- msgstr "Mengirim laporan setiap kali plugin-upgrade."
298
 
299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
300
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
301
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
302
  msgid "Statistical reporting"
303
  msgstr "Laporan Statistik"
304
 
@@ -308,7 +422,7 @@ msgstr "Jadwal"
308
 
309
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
310
  msgid "Select how often to receive statistical report."
311
- msgstr "Pilih seberapa sering menerima laporan statistik."
312
 
313
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
314
  msgid "Send reports via"
@@ -324,7 +438,7 @@ msgstr "SMS"
324
 
325
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
326
  msgid "Select delivery method for statistical report."
327
- msgstr "Pilih metode pengiriman untuk laporan statistik."
328
 
329
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
330
  msgid "Note: To send SMS text messages please install the %s plugin."
@@ -340,16 +454,16 @@ msgstr "Laporan tubuh"
340
 
341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
342
  msgid "Enter the contents of the report."
343
- msgstr "Masukkan isi laporan."
344
 
345
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
346
  msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
347
- msgstr "Setiap shortcode didukung oleh instalasi WordPress, mencakup semua shortcode untuk WP Statistik (lihat manual admin untuk daftar kode yang tersedia) didukung dalam tubuh pesan. Berikut adalah beberapa contoh:"
348
 
349
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
351
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
352
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:464
353
  msgid "User Online"
354
  msgstr "User sedang online"
355
 
@@ -416,38 +530,39 @@ msgstr "Atas halaman yang dikunjungi"
416
 
417
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
418
  msgid "Dashboard"
419
- msgstr "Dasbor"
420
 
421
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
422
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
423
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
424
  msgid "The following items are global to all users."
425
- msgstr "Item berikut ini global untuk semua pengguna."
426
 
427
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
428
  msgid "Disable dashboard widgets"
429
- msgstr "Nonaktifkan widget dashboard"
430
 
431
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
432
  msgid "Disable the dashboard widgets."
433
- msgstr "Menonaktifkan widget dashboard."
434
 
435
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
436
  msgid "Page/Post Editor"
437
- msgstr "Halaman / Pos Editor"
438
 
439
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
440
  msgid "Disable post/page editor widget"
441
- msgstr "Nonaktifkan post / widget halaman Editor"
442
 
443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
444
  msgid "Disable the page/post editor widget."
445
- msgstr "Nonaktifkan editor widget halaman / post."
446
 
447
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
448
  msgid "Map type"
449
  msgstr "Peta jenis"
450
 
 
451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
452
  msgid "Google"
453
  msgstr "Google"
@@ -482,7 +597,7 @@ msgstr "Fitur ini dapat menyebabkan penurunan kinerja ketika melihat statistik d
482
 
483
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
484
  msgid "Overview Widgets to Display"
485
- msgstr "Ikhtisar Widget untuk Tampilan"
486
 
487
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
488
  msgid "The following items are unique to each user. If you do not select the 'About' widget it will automatically be displayed in the last positon of column A."
@@ -531,31 +646,31 @@ msgstr "N/A"
531
 
532
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
533
  msgid "Slot 7"
534
- msgstr "Slot 7"
535
 
536
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
537
  msgid "WP Statisitcs Removal"
538
- msgstr "WP Statisitcs Removal"
539
 
540
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
541
  msgid "Uninstalling WP Statistics will not remove the data and settings, you can use this option to remove the WP Statistics data from your install before uninstalling the plugin."
542
- msgstr "Menanggalkan WP Statistik tidak akan menghapus data dan pengaturan, Anda dapat menggunakan opsi ini untuk menghapus data WP Statistik dari Anda install sebelum menghapus instalasi plugin."
543
 
544
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
545
  msgid "Once you submit this form the settings will be deleted during the page load, however WP Statistics will still show up in your Admin menu until another page load is executed."
546
- msgstr "Setelah Anda mengirimkan formulir ini pengaturan akan dihapus selama buka halaman, namun WP Statistik masih akan muncul dalam menu Admin Anda sampai lain buka halaman dijalankan."
547
 
548
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
549
  msgid "Remove data and settings"
550
- msgstr "Menghapus data dan pengaturan"
551
 
552
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
553
  msgid "Remove"
554
- msgstr "Menghapus"
555
 
556
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
557
  msgid "Remove data and settings, this action cannot be undone."
558
- msgstr "Menghapus data dan pengaturan, tindakan ini tidak bisa dibatalkan."
559
 
560
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
561
  msgid "General"
@@ -563,11 +678,11 @@ msgstr "Umum"
563
 
564
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
565
  msgid "Notifications"
566
- msgstr "Pemberitahuan"
567
 
568
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
569
  msgid "Dashboard/Overview"
570
- msgstr "Dashboard / Ikhtisar"
571
 
572
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
573
  msgid "Access/Exclusions"
@@ -583,7 +698,7 @@ msgstr "Pemeliharaan"
583
 
584
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
585
  msgid "Removal"
586
- msgstr "Pemindahan"
587
 
588
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
589
  msgid "Update"
@@ -610,8 +725,8 @@ msgid "Once Every 4 Weeks"
610
  msgstr "Setiap 4 minggu"
611
 
612
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
613
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:284
614
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:321
615
  msgid "Statistics"
616
  msgstr "Statistik"
617
 
@@ -697,7 +812,7 @@ msgid "Items"
697
  msgstr "Butir"
698
 
699
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
700
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:489
701
  msgid "Yesterday visit"
702
  msgstr "Pengunjung Kemarin"
703
 
@@ -709,172 +824,172 @@ msgstr "Pencari yang disebut"
709
  msgid "Select type of search engine"
710
  msgstr "Pilih opsi untuk mesin pencari"
711
 
712
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
713
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
714
  msgstr "Kesalahan: WP Statistics telah mendeteksi sebuah versi tidak didukung php, WP Statistics tidak akan berfungsi tanpa versi PHP "
715
 
716
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
717
  msgid " or higher!"
718
  msgstr "atau lebih tinggi!"
719
 
720
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
721
  msgid "Your current PHP version is"
722
- msgstr "Versi PHP Anda saat ini"
723
 
724
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:42
725
  msgid "WP Statistics has been removed, please disable and delete it."
726
- msgstr "WP Statistik telah dihapus, nonaktifkan dan menghapusnya."
727
 
728
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:53
729
  msgid "WP Statistics"
730
  msgstr "WP Statistics"
731
 
732
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:54
733
  msgid "Complete statistics for your WordPress site."
734
  msgstr "Statistik lengkap untuk situs WordPress Anda."
735
 
736
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
737
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
738
  msgstr "Pengguna online pelacakan dalam WP Statistics tidak diaktifkan, harap menuju %s dan mengaktifkannya."
739
 
740
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:97
741
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
742
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
743
  msgid "setting page"
744
  msgstr "Halaman pengaturan"
745
 
746
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:100
747
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
748
  msgstr "Memukul pelacakan di WP Statistics tidak diaktifkan, harap menuju %s dan mengaktifkannya."
749
 
750
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:103
751
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
752
  msgstr "Pelacakan dalam WP Statistics pengunjung tidak diaktifkan, harap menuju %s dan mengaktifkannya."
753
 
754
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
755
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
756
  msgstr "Koleksi GeoIP tidak aktif, harap menuju %s dan mengaktifkan fitur ini."
757
 
758
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:106
759
  msgid "Setting page > GeoIP"
760
  msgstr "Halaman Pengaturan > GeoIP"
761
 
762
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:191
763
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
764
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
765
  msgid "Settings"
766
  msgstr "Pengaturan"
767
 
768
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
769
  msgid "Click here to visit the plugin on WordPress.org"
770
  msgstr "Klik di sini untuk mengunjungi plugin di WordPress.org"
771
 
772
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:203
773
  msgid "Visit WordPress.org page"
774
  msgstr "Kunjungi halaman WordPress.org"
775
 
776
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
777
  msgid "Click here to rate and review this plugin on WordPress.org"
778
  msgstr "Klik di sini untuk menilai dan meninjau plugin ini di WordPress.org"
779
 
780
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:206
781
  msgid "Rate this plugin"
782
  msgstr "Menilai plugin ini"
783
 
784
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:250
785
  msgid "WP Statistics - Hits"
786
  msgstr "WP Statistics - Hits"
787
 
788
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:287
789
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:324
790
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:362
791
  msgid "Overview"
792
  msgstr "Ikhtisar"
793
 
794
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
795
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
796
  msgid "Online"
797
- msgstr "On Line"
798
 
799
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
800
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
801
  msgid "Referrers"
802
- msgstr "Referer"
803
 
804
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
805
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
806
  msgid "Searches"
807
  msgstr "Pencarian"
808
 
809
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
810
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
811
  msgid "Search Words"
812
  msgstr "Kata-kata pencarian"
813
 
814
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
815
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
816
  msgid "Top Visitors Today"
817
- msgstr "Top Pengunjung Hari ini"
818
 
819
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
820
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
821
  msgid "Optimization"
822
  msgstr "Optimasi"
823
 
824
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
825
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:338
826
  msgid "Manual"
827
  msgstr "Manual"
828
 
829
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
830
  msgid "Site"
831
- msgstr "Situs"
832
 
833
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:354
834
  msgid "Options"
835
- msgstr "Pilihan"
836
 
837
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:471
838
  msgid "Today visitor"
839
  msgstr "Pengunjung hari ini"
840
 
841
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:477
842
  msgid "Today visit"
843
  msgstr "Hari ini mengunjungi"
844
 
845
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:483
846
  msgid "Yesterday visitor"
847
  msgstr "Pengunjung kemarin"
848
 
849
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:495
850
  msgid "View Stats"
851
  msgstr "Lihat statistik"
852
 
853
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:519
854
  msgid "Download ODF file"
855
  msgstr "Men-download ODF file"
856
 
857
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:520
858
  msgid "Download HTML file"
859
  msgstr "Men-download HTML file"
860
 
861
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
862
  msgid "Manual file not found."
863
  msgstr "Manual file tidak ditemukan."
864
 
865
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:591
866
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:702
867
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:736
868
  msgid "You do not have sufficient permissions to access this page."
869
  msgstr "Anda tidak mempunyai akses yang cukup untuk halaman ini"
870
 
871
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:604
872
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
873
- msgstr "Tabel Plugin tidak ada dalam database! Silahkan kembali menjalankan%s menginstal rutin%s."
874
 
875
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
876
  msgid "WP Statistics %s installed on"
877
- msgstr "WP Statistik%s diinstal pada"
878
 
879
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
880
  msgid "Error downloading GeoIP database from: %s - %s"
@@ -894,7 +1009,7 @@ msgstr "GeoIP Database diperbarui berhasil!"
894
 
895
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
896
  msgid "GeoIP update on"
897
- msgstr "Geoip memperbarui on"
898
 
899
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
900
  msgid "Error downloading browscap database from: %s - %s"
@@ -906,11 +1021,11 @@ msgstr "database browscap yang berhasil!"
906
 
907
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
908
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
909
- msgstr "Database browscap diperbarui gagal! Cache file terlalu besar, kembali ke Browscap.ini sebelumnya."
910
 
911
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
912
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
913
- msgstr "Database browscap diperbarui gagal! Browscap.ini baru mis-identifing agen pengguna sebagai crawler, kembali ke Browscap.ini sebelumnya."
914
 
915
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
916
  msgid "browscap already at current version!"
@@ -918,11 +1033,11 @@ msgstr "browscap sudah di versi saat ini!"
918
 
919
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
920
  msgid "Browscap.ini update on"
921
- msgstr "Browscap.ini update pada"
922
 
923
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
924
  msgid "Quick Stats"
925
- msgstr "Statistik Cepat"
926
 
927
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
928
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
@@ -937,7 +1052,7 @@ msgstr "Top 10 negara"
937
 
938
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
939
  msgid "Today's Visitor Map"
940
- msgstr "Hari ini Pengunjung Peta"
941
 
942
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
943
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
@@ -952,7 +1067,7 @@ msgid "Top 10 Pages"
952
  msgstr "Top 10 halaman"
953
 
954
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
955
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:30
956
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
957
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
958
  msgid "Recent Visitors"
@@ -988,25 +1103,25 @@ msgstr "Kata-kata pencarian terbaru"
988
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
989
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
990
  msgid "Top 10 Visitors Today"
991
- msgstr "Top 10 Pengunjung Hari ini"
992
 
993
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
994
  msgid "Please reload the dashboard to display the content of this widget."
995
- msgstr "Muat ulang dashboard untuk menampilkan isi dari widget ini."
996
 
997
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
998
  msgid "WP Statistics Overview"
999
- msgstr "WP Statistik Ikhtisar"
1000
 
1001
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
1002
  msgid "This post is not yet published."
1003
- msgstr "Posting ini belum diterbitkan."
1004
 
1005
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:26
1006
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1007
  msgstr "Tidak dapat memuat GeoIP database, pastikan Anda telah men-download di halaman pengaturan."
1008
 
1009
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:50
1010
  msgid "Updated %s GeoIP records in the visitors database."
1011
  msgstr "Diperbarui %s GeoIP record di database pengunjung."
1012
 
@@ -1026,7 +1141,7 @@ msgstr "Tidak ada catatan ditemukan untuk membersihkan dari %s!"
1026
 
1027
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
1028
  msgid "Database pruned on"
1029
- msgstr "Database dipangkas pada"
1030
 
1031
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
1032
  msgid "Please select a value over 30 days."
@@ -1039,10 +1154,10 @@ msgstr "Browser Statistik"
1039
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1040
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1041
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1042
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:74
1043
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1044
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:61
1045
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:60
1046
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1047
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1048
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
@@ -1068,8 +1183,8 @@ msgstr "Klik untuk beralih"
1068
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1070
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1071
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
1072
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:363
1073
  msgid "Browsers"
1074
  msgstr "Browser"
1075
 
@@ -1095,79 +1210,79 @@ msgstr "Versi %s"
1095
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1096
  msgstr "Perhatian: Pengecualian tidak saat ini diatur untuk direkam, hasil di bawah ini mungkin tidak mencerminkan Statistik!"
1097
 
1098
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
1099
  msgid "Exclusions Statistics"
1100
  msgstr "Pengecualian Statistik"
1101
 
1102
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
1103
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1104
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1105
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1106
  msgid "10 Days"
1107
  msgstr "10 hari"
1108
 
1109
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
1110
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1111
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1112
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1113
  msgid "20 Days"
1114
  msgstr "20 hari"
1115
 
1116
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1117
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1118
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1119
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1120
  msgid "30 Days"
1121
  msgstr "30 hari"
1122
 
1123
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1124
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1125
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1127
  msgid "2 Months"
1128
  msgstr "2 bulan"
1129
 
1130
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1131
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1132
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1133
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1134
  msgid "3 Months"
1135
  msgstr "3 bulan"
1136
 
1137
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1138
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1139
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1140
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1141
  msgid "6 Months"
1142
  msgstr "6 bulan"
1143
 
1144
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1145
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1147
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1148
  msgid "9 Months"
1149
  msgstr "9 bulan"
1150
 
1151
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1152
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1153
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1155
  msgid "1 Year"
1156
  msgstr "1 tahun"
1157
 
1158
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:68
1159
  msgid "Total Exclusions: %s"
1160
  msgstr "Jumlah pengecualian: %s"
1161
 
1162
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:75
1163
  msgid "Exclusions Statistical Chart"
1164
  msgstr "Grafik Statistik pengecualian"
1165
 
1166
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1167
  msgid "Excluded hits in the last"
1168
  msgstr "Dikecualikan hits di terakhir"
1169
 
1170
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:97
1171
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1172
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1173
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
@@ -1176,7 +1291,7 @@ msgstr "Dikecualikan hits di terakhir"
1176
  msgid "days"
1177
  msgstr "hari"
1178
 
1179
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:118
1180
  msgid "Number of excluded hits"
1181
  msgstr "Jumlah hit dikecualikan"
1182
 
@@ -1206,13 +1321,13 @@ msgstr "Kunjungi"
1206
  msgid "Visitor"
1207
  msgstr "Pengunjung"
1208
 
1209
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:62
1210
  msgid "Latest Search Word Statistics"
1211
  msgstr "Cari kata Statistik terbaru"
1212
 
1213
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:97
1214
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
1215
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:48
1216
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1217
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
@@ -1220,9 +1335,9 @@ msgstr "Cari kata Statistik terbaru"
1220
  msgid "#hash#"
1221
  msgstr "#hash #"
1222
 
1223
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:102
1224
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:102
1225
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:53
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1228
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
@@ -1231,45 +1346,46 @@ msgstr "#hash #"
1231
  msgid "Map"
1232
  msgstr "Peta"
1233
 
1234
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1235
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1236
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1237
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1238
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1239
  msgid "Page"
1240
  msgstr "Halaman"
1241
 
1242
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:139
1243
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:135
1244
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:105
1245
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1247
  msgid "From"
1248
  msgstr "Dari"
1249
 
1250
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
 
1251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1252
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1254
  msgid "All"
1255
  msgstr "Semua"
1256
 
1257
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:62
1258
  msgid "Search for"
1259
  msgstr "Mencari"
1260
 
1261
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:64
1262
  msgid "Recent Visitor Statistics"
1263
  msgstr "Statistik pengunjung terkini"
1264
 
1265
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
1266
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
1267
  msgid "Online Users"
1268
- msgstr "Pengguna Online"
1269
 
1270
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:73
1271
  msgid "Online for "
1272
- msgstr "Online untuk"
1273
 
1274
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
1275
  msgid "Page Trend for Post ID"
@@ -1294,6 +1410,7 @@ msgstr "Cari mesin arahan dalam terakhir"
1294
  msgid "Number of referrals"
1295
  msgstr "Jumlah arahan"
1296
 
 
1297
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1298
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
@@ -1342,7 +1459,7 @@ msgid "Top 5 Page Trending Stats"
1342
  msgstr "Top 5 halaman statistik tren"
1343
 
1344
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1345
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:58
1346
  msgid "Number of Hits"
1347
  msgstr "Jumlah Hits"
1348
 
@@ -1374,7 +1491,7 @@ msgstr "Referensi"
1374
 
1375
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
1376
  msgid "Top 100 Visitors Today"
1377
- msgstr "Top 100 Pengunjung Hari ini"
1378
 
1379
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
1380
  msgid "About WP Statistics Version %s"
@@ -1436,18 +1553,6 @@ msgstr "Hari ini"
1436
  msgid "Yesterday"
1437
  msgstr "Kemarin"
1438
 
1439
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
1440
- msgid "Week"
1441
- msgstr "Minggu"
1442
-
1443
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
1444
- msgid "Month"
1445
- msgstr "Bulan"
1446
-
1447
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
1448
- msgid "Year"
1449
- msgstr "Tahun"
1450
-
1451
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1452
  msgid "Daily Total"
1453
  msgstr "Harian Total"
@@ -1469,24 +1574,24 @@ msgid "Time: %s"
1469
  msgstr "Waktu: %s"
1470
 
1471
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1472
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:215
1473
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:293
1474
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
1475
  msgid "Hits"
1476
  msgstr "Hits"
1477
 
1478
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
1479
  msgid "IP"
1480
- msgstr "AKU P"
1481
 
1482
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
1483
  msgid "Agent"
1484
- msgstr "Agen"
1485
 
1486
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
1487
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1488
  msgid "Version"
1489
- msgstr "Versi"
1490
 
1491
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
1492
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
@@ -1504,12 +1609,12 @@ msgstr "%s agen data dihapus berhasil."
1504
 
1505
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
1506
  msgid "No agent data found to remove!"
1507
- msgstr "Tidak ada data agen ditemukan untuk menghapus!"
1508
 
1509
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1510
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1511
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1512
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:57
1513
  msgid "Please select the desired items."
1514
  msgstr "Pilih item yang dikehendaki."
1515
 
@@ -1519,7 +1624,7 @@ msgstr "%s platform data dihapus berhasil."
1519
 
1520
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
1521
  msgid "No platform data found to remove!"
1522
- msgstr "Tidak ada data platform yang ditemukan untuk menghapus!"
1523
 
1524
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
1525
  msgid "%s table data deleted successfully."
@@ -1551,8 +1656,8 @@ msgstr "Indeks database"
1551
 
1552
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1553
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1554
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:290
1555
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:364
1556
  msgid "Countries"
1557
  msgstr "Negara"
1558
 
@@ -1623,31 +1728,31 @@ msgstr "Mulai sekarang!"
1623
 
1624
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
1625
  msgid "Historical Values"
1626
- msgstr "Nilai sejarah"
1627
 
1628
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1629
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1630
- msgstr "Catatan: Ketika Anda baru saja dibersihkan database Anda harus kembali halaman ini untuk nomor tersebut benar."
1631
 
1632
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1633
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1634
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1635
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
1636
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
1637
  msgid "Visitors"
1638
  msgstr "Pengunjung"
1639
 
1640
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
1641
  msgid "Number of historical number of visitors to the site (current value is %s)."
1642
- msgstr "Jumlah nomor sejarah pengunjung ke situs (nilai saat ini adalah%s)."
1643
 
1644
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
1645
  msgid "Number of historical number of visits to the site (current value is %s)."
1646
- msgstr "Jumlah nomor sejarah kunjungan ke situs (nilai saat ini adalah%s)."
1647
 
1648
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
1649
  msgid "Update now!"
1650
- msgstr "Memperbarui sekarang!"
1651
 
1652
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
1653
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
@@ -1725,11 +1830,11 @@ msgstr "Byte"
1725
 
1726
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
1727
  msgid "Last Overview page memory usage"
1728
- msgstr "Terakhir Ikhtisar penggunaan memori halaman"
1729
 
1730
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
1731
  msgid "Memory usage in the overview page"
1732
- msgstr "Penggunaan memori di halaman ikhtisar"
1733
 
1734
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
1735
  msgid "PHP Memory Limit"
@@ -1898,19 +2003,19 @@ msgstr "Klien user agent string."
1898
 
1899
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
1900
  msgid "Browser"
1901
- msgstr "Browser"
1902
 
1903
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
1904
  msgid "The detected client browser."
1905
- msgstr "Browser klien terdeteksi."
1906
 
1907
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
1908
  msgid "The detected client browser version."
1909
- msgstr "Terdeteksi browser versi klien."
1910
 
1911
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
1912
  msgid "The detected client platform."
1913
- msgstr "Platform klien terdeteksi."
1914
 
1915
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
1916
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
@@ -1964,7 +2069,7 @@ msgstr "Update"
1964
 
1965
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
1966
  msgid "Historical"
1967
- msgstr "Historis"
1968
 
1969
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
1970
  msgid "WP Statistics V%s"
@@ -2049,7 +2154,7 @@ msgstr "Apakah Anda mencari di Internet untuk setiap pesan error yang Anda terim
2049
 
2050
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
2051
  msgid "Make sure you have access to your PHP error logs."
2052
- msgstr "Pastikan Anda memiliki akses ke log kesalahan PHP Anda."
2053
 
2054
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
2055
  msgid "And a few things to double-check:"
@@ -2105,11 +2210,11 @@ msgstr "Farsi"
2105
 
2106
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
2107
  msgid "WP Statistics Honey Pot Page"
2108
- msgstr "WP Statistik Honey Pot Halaman"
2109
 
2110
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
2111
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2112
- msgstr "Ini adalah pot madu untuk WP Statistik untuk menggunakan, jangan hapus."
2113
 
2114
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
2115
  msgid "Access Levels"
@@ -2144,8 +2249,8 @@ msgid "If you need a more robust solution to delegate access you might want to l
2144
  msgstr "Jika Anda memerlukan solusi yang lebih kuat untuk mendelegasikan akses Anda mungkin ingin melihat %s di WordPress plugin direktori."
2145
 
2146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2147
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
2148
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
2149
  msgid "Exclusions"
2150
  msgstr "Pengecualian"
2151
 
@@ -2204,11 +2309,11 @@ msgstr "Kekuatan Daftar robot diatur ulang ke default setelah update ke WP Stati
2204
 
2205
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
2206
  msgid "Robot visit threshold"
2207
- msgstr "Robot kunjungan ambang"
2208
 
2209
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
2210
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2211
- msgstr "Memperlakukan pengunjung dengan lebih dari jumlah ini kunjungan per hari sebagai robot. 0 = dinonaktifkan."
2212
 
2213
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
2214
  msgid "Excluded IP address list"
@@ -2232,59 +2337,59 @@ msgstr "Tambahkan 192.168.0.0"
2232
 
2233
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
2234
  msgid "Use honey pot"
2235
- msgstr "Gunakan madu pot"
2236
 
2237
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
2238
  msgid "Use a honey pot page to identify robots."
2239
- msgstr "Gunakan halaman madu pot untuk mengidentifikasi robot."
2240
 
2241
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
2242
  msgid "Honey pot post id"
2243
- msgstr "Madu pasca pot id"
2244
 
2245
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
2246
  msgid "The post id to use for the honeypot page."
2247
- msgstr "Pos id digunakan untuk halaman honeypot."
2248
 
2249
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
2250
  msgid "Create a new honey pot page"
2251
- msgstr "Buat halaman madu pot baru"
2252
 
2253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
2254
  msgid "GeoIP Exclusions"
2255
- msgstr "GeoIP Pengecualian"
2256
 
2257
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
2258
  msgid "Excluded countries list"
2259
- msgstr "Daftar negara-negara Dikecualikan"
2260
 
2261
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
2262
  msgid "A list of country codes (one per line, two letters each) to exclude from statistics collection. Use \"000\" (three zeros) to exclude unknown countries."
2263
- msgstr "Daftar kode negara (satu per baris, dua surat masing-masing) untuk mengecualikan dari koleksi statistik. Gunakan &quot;000&quot; (tiga nol) untuk mengecualikan negara yang tidak diketahui."
2264
 
2265
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
2266
  msgid "Included countries list"
2267
- msgstr "Daftar negara yang termasuk"
2268
 
2269
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
2270
  msgid "A list of country codes (one per line, two letters each) to include in statistics collection, if this list is not empty, only visitors from the included countries will be recorded. Use \"000\" (three zeros) to exclude unknown countries."
2271
- msgstr "Daftar kode negara (satu per baris, dua surat masing-masing) untuk memasukkan dalam koleksi statistik, jika daftar ini tidak kosong, hanya pengunjung dari negara-negara yang termasuk akan disimpan. Gunakan &quot;000&quot; (tiga nol) untuk mengecualikan negara yang tidak diketahui."
2272
 
2273
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
2274
  msgid "Host Exclusions"
2275
- msgstr "Pengecualian tuan rumah"
2276
 
2277
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
2278
  msgid "Excluded hosts list"
2279
- msgstr "Daftar host Dikecualikan"
2280
 
2281
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
2282
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2283
- msgstr "Daftar nama host yang memenuhi syarat (mis. Server.example.com, satu per baris) untuk mengecualikan dari koleksi statistik."
2284
 
2285
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
2286
  msgid "Note: this option will NOT perform a reverse DNS lookup on each page load but instead cache the IP address for the provided hostnames for one hour. If you are excluding dynamically assigned hosts you may find some degree of overlap when the host changes it's IP address and when the cache is updated resulting in some hits recorded."
2287
- msgstr "Catatan: Pilihan ini tidak akan melakukan reverse DNS lookup pada setiap buka halaman melainkan cache alamat IP untuk nama host yang disediakan selama satu jam. Jika Anda termasuk host yang ditetapkan secara dinamis Anda mungkin menemukan beberapa derajat tumpang tindih ketika tuan rumah perubahan alamat IP itu dan ketika cache diperbarui sehingga beberapa hit direkam."
2288
 
2289
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
2290
  msgid "Site URL Exclusions"
@@ -2308,11 +2413,11 @@ msgstr "Mengecualikan halaman admin untuk mendaftar sebagai hit."
2308
 
2309
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
2310
  msgid "Excluded RSS feeds"
2311
- msgstr "Dikecualikan RSS feed"
2312
 
2313
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
2314
  msgid "Exclude the RSS feeds for registering as a hit."
2315
- msgstr "Kecualikan RSS feed untuk mendaftar sebagai hit."
2316
 
2317
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
2318
  msgid "browscap settings"
@@ -2337,6 +2442,7 @@ msgstr "browscap penggunaan"
2337
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2338
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2339
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
 
2340
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
@@ -2397,4 +2503,4 @@ msgstr "Pengguna Online"
2397
 
2398
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2399
  msgid "User online"
2400
- msgstr "Pengguna online"
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-01-23 13:13:05+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
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:330
14
+ msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
15
+ msgstr ""
16
+
17
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:324
18
+ msgid "Force English"
19
+ msgstr ""
20
+
21
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
22
+ msgid "Languages"
23
+ msgstr ""
24
+
25
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
26
+ 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."
27
+ msgstr ""
28
+
29
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:269
30
+ msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
31
+ msgstr ""
32
+
33
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:266
34
+ msgid "Excluded URLs list"
35
+ msgstr ""
36
+
37
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
38
+ msgid "Excluded URL"
39
+ msgstr ""
40
+
41
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
42
+ msgid "Last 365 Days (Year)"
43
+ msgstr ""
44
+
45
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
46
+ msgid "Last 30 Days (Month)"
47
+ msgstr ""
48
+
49
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
50
+ msgid "Last 7 Days (Week)"
51
+ msgstr ""
52
+
53
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
54
+ msgid "Yahoo!"
55
+ msgstr ""
56
+
57
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:399
58
+ msgid "Yandex"
59
+ msgstr ""
60
+
61
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
62
+ msgid "clearch.org"
63
+ msgstr ""
64
+
65
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
66
+ msgid "DuckDuckGo"
67
+ msgstr ""
68
+
69
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:394
70
+ msgid "Bing"
71
+ msgstr ""
72
+
73
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:393
74
+ msgid "Baidu"
75
+ msgstr ""
76
+
77
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:69
78
+ msgid "Hits in the last 20 days"
79
+ msgstr ""
80
+
81
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
82
+ msgid "Feeds"
83
+ msgstr ""
84
+
85
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
86
+ msgid "User Role"
87
+ msgstr ""
88
+
89
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
90
+ msgid "Login Page"
91
+ msgstr ""
92
+
93
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
94
+ msgid "Admin Page"
95
+ msgstr ""
96
+
97
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
98
+ msgid "Self Referral"
99
+ msgstr ""
100
+
101
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
102
+ msgid "IP Match"
103
+ msgstr ""
104
+
105
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
106
+ msgid "Robot"
107
+ msgstr ""
108
+
109
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:100
110
+ msgid "Currently there are no users online in the site."
111
+ msgstr ""
112
+
113
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
114
+ msgid "Robot Threshold"
115
+ msgstr ""
116
+
117
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
118
+ msgid "Honey Pot"
119
+ msgstr ""
120
+
121
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:6
122
+ msgid "Page Trending Stats"
123
+ msgstr ""
124
+
125
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
126
+ msgid "Hostname"
127
+ msgstr ""
128
 
129
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
130
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
150
 
151
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
152
  msgid "Record all user"
153
+ msgstr ""
154
 
155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
156
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
157
+ msgstr ""
158
 
159
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
160
  msgid "Store entire user agent string"
174
 
175
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
176
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
177
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
178
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
179
  msgid "Pages"
180
  msgstr "Halaman"
181
 
185
 
186
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
187
  msgid "Strip parameters from URI"
188
+ msgstr ""
189
 
190
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
191
  msgid "This will remove anything after the ? in a URL."
192
+ msgstr ""
193
 
194
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
195
  msgid "Disable hits column in post/pages list"
233
 
234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
235
  msgid "Search Engines"
236
+ msgstr ""
237
 
238
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
239
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
305
 
306
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
307
  msgid "Country code for private IP addresses"
308
+ msgstr ""
309
 
310
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
311
  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."
312
+ msgstr ""
313
 
314
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
315
  msgid "GeoIP collection is disabled due to the following reasons:"
361
 
362
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
363
  msgid "Common Report Options"
364
+ msgstr ""
365
 
366
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
367
  msgid "E-mail addresses"
369
 
370
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
371
  msgid "A comma separated list of e-mail addresses to send reports to."
372
+ msgstr ""
373
 
374
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
375
  msgid "Update Reports"
376
+ msgstr ""
377
 
378
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
379
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
380
  msgid "Browscap"
381
+ msgstr ""
382
 
383
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
384
  msgid "Send a report whenever the browscap.ini is updated."
385
+ msgstr ""
386
 
387
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
388
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
389
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
390
  msgid "GeoIP"
392
 
393
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
394
  msgid "Send a report whenever the GeoIP database is updated."
395
+ msgstr ""
396
 
397
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
398
  msgid "Pruning"
399
+ msgstr ""
400
 
401
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
402
  msgid "Send a report whenever the pruning of database is run."
403
+ msgstr ""
404
 
405
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
406
  msgid "Upgrade"
407
+ msgstr ""
408
 
409
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
410
  msgid "Send a report whenever the plugin is upgraded."
411
+ msgstr ""
412
 
413
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
415
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
416
  msgid "Statistical reporting"
417
  msgstr "Laporan Statistik"
418
 
422
 
423
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
424
  msgid "Select how often to receive statistical report."
425
+ msgstr ""
426
 
427
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
428
  msgid "Send reports via"
438
 
439
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
440
  msgid "Select delivery method for statistical report."
441
+ msgstr ""
442
 
443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
444
  msgid "Note: To send SMS text messages please install the %s plugin."
454
 
455
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
456
  msgid "Enter the contents of the report."
457
+ msgstr ""
458
 
459
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
460
  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:"
461
+ msgstr ""
462
 
463
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
464
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
465
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
466
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:468
467
  msgid "User Online"
468
  msgstr "User sedang online"
469
 
530
 
531
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
532
  msgid "Dashboard"
533
+ msgstr ""
534
 
535
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
536
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
537
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
538
  msgid "The following items are global to all users."
539
+ msgstr ""
540
 
541
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
542
  msgid "Disable dashboard widgets"
543
+ msgstr ""
544
 
545
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
546
  msgid "Disable the dashboard widgets."
547
+ msgstr ""
548
 
549
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:93
550
  msgid "Page/Post Editor"
551
+ msgstr ""
552
 
553
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:102
554
  msgid "Disable post/page editor widget"
555
+ msgstr ""
556
 
557
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:108
558
  msgid "Disable the page/post editor widget."
559
+ msgstr ""
560
 
561
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:122
562
  msgid "Map type"
563
  msgstr "Peta jenis"
564
 
565
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:397
566
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:128
567
  msgid "Google"
568
  msgstr "Google"
597
 
598
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:171
599
  msgid "Overview Widgets to Display"
600
+ msgstr ""
601
 
602
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:175
603
  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."
646
 
647
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:366
648
  msgid "Slot 7"
649
+ msgstr ""
650
 
651
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:15
652
  msgid "WP Statisitcs Removal"
653
+ msgstr ""
654
 
655
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:20
656
  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."
657
+ msgstr ""
658
 
659
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:23
660
  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."
661
+ msgstr ""
662
 
663
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:29
664
  msgid "Remove data and settings"
665
+ msgstr ""
666
 
667
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:34
668
  msgid "Remove"
669
+ msgstr ""
670
 
671
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-removal.php:35
672
  msgid "Remove data and settings, this action cannot be undone."
673
+ msgstr ""
674
 
675
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:100
676
  msgid "General"
678
 
679
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:101
680
  msgid "Notifications"
681
+ msgstr ""
682
 
683
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:102
684
  msgid "Dashboard/Overview"
685
+ msgstr ""
686
 
687
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:103
688
  msgid "Access/Exclusions"
698
 
699
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:107
700
  msgid "Removal"
701
+ msgstr ""
702
 
703
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
704
  msgid "Update"
725
  msgstr "Setiap 4 minggu"
726
 
727
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:14
728
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:288
729
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:325
730
  msgid "Statistics"
731
  msgstr "Statistik"
732
 
812
  msgstr "Butir"
813
 
814
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:254
815
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:493
816
  msgid "Yesterday visit"
817
  msgstr "Pengunjung Kemarin"
818
 
824
  msgid "Select type of search engine"
825
  msgstr "Pilih opsi untuk mesin pencari"
826
 
827
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
828
  msgid "ERROR: WP Statistics has detected an unsupported version of PHP, WP Statistics will not function without PHP Version "
829
  msgstr "Kesalahan: WP Statistics telah mendeteksi sebuah versi tidak didukung php, WP Statistics tidak akan berfungsi tanpa versi PHP "
830
 
831
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
832
  msgid " or higher!"
833
  msgstr "atau lebih tinggi!"
834
 
835
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:36
836
  msgid "Your current PHP version is"
837
+ msgstr ""
838
 
839
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:51
840
  msgid "WP Statistics has been removed, please disable and delete it."
841
+ msgstr ""
842
 
843
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:27
844
  msgid "WP Statistics"
845
  msgstr "WP Statistics"
846
 
847
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:28
848
  msgid "Complete statistics for your WordPress site."
849
  msgstr "Statistik lengkap untuk situs WordPress Anda."
850
 
851
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
852
  msgid "Online user tracking in WP Statistics is not enabled, please go to %s and enable it."
853
  msgstr "Pengguna online pelacakan dalam WP Statistics tidak diaktifkan, harap menuju %s dan mengaktifkannya."
854
 
855
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:101
856
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
857
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
858
  msgid "setting page"
859
  msgstr "Halaman pengaturan"
860
 
861
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:104
862
  msgid "Hit tracking in WP Statistics is not enabled, please go to %s and enable it."
863
  msgstr "Memukul pelacakan di WP Statistics tidak diaktifkan, harap menuju %s dan mengaktifkannya."
864
 
865
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:107
866
  msgid "Visitor tracking in WP Statistics is not enabled, please go to %s and enable it."
867
  msgstr "Pelacakan dalam WP Statistics pengunjung tidak diaktifkan, harap menuju %s dan mengaktifkannya."
868
 
869
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
870
  msgid "GeoIP collection is not active, please go to %s and enable this feature."
871
  msgstr "Koleksi GeoIP tidak aktif, harap menuju %s dan mengaktifkan fitur ini."
872
 
873
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:110
874
  msgid "Setting page > GeoIP"
875
  msgstr "Halaman Pengaturan > GeoIP"
876
 
877
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
878
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:307
879
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
880
  msgid "Settings"
881
  msgstr "Pengaturan"
882
 
883
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
884
  msgid "Click here to visit the plugin on WordPress.org"
885
  msgstr "Klik di sini untuk mengunjungi plugin di WordPress.org"
886
 
887
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:207
888
  msgid "Visit WordPress.org page"
889
  msgstr "Kunjungi halaman WordPress.org"
890
 
891
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
892
  msgid "Click here to rate and review this plugin on WordPress.org"
893
  msgstr "Klik di sini untuk menilai dan meninjau plugin ini di WordPress.org"
894
 
895
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:210
896
  msgid "Rate this plugin"
897
  msgstr "Menilai plugin ini"
898
 
899
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:254
900
  msgid "WP Statistics - Hits"
901
  msgstr "WP Statistics - Hits"
902
 
903
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:291
904
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
905
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:366
906
  msgid "Overview"
907
  msgstr "Ikhtisar"
908
 
909
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:298
910
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
911
  msgid "Online"
912
+ msgstr ""
913
 
914
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:300
915
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
916
  msgid "Referrers"
917
+ msgstr ""
918
 
919
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:301
920
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:374
921
  msgid "Searches"
922
  msgstr "Pencarian"
923
 
924
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:302
925
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:375
926
  msgid "Search Words"
927
  msgstr "Kata-kata pencarian"
928
 
929
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
930
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:376
931
  msgid "Top Visitors Today"
932
+ msgstr ""
933
 
934
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:306
935
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
936
  msgid "Optimization"
937
  msgstr "Optimasi"
938
 
939
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:311
940
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:342
941
  msgid "Manual"
942
  msgstr "Manual"
943
 
944
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:357
945
  msgid "Site"
946
+ msgstr ""
947
 
948
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:358
949
  msgid "Options"
950
+ msgstr ""
951
 
952
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:475
953
  msgid "Today visitor"
954
  msgstr "Pengunjung hari ini"
955
 
956
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:481
957
  msgid "Today visit"
958
  msgstr "Hari ini mengunjungi"
959
 
960
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:487
961
  msgid "Yesterday visitor"
962
  msgstr "Pengunjung kemarin"
963
 
964
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:499
965
  msgid "View Stats"
966
  msgstr "Lihat statistik"
967
 
968
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:523
969
  msgid "Download ODF file"
970
  msgstr "Men-download ODF file"
971
 
972
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:524
973
  msgid "Download HTML file"
974
  msgstr "Men-download HTML file"
975
 
976
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:528
977
  msgid "Manual file not found."
978
  msgstr "Manual file tidak ditemukan."
979
 
980
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:595
981
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:706
982
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:740
983
  msgid "You do not have sufficient permissions to access this page."
984
  msgstr "Anda tidak mempunyai akses yang cukup untuk halaman ini"
985
 
986
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:608
987
  msgid "Plugin tables do not exist in the database! Please re-run the %s install routine %s."
988
+ msgstr ""
989
 
990
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-install.php:250
991
  msgid "WP Statistics %s installed on"
992
+ msgstr ""
993
 
994
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:34
995
  msgid "Error downloading GeoIP database from: %s - %s"
1009
 
1010
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:93
1011
  msgid "GeoIP update on"
1012
+ msgstr ""
1013
 
1014
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:160
1015
  msgid "Error downloading browscap database from: %s - %s"
1021
 
1022
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:273
1023
  msgid "browscap database updated failed! Cache file too large, reverting to previous browscap.ini."
1024
+ msgstr ""
1025
 
1026
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:281
1027
  msgid "browscap database updated failed! New browscap.ini is mis-identifing user agents as crawlers, reverting to previous browscap.ini."
1028
+ msgstr ""
1029
 
1030
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:303
1031
  msgid "browscap already at current version!"
1033
 
1034
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wps-updates.php:316
1035
  msgid "Browscap.ini update on"
1036
+ msgstr ""
1037
 
1038
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:55
1039
  msgid "Quick Stats"
1040
+ msgstr ""
1041
 
1042
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:56
1043
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:54
1052
 
1053
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:58
1054
  msgid "Today's Visitor Map"
1055
+ msgstr ""
1056
 
1057
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:59
1058
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:46
1067
  msgstr "Top 10 halaman"
1068
 
1069
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:61
1070
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:31
1071
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:8
1072
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:39
1073
  msgid "Recent Visitors"
1103
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:8
1104
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:35
1105
  msgid "Top 10 Visitors Today"
1106
+ msgstr ""
1107
 
1108
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:97
1109
  msgid "Please reload the dashboard to display the content of this widget."
1110
+ msgstr ""
1111
 
1112
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/dashboard.php:138
1113
  msgid "WP Statistics Overview"
1114
+ msgstr ""
1115
 
1116
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:63
1117
  msgid "This post is not yet published."
1118
+ msgstr ""
1119
 
1120
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:24
1121
  msgid "Unable to load the GeoIP database, make sure you have downloaded it in the settings page."
1122
  msgstr "Tidak dapat memuat GeoIP database, pastikan Anda telah men-download di halaman pengaturan."
1123
 
1124
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:48
1125
  msgid "Updated %s GeoIP records in the visitors database."
1126
  msgstr "Diperbarui %s GeoIP record di database pengunjung."
1127
 
1141
 
1142
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:98
1143
  msgid "Database pruned on"
1144
+ msgstr ""
1145
 
1146
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/purge.php:103
1147
  msgid "Please select a value over 30 days."
1154
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:14
1155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:98
1156
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:233
1157
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:76
1158
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
1159
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:63
1160
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
1161
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:17
1162
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:47
1163
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:29
1183
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:15
1184
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/browsers.php:7
1185
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:25
1186
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:292
1187
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:367
1188
  msgid "Browsers"
1189
  msgstr "Browser"
1190
 
1210
  msgid "Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!"
1211
  msgstr "Perhatian: Pengecualian tidak saat ini diatur untuk direkam, hasil di bawah ini mungkin tidak mencerminkan Statistik!"
1212
 
1213
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
1214
  msgid "Exclusions Statistics"
1215
  msgstr "Pengecualian Statistik"
1216
 
1217
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
1218
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:12
1219
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:33
1220
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:15
1221
  msgid "10 Days"
1222
  msgstr "10 hari"
1223
 
1224
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
1225
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:13
1226
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:34
1227
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:16
1228
  msgid "20 Days"
1229
  msgstr "20 hari"
1230
 
1231
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:61
1232
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:14
1233
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:35
1234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
1235
  msgid "30 Days"
1236
  msgstr "30 hari"
1237
 
1238
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:62
1239
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:15
1240
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:36
1241
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:18
1242
  msgid "2 Months"
1243
  msgstr "2 bulan"
1244
 
1245
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:63
1246
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:16
1247
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:37
1248
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:19
1249
  msgid "3 Months"
1250
  msgstr "3 bulan"
1251
 
1252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
1253
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
1254
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:38
1255
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:20
1256
  msgid "6 Months"
1257
  msgstr "6 bulan"
1258
 
1259
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:65
1260
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:18
1261
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:39
1262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
1263
  msgid "9 Months"
1264
  msgstr "9 bulan"
1265
 
1266
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:66
1267
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:19
1268
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:40
1269
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
1270
  msgid "1 Year"
1271
  msgstr "1 tahun"
1272
 
1273
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
1274
  msgid "Total Exclusions: %s"
1275
  msgstr "Jumlah pengecualian: %s"
1276
 
1277
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:77
1278
  msgid "Exclusions Statistical Chart"
1279
  msgstr "Grafik Statistik pengecualian"
1280
 
1281
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1282
  msgid "Excluded hits in the last"
1283
  msgstr "Dikecualikan hits di terakhir"
1284
 
1285
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:99
1286
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:60
1287
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:71
1288
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/hits.php:51
1291
  msgid "days"
1292
  msgstr "hari"
1293
 
1294
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:120
1295
  msgid "Number of excluded hits"
1296
  msgstr "Jumlah hit dikecualikan"
1297
 
1321
  msgid "Visitor"
1322
  msgstr "Pengunjung"
1323
 
1324
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:64
1325
  msgid "Latest Search Word Statistics"
1326
  msgstr "Cari kata Statistik terbaru"
1327
 
1328
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:99
1329
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:98
1330
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:50
1331
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/google.map.php:84
1332
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/jqv.map.php:71
1333
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:30
1335
  msgid "#hash#"
1336
  msgstr "#hash #"
1337
 
1338
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:104
1339
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:103
1340
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:55
1341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:71
1342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/recent.php:35
1343
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/words.php:39
1346
  msgid "Map"
1347
  msgstr "Peta"
1348
 
1349
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1350
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1351
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1352
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1353
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1354
  msgid "Page"
1355
  msgstr "Halaman"
1356
 
1357
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:141
1358
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:136
1359
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:109
1360
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:187
1361
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:125
1362
  msgid "From"
1363
  msgstr "Dari"
1364
 
1365
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:46
1366
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:33
1367
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:29
1368
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:135
1369
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:294
1370
  msgid "All"
1371
  msgstr "Semua"
1372
 
1373
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
1374
  msgid "Search for"
1375
  msgstr "Mencari"
1376
 
1377
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:65
1378
  msgid "Recent Visitor Statistics"
1379
  msgstr "Statistik pengunjung terkini"
1380
 
1381
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:11
1382
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:18
1383
  msgid "Online Users"
1384
+ msgstr ""
1385
 
1386
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:75
1387
  msgid "Online for "
1388
+ msgstr ""
1389
 
1390
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/page-statistics.php:29
1391
  msgid "Page Trend for Post ID"
1410
  msgid "Number of referrals"
1411
  msgstr "Jumlah arahan"
1412
 
1413
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
1414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:106
1415
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/search.php:90
1416
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:64
1459
  msgstr "Top 5 halaman statistik tren"
1460
 
1461
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-pages.php:70
1462
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:60
1463
  msgid "Number of Hits"
1464
  msgstr "Jumlah Hits"
1465
 
1491
 
1492
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-visitors.php:12
1493
  msgid "Top 100 Visitors Today"
1494
+ msgstr ""
1495
 
1496
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/about.php:8
1497
  msgid "About WP Statistics Version %s"
1553
  msgid "Yesterday"
1554
  msgstr "Kemarin"
1555
 
 
 
 
 
 
 
 
 
 
 
 
 
1556
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:98
1557
  msgid "Daily Total"
1558
  msgstr "Harian Total"
1574
  msgstr "Waktu: %s"
1575
 
1576
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:28
1577
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:219
1578
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:297
1579
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
1580
  msgid "Hits"
1581
  msgstr "Hits"
1582
 
1583
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:31
1584
  msgid "IP"
1585
+ msgstr ""
1586
 
1587
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:33
1588
  msgid "Agent"
1589
+ msgstr ""
1590
 
1591
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/top.visitors.php:35
1592
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:291
1593
  msgid "Version"
1594
+ msgstr ""
1595
 
1596
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
1597
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
1609
 
1610
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:17
1611
  msgid "No agent data found to remove!"
1612
+ msgstr ""
1613
 
1614
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:21
1615
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:21
1616
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:42
1617
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:80
1618
  msgid "Please select the desired items."
1619
  msgstr "Pilih item yang dikehendaki."
1620
 
1624
 
1625
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:17
1626
  msgid "No platform data found to remove!"
1627
+ msgstr ""
1628
 
1629
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:53
1630
  msgid "%s table data deleted successfully."
1656
 
1657
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-database.php:25
1658
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:21
1659
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:294
1660
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
1661
  msgid "Countries"
1662
  msgstr "Negara"
1663
 
1728
 
1729
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:15
1730
  msgid "Historical Values"
1731
+ msgstr ""
1732
 
1733
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:20
1734
  msgid "Note: As you have just purged the database you must reload this page for these numbers to be correct."
1735
+ msgstr ""
1736
 
1737
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:26
1738
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:138
1739
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:143
1740
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:304
1741
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:377
1742
  msgid "Visitors"
1743
  msgstr "Pengunjung"
1744
 
1745
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:31
1746
  msgid "Number of historical number of visitors to the site (current value is %s)."
1747
+ msgstr ""
1748
 
1749
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:42
1750
  msgid "Number of historical number of visits to the site (current value is %s)."
1751
+ msgstr ""
1752
 
1753
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-historical.php:48
1754
  msgid "Update now!"
1755
+ msgstr ""
1756
 
1757
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:10
1758
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-purging.php:37
1830
 
1831
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:33
1832
  msgid "Last Overview page memory usage"
1833
+ msgstr ""
1834
 
1835
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:38
1836
  msgid "Memory usage in the overview page"
1837
+ msgstr ""
1838
 
1839
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:44
1840
  msgid "PHP Memory Limit"
2003
 
2004
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:278
2005
  msgid "Browser"
2006
+ msgstr ""
2007
 
2008
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:285
2009
  msgid "The detected client browser."
2010
+ msgstr ""
2011
 
2012
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:296
2013
  msgid "The detected client browser version."
2014
+ msgstr ""
2015
 
2016
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-resources.php:307
2017
  msgid "The detected client platform."
2018
+ msgstr ""
2019
 
2020
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/tabs/wps-optimization-updates.php:4
2021
  msgid "This will replace all IP addresses in the database with hash values and cannot be undo, are you sure?"
2069
 
2070
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/wps-optimization.php:151
2071
  msgid "Historical"
2072
+ msgstr ""
2073
 
2074
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:8
2075
  msgid "WP Statistics V%s"
2154
 
2155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:56
2156
  msgid "Make sure you have access to your PHP error logs."
2157
+ msgstr ""
2158
 
2159
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-about.php:59
2160
  msgid "And a few things to double-check:"
2210
 
2211
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:21
2212
  msgid "WP Statistics Honey Pot Page"
2213
+ msgstr ""
2214
 
2215
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:22
2216
  msgid "This is the honey pot for WP Statistics to use, do not delete."
2217
+ msgstr ""
2218
 
2219
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:45
2220
  msgid "Access Levels"
2249
  msgstr "Jika Anda memerlukan solusi yang lebih kuat untuk mendelegasikan akses Anda mungkin ingin melihat %s di WordPress plugin direktori."
2250
 
2251
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:105
2252
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:296
2253
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:369
2254
  msgid "Exclusions"
2255
  msgstr "Pengecualian"
2256
 
2309
 
2310
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:171
2311
  msgid "Robot visit threshold"
2312
+ msgstr ""
2313
 
2314
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:174
2315
  msgid "Treat visitors with more than this number of visits per day as robots. 0 = disabled."
2316
+ msgstr ""
2317
 
2318
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:179
2319
  msgid "Excluded IP address list"
2337
 
2338
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:190
2339
  msgid "Use honey pot"
2340
+ msgstr ""
2341
 
2342
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:193
2343
  msgid "Use a honey pot page to identify robots."
2344
+ msgstr ""
2345
 
2346
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:198
2347
  msgid "Honey pot post id"
2348
+ msgstr ""
2349
 
2350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:201
2351
  msgid "The post id to use for the honeypot page."
2352
+ msgstr ""
2353
 
2354
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:202
2355
  msgid "Create a new honey pot page"
2356
+ msgstr ""
2357
 
2358
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:207
2359
  msgid "GeoIP Exclusions"
2360
+ msgstr ""
2361
 
2362
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:211
2363
  msgid "Excluded countries list"
2364
+ msgstr ""
2365
 
2366
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:214
2367
  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."
2368
+ msgstr ""
2369
 
2370
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:219
2371
  msgid "Included countries list"
2372
+ msgstr ""
2373
 
2374
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:222
2375
  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."
2376
+ msgstr ""
2377
 
2378
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:227
2379
  msgid "Host Exclusions"
2380
+ msgstr ""
2381
 
2382
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:231
2383
  msgid "Excluded hosts list"
2384
+ msgstr ""
2385
 
2386
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:234
2387
  msgid "A list of fully qualified host names (ie. server.example.com, one per line) to exclude from statistics collection."
2388
+ msgstr ""
2389
 
2390
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:236
2391
  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."
2392
+ msgstr ""
2393
 
2394
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:241
2395
  msgid "Site URL Exclusions"
2413
 
2414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:259
2415
  msgid "Excluded RSS feeds"
2416
+ msgstr ""
2417
 
2418
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:262
2419
  msgid "Exclude the RSS feeds for registering as a hit."
2420
+ msgstr ""
2421
 
2422
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-browscap.php:22
2423
  msgid "browscap settings"
2442
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:258
2443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:270
2444
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:313
2445
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:329
2446
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:47
2447
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:71
2448
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:104
2503
 
2504
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:87
2505
  msgid "User online"
2506
+ msgstr "Pengguna online"
languages/wp_statistics-it_IT.mo CHANGED
Binary file
languages/wp_statistics-it_IT.po CHANGED
@@ -2,17 +2,129 @@
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-01-27 19:24-0500\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: Poedit 1.7.4\n"
11
  "Project-Id-Version: WP Statistics\n"
12
- "POT-Creation-Date: \n"
13
- "Last-Translator: \n"
14
- "Language-Team: \n"
15
- "Language: it_IT\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
18
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
@@ -38,11 +150,11 @@ msgstr "Time per il controllo preciso utente online nel sito. Ora: %s secondo "
38
 
39
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
40
  msgid "Record all user"
41
- msgstr "Registrare tutti gli utenti"
42
 
43
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
44
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
45
- msgstr "Ignora le impostazioni di esclusione e registra tutti gli utenti che sono online (anche rinvii auto e robot). Dovrebbe essere utilizzato solo per la risoluzione dei problemi."
46
 
47
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
48
  msgid "Store entire user agent string"
@@ -62,8 +174,8 @@ msgstr "Per ogni visita tenere conto di parecchi Hits. Attualmente %s."
62
 
63
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
64
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
65
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:295
66
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:368
67
  msgid "Pages"
68
  msgstr "Pagine"
69
 
@@ -73,11 +185,11 @@ msgstr "Tenere traccia di tutte le pagine"
73
 
74
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
75
  msgid "Strip parameters from URI"
76
- msgstr "Parametri Striscia di URI"
77
 
78
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
79
  msgid "This will remove anything after the ? in a URL."
80
- msgstr "Questo rimuoverà qualsiasi cosa dopo l&#39;? in un URL."
81
 
82
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
83
  msgid "Disable hits column in post/pages list"
@@ -121,7 +233,7 @@ msgstr "Di default Wp Statistics memorizza il manual nella directory dei plugins
121
 
122
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
123
  msgid "Search Engines"
124
- msgstr "Motori di ricerca"
125
 
126
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
127
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
@@ -193,11 +305,11 @@ msgstr "Aggiornare dati GeoIP mancanti dopo aver scaricato un nuovo database."
193
 
194
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
195
  msgid "Country code for private IP addresses"
196
- msgstr "Codice del paese per gli indirizzi IP privati"
197
 
198
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
199
  msgid "The international standard two letter country code (ie. US = United States, CA = Canada, etc.) for private (non-routable) IP addresses (ie. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Use \"000\" (three zeros) to use \"Unknown\" as the country code."
200
- msgstr "Lo standard di due lettere prefisso internazionale Paese (es. US = Stati Uniti, CA = Canada, etc.) per il (non-routing) indirizzi IP privati ​​(es. 10.0.0.1, 192.158.1.1, 127.0.0.1, etc.). Utilizzare &quot;000&quot; (tre zeri) per utilizzare &quot;Sconosciuto&quot;, come il codice del paese."
201
 
202
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
203
  msgid "GeoIP collection is disabled due to the following reasons:"
@@ -249,7 +361,7 @@ msgstr "Il numero di giorni per mantenere le statistiche. Valore minimo è di 30
249
 
250
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
251
  msgid "Common Report Options"
252
- msgstr "Rapporto Common Opzioni"
253
 
254
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
255
  msgid "E-mail addresses"
@@ -257,20 +369,22 @@ msgstr "Indirizzi di posta elettronica"
257
 
258
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
259
  msgid "A comma separated list of e-mail addresses to send reports to."
260
- msgstr "Un elenco separato da virgole di indirizzi e-mail di inviare report."
261
 
262
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
263
  msgid "Update Reports"
264
- msgstr "Aggiornamento Reports"
265
 
 
266
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
267
  msgid "Browscap"
268
- msgstr "BrowsCap"
269
 
270
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
271
  msgid "Send a report whenever the browscap.ini is updated."
272
- msgstr "Invia un rapporto ogni volta che il browscap.ini viene aggiornato."
273
 
 
274
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
275
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
276
  msgid "GeoIP"
@@ -278,27 +392,27 @@ msgstr "GeoIP"
278
 
279
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
280
  msgid "Send a report whenever the GeoIP database is updated."
281
- msgstr "Invia un rapporto ogni volta che il database di GeoIP viene aggiornato."
282
 
283
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
284
  msgid "Pruning"
285
- msgstr "Potatura"
286
 
287
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
288
  msgid "Send a report whenever the pruning of database is run."
289
- msgstr "Invia un rapporto ogni volta che viene eseguito la potatura di database."
290
 
291
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
292
  msgid "Upgrade"
293
- msgstr "Aggiornamento"
294
 
295
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
296
  msgid "Send a report whenever the plugin is upgraded."
297
- msgstr "Invia un rapporto ogni volta che il plugin è aggiornato."
298
 
299
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
300
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
301
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:152
302
  msgid "Statistical reporting"
303
  msgstr "Segnalazione statistica"
304
 
@@ -308,7 +422,7 @@ msgstr "Calendario"
308
 
309
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
310
  msgid "Select how often to receive statistical report."
311
- msgstr "Selezionare la frequenza di ricezione rapporto statistico."
312
 
313
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
314
  msgid "Send reports via"
@@ -324,7 +438,7 @@ msgstr "SMS"
324
 
325
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
326
  msgid "Select delivery method for statistical report."
327
- msgstr "Selezionare metodo di consegna per il rapporto statistico."
328
 
329
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
330
  msgid "Note: To send SMS text messages please install the %s plugin."
@@ -340,16 +454,16 @@ msgstr "Corpo del Report"
340
 
341
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
342
  msgid "Enter the contents of the report."
343
- msgstr "Immettere il contenuto del rapporto."
344
 
345
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
346
  msgid "Any shortcode supported by your installation of WordPress, include all shortcodes for WP Statistics (see the admin manual for a list of codes available) are supported in the body of the message. Here are some examples:"
347
- msgstr "Qualsiasi shortcode supportato dalla vostra installazione di WordPress, include tutti i codici brevi per WP Statistiche (vedere il manuale di amministrazione per l&#39;elenco dei codici disponibili) sono supportati nel corpo del messaggio. Ecco alcuni esempi:"
348
 
349
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
350
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
351
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
352
- #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:464
353
  msgid "User Online"
354
  msgstr "Utenti Online"
355
 
@@ -416,38 +530,39 @@ msgstr "Pagine più visitate"
416
 
417
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
418
  msgid "Dashboard"
419
- msgstr "Cruscotto"
420
 
421
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
422
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
423
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
424
  msgid "The following items are global to all users."
425
- msgstr "I seguenti elementi sono globali a tutti gli utenti."
426
 
427
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
428
  msgid "Disable dashboard widgets"
429
- msgstr "Disabilita widget dashboard"
430
 
431
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
432
  msgid "Disable the das
2
  # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-01-23 13:12:33+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
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:330
14
+ msgid "Do not use the translations and instead use the English defaults for WP Statistics (requires two page loads)"
15
+ msgstr ""
16
+
17
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:324
18
+ msgid "Force English"
19
+ msgstr ""
20
+
21
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:319
22
+ msgid "Languages"
23
+ msgstr ""
24
+
25
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:271
26
+ 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."
27
+ msgstr ""
28
+
29
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:269
30
+ msgid "A list of local urls (ie. /wordpress/about, one per line) to exclude from statistics collection."
31
+ msgstr ""
32
+
33
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-access-level.php:266
34
+ msgid "Excluded URLs list"
35
+ msgstr ""
36
+
37
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
38
+ msgid "Excluded URL"
39
+ msgstr ""
40
+
41
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:58
42
+ msgid "Last 365 Days (Year)"
43
+ msgstr ""
44
+
45
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:52
46
+ msgid "Last 30 Days (Month)"
47
+ msgstr ""
48
+
49
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/summary.php:46
50
+ msgid "Last 7 Days (Week)"
51
+ msgstr ""
52
+
53
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:398
54
+ msgid "Yahoo!"
55
+ msgstr ""
56
+
57
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:399
58
+ msgid "Yandex"
59
+ msgstr ""
60
+
61
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:395
62
+ msgid "clearch.org"
63
+ msgstr ""
64
+
65
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:396
66
+ msgid "DuckDuckGo"
67
+ msgstr ""
68
+
69
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:394
70
+ msgid "Bing"
71
+ msgstr ""
72
+
73
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/functions.php:393
74
+ msgid "Baidu"
75
+ msgstr ""
76
+
77
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/editor.php:69
78
+ msgid "Hits in the last 20 days"
79
+ msgstr ""
80
+
81
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
82
+ msgid "Feeds"
83
+ msgstr ""
84
+
85
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
86
+ msgid "User Role"
87
+ msgstr ""
88
+
89
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
90
+ msgid "Login Page"
91
+ msgstr ""
92
+
93
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
94
+ msgid "Admin Page"
95
+ msgstr ""
96
+
97
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
98
+ msgid "Self Referral"
99
+ msgstr ""
100
+
101
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
102
+ msgid "IP Match"
103
+ msgstr ""
104
+
105
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
106
+ msgid "Robot"
107
+ msgstr ""
108
+
109
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/online.php:100
110
+ msgid "Currently there are no users online in the site."
111
+ msgstr ""
112
+
113
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
114
+ msgid "Robot Threshold"
115
+ msgstr ""
116
+
117
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
118
+ msgid "Honey Pot"
119
+ msgstr ""
120
+
121
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/widgets/page.php:6
122
+ msgid "Page Trending Stats"
123
+ msgstr ""
124
+
125
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
126
+ msgid "Hostname"
127
+ msgstr ""
128
 
129
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:93
130
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:133
150
 
151
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:111
152
  msgid "Record all user"
153
+ msgstr ""
154
 
155
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:117
156
  msgid "Ignores the exclusion settings and records all users that are online (including self referrals and robots). Should only be used for troubleshooting."
157
+ msgstr ""
158
 
159
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:155
160
  msgid "Store entire user agent string"
174
 
175
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:177
176
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:182
177
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:299
178
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:372
179
  msgid "Pages"
180
  msgstr "Pagine"
181
 
185
 
186
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:209
187
  msgid "Strip parameters from URI"
188
+ msgstr ""
189
 
190
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:215
191
  msgid "This will remove anything after the ? in a URL."
192
+ msgstr ""
193
 
194
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:223
195
  msgid "Disable hits column in post/pages list"
233
 
234
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:276
235
  msgid "Search Engines"
236
+ msgstr ""
237
 
238
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-general.php:281
239
  msgid "Disabling all search engines is not allowed, doing so will result in all search engines being active."
305
 
306
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:111
307
  msgid "Country code for private IP addresses"
308
+ msgstr ""
309
 
310
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:116
311
  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."
312
+ msgstr ""
313
 
314
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-geoip.php:127
315
  msgid "GeoIP collection is disabled due to the following reasons:"
361
 
362
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:44
363
  msgid "Common Report Options"
364
+ msgstr ""
365
 
366
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:49
367
  msgid "E-mail addresses"
369
 
370
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:54
371
  msgid "A comma separated list of e-mail addresses to send reports to."
372
+ msgstr ""
373
 
374
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:59
375
  msgid "Update Reports"
376
+ msgstr ""
377
 
378
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
379
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:64
380
  msgid "Browscap"
381
+ msgstr ""
382
 
383
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:70
384
  msgid "Send a report whenever the browscap.ini is updated."
385
+ msgstr ""
386
 
387
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:18
388
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:76
389
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:104
390
  msgid "GeoIP"
392
 
393
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:82
394
  msgid "Send a report whenever the GeoIP database is updated."
395
+ msgstr ""
396
 
397
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:88
398
  msgid "Pruning"
399
+ msgstr ""
400
 
401
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:94
402
  msgid "Send a report whenever the pruning of database is run."
403
+ msgstr ""
404
 
405
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:100
406
  msgid "Upgrade"
407
+ msgstr ""
408
 
409
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:106
410
  msgid "Send a report whenever the plugin is upgraded."
411
+ msgstr ""
412
 
413
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:111
414
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:116
415
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:174
416
  msgid "Statistical reporting"
417
  msgstr "Segnalazione statistica"
418
 
422
 
423
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:153
424
  msgid "Select how often to receive statistical report."
425
+ msgstr ""
426
 
427
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:159
428
  msgid "Send reports via"
438
 
439
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:170
440
  msgid "Select delivery method for statistical report."
441
+ msgstr ""
442
 
443
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:173
444
  msgid "Note: To send SMS text messages please install the %s plugin."
454
 
455
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:185
456
  msgid "Enter the contents of the report."
457
+ msgstr ""
458
 
459
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:187
460
  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:"
461
+ msgstr ""
462
 
463
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-notifications.php:188
464
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:38
465
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:245
466
+ #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:468
467
  msgid "User Online"
468
  msgstr "Utenti Online"
469
 
530
 
531
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:73
532
  msgid "Dashboard"
533
+ msgstr ""
534
 
535
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:77
536
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:97
537
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:117
538
  msgid "The following items are global to all users."
539
+ msgstr ""
540
 
541
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:82
542
  msgid "Disable dashboard widgets"
543
+ msgstr ""
544
 
545
  #: F:\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/tabs/wps-overview-display.php:88
546
  msgid "Disable the das