WP Statistics - Version 4.8.1

Version Description

  • Fixes: Small bug in the Current_Date.
  • Fixes: Small bug in the exclusions.php file.
  • Updated: Polish (pl_PL) language.
Download this release

Release Info

Developer mostafa.s1990
Plugin Icon 128x128 WP Statistics
Version 4.8.1
Comparing to
See all releases

Code changes from version 4.8 to 4.8.1

includes/classes/statistics.class.php CHANGED
@@ -121,6 +121,15 @@
121
 
122
  public function Current_Date($format = 'Y-m-d H:i:s', $strtotime = null) {
123
 
 
 
 
 
 
 
 
 
 
124
  if( $strtotime ) {
125
  return date_i18n($format, strtotime("{$strtotime} day") ) ;
126
  } else {
121
 
122
  public function Current_Date($format = 'Y-m-d H:i:s', $strtotime = null) {
123
 
124
+ if( $strtotime ) {
125
+ return date($format, strtotime("{$strtotime} day") ) ;
126
+ } else {
127
+ return date($format) ;
128
+ }
129
+ }
130
+
131
+ public function Current_Date_i18n($format = 'Y-m-d H:i:s', $strtotime = null) {
132
+
133
  if( $strtotime ) {
134
  return date_i18n($format, strtotime("{$strtotime} day") ) ;
135
  } else {
includes/log/exclusions.php CHANGED
@@ -5,17 +5,12 @@
5
  </script>
6
  <?php
7
  if( get_option( 'wps_record_exclusions' ) != 1 ) {
8
- echo "<div class='updated settings-error'><p><strong>" . __('Attention: Exclusion are not currently set to be record, the results below may not reflect current statistics!', 'wp_statistics') . "</strong></p></div>";
9
  }
10
 
11
  $daysToDisplay = 20; if( array_key_exists('hitdays',$_GET) ) { if( $_GET['hitdays'] > 0 ) { $daysToDisplay = $_GET['hitdays']; } }
12
 
13
- $excluded_reasons = array(
14
- __('Robot', 'wp_statistics'),
15
- __('IP Match','Self Referral', 'wp_statistics'),
16
- __('Login Page','Admin Page', 'wp_statistics'),
17
- __('User Role', 'wp_statistics')
18
- );
19
  $excluded_results = array();
20
  $excluded_total = 0;
21
 
@@ -69,7 +64,7 @@
69
  enabled: false
70
  },
71
  title: {
72
- text: '<?php echo __('Exclusded hits chart in the last', 'wp_statistics') . ' ' . $daysToDisplay . ' ' . __('days', 'wp_statistics'); ?>',
73
  style: {
74
  fontSize: '12px',
75
  fontFamily: 'Tahoma',
@@ -85,7 +80,7 @@
85
  categories: [
86
  <?php
87
  for( $i=$daysToDisplay; $i>=0; $i--) {
88
- echo '"'.$wpstats->Current_Date('Y-m-d', '-'.$i).'"';
89
  if( $i > 0 ) { echo ", "; }
90
  }
91
  ?>]
@@ -93,7 +88,7 @@
93
  yAxis: {
94
  min: 0,
95
  title: {
96
- text: '<?php _e('Number of exclused hits', 'wp_statistics'); ?>',
97
  style: {
98
  fontSize: '12px',
99
  fontFamily: 'Tahoma'
5
  </script>
6
  <?php
7
  if( get_option( 'wps_record_exclusions' ) != 1 ) {
8
+ echo "<div class='updated settings-error'><p><strong>" . __('Attention: Exclusion are not currently set to be recorded, the results below may not reflect current statistics!', 'wp_statistics') . "</strong></p></div>";
9
  }
10
 
11
  $daysToDisplay = 20; if( array_key_exists('hitdays',$_GET) ) { if( $_GET['hitdays'] > 0 ) { $daysToDisplay = $_GET['hitdays']; } }
12
 
13
+ $excluded_reasons = array('Robot','IP Match','Self Referral','Login Page','Admin Page','User Role');
 
 
 
 
 
14
  $excluded_results = array();
15
  $excluded_total = 0;
16
 
64
  enabled: false
65
  },
66
  title: {
67
+ text: '<?php echo __('Excluded hits chart in the last', 'wp_statistics') . ' ' . $daysToDisplay . ' ' . __('days', 'wp_statistics'); ?>',
68
  style: {
69
  fontSize: '12px',
70
  fontFamily: 'Tahoma',
80
  categories: [
81
  <?php
82
  for( $i=$daysToDisplay; $i>=0; $i--) {
83
+ echo '"'.$wpstats->Current_Date_i18n('Y-m-d', '-'.$i).'"';
84
  if( $i > 0 ) { echo ", "; }
85
  }
86
  ?>]
88
  yAxis: {
89
  min: 0,
90
  title: {
91
+ text: '<?php _e('Number of excluded hits', 'wp_statistics'); ?>',
92
  style: {
93
  fontSize: '12px',
94
  fontFamily: 'Tahoma'
includes/log/hit-statistics.php CHANGED
@@ -65,7 +65,7 @@
65
  categories: [
66
  <?php
67
  for( $i=$daysToDisplay; $i>=0; $i--) {
68
- echo '"'.$wpstats->Current_Date('Y-m-d', '-'.$i).'"';
69
  if( $i > 0 ) { echo ", "; }
70
  }
71
  ?>]
65
  categories: [
66
  <?php
67
  for( $i=$daysToDisplay; $i>=0; $i--) {
68
+ echo '"'.$wpstats->Current_Date_i18n('Y-m-d', '-'.$i).'"';
69
  if( $i > 0 ) { echo ", "; }
70
  }
71
  ?>]
includes/log/log.php CHANGED
@@ -126,11 +126,11 @@
126
  </tr>
127
 
128
  <tr>
129
- <th colspan="3"><?php echo sprintf(__('Date: <code dir="ltr">%s</code></code>', 'wp_statistics'), $wpstats->Current_Date(get_option('date_format'))); ?></th>
130
  </tr>
131
 
132
  <tr>
133
- <th colspan="3"><?php echo sprintf(__('Time: <code dir="ltr">%s</code>', 'wp_statistics'), $wpstats->Current_Date(get_option('time_format'))); ?></th>
134
  </tr>
135
  </tbody>
136
  </table>
@@ -405,7 +405,7 @@
405
  categories: [
406
  <?php
407
  for( $i=20; $i>=0; $i--) {
408
- echo '"'.$wpstats->Current_Date('Y-m-d', '-'.$i).'"';
409
  echo ", ";
410
  }
411
  ?>]
@@ -500,7 +500,7 @@
500
  categories: [
501
  <?php
502
  for( $i=20; $i>=0; $i--) {
503
- echo '"'.$wpstats->Current_Date('Y-m-d', '-'.$i).'"';
504
  echo ", ";
505
  }
506
  ?>]
126
  </tr>
127
 
128
  <tr>
129
+ <th colspan="3"><?php echo sprintf(__('Date: <code dir="ltr">%s</code></code>', 'wp_statistics'), $wpstats->Current_Date_i18n(get_option('date_format'))); ?></th>
130
  </tr>
131
 
132
  <tr>
133
+ <th colspan="3"><?php echo sprintf(__('Time: <code dir="ltr">%s</code>', 'wp_statistics'), $wpstats->Current_Date_i18n(get_option('time_format'))); ?></th>
134
  </tr>
135
  </tbody>
136
  </table>
405
  categories: [
406
  <?php
407
  for( $i=20; $i>=0; $i--) {
408
+ echo '"'.$wpstats->Current_Date_i18n('Y-m-d', '-'.$i).'"';
409
  echo ", ";
410
  }
411
  ?>]
500
  categories: [
501
  <?php
502
  for( $i=20; $i>=0; $i--) {
503
+ echo '"'.$wpstats->Current_Date_i18n('Y-m-d', '-'.$i).'"';
504
  echo ", ";
505
  }
506
  ?>]
includes/log/search-statistics.php CHANGED
@@ -65,7 +65,7 @@
65
  categories: [
66
  <?php
67
  for( $i=$daysToDisplay; $i>=0; $i--) {
68
- echo '"'.$wpstats->Current_Date('Y-m-d', '-'.$i).'"';
69
  if( $i > 0 ) { echo ", "; }
70
  }
71
  ?>]
65
  categories: [
66
  <?php
67
  for( $i=$daysToDisplay; $i>=0; $i--) {
68
+ echo '"'.$wpstats->Current_Date_i18n('Y-m-d', '-'.$i).'"';
69
  if( $i > 0 ) { echo ", "; }
70
  }
71
  ?>]
languages/default.mo CHANGED
Binary file
languages/default.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-02-04 15:21+0330\n"
6
- "PO-Revision-Date: 2014-02-04 15:21+0330\n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: en\n"
@@ -268,7 +268,7 @@ msgstr ""
268
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
269
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:129
270
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:273
271
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:55
272
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
273
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
274
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:56
@@ -318,101 +318,85 @@ msgstr ""
318
 
319
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
320
  msgid ""
321
- "Attention: Exclusion are not currently set to be record, the results below "
322
  "may not reflect current statistics!"
323
  msgstr ""
324
 
325
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:14
326
- msgid "Robot"
327
- msgstr ""
328
-
329
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:15
330
- msgid "IP Match"
331
- msgstr ""
332
-
333
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:16
334
- msgid "Login Page"
335
- msgstr ""
336
-
337
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:17
338
- msgid "User Role"
339
- msgstr ""
340
-
341
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:35
342
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
343
  msgid "Hit Statistics"
344
  msgstr ""
345
 
346
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:38
347
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
348
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
349
  msgid "10 Days"
350
  msgstr ""
351
 
352
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:39
353
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
354
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
355
  msgid "20 Days"
356
  msgstr ""
357
 
358
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:40
359
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
360
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
361
  msgid "30 Days"
362
  msgstr ""
363
 
364
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:41
365
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
366
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
367
  msgid "2 Months"
368
  msgstr ""
369
 
370
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:42
371
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
372
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
373
  msgid "3 Months"
374
  msgstr ""
375
 
376
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:43
377
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
378
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
379
  msgid "6 Months"
380
  msgstr ""
381
 
382
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:44
383
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
384
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
385
  msgid "9 Months"
386
  msgstr ""
387
 
388
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:45
389
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
390
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
391
  msgid "1 Year"
392
  msgstr ""
393
 
394
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:49
395
  #, php-format
396
  msgid "Total Exclusions: %s"
397
  msgstr ""
398
 
399
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
400
  msgid "Exclusions Statistical Chart"
401
  msgstr ""
402
 
403
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:72
404
- msgid "Exclusded hits chart in the last"
405
  msgstr ""
406
 
407
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:72
408
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
409
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
410
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:157
411
  msgid "days"
412
  msgstr ""
413
 
414
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:96
415
- msgid "Number of exclused hits"
416
  msgstr ""
417
 
418
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:36
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-02-04 17:00+0330\n"
6
+ "PO-Revision-Date: 2014-02-04 17:00+0330\n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: en\n"
268
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
269
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:129
270
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:273
271
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:50
272
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
273
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
274
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:56
318
 
319
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
320
  msgid ""
321
+ "Attention: Exclusion are not currently set to be recorded, the results below "
322
  "may not reflect current statistics!"
323
  msgstr ""
324
 
325
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:30
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
326
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
327
  msgid "Hit Statistics"
328
  msgstr ""
329
 
330
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:33
331
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
332
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
333
  msgid "10 Days"
334
  msgstr ""
335
 
336
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:34
337
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
338
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
339
  msgid "20 Days"
340
  msgstr ""
341
 
342
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:35
343
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
344
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
345
  msgid "30 Days"
346
  msgstr ""
347
 
348
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:36
349
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
350
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
351
  msgid "2 Months"
352
  msgstr ""
353
 
354
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:37
355
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
356
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
357
  msgid "3 Months"
358
  msgstr ""
359
 
360
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:38
361
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
362
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
363
  msgid "6 Months"
364
  msgstr ""
365
 
366
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:39
367
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
368
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
369
  msgid "9 Months"
370
  msgstr ""
371
 
372
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:40
373
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
374
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
375
  msgid "1 Year"
376
  msgstr ""
377
 
378
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:44
379
  #, php-format
380
  msgid "Total Exclusions: %s"
381
  msgstr ""
382
 
383
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:51
384
  msgid "Exclusions Statistical Chart"
385
  msgstr ""
386
 
387
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:67
388
+ msgid "Excluded hits chart in the last"
389
  msgstr ""
390
 
391
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:67
392
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
393
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
394
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:157
395
  msgid "days"
396
  msgstr ""
397
 
398
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:91
399
+ msgid "Number of excluded hits"
400
  msgstr ""
401
 
402
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:36
languages/wp_statistics-fa_IR.mo CHANGED
Binary file
languages/wp_statistics-fa_IR.po CHANGED
@@ -3,8 +3,8 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP Statistics\n"
6
- "POT-Creation-Date: 2014-02-04 14:40+0330\n"
7
- "PO-Revision-Date: 2014-02-04 15:20+0330\n"
8
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
@@ -231,31 +231,31 @@ msgid "View Stats"
231
  msgstr "نمایش آمار"
232
 
233
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:262
234
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:326
235
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:409
236
  msgid "You do not have sufficient permissions to access this page."
237
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
238
 
239
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:272
240
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
241
  msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
242
 
243
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:363
244
  #, php-format
245
  msgid "Error downloading GeoIP database from: %s"
246
  msgstr "خطای دریافت پایگاه‌داده GeoIP از: %s"
247
 
248
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:371
249
  #, php-format
250
  msgid "Error could not open downloaded GeoIP database for reading: %s"
251
  msgstr "خطای بازشدن در هنگام دریافت پایگاه‌داده GeoIP برای خواندن: %s"
252
 
253
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:377
254
  #, php-format
255
  msgid "Error could not open destination GeoIP database for writing %s"
256
  msgstr "خطای بازشدن در هنگام دریافت پایگاه‌داده GeoIP برای نوشتن: %s"
257
 
258
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:390
259
  msgid "GeoIP Database updated successfully!"
260
  msgstr "پایگاه‌داده GeoIP با موفقیت به‌روز شد!"
261
 
@@ -271,7 +271,7 @@ msgstr "آمار مرورگرها"
271
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
272
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:129
273
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:273
274
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:55
275
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
276
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
277
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:56
@@ -321,103 +321,87 @@ msgstr "نسخه سهم مرورگر"
321
 
322
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
323
  msgid ""
324
- "Attention: Exclusion are not currently set to be record, the results below "
325
  "may not reflect current statistics!"
326
  msgstr ""
327
  "توجه: در حال حاظر استثنائات برای رکوردها تنظیم نشده‌اند. نتایج زیر ممکن است "
328
  "آمار فعلی را منعکس نکند."
329
 
330
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:14
331
- msgid "Robot"
332
- msgstr "روبات"
333
-
334
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:15
335
- msgid "IP Match"
336
- msgstr "تطابق آی‌پی"
337
-
338
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:16
339
- msgid "Login Page"
340
- msgstr "برگه ورود"
341
-
342
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:17
343
- msgid "User Role"
344
- msgstr "نقش کاربری"
345
-
346
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:35
347
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
348
  msgid "Hit Statistics"
349
  msgstr "آمار بازدیدها"
350
 
351
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:38
352
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
353
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
354
  msgid "10 Days"
355
  msgstr "10 روز"
356
 
357
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:39
358
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
359
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
360
  msgid "20 Days"
361
  msgstr "20 روز"
362
 
363
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:40
364
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
365
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
366
  msgid "30 Days"
367
  msgstr "30 روز"
368
 
369
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:41
370
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
371
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
372
  msgid "2 Months"
373
  msgstr "2 ماهه"
374
 
375
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:42
376
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
377
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
378
  msgid "3 Months"
379
  msgstr "3 ماهه"
380
 
381
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:43
382
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
383
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
384
  msgid "6 Months"
385
  msgstr "6 ماهه"
386
 
387
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:44
388
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
389
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
390
  msgid "9 Months"
391
  msgstr "9 ماهه"
392
 
393
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:45
394
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
395
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
396
  msgid "1 Year"
397
  msgstr "1 ساله"
398
 
399
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:49
400
  #, php-format
401
  msgid "Total Exclusions: %s"
402
  msgstr "کل استثنائات %s"
403
 
404
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
405
  msgid "Exclusions Statistical Chart"
406
  msgstr "نمودار آمار استثنائات"
407
 
408
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:72
409
- msgid "Exclusded hits chart in the last"
410
  msgstr "نمودار بازدید آخرین استثنائات"
411
 
412
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:72
413
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
414
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
415
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:157
416
  msgid "days"
417
  msgstr "روز"
418
 
419
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:96
420
- msgid "Number of exclused hits"
421
  msgstr "تعداد بازدید استثنائات"
422
 
423
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:36
@@ -1168,7 +1152,7 @@ msgstr "نادیده گرفتن برگه‌های مدیریت برای نام
1168
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
1169
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:125
1170
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
1171
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:244
1172
  msgid "Update"
1173
  msgstr "به‌روز رسانی"
1174
 
@@ -1443,6 +1427,18 @@ msgstr "محتوای دریافت گزارش را وارد کنید."
1443
  msgid "Input data:"
1444
  msgstr "داده‌های ورودی:"
1445
 
 
 
 
 
 
 
 
 
 
 
 
 
1446
  #~ msgid "Features"
1447
  #~ msgstr "محرومیت‌ها"
1448
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP Statistics\n"
6
+ "POT-Creation-Date: 2014-02-04 16:56+0330\n"
7
+ "PO-Revision-Date: 2014-02-04 16:56+0330\n"
8
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
231
  msgstr "نمایش آمار"
232
 
233
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:262
234
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
235
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:411
236
  msgid "You do not have sufficient permissions to access this page."
237
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
238
 
239
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:274
240
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
241
  msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
242
 
243
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
244
  #, php-format
245
  msgid "Error downloading GeoIP database from: %s"
246
  msgstr "خطای دریافت پایگاه‌داده GeoIP از: %s"
247
 
248
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
249
  #, php-format
250
  msgid "Error could not open downloaded GeoIP database for reading: %s"
251
  msgstr "خطای بازشدن در هنگام دریافت پایگاه‌داده GeoIP برای خواندن: %s"
252
 
253
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
254
  #, php-format
255
  msgid "Error could not open destination GeoIP database for writing %s"
256
  msgstr "خطای بازشدن در هنگام دریافت پایگاه‌داده GeoIP برای نوشتن: %s"
257
 
258
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:392
259
  msgid "GeoIP Database updated successfully!"
260
  msgstr "پایگاه‌داده GeoIP با موفقیت به‌روز شد!"
261
 
271
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
272
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:129
273
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:273
274
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:50
275
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
276
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
277
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:56
321
 
322
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
323
  msgid ""
324
+ "Attention: Exclusion are not currently set to be recorded, the results below "
325
  "may not reflect current statistics!"
326
  msgstr ""
327
  "توجه: در حال حاظر استثنائات برای رکوردها تنظیم نشده‌اند. نتایج زیر ممکن است "
328
  "آمار فعلی را منعکس نکند."
329
 
330
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:30
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
331
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
332
  msgid "Hit Statistics"
333
  msgstr "آمار بازدیدها"
334
 
335
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:33
336
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
337
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
338
  msgid "10 Days"
339
  msgstr "10 روز"
340
 
341
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:34
342
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
343
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
344
  msgid "20 Days"
345
  msgstr "20 روز"
346
 
347
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:35
348
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
349
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
350
  msgid "30 Days"
351
  msgstr "30 روز"
352
 
353
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:36
354
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
355
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
356
  msgid "2 Months"
357
  msgstr "2 ماهه"
358
 
359
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:37
360
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
361
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
362
  msgid "3 Months"
363
  msgstr "3 ماهه"
364
 
365
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:38
366
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
367
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
368
  msgid "6 Months"
369
  msgstr "6 ماهه"
370
 
371
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:39
372
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
373
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
374
  msgid "9 Months"
375
  msgstr "9 ماهه"
376
 
377
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:40
378
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
379
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
380
  msgid "1 Year"
381
  msgstr "1 ساله"
382
 
383
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:44
384
  #, php-format
385
  msgid "Total Exclusions: %s"
386
  msgstr "کل استثنائات %s"
387
 
388
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:51
389
  msgid "Exclusions Statistical Chart"
390
  msgstr "نمودار آمار استثنائات"
391
 
392
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:67
393
+ msgid "Excluded hits chart in the last"
394
  msgstr "نمودار بازدید آخرین استثنائات"
395
 
396
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:67
397
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
398
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
399
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:157
400
  msgid "days"
401
  msgstr "روز"
402
 
403
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:91
404
+ msgid "Number of excluded hits"
405
  msgstr "تعداد بازدید استثنائات"
406
 
407
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:36
1152
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
1153
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:125
1154
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
1155
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:222
1156
  msgid "Update"
1157
  msgstr "به‌روز رسانی"
1158
 
1427
  msgid "Input data:"
1428
  msgstr "داده‌های ورودی:"
1429
 
1430
+ #~ msgid "Robot"
1431
+ #~ msgstr "روبات"
1432
+
1433
+ #~ msgid "IP Match"
1434
+ #~ msgstr "تطابق آی‌پی"
1435
+
1436
+ #~ msgid "Login Page"
1437
+ #~ msgstr "برگه ورود"
1438
+
1439
+ #~ msgid "User Role"
1440
+ #~ msgstr "نقش کاربری"
1441
+
1442
  #~ msgid "Features"
1443
  #~ msgstr "محرومیت‌ها"
1444
 
languages/wp_statistics-pl_PL.mo CHANGED
Binary file
languages/wp_statistics-pl_PL.po CHANGED
@@ -2,10 +2,10 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-02-02 22:57+0330\n"
6
- "PO-Revision-Date: 2014-02-03 12:50+0100\n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
- "Language-Team: Radek <radekdb87@gmail.com>\n"
9
  "Language: pl_PL\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -36,7 +36,7 @@ msgid "Show site stats in sidebar"
36
  msgstr "Pokaż statystyki stron w menu bocznym"
37
 
38
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
39
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:174
40
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:36
41
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:9
42
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:37
@@ -181,77 +181,82 @@ msgid "Hits"
181
  msgstr "Wejścia"
182
 
183
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:130
 
 
 
 
 
184
  msgid "Referers"
185
  msgstr "Strony odsyłające"
186
 
187
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:131
188
  msgid "Searches"
189
  msgstr "Wyszukiwarki"
190
 
191
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:132
192
  msgid "Search Words"
193
  msgstr "Wyszukiwane słowa"
194
 
195
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:133
196
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:61
197
  msgid "Visitors"
198
  msgstr "Odzwiedzający"
199
 
200
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:135
201
  msgid "Optimization"
202
  msgstr "Optymizacja"
203
 
204
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:136
205
  msgid "Settings"
206
  msgstr "Ustawienia"
207
 
208
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:179
209
  msgid "Today visitor"
210
  msgstr "Dzisiaj odwiedziło"
211
 
212
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:184
213
  msgid "Today visit"
214
  msgstr "Dzisiaj odwiedzin"
215
 
216
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:189
217
  msgid "Yesterday visitor"
218
  msgstr "Wczoraj odwiedziło"
219
 
220
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:194
221
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
222
  msgid "Yesterday visit"
223
  msgstr "Wczoraj odwiedzin"
224
 
225
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:199
226
  msgid "View Stats"
227
  msgstr "Zobacz statystyki"
228
 
229
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:293
230
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:353
231
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:436
232
  msgid "You do not have sufficient permissions to access this page."
233
  msgstr "Nie posiadasz wystarczających uprawnień by wyświetlić tę stronę."
234
 
235
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:303
236
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
237
  msgstr "Tabela wtyczki nie istnieje! Proszę wyłącz i włącz wtyczkę."
238
 
239
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:390
240
  #, php-format
241
  msgid "Error downloading GeoIP database from: %s"
242
  msgstr "Błąd pobierania bazy danych GeoIP z: %s"
243
 
244
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:398
245
  #, php-format
246
  msgid "Error could not open downloaded GeoIP database for reading: %s"
247
  msgstr "Nie mogę otworzyć pobranej bazy danych GeoIP odnoszącej się do: %s"
248
 
249
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:404
250
  #, php-format
251
  msgid "Error could not open destination GeoIP database for writing %s"
252
  msgstr "Nie mogę otworzyć pobranej bazy danych GeoIP zapisanej w %s"
253
 
254
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:417
255
  msgid "GeoIP Database updated successfully!"
256
  msgstr "Baza danych GeoIP zaktualizowana pomyślnie!"
257
 
@@ -267,6 +272,7 @@ msgstr "Statystyki przeglądarki"
267
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
268
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:129
269
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:273
 
270
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
271
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
272
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:56
@@ -314,65 +320,116 @@ msgstr "Wersja %s"
314
  msgid "Browser version share"
315
  msgstr "Udział wersji przeglądarki"
316
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
317
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
318
  msgid "Hit Statistics"
319
- msgstr "Statystyki wejść"
320
 
 
321
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
322
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
323
  msgid "10 Days"
324
  msgstr "10 dni"
325
 
 
326
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
327
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
328
  msgid "20 Days"
329
  msgstr "20 dni"
330
 
 
331
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
332
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
333
  msgid "30 Days"
334
  msgstr "30 dni"
335
 
 
336
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
337
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
338
  msgid "2 Months"
339
  msgstr "2 miesiące"
340
 
 
341
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
342
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
343
  msgid "3 Months"
344
  msgstr "3 miesiące"
345
 
 
346
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
347
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
348
  msgid "6 Months"
349
  msgstr "6 miesięcy"
350
 
 
351
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
352
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
353
  msgid "9 Months"
354
  msgstr "9 miesięcy"
355
 
 
356
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
357
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
358
  msgid "1 Year"
359
  msgstr "Rok"
360
 
361
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:36
362
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:377
363
- msgid "Hits Statistical Chart"
 
 
 
 
364
  msgstr "Statystyczny wykres odsłon"
365
 
366
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
367
- msgid "Hits chart in the last"
368
- msgstr "Wykres odsłon w ostatnich"
369
 
 
370
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
371
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
372
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:157
373
  msgid "days"
374
  msgstr "dniach"
375
 
 
 
 
 
 
 
 
 
 
 
 
 
 
376
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:76
377
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:416
378
  msgid "Number of visits and visitors"
@@ -734,7 +791,7 @@ msgstr "Wybierz typ liku wyjściowego."
734
 
735
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:48
736
  msgid "Start Now!"
737
- msgstr "Rozpocznij!"
738
 
739
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:10
740
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:36
@@ -757,7 +814,7 @@ msgstr "Wszystkie dane tabeli będą utracone."
757
 
758
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:144
759
  msgid "Clear now!"
760
- msgstr "Wyczyść!"
761
 
762
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:152
763
  msgid "Purge records older than"
@@ -773,7 +830,7 @@ msgstr ""
773
 
774
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:159
775
  msgid "Purge now!"
776
- msgstr "Wyczyść!"
777
 
778
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:166
779
  msgid "Delete User Agent Types"
@@ -806,97 +863,97 @@ msgstr "Opcje GeoIP"
806
 
807
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:31
808
  msgid "Update Now!"
809
- msgstr "Zaktualizuj!"
810
 
811
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:32
812
  msgid "Get updates for the location and the countries, this may take a while"
813
  msgstr "Pobierz aktualizacje dla lokalizacji i krajów, może to chwilę potrwać"
814
 
815
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:15
816
  msgid "Resources"
817
  msgstr "Zasoby"
818
 
819
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:20
820
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:25
821
  msgid "Memory usage in PHP"
822
  msgstr "Zużycie pamięci w PHP"
823
 
824
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:24
825
  msgid "Byte"
826
  msgstr "Bajt"
827
 
828
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:31
829
  #, php-format
830
  msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
831
  msgstr "Liczba rzędów w tabeli <code>%sstatistics_useronline</code>"
832
 
833
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:35
834
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:46
835
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:57
836
  msgid "Row"
837
  msgstr "Rzędów"
838
 
839
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:36
840
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:47
841
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:58
842
  msgid "Number of rows"
843
  msgstr "Liczba rzędów"
844
 
845
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:42
846
  #, php-format
847
  msgid "Number of rows in the <code>%sstatistics_visit</code> table"
848
  msgstr "Liczba rzędów w tabeli <code>%sstatistics_visit</code>"
849
 
850
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:53
851
  #, php-format
852
  msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
853
  msgstr "Liczba rzędów w tabeli <code>%sstatistics_visitor</code>"
854
 
855
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:63
856
  msgid "Version Info"
857
  msgstr "Informacje o wersji"
858
 
859
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:68
860
  msgid "WP Statistics Version"
861
  msgstr "Wersja WP Statistics"
862
 
863
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:73
864
  msgid "The WP Statistics version you are running."
865
  msgstr "Używasz wersji WP Statistics."
866
 
867
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:79
868
  msgid "PHP Version"
869
  msgstr "Wersja PHP"
870
 
871
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:84
872
  msgid "The PHP version you are running."
873
  msgstr "Używasz wersji PHP."
874
 
875
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:90
876
  msgid "jQuery Version"
877
  msgstr "Wersja jQuery"
878
 
879
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:95
880
  msgid "The jQuery version you are running."
881
  msgstr "Używasz wersji jQuery."
882
 
883
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:100
884
  msgid "Client Info"
885
  msgstr "Informacje o kliencie"
886
 
887
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:105
888
  msgid "Client IP"
889
  msgstr "Adres IP klienta"
890
 
891
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:110
892
  msgid "The client IP address."
893
  msgstr "Adres IP Klienta."
894
 
895
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:116
896
  msgid "User Agent"
897
  msgstr "Agent uzytkownika"
898
 
899
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:121
900
  msgid "The client user agent string."
901
  msgstr "Ciąg agenta użytkownika klienta."
902
 
@@ -932,6 +989,8 @@ msgid ""
932
  "This will permanently delete data from the database each day, are you sure "
933
  "you want to enable this option?"
934
  msgstr ""
 
 
935
 
936
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:21
937
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:21
@@ -961,104 +1020,173 @@ msgstr "GeoIP"
961
  msgid "Maintenance"
962
  msgstr "Zarządzanie"
963
 
964
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:58
 
 
 
 
965
  msgid "Required user level to view WP Statistics"
966
- msgstr ""
967
 
968
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:73
969
  msgid "Required user level to manage WP Statistics"
970
- msgstr ""
971
 
972
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:81
973
  #, php-format
974
  msgid ""
975
  "See the %sWordPress Roles and Capabilities page%s for details on capability "
976
  "levels."
977
  msgstr ""
 
 
978
 
979
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:82
980
  msgid ""
981
- "Hint: manage_network = Super Admin, manage_options = Administrator, "
982
  "edit_others_posts = Editor, publish_posts = Author, edit_posts = "
983
  "Contributor, read = Everyone."
984
  msgstr ""
 
 
 
985
 
986
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:83
987
  msgid ""
988
  "Each of the above casscades the rights upwards in the default WordPress "
989
  "configuration. So for example selecting publish_posts grants the right to "
990
  "Authors, Editors, Admins and Super Admins."
991
  msgstr ""
 
 
 
992
 
993
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:84
994
  #, php-format
995
  msgid ""
996
  "If you need a more robust solution to delegate access you might want to look "
997
  "at %s in the WordPress plugin directory."
998
  msgstr ""
 
 
999
 
1000
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:89
1001
- msgid "Exclude User Roles"
1002
- msgstr ""
1003
 
1004
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:103
1005
- msgid "Exclude"
 
 
 
 
 
 
 
 
1006
  msgstr ""
 
 
 
 
1007
 
1008
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:104
 
 
 
 
 
 
 
 
 
 
1009
  #, php-format
1010
  msgid "Exclude %s role from data collection."
1011
- msgstr ""
1012
 
1013
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:110
1014
  msgid "IP/Robot Exclusions"
1015
- msgstr ""
1016
 
1017
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:114
1018
  msgid "Robot List"
1019
- msgstr ""
1020
 
1021
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:126
1022
  msgid ""
1023
  "A list of words (one per line) to match against to detect robots. Entries "
1024
  "must be at least 4 characters long or they will be ignored."
1025
  msgstr ""
 
 
1026
 
1027
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:127
1028
  msgid "Reset to Default"
1029
- msgstr ""
1030
 
1031
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:131
1032
  msgid "Excluded IP Address List"
1033
- msgstr ""
1034
 
1035
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:134
1036
  msgid ""
1037
  "A list of IP addresses and (optional) subnet masks (one per line) to exclude "
1038
  "from statistics collection (both 192.168.0.0/24 and "
1039
  "192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address "
1040
  "only, do not add any subnet value."
1041
  msgstr ""
 
 
 
 
1042
 
1043
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:135
1044
  msgid "Add 10.0.0.0"
1045
- msgstr ""
1046
 
1047
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:136
1048
  msgid "Add 172.16.0.0"
1049
- msgstr ""
1050
 
1051
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:137
1052
  msgid "Add 192.168.0.0"
1053
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1054
 
1055
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:32
1056
  msgid "GeoIP settings"
1057
- msgstr ""
1058
 
1059
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:43
1060
  msgid "GeoIP collection"
1061
- msgstr ""
1062
 
1063
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:48
1064
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:72
@@ -1077,32 +1205,36 @@ msgid ""
1077
  "For get more information and location (country) from visitor, enable this "
1078
  "feature."
1079
  msgstr ""
 
 
1080
 
1081
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:55
1082
  msgid "Update GeoIP Info"
1083
- msgstr ""
1084
 
1085
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:60
1086
  msgid "Download GeoIP Database"
1087
- msgstr ""
1088
 
1089
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:61
1090
  msgid "Save changes on this page to download the update."
1091
- msgstr ""
1092
 
1093
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:67
1094
  msgid "Schedule monthly update of GeoIP DB"
1095
- msgstr ""
1096
 
1097
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:75
1098
  msgid "Next update will be"
1099
- msgstr ""
1100
 
1101
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:94
1102
  msgid ""
1103
  "Download of the GeoIP database will be scheduled for 2 days after the first "
1104
  "Tuesday of the month."
1105
  msgstr ""
 
 
1106
 
1107
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:95
1108
  msgid ""
@@ -1110,14 +1242,18 @@ msgid ""
1110
  "than 1k (which usually means the stub that comes with the plugin is still in "
1111
  "place)."
1112
  msgstr ""
 
 
 
1113
 
1114
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:101
1115
  msgid "Populate missing GeoIP after update of GeoIP DB"
1116
- msgstr ""
1117
 
1118
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:107
1119
  msgid "Update any missing GeoIP data after downloading a new database."
1120
  msgstr ""
 
1121
 
1122
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:115
1123
  #, php-format
@@ -1125,12 +1261,8 @@ msgid ""
1125
  "GeoIP collection requires PHP %s or above, it is currently disabled due to "
1126
  "the installed PHP version being "
1127
  msgstr ""
1128
-
1129
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:125
1130
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
1131
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:222
1132
- msgid "Update"
1133
- msgstr "Zaktualizuj"
1134
 
1135
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:32
1136
  msgid "Database Maintenance"
@@ -1189,7 +1321,7 @@ msgstr "Włączone tylko do debugowania"
1189
 
1190
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:85
1191
  msgid "Check for online users every"
1192
- msgstr "Sprawdź użytkowników online co"
1193
 
1194
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:90
1195
  msgid "Second"
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-02-04 16:35+0330\n"
6
+ "PO-Revision-Date: 2014-02-04 14:35+0100\n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
+ "Language-Team: Radosław Rak <radekdb87@gmail.com>\n"
9
  "Language: pl_PL\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
36
  msgstr "Pokaż statystyki stron w menu bocznym"
37
 
38
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
39
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:175
40
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:36
41
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:9
42
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:37
181
  msgstr "Wejścia"
182
 
183
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:130
184
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:92
185
+ msgid "Exclusions"
186
+ msgstr "Wykluczenia"
187
+
188
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:131
189
  msgid "Referers"
190
  msgstr "Strony odsyłające"
191
 
192
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:132
193
  msgid "Searches"
194
  msgstr "Wyszukiwarki"
195
 
196
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:133
197
  msgid "Search Words"
198
  msgstr "Wyszukiwane słowa"
199
 
200
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
201
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:61
202
  msgid "Visitors"
203
  msgstr "Odzwiedzający"
204
 
205
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:136
206
  msgid "Optimization"
207
  msgstr "Optymizacja"
208
 
209
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:137
210
  msgid "Settings"
211
  msgstr "Ustawienia"
212
 
213
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:180
214
  msgid "Today visitor"
215
  msgstr "Dzisiaj odwiedziło"
216
 
217
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:185
218
  msgid "Today visit"
219
  msgstr "Dzisiaj odwiedzin"
220
 
221
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:190
222
  msgid "Yesterday visitor"
223
  msgstr "Wczoraj odwiedziło"
224
 
225
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
226
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
227
  msgid "Yesterday visit"
228
  msgstr "Wczoraj odwiedzin"
229
 
230
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:200
231
  msgid "View Stats"
232
  msgstr "Zobacz statystyki"
233
 
234
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:262
235
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
236
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:411
237
  msgid "You do not have sufficient permissions to access this page."
238
  msgstr "Nie posiadasz wystarczających uprawnień by wyświetlić tę stronę."
239
 
240
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:274
241
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
242
  msgstr "Tabela wtyczki nie istnieje! Proszę wyłącz i włącz wtyczkę."
243
 
244
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
245
  #, php-format
246
  msgid "Error downloading GeoIP database from: %s"
247
  msgstr "Błąd pobierania bazy danych GeoIP z: %s"
248
 
249
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
250
  #, php-format
251
  msgid "Error could not open downloaded GeoIP database for reading: %s"
252
  msgstr "Nie mogę otworzyć pobranej bazy danych GeoIP odnoszącej się do: %s"
253
 
254
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
255
  #, php-format
256
  msgid "Error could not open destination GeoIP database for writing %s"
257
  msgstr "Nie mogę otworzyć pobranej bazy danych GeoIP zapisanej w %s"
258
 
259
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:392
260
  msgid "GeoIP Database updated successfully!"
261
  msgstr "Baza danych GeoIP zaktualizowana pomyślnie!"
262
 
272
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
273
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:129
274
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:273
275
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:55
276
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
277
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
278
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:56
320
  msgid "Browser version share"
321
  msgstr "Udział wersji przeglądarki"
322
 
323
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
324
+ msgid ""
325
+ "Attention: Exclusion are not currently set to be record, the results below "
326
+ "may not reflect current statistics!"
327
+ msgstr ""
328
+ "Uwaga: Wykluczenie nie jest obecnie ustawione jako rekord, poniższe wyniki "
329
+ "mogą nie odzwierciedlać bieżących statystyk!"
330
+
331
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:14
332
+ msgid "Robot"
333
+ msgstr "Roboty"
334
+
335
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:15
336
+ msgid "IP Match"
337
+ msgstr "Adres IP"
338
+
339
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:16
340
+ msgid "Login Page"
341
+ msgstr "Strona logowania"
342
+
343
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:17
344
+ msgid "User Role"
345
+ msgstr "Osób online"
346
+
347
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:35
348
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
349
  msgid "Hit Statistics"
350
+ msgstr "Statystyki odsłon"
351
 
352
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:38
353
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
354
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
355
  msgid "10 Days"
356
  msgstr "10 dni"
357
 
358
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:39
359
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
360
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
361
  msgid "20 Days"
362
  msgstr "20 dni"
363
 
364
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:40
365
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
366
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
367
  msgid "30 Days"
368
  msgstr "30 dni"
369
 
370
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:41
371
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
372
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
373
  msgid "2 Months"
374
  msgstr "2 miesiące"
375
 
376
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:42
377
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
378
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
379
  msgid "3 Months"
380
  msgstr "3 miesiące"
381
 
382
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:43
383
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
384
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
385
  msgid "6 Months"
386
  msgstr "6 miesięcy"
387
 
388
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:44
389
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
390
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
391
  msgid "9 Months"
392
  msgstr "9 miesięcy"
393
 
394
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:45
395
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
396
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
397
  msgid "1 Year"
398
  msgstr "Rok"
399
 
400
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:49
401
+ #, php-format
402
+ msgid "Total Exclusions: %s"
403
+ msgstr "Razem wykluczeń: %s"
404
+
405
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
406
+ msgid "Exclusions Statistical Chart"
407
  msgstr "Statystyczny wykres odsłon"
408
 
409
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:72
410
+ msgid "Exclusded hits chart in the last"
411
+ msgstr "Wykres wykluczonych odsłon w ostatnich"
412
 
413
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:72
414
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
415
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
416
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:157
417
  msgid "days"
418
  msgstr "dniach"
419
 
420
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:96
421
+ msgid "Number of exclused hits"
422
+ msgstr "Liczba wykluczonych odsłon"
423
+
424
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:36
425
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:377
426
+ msgid "Hits Statistical Chart"
427
+ msgstr "Statystyczny wykres odsłon"
428
+
429
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
430
+ msgid "Hits chart in the last"
431
+ msgstr "Wykres odsłon w ostatnich"
432
+
433
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:76
434
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:416
435
  msgid "Number of visits and visitors"
791
 
792
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:48
793
  msgid "Start Now!"
794
+ msgstr "Rozpocznij"
795
 
796
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:10
797
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:36
814
 
815
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:144
816
  msgid "Clear now!"
817
+ msgstr "Wyczyść"
818
 
819
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:152
820
  msgid "Purge records older than"
830
 
831
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:159
832
  msgid "Purge now!"
833
+ msgstr "Wyczyść"
834
 
835
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:166
836
  msgid "Delete User Agent Types"
863
 
864
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:31
865
  msgid "Update Now!"
866
+ msgstr "Zaktualizuj"
867
 
868
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:32
869
  msgid "Get updates for the location and the countries, this may take a while"
870
  msgstr "Pobierz aktualizacje dla lokalizacji i krajów, może to chwilę potrwać"
871
 
872
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:14
873
  msgid "Resources"
874
  msgstr "Zasoby"
875
 
876
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:19
877
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:24
878
  msgid "Memory usage in PHP"
879
  msgstr "Zużycie pamięci w PHP"
880
 
881
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:23
882
  msgid "Byte"
883
  msgstr "Bajt"
884
 
885
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:30
886
  #, php-format
887
  msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
888
  msgstr "Liczba rzędów w tabeli <code>%sstatistics_useronline</code>"
889
 
890
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:34
891
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:45
892
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:56
893
  msgid "Row"
894
  msgstr "Rzędów"
895
 
896
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:35
897
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:46
898
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:57
899
  msgid "Number of rows"
900
  msgstr "Liczba rzędów"
901
 
902
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:41
903
  #, php-format
904
  msgid "Number of rows in the <code>%sstatistics_visit</code> table"
905
  msgstr "Liczba rzędów w tabeli <code>%sstatistics_visit</code>"
906
 
907
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:52
908
  #, php-format
909
  msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
910
  msgstr "Liczba rzędów w tabeli <code>%sstatistics_visitor</code>"
911
 
912
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:62
913
  msgid "Version Info"
914
  msgstr "Informacje o wersji"
915
 
916
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:67
917
  msgid "WP Statistics Version"
918
  msgstr "Wersja WP Statistics"
919
 
920
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:72
921
  msgid "The WP Statistics version you are running."
922
  msgstr "Używasz wersji WP Statistics."
923
 
924
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:78
925
  msgid "PHP Version"
926
  msgstr "Wersja PHP"
927
 
928
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:83
929
  msgid "The PHP version you are running."
930
  msgstr "Używasz wersji PHP."
931
 
932
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:89
933
  msgid "jQuery Version"
934
  msgstr "Wersja jQuery"
935
 
936
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:94
937
  msgid "The jQuery version you are running."
938
  msgstr "Używasz wersji jQuery."
939
 
940
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:99
941
  msgid "Client Info"
942
  msgstr "Informacje o kliencie"
943
 
944
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:104
945
  msgid "Client IP"
946
  msgstr "Adres IP klienta"
947
 
948
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:109
949
  msgid "The client IP address."
950
  msgstr "Adres IP Klienta."
951
 
952
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
953
  msgid "User Agent"
954
  msgstr "Agent uzytkownika"
955
 
956
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:120
957
  msgid "The client user agent string."
958
  msgstr "Ciąg agenta użytkownika klienta."
959
 
989
  "This will permanently delete data from the database each day, are you sure "
990
  "you want to enable this option?"
991
  msgstr ""
992
+ "Spowoduje to trwałe usunięcie danych z bazy danych każdego dnia, czy na "
993
+ "pewno chcesz włączyć tą opcję?"
994
 
995
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:21
996
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:21
1020
  msgid "Maintenance"
1021
  msgstr "Zarządzanie"
1022
 
1023
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:32
1024
+ msgid "Access Levels"
1025
+ msgstr "Dostęp do poziomów"
1026
+
1027
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:61
1028
  msgid "Required user level to view WP Statistics"
1029
+ msgstr "Wymagany poziom użytkownika, aby wyświetlić WP Statistics"
1030
 
1031
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:76
1032
  msgid "Required user level to manage WP Statistics"
1033
+ msgstr "Wymagany poziom użytkownika, aby zarządzać WP Statistics"
1034
 
1035
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:84
1036
  #, php-format
1037
  msgid ""
1038
  "See the %sWordPress Roles and Capabilities page%s for details on capability "
1039
  "levels."
1040
  msgstr ""
1041
+ "Zobacz %s zasady WordPress oraz możliwości strony %s dla szczegółowych "
1042
+ "informacji na temat poziomów użytkowania."
1043
 
1044
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:85
1045
  msgid ""
1046
+ "Hint: manage_network = Super Admin Network, manage_options = Administrator, "
1047
  "edit_others_posts = Editor, publish_posts = Author, edit_posts = "
1048
  "Contributor, read = Everyone."
1049
  msgstr ""
1050
+ "Porada: manage_network = Super Admin Network, manage_options = "
1051
+ "Administrator, edit_others_posts = Editor, publish_posts = Author, "
1052
+ "edit_posts = Contributor, read = Everyone."
1053
 
1054
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:86
1055
  msgid ""
1056
  "Each of the above casscades the rights upwards in the default WordPress "
1057
  "configuration. So for example selecting publish_posts grants the right to "
1058
  "Authors, Editors, Admins and Super Admins."
1059
  msgstr ""
1060
+ "Każdy z powyższych górnych praw z góry ustawia domyślną konfigurację "
1061
+ "WordPress. Na przykład wybierając publish_posts daje prawo dla Autorów, "
1062
+ "Redaktorów, Administratorów i Super Administratorów."
1063
 
1064
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:87
1065
  #, php-format
1066
  msgid ""
1067
  "If you need a more robust solution to delegate access you might want to look "
1068
  "at %s in the WordPress plugin directory."
1069
  msgstr ""
1070
+ "Jeśli potrzebujesz bardziej niezawodne rozwiązanie do delegowania dostępu, "
1071
+ "możesz zajrzeć do %s w katalogu wtyczek WordPress."
1072
 
1073
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:96
1074
+ msgid "Record Exclusions"
1075
+ msgstr "Zarejestrowane wykluczenia"
1076
 
1077
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:98
1078
+ msgid "Enable"
1079
+ msgstr "Włącz"
1080
+
1081
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:99
1082
+ msgid ""
1083
+ "This will record all the excluded hits in a separate table with the reasons "
1084
+ "why it was excluded but no other information. This will generate a lot of "
1085
+ "data but is useful if you want to see the total number of hits your site "
1086
+ "gets, not just actual user visits."
1087
  msgstr ""
1088
+ "Będzie to rekord wszystkich wykluczonych odsłon w oddzielnej tabeli z "
1089
+ "powodu, dla których zostały wykluczone z pominięciem innych informacji. "
1090
+ "Dzięki temu uzyskasz sporo danych, jeśli chcesz zobaczyć łączną liczbę "
1091
+ "odsłon strony otrzymując, nie tylko rzeczywiste odwiedziny użytkowników."
1092
 
1093
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:104
1094
+ msgid "Exclude User Roles"
1095
+ msgstr "Wyklucz zasady użytkownika"
1096
+
1097
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:120
1098
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:165
1099
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:172
1100
+ msgid "Exclude"
1101
+ msgstr "Wyklucz"
1102
+
1103
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:121
1104
  #, php-format
1105
  msgid "Exclude %s role from data collection."
1106
+ msgstr "Wyklucz regułę %s z gromadzonych danych."
1107
 
1108
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:127
1109
  msgid "IP/Robot Exclusions"
1110
+ msgstr "Wykluczenia adresów IP/robotów"
1111
 
1112
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:131
1113
  msgid "Robot List"
1114
+ msgstr "Lista robotów"
1115
 
1116
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:143
1117
  msgid ""
1118
  "A list of words (one per line) to match against to detect robots. Entries "
1119
  "must be at least 4 characters long or they will be ignored."
1120
  msgstr ""
1121
+ "Lista słów (po jednym w wierszu) tak, aby zgadzały się z wykrytymi robotami. "
1122
+ "Wpisy muszą być co najmniej z 4 znakami lub będą one ignorowane."
1123
 
1124
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:144
1125
  msgid "Reset to Default"
1126
+ msgstr "Przywróć domyślne"
1127
 
1128
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:148
1129
  msgid "Excluded IP Address List"
1130
+ msgstr "Wykluczona lista adresów IP"
1131
 
1132
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:151
1133
  msgid ""
1134
  "A list of IP addresses and (optional) subnet masks (one per line) to exclude "
1135
  "from statistics collection (both 192.168.0.0/24 and "
1136
  "192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address "
1137
  "only, do not add any subnet value."
1138
  msgstr ""
1139
+ "Lista adresów IP i (opcjonalnie) maski podsieci (po jednej w wierszu) można "
1140
+ "wyłączyć z gromadzonych statystyk (zarówno formaty 192.168.0.0/24 i "
1141
+ "192.168.0.0/255.255.255.0 są akceptowane). Aby podać tylko adres IP, nie "
1142
+ "należy dodawać żadnych wartości podsieci."
1143
 
1144
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:152
1145
  msgid "Add 10.0.0.0"
1146
+ msgstr "Dodaj 10.0.0.0"
1147
 
1148
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:153
1149
  msgid "Add 172.16.0.0"
1150
+ msgstr "Dodaj 172.16.0.0"
1151
 
1152
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:154
1153
  msgid "Add 192.168.0.0"
1154
+ msgstr "Dodaj 192.168.0.0"
1155
+
1156
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:159
1157
+ msgid "Site URL Exclusions"
1158
+ msgstr "Wykluczenia adresów URL"
1159
+
1160
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:163
1161
+ msgid "Excluded Login Page"
1162
+ msgstr "Wykluczona strona logowania"
1163
+
1164
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:166
1165
+ msgid "Exclude the login page for registering as a hit."
1166
+ msgstr "Wyklucz stronę logowania do rejestracji jako wejście."
1167
+
1168
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:170
1169
+ msgid "Excluded Admin Pages"
1170
+ msgstr "Wykluczone strony administracji"
1171
+
1172
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:173
1173
+ msgid "Exclude the admin pages for registering as a hit."
1174
+ msgstr "Wyklucz strony administracji do rejestracji jako wejście."
1175
+
1176
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
1177
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:125
1178
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
1179
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:222
1180
+ msgid "Update"
1181
+ msgstr "Zaktualizuj"
1182
 
1183
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:32
1184
  msgid "GeoIP settings"
1185
+ msgstr "Ustawienia GeoIP"
1186
 
1187
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:43
1188
  msgid "GeoIP collection"
1189
+ msgstr "Biblioteka GeoIP"
1190
 
1191
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:48
1192
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:72
1205
  "For get more information and location (country) from visitor, enable this "
1206
  "feature."
1207
  msgstr ""
1208
+ "Dla uzyskania dodatkowych informacji i lokalizacji (kraju) z odwiedzającym, "
1209
+ "włącz tą funkcję."
1210
 
1211
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:55
1212
  msgid "Update GeoIP Info"
1213
+ msgstr "Aktualizacja informacji GeoIP"
1214
 
1215
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:60
1216
  msgid "Download GeoIP Database"
1217
+ msgstr "Pobierz bazę danych GeoIP"
1218
 
1219
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:61
1220
  msgid "Save changes on this page to download the update."
1221
+ msgstr "Zapisz zmiany na tej stronie, aby pobrać aktualizację."
1222
 
1223
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:67
1224
  msgid "Schedule monthly update of GeoIP DB"
1225
+ msgstr "Kalendarz miesięczny aktualizacji GeoIP DB"
1226
 
1227
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:75
1228
  msgid "Next update will be"
1229
+ msgstr "Następna aktualizacja będzie za"
1230
 
1231
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:94
1232
  msgid ""
1233
  "Download of the GeoIP database will be scheduled for 2 days after the first "
1234
  "Tuesday of the month."
1235
  msgstr ""
1236
+ "Pobranie bazy danych GeoIP będzie zaplanowane na 2 dni po pierwszym Wtorku "
1237
+ "każdego miesiąca."
1238
 
1239
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:95
1240
  msgid ""
1242
  "than 1k (which usually means the stub that comes with the plugin is still in "
1243
  "place)."
1244
  msgstr ""
1245
+ "Ta opcja również pobiera bazę danych, jeśli lokalny rozmiar pliku jest "
1246
+ "mniejszy niż 1k (który zazwyczaj oznacza odcinek, pochodzący z tej wtyczk "
1247
+ "jest nadal w tym miejscu)."
1248
 
1249
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:101
1250
  msgid "Populate missing GeoIP after update of GeoIP DB"
1251
+ msgstr "Wypełnienie brakujących GeoIP po aktualizacji GeoIP DB"
1252
 
1253
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:107
1254
  msgid "Update any missing GeoIP data after downloading a new database."
1255
  msgstr ""
1256
+ "Zaktualizuj wszelkie brakujące dane GeoIP po pobraniu nowej bazy danych."
1257
 
1258
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:115
1259
  #, php-format
1261
  "GeoIP collection requires PHP %s or above, it is currently disabled due to "
1262
  "the installed PHP version being "
1263
  msgstr ""
1264
+ "Biblioteka GeoIP wymaga PHP %s lub nowszego, obecnie jest wyłączona z powodu "
1265
+ "zainstalowanej istniejącej wersji PHP"
 
 
 
 
1266
 
1267
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:32
1268
  msgid "Database Maintenance"
1321
 
1322
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:85
1323
  msgid "Check for online users every"
1324
+ msgstr "Sprawdź aktywne osoby co"
1325
 
1326
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:90
1327
  msgid "Second"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://iran98.org/donate/
4
  Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, yearl, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
5
  Requires at least: 3.0
6
  Tested up to: 3.8
7
- Stable tag: 4.8
8
  License: GPL2
9
 
10
  Complete statistics for your blog.
@@ -65,7 +65,7 @@ Language Support:
65
  * Russian [Thanks Oleg](http://www.bestplugins.ru/)
66
  * Bengali [Thanks Mehdi Akram](http://www.shamokaldarpon.com/)
67
  * Serbian [Thanks Radovan Georgijevic](http://www.georgijevic.info/)
68
- * Polish Thanks Tomasz Stulka
69
  * Indonesian [Thanks Agit Amrullah](http://www.facebook.com/agitowblinkerz/)
70
  * Hungarian [Thanks ZSIMI](http://www.zsimi.hu/)
71
  * Chinese (Taiwan) [Thanks Toine Cheung](https://twitter.com/ToineCheung)
@@ -166,6 +166,11 @@ The webcrawler detection code has be Fixes and will now exclude them from your s
166
  * As the webcrawler code is now working, you'll probably see a significant change in the "Unknown" browser category and the number of hits your site gets.
167
 
168
  == Changelog ==
 
 
 
 
 
169
  = 4.8 =
170
  * Added: Converting Gregorian date to Persian When enabled [wp-parsidate](http://wordpress.org/plugins/wp-parsidate/) plugin.
171
  * Added: New feature, option to record the number and type of excluded hits to your site.
4
  Tags: statistics, stats, visit, visitors, chart, browser, blog, today, yesterday, week, month, yearl, total, post, page, sidebar, summary, feedburner, hits, pagerank, google, alexa, live visit
5
  Requires at least: 3.0
6
  Tested up to: 3.8
7
+ Stable tag: 4.8.1
8
  License: GPL2
9
 
10
  Complete statistics for your blog.
65
  * Russian [Thanks Oleg](http://www.bestplugins.ru/)
66
  * Bengali [Thanks Mehdi Akram](http://www.shamokaldarpon.com/)
67
  * Serbian [Thanks Radovan Georgijevic](http://www.georgijevic.info/)
68
+ * Polish Thanks Radosław Rak and Tomasz Stulka.
69
  * Indonesian [Thanks Agit Amrullah](http://www.facebook.com/agitowblinkerz/)
70
  * Hungarian [Thanks ZSIMI](http://www.zsimi.hu/)
71
  * Chinese (Taiwan) [Thanks Toine Cheung](https://twitter.com/ToineCheung)
166
  * As the webcrawler code is now working, you'll probably see a significant change in the "Unknown" browser category and the number of hits your site gets.
167
 
168
  == Changelog ==
169
+ = 4.8.1 =
170
+ * Fixes: Small bug in the `Current_Date`.
171
+ * Fixes: Small bug in the `exclusions.php` file.
172
+ * Updated: Polish (pl_PL) language.
173
+
174
  = 4.8 =
175
  * Added: Converting Gregorian date to Persian When enabled [wp-parsidate](http://wordpress.org/plugins/wp-parsidate/) plugin.
176
  * Added: New feature, option to record the number and type of excluded hits to your site.
wp-statistics.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Wordpress Statistics
4
  Plugin URI: http://iran98.org/category/wordpress/wp-statistics/
5
  Description: Complete statistics for your blog.
6
- Version: 4.8
7
  Author: Mostafa Soufi
8
  Author URI: http://mostafa-soufi.ir/
9
  Text Domain: wp_statistics
@@ -15,7 +15,7 @@ License: GPL2
15
  date_default_timezone_set( get_option('timezone_string') );
16
  }
17
 
18
- define('WP_STATISTICS_VERSION', '4.8');
19
  define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', '5.3.0');
20
  define('WPS_EXPORT_FILE_NAME', 'wp-statistics');
21
 
3
  Plugin Name: Wordpress Statistics
4
  Plugin URI: http://iran98.org/category/wordpress/wp-statistics/
5
  Description: Complete statistics for your blog.
6
+ Version: 4.8.1
7
  Author: Mostafa Soufi
8
  Author URI: http://mostafa-soufi.ir/
9
  Text Domain: wp_statistics
15
  date_default_timezone_set( get_option('timezone_string') );
16
  }
17
 
18
+ define('WP_STATISTICS_VERSION', '4.8.1');
19
  define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', '5.3.0');
20
  define('WPS_EXPORT_FILE_NAME', 'wp-statistics');
21