WP Statistics - Version 5.2

Version Description

  • Added: Additional checks for BC Math and cURL which are required for the GeoIP code.
  • Updated: GeoIP database handling if it is missing or invalid.
  • Updated: GeoIP database is now stored in uploads/wp-statistics directory so it does not get overwritten during upgrades.
  • Fixed: Typo's in the shortcode codes (thanks g33kg0dd3ss).
  • Updated: Polish (pl_PL) language.
Download this release

Release Info

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

Code changes from version 5.1 to 5.2

GeoIP2-db/GeoLite2-Country.mmdb DELETED
@@ -1 +0,0 @@
1
- Placeholder
 
includes/classes/hits.geoip.class.php CHANGED
@@ -184,7 +184,8 @@
184
 
185
  try
186
  {
187
- $reader = new Reader( plugin_dir_path( __FILE__ ) . '../../GeoIP2-db/GeoLite2-Country.mmdb' );
 
188
  $record = $reader->country( $this->ip );
189
  $location = $record->country->isoCode;
190
  }
184
 
185
  try
186
  {
187
+ $upload_dir = wp_upload_dir();
188
+ $reader = new Reader( $upload_dir['basedir'] . '/wp-statistics/GeoLite2-Country.mmdb' );
189
  $record = $reader->country( $this->ip );
190
  $location = $record->country->isoCode;
191
  }
includes/functions/functions.php CHANGED
@@ -312,7 +312,7 @@
312
 
313
  $s = new WP_Statistics();
314
 
315
- $search_query = wp_statistics_Searchengine_query($search_engine);
316
 
317
  switch($time) {
318
  case 'today':
312
 
313
  $s = new WP_Statistics();
314
 
315
+ $search_query = wp_statistics_searchengine_query($search_engine);
316
 
317
  switch($time) {
318
  case 'today':
includes/functions/geoip-populate.php CHANGED
@@ -6,13 +6,18 @@
6
  global $wpdb;
7
 
8
  $table_prefix = $wpdb->prefix;
9
-
10
  $result = $wpdb->get_results("SELECT id,ip FROM `{$table_prefix}statistics_visitor` WHERE location = '' or location = '000' or location IS NULL");
11
-
12
- $reader = new Reader( plugin_dir_path( __FILE__ ) . '../../GeoIP2-db/GeoLite2-Country.mmdb' );
13
-
 
 
 
 
 
14
  $count = 0;
15
-
16
  foreach( $result as $item ) {
17
  $count++;
18
  try {
6
  global $wpdb;
7
 
8
  $table_prefix = $wpdb->prefix;
9
+
10
  $result = $wpdb->get_results("SELECT id,ip FROM `{$table_prefix}statistics_visitor` WHERE location = '' or location = '000' or location IS NULL");
11
+
12
+ try {
13
+ $upload_dir = wp_upload_dir();
14
+ $reader = new Reader( $upload_dir['basedir'] . '/wp-statistics/GeoLite2-Country.mmdb' );
15
+ } catch( Exception $e ) {
16
+ return "<div class='updated settings-error'><p><strong>" . __('Unable to load the GeoIP database, make sure you have downloaded it in the settings page.', 'wp_statistics') . "</strong></p></div>";
17
+ }
18
+
19
  $count = 0;
20
+
21
  foreach( $result as $item ) {
22
  $count++;
23
  try {
includes/optimization/templates/wps-optimization-updates.php CHANGED
@@ -28,10 +28,15 @@
28
  </th>
29
 
30
  <td>
31
- <strong><?php $GeoIP_filename = realpath( dirname( __FILE__ ) . "/../../../GeoIP2-db/GeoLite2-Country.mmdb");
32
- $GeoIP_filedate = filemtime( $GeoIP_filename );
33
-
34
- echo date_i18n(get_option('date_format') . ' @ ' . get_option('time_format'), $GeoIP_filedate); ?></strong>
 
 
 
 
 
35
  <p class="description"><?php _e('The file date of the GeoIP database.', 'wp_statistics'); ?></p>
36
  </td>
37
  </tr>
@@ -42,7 +47,7 @@
42
  </th>
43
 
44
  <td>
45
- <strong><?php echo formatSize( filesize( $GeoIP_filename ) );
46
 
47
  /* format size of file
48
  * @author Mike Zriel
28
  </th>
29
 
30
  <td>
31
+ <strong><?php $upload_dir = wp_upload_dir();
32
+ $GeoIP_filename = $upload_dir['basedir'] . '/wp-statistics/GeoLite2-Country.mmdb';
33
+ $GeoIP_filedate = @filemtime( $GeoIP_filename );
34
+
35
+ if( $GeoIP_filedate === FALSE ) {
36
+ _e('Database file does not exist.', 'wp_statistics');
37
+ } else {
38
+ echo date_i18n(get_option('date_format') . ' @ ' . get_option('time_format'), $GeoIP_filedate);
39
+ }?></strong>
40
  <p class="description"><?php _e('The file date of the GeoIP database.', 'wp_statistics'); ?></p>
41
  </td>
42
  </tr>
47
  </th>
48
 
49
  <td>
50
+ <strong><?php echo formatSize( @filesize( $GeoIP_filename ) );
51
 
52
  /* format size of file
53
  * @author Mike Zriel
includes/optimization/templates/wps-optimization.php CHANGED
@@ -95,6 +95,28 @@
95
  </td>
96
  </tr>
97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  <tr valign="top">
99
  <th scope="row" colspan="2"><h3><?php _e('Client Info', 'wp_statistics'); ?></h3></th>
100
  </tr>
95
  </td>
96
  </tr>
97
 
98
+ <tr valign="top">
99
+ <th scope="row">
100
+ <?php _e('cURL Version', 'wp_statistics'); ?>:
101
+ </th>
102
+
103
+ <td>
104
+ <strong><?php if( function_exists('curl_version') ) { $curl_ver = curl_version(); echo $curl_ver['version']; } else { _e('cURL not installed', 'wp_statistics'); }?></strong>
105
+ <p class="description"><?php _e('The PHP cURL Extension version you are running. cURL is required for the GeoIP code, if it is not installed GeoIP will be disabled.', 'wp_statistics'); ?></p>
106
+ </td>
107
+ </tr>
108
+
109
+ <tr valign="top">
110
+ <th scope="row">
111
+ <?php _e('BC Math', 'wp_statistics'); ?>:
112
+ </th>
113
+
114
+ <td>
115
+ <strong><?php if( function_exists('bcadd') ) { _e('Installed','wp_statistics'); } else { _e('Not installed', 'wp_statistics'); }?></strong>
116
+ <p class="description"><?php _e('If the PHP BC Math Extension is installed. BC Math is required for the GeoIP code, if it is not installed GeoIP will be disabled.', 'wp_statistics'); ?></p>
117
+ </td>
118
+ </tr>
119
+
120
  <tr valign="top">
121
  <th scope="row" colspan="2"><h3><?php _e('Client Info', 'wp_statistics'); ?></h3></th>
122
  </tr>
includes/settings/wps-geoip.php CHANGED
@@ -37,7 +37,7 @@
37
  </th>
38
  </tr>
39
 
40
- <?php if( version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') ) {?>
41
  <tr valign="top">
42
  <th scope="row">
43
  <label for="geoip-enable"><?php _e('GeoIP collection', 'wp_statistics'); ?>:</label>
@@ -112,7 +112,21 @@
112
  ?>
113
  <tr valign="top">
114
  <th scope="row" colspan="2">
115
- <?php printf( __('GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being ', 'wp_statistics'), '<code>' . WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION . '</code>' ); echo '<code>' . phpversion() . '</code>.'; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116
  </th>
117
  </tr>
118
  <?php } ?>
37
  </th>
38
  </tr>
39
 
40
+ <?php if( version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') && function_exists('curl_init') && function_exists('bcadd') ) {?>
41
  <tr valign="top">
42
  <th scope="row">
43
  <label for="geoip-enable"><?php _e('GeoIP collection', 'wp_statistics'); ?>:</label>
112
  ?>
113
  <tr valign="top">
114
  <th scope="row" colspan="2">
115
+ <?php
116
+ if( !version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') ) {
117
+ printf( __('GeoIP collection requires PHP %s or above, it is currently disabled due to the installed PHP version being ', 'wp_statistics'), '<code>' . WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION . '</code>' ); echo '<code>' . phpversion() . '</code>.<br>';
118
+ }
119
+
120
+ if( !function_exists('curl_init') ) {
121
+ echo '<br>';
122
+ _e('GeoIP collection requires the cURL PHP extension and it is not loaded on your version of PHP!','wp_statistics');
123
+ }
124
+
125
+ if( !function_exists('bcadd') ) {
126
+ echo '<br>';
127
+ _e('GeoIP collection requires the BC Math PHP extension and it is not loaded on your version of PHP!','wp_statistics');
128
+ }
129
+ ?>
130
  </th>
131
  </tr>
132
  <?php } ?>
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-03-02 10:12+0330\n"
6
- "PO-Revision-Date: 2014-03-02 10:12+0330\n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: en\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Poedit-SearchPath-0: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-"
18
  "content\\plugins\\wp-statistics\n"
19
 
20
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:108
21
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:197
22
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:202
23
  msgid "Statistical reporting"
@@ -175,7 +175,7 @@ msgid "Browsers"
175
  msgstr ""
176
 
177
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
178
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:68
179
  msgid "Countries"
180
  msgstr ""
181
 
@@ -236,7 +236,7 @@ msgstr ""
236
 
237
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:262
238
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
239
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:411
240
  msgid "You do not have sufficient permissions to access this page."
241
  msgstr ""
242
 
@@ -244,26 +244,32 @@ msgstr ""
244
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
245
  msgstr ""
246
 
247
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
248
  #, php-format
249
  msgid "Error downloading GeoIP database from: %s"
250
  msgstr ""
251
 
252
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
253
  #, php-format
254
  msgid "Error could not open downloaded GeoIP database for reading: %s"
255
  msgstr ""
256
 
257
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
258
  #, php-format
259
  msgid "Error could not open destination GeoIP database for writing %s"
260
  msgstr ""
261
 
262
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:392
263
  msgid "GeoIP Database updated successfully!"
264
  msgstr ""
265
 
266
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:28
 
 
 
 
 
 
267
  #, php-format
268
  msgid "Updated %s GeoIP records in the visitors database."
269
  msgstr ""
@@ -855,27 +861,31 @@ msgstr ""
855
  msgid "File Date"
856
  msgstr ""
857
 
858
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:35
 
 
 
 
859
  msgid "The file date of the GeoIP database."
860
  msgstr ""
861
 
862
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:41
863
  msgid "File Size"
864
  msgstr ""
865
 
866
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:58
867
  msgid "The file size of the GeoIP database."
868
  msgstr ""
869
 
870
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:63
871
  msgid "GeoIP Options"
872
  msgstr ""
873
 
874
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:72
875
  msgid "Update Now!"
876
  msgstr ""
877
 
878
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:73
879
  msgid "Get updates for the location and the countries, this may take a while"
880
  msgstr ""
881
 
@@ -947,23 +957,55 @@ msgstr ""
947
  msgid "The jQuery version you are running."
948
  msgstr ""
949
 
950
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:99
951
- msgid "Client Info"
952
  msgstr ""
953
 
954
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:104
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
955
  msgid "Client IP"
956
  msgstr ""
957
 
958
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:109
959
  msgid "The client IP address."
960
  msgstr ""
961
 
962
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
963
  msgid "User Agent"
964
  msgstr ""
965
 
966
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:120
967
  msgid "The client user agent string."
968
  msgstr ""
969
 
@@ -1150,7 +1192,7 @@ msgid "Exclude the admin pages for registering as a hit."
1150
  msgstr ""
1151
 
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:274
1156
  msgid "Update"
@@ -1227,13 +1269,25 @@ msgstr ""
1227
  msgid "Update any missing GeoIP data after downloading a new database."
1228
  msgstr ""
1229
 
1230
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:115
1231
  #, php-format
1232
  msgid ""
1233
  "GeoIP collection requires PHP %s or above, it is currently disabled due to "
1234
  "the installed PHP version being "
1235
  msgstr ""
1236
 
 
 
 
 
 
 
 
 
 
 
 
 
1237
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:32
1238
  msgid "Database Maintenance"
1239
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: wp-statistics\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-03-10 10:55+0330\n"
6
+ "PO-Revision-Date: 2014-03-10 10:55+0330\n"
7
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: en\n"
17
  "X-Poedit-SearchPath-0: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-"
18
  "content\\plugins\\wp-statistics\n"
19
 
20
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:110
21
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:197
22
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:202
23
  msgid "Statistical reporting"
175
  msgstr ""
176
 
177
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
178
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:73
179
  msgid "Countries"
180
  msgstr ""
181
 
236
 
237
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:262
238
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
239
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:416
240
  msgid "You do not have sufficient permissions to access this page."
241
  msgstr ""
242
 
244
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
245
  msgstr ""
246
 
247
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
248
  #, php-format
249
  msgid "Error downloading GeoIP database from: %s"
250
  msgstr ""
251
 
252
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
253
  #, php-format
254
  msgid "Error could not open downloaded GeoIP database for reading: %s"
255
  msgstr ""
256
 
257
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:384
258
  #, php-format
259
  msgid "Error could not open destination GeoIP database for writing %s"
260
  msgstr ""
261
 
262
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:397
263
  msgid "GeoIP Database updated successfully!"
264
  msgstr ""
265
 
266
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:19
267
+ msgid ""
268
+ "Unable to load the GeoIP database, make sure you have downloaded it in the "
269
+ "settings page."
270
+ msgstr ""
271
+
272
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:36
273
  #, php-format
274
  msgid "Updated %s GeoIP records in the visitors database."
275
  msgstr ""
861
  msgid "File Date"
862
  msgstr ""
863
 
864
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:36
865
+ msgid "Database file does not exist."
866
+ msgstr ""
867
+
868
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:40
869
  msgid "The file date of the GeoIP database."
870
  msgstr ""
871
 
872
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:46
873
  msgid "File Size"
874
  msgstr ""
875
 
876
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:63
877
  msgid "The file size of the GeoIP database."
878
  msgstr ""
879
 
880
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:68
881
  msgid "GeoIP Options"
882
  msgstr ""
883
 
884
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:77
885
  msgid "Update Now!"
886
  msgstr ""
887
 
888
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:78
889
  msgid "Get updates for the location and the countries, this may take a while"
890
  msgstr ""
891
 
957
  msgid "The jQuery version you are running."
958
  msgstr ""
959
 
960
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:100
961
+ msgid "cURL Version"
962
  msgstr ""
963
 
964
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:104
965
+ msgid "cURL not installed"
966
+ msgstr ""
967
+
968
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:105
969
+ msgid ""
970
+ "The PHP cURL Extension version you are running. cURL is required for the "
971
+ "GeoIP code, if it is not installed GeoIP will be disabled."
972
+ msgstr ""
973
+
974
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:111
975
+ msgid "BC Math"
976
+ msgstr ""
977
+
978
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
979
+ msgid "Installed"
980
+ msgstr ""
981
+
982
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
983
+ msgid "Not installed"
984
+ msgstr ""
985
+
986
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:116
987
+ msgid ""
988
+ "If the PHP BC Math Extension is installed. BC Math is required for the "
989
+ "GeoIP code, if it is not installed GeoIP will be disabled."
990
+ msgstr ""
991
+
992
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:121
993
+ msgid "Client Info"
994
+ msgstr ""
995
+
996
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:126
997
  msgid "Client IP"
998
  msgstr ""
999
 
1000
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:131
1001
  msgid "The client IP address."
1002
  msgstr ""
1003
 
1004
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:137
1005
  msgid "User Agent"
1006
  msgstr ""
1007
 
1008
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:142
1009
  msgid "The client user agent string."
1010
  msgstr ""
1011
 
1192
  msgstr ""
1193
 
1194
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
1195
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:139
1196
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
1197
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:274
1198
  msgid "Update"
1269
  msgid "Update any missing GeoIP data after downloading a new database."
1270
  msgstr ""
1271
 
1272
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:117
1273
  #, php-format
1274
  msgid ""
1275
  "GeoIP collection requires PHP %s or above, it is currently disabled due to "
1276
  "the installed PHP version being "
1277
  msgstr ""
1278
 
1279
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:122
1280
+ msgid ""
1281
+ "GeoIP collection requires the cURL PHP extension and it is not loaded on "
1282
+ "your version of PHP!"
1283
+ msgstr ""
1284
+
1285
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:127
1286
+ msgid ""
1287
+ "GeoIP collection requires the BC Math PHP extension and it is not loaded on "
1288
+ "your version of PHP!"
1289
+ msgstr ""
1290
+
1291
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:32
1292
  msgid "Database Maintenance"
1293
  msgstr ""
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-03-02 10:12+0330\n"
7
- "PO-Revision-Date: 2014-03-02 10:12+0330\n"
8
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-"
19
  "content\\plugins\\wp-statistics\n"
20
 
21
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:108
22
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:197
23
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:202
24
  msgid "Statistical reporting"
@@ -181,7 +181,7 @@ msgid "Browsers"
181
  msgstr "مرورگرها"
182
 
183
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
184
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:68
185
  msgid "Countries"
186
  msgstr "کشورها"
187
 
@@ -242,7 +242,7 @@ msgstr "نمایش آمار"
242
 
243
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:262
244
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
245
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:411
246
  msgid "You do not have sufficient permissions to access this page."
247
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
248
 
@@ -250,26 +250,34 @@ msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را
250
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
251
  msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
252
 
253
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:365
254
  #, php-format
255
  msgid "Error downloading GeoIP database from: %s"
256
  msgstr "خطای دریافت پایگاه‌داده GeoIP از: %s"
257
 
258
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:373
259
  #, php-format
260
  msgid "Error could not open downloaded GeoIP database for reading: %s"
261
  msgstr "خطای بازشدن در هنگام دریافت پایگاه‌داده GeoIP برای خواندن: %s"
262
 
263
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:379
264
  #, php-format
265
  msgid "Error could not open destination GeoIP database for writing %s"
266
  msgstr "خطای بازشدن در هنگام دریافت پایگاه‌داده GeoIP برای نوشتن: %s"
267
 
268
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:392
269
  msgid "GeoIP Database updated successfully!"
270
  msgstr "پایگاه‌داده GeoIP با موفقیت به‌روز شد!"
271
 
272
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:28
 
 
 
 
 
 
 
 
273
  #, php-format
274
  msgid "Updated %s GeoIP records in the visitors database."
275
  msgstr "%s رکورد GeoIP در پایگاه داده به‌روز شد."
@@ -866,27 +874,31 @@ msgstr "اطلاعات فایل GeoIP"
866
  msgid "File Date"
867
  msgstr "تاریخ فایل"
868
 
869
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:35
 
 
 
 
870
  msgid "The file date of the GeoIP database."
871
  msgstr "تاریخ فایل پایگاه‌داده GeoIP"
872
 
873
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:41
874
  msgid "File Size"
875
  msgstr "حجم فایل"
876
 
877
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:58
878
  msgid "The file size of the GeoIP database."
879
  msgstr "حجم فایل پایگاه‌داده GeoIP "
880
 
881
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:63
882
  msgid "GeoIP Options"
883
  msgstr "تنظیمات GeoIP"
884
 
885
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:72
886
  msgid "Update Now!"
887
  msgstr "به‌روز رسانی کن!"
888
 
889
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:73
890
  msgid "Get updates for the location and the countries, this may take a while"
891
  msgstr ""
892
  "دریافت به‌روز رسانی برای موقعیت وکشورها، ممکن است انجام این عمل کمی طول بکشد."
@@ -959,23 +971,58 @@ msgstr "نگارش جی‌کوئری"
959
  msgid "The jQuery version you are running."
960
  msgstr "نگارش جی‌کوئری در حال اجرای شما."
961
 
962
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:99
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
963
  msgid "Client Info"
964
  msgstr "اطلاعات کاربر"
965
 
966
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:104
967
  msgid "Client IP"
968
  msgstr "آی‌پی کاربر"
969
 
970
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:109
971
  msgid "The client IP address."
972
  msgstr "آدرس آی‌پی کاربر."
973
 
974
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
975
  msgid "User Agent"
976
  msgstr "عامل کاربر"
977
 
978
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:120
979
  msgid "The client user agent string."
980
  msgstr "رشته‌ی عامل کاربری"
981
 
@@ -1179,7 +1226,7 @@ msgid "Exclude the admin pages for registering as a hit."
1179
  msgstr "نادیده گرفتن برگه‌های مدیریت برای نام‌نویسی به‌عنوان محاسبه در آمار"
1180
 
1181
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
1182
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:125
1183
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
1184
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:274
1185
  msgid "Update"
@@ -1261,7 +1308,7 @@ msgid "Update any missing GeoIP data after downloading a new database."
1261
  msgstr ""
1262
  "به‌روز رسانی هر داده‌ی از دست‌رفته‌ی GeoIP بعد از دریافت پایگاه داده‌ی جدید."
1263
 
1264
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:115
1265
  #, php-format
1266
  msgid ""
1267
  "GeoIP collection requires PHP %s or above, it is currently disabled due to "
@@ -1270,6 +1317,22 @@ msgstr ""
1270
  "مجموعه GeoIP به PHP نسخه %s و بالاتر نیاز دارد، در حال حاضر با توجه به پایین "
1271
  "بودن نسخه PHP شما، غیرفعال است"
1272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1273
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:32
1274
  msgid "Database Maintenance"
1275
  msgstr "تعمیر و نگه‌داری پایگاه‌داده"
@@ -1515,9 +1578,6 @@ msgstr "داده‌های ورودی:"
1515
  #~ msgid "Robot"
1516
  #~ msgstr "روبات"
1517
 
1518
- #~ msgid "IP Match"
1519
- #~ msgstr "تطابق آی‌پی"
1520
-
1521
  #~ msgid "Login Page"
1522
  #~ msgstr "برگه ورود"
1523
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: WP Statistics\n"
6
+ "POT-Creation-Date: 2014-03-10 11:13+0330\n"
7
+ "PO-Revision-Date: 2014-03-10 11:13+0330\n"
8
  "Last-Translator: Mostafa Soufi <mst404@gmail.com>\n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
18
  "X-Poedit-SearchPath-0: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-"
19
  "content\\plugins\\wp-statistics\n"
20
 
21
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:110
22
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:197
23
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:202
24
  msgid "Statistical reporting"
181
  msgstr "مرورگرها"
182
 
183
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
184
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:73
185
  msgid "Countries"
186
  msgstr "کشورها"
187
 
242
 
243
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:262
244
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
245
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:416
246
  msgid "You do not have sufficient permissions to access this page."
247
  msgstr "شما مجوز کافی برای مشاهده‌ی این قسمت را ندارید."
248
 
250
  msgid "Table plugin does not exist! Please disable and re-enable the plugin."
251
  msgstr "جدول های پلاگین وجود ندارد! لطفا پلاگین را غیر فعال و مجدد فعال کنید."
252
 
253
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
254
  #, php-format
255
  msgid "Error downloading GeoIP database from: %s"
256
  msgstr "خطای دریافت پایگاه‌داده GeoIP از: %s"
257
 
258
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
259
  #, php-format
260
  msgid "Error could not open downloaded GeoIP database for reading: %s"
261
  msgstr "خطای بازشدن در هنگام دریافت پایگاه‌داده GeoIP برای خواندن: %s"
262
 
263
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:384
264
  #, php-format
265
  msgid "Error could not open destination GeoIP database for writing %s"
266
  msgstr "خطای بازشدن در هنگام دریافت پایگاه‌داده GeoIP برای نوشتن: %s"
267
 
268
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:397
269
  msgid "GeoIP Database updated successfully!"
270
  msgstr "پایگاه‌داده GeoIP با موفقیت به‌روز شد!"
271
 
272
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:16
273
+ msgid ""
274
+ "Unable to load the GeoIP database, make sure you have downloaded it in the "
275
+ "settings page."
276
+ msgstr ""
277
+ "قادر به بارگزاری پایگاه‌داده GeoIP نیست، مطمئن شوید در برگه‌ی تنظیمات دریافت "
278
+ "می‌شود."
279
+
280
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:33
281
  #, php-format
282
  msgid "Updated %s GeoIP records in the visitors database."
283
  msgstr "%s رکورد GeoIP در پایگاه داده به‌روز شد."
874
  msgid "File Date"
875
  msgstr "تاریخ فایل"
876
 
877
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:36
878
+ msgid "Database file does not exist."
879
+ msgstr "فایل پایگاه‌داده وجود ندارد."
880
+
881
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:40
882
  msgid "The file date of the GeoIP database."
883
  msgstr "تاریخ فایل پایگاه‌داده GeoIP"
884
 
885
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:46
886
  msgid "File Size"
887
  msgstr "حجم فایل"
888
 
889
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:63
890
  msgid "The file size of the GeoIP database."
891
  msgstr "حجم فایل پایگاه‌داده GeoIP "
892
 
893
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:68
894
  msgid "GeoIP Options"
895
  msgstr "تنظیمات GeoIP"
896
 
897
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:77
898
  msgid "Update Now!"
899
  msgstr "به‌روز رسانی کن!"
900
 
901
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:78
902
  msgid "Get updates for the location and the countries, this may take a while"
903
  msgstr ""
904
  "دریافت به‌روز رسانی برای موقعیت وکشورها، ممکن است انجام این عمل کمی طول بکشد."
971
  msgid "The jQuery version you are running."
972
  msgstr "نگارش جی‌کوئری در حال اجرای شما."
973
 
974
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:100
975
+ msgid "cURL Version"
976
+ msgstr "نسخه cURL"
977
+
978
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:104
979
+ msgid "cURL not installed"
980
+ msgstr "cURL نصب نیست"
981
+
982
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:105
983
+ msgid ""
984
+ "The PHP cURL Extension version you are running. cURL is required for the "
985
+ "GeoIP code, if it is not installed GeoIP will be disabled."
986
+ msgstr ""
987
+ "ماژول cURL در PHP شما در حال اجراست. اگر نصب نیست GeoIP غیرفعال خواهد شد."
988
+
989
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:111
990
+ msgid "BC Math"
991
+ msgstr "BC Math"
992
+
993
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
994
+ msgid "Installed"
995
+ msgstr "نصب شده"
996
+
997
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
998
+ msgid "Not installed"
999
+ msgstr "نصب نشده"
1000
+
1001
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:116
1002
+ msgid ""
1003
+ "If the PHP BC Math Extension is installed. BC Math is required for the "
1004
+ "GeoIP code, if it is not installed GeoIP will be disabled."
1005
+ msgstr ""
1006
+ "اگر BC Math در PHP نصب شده باشد. GeoIP برای کدکردن نیازمند آن است، اگر نصب "
1007
+ "نیست، GeoIP غیرفعال خواهد شد."
1008
+
1009
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:121
1010
  msgid "Client Info"
1011
  msgstr "اطلاعات کاربر"
1012
 
1013
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:126
1014
  msgid "Client IP"
1015
  msgstr "آی‌پی کاربر"
1016
 
1017
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:131
1018
  msgid "The client IP address."
1019
  msgstr "آدرس آی‌پی کاربر."
1020
 
1021
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:137
1022
  msgid "User Agent"
1023
  msgstr "عامل کاربر"
1024
 
1025
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:142
1026
  msgid "The client user agent string."
1027
  msgstr "رشته‌ی عامل کاربری"
1028
 
1226
  msgstr "نادیده گرفتن برگه‌های مدیریت برای نام‌نویسی به‌عنوان محاسبه در آمار"
1227
 
1228
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
1229
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:139
1230
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
1231
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:274
1232
  msgid "Update"
1308
  msgstr ""
1309
  "به‌روز رسانی هر داده‌ی از دست‌رفته‌ی GeoIP بعد از دریافت پایگاه داده‌ی جدید."
1310
 
1311
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:117
1312
  #, php-format
1313
  msgid ""
1314
  "GeoIP collection requires PHP %s or above, it is currently disabled due to "
1317
  "مجموعه GeoIP به PHP نسخه %s و بالاتر نیاز دارد، در حال حاضر با توجه به پایین "
1318
  "بودن نسخه PHP شما، غیرفعال است"
1319
 
1320
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:122
1321
+ msgid ""
1322
+ "GeoIP collection requires the cURL PHP extension and it is not loaded on "
1323
+ "your version of PHP!"
1324
+ msgstr ""
1325
+ "مجموعه‌ی GeoIP نیاز به ماژول cURL در PHP دارد و نمی‌تواند در نگارش PHP شما "
1326
+ "بارگزاری شود!"
1327
+
1328
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:127
1329
+ msgid ""
1330
+ "GeoIP collection requires the BC Math PHP extension and it is not loaded on "
1331
+ "your version of PHP!"
1332
+ msgstr ""
1333
+ "مجموعه‌ی GeoIP نیاز به ماژول BC Math در PHP دارد و نمی‌تواند در نگارش PHP شما "
1334
+ "بارگزاری شود!"
1335
+
1336
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:32
1337
  msgid "Database Maintenance"
1338
  msgstr "تعمیر و نگه‌داری پایگاه‌داده"
1578
  #~ msgid "Robot"
1579
  #~ msgstr "روبات"
1580
 
 
 
 
1581
  #~ msgid "Login Page"
1582
  #~ msgstr "برگه ورود"
1583
 
languages/wp_statistics-pl_PL.mo CHANGED
Binary file
languages/wp_statistics-pl_PL.po CHANGED
@@ -1,637 +1,793 @@
 
 
1
  msgid ""
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"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: gettext;gettext_noop;_e;__\n"
14
- "X-Poedit-Basepath: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-content"
15
- "\\plugins\\wp-statistics\n"
16
- "X-Generator: Poedit 1.6.3\n"
17
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
18
  "|| n%100>=20) ? 1 : 2);\n"
19
- "X-Poedit-SearchPath-0: F:\\Programming\\xampp\\htdocs\\cms\\wordpress\\wp-"
20
- "content\\plugins\\wp-statistics\n"
21
-
22
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:108
23
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:145
24
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:150
25
- msgid "Statistical reporting"
26
- msgstr "Raporty statystyk"
27
 
28
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
29
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
30
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:122
31
- msgid "Statistics"
32
- msgstr "Statystyki"
33
 
34
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:5
35
- 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: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
43
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:206
44
- msgid "User Online"
45
- msgstr "Osób online"
46
 
47
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
48
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:12
49
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:208
50
- msgid "Today Visit"
51
- msgstr "Odwiedzin dzisiaj"
52
 
53
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
54
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
55
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:207
56
- msgid "Today Visitor"
57
- msgstr "Odwiedziło dzisiaj"
58
 
59
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
60
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:210
61
- msgid "Yesterday Visit"
62
- msgstr "Odwiedzin wczoraj"
63
 
64
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
65
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
66
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:209
67
- msgid "Yesterday Visitor"
68
- msgstr "Odwiedziń wczoraj"
 
 
69
 
70
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:54
71
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:24
72
- msgid "Week Visit"
73
- msgstr "Odwiedzin w tygodniu"
 
 
 
74
 
75
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:61
76
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:27
77
- msgid "Month Visit"
78
- msgstr "Odwiedzin w miesiącu"
 
 
 
79
 
80
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:68
81
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:30
82
- msgid "Years Visit"
83
- msgstr "Odwiedzin w roku"
 
 
 
84
 
85
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
86
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:33
87
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:212
88
- msgid "Total Visit"
89
- msgstr "Razem odwiedzin"
90
 
91
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
92
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:36
93
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:211
94
- msgid "Total Visitor"
95
- msgstr "Razem odwiedzin"
96
 
97
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
98
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:39
99
- msgid "Search Engine reffered"
100
- msgstr "Razem odwiedziło"
 
 
 
 
 
101
 
102
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:97
103
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:59
104
- msgid "Total Posts"
105
- msgstr "Razem wpisów"
106
 
107
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:104
108
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:62
109
- msgid "Total Pages"
110
- msgstr "Razem stron"
111
 
112
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:111
113
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:65
114
- msgid "Total Comments"
115
- msgstr "Razem komentarzy"
116
 
117
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:118
118
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:68
119
- msgid "Total Spams"
120
- msgstr "Razem spamów"
121
 
122
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:125
123
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:71
124
- msgid "Total Users"
125
- msgstr "Razem uzytkowników"
126
 
127
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:132
128
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:74
129
- msgid "Average Posts"
130
- msgstr "Średnio wpisów"
131
 
132
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:139
133
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:77
134
- msgid "Average Comments"
135
- msgstr "Średnio komentarzy"
136
 
137
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:146
138
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:80
139
- msgid "Average Users"
140
- msgstr "Średnio użytkowników"
 
 
 
141
 
142
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:153
143
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:83
144
- msgid "Last Post Date"
145
- msgstr "Data ostatniego wpisu"
146
 
147
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:23
148
- msgid "Wordpress Statistics"
149
- msgstr "Statystyki Wordpress"
150
 
151
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:24
152
- msgid "Complete statistics for your blog."
153
- msgstr "Uzupełnij statystyki dla blogu."
154
 
155
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:61
156
- #, php-format
157
  msgid ""
158
- "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
159
- "\">setting page</a> and enable statistics"
160
  msgstr ""
161
- "Pobieranie statystyk nie jest uruchomine! Przedjdź do <a href=\"%s"
162
- "\">ustawień</a> i uruchom je."
163
 
164
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:124
165
- msgid "Overview"
166
- msgstr "Przegląd"
167
-
168
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:125
169
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:24
170
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
171
- msgid "Browsers"
172
- msgstr "Przeglądarki"
173
 
174
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
175
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:27
176
- msgid "Countries"
177
- msgstr "Kraje"
 
 
178
 
179
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:129
180
- msgid "Hits"
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
 
263
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:28
264
- #, php-format
265
- msgid "Updated %s GeoIP records in the visitors database."
266
- msgstr "Zaktualizowano %s rekordów GeoIP w bazie danych odwiedzających. "
 
 
267
 
268
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:17
269
- msgid "Browser Statistics"
270
- msgstr "Statystyki przeglądarki"
 
 
 
271
 
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
279
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
280
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:141
281
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:241
282
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:286
283
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:331
284
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:376
285
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:471
286
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:563
287
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:601
288
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:35
289
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:45
290
- msgid "Click to toggle"
291
- msgstr "Kliknij, aby przełączyć"
292
 
293
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:55
294
- msgid "Browsers by Type"
295
- msgstr "Typ przeglądarek"
 
 
 
296
 
297
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:99
298
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:217
299
- msgid "Browser share"
300
- msgstr "Udział przeglądarek"
301
 
302
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:130
303
- msgid "Platform"
304
- msgstr "Platforma"
305
 
306
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:150
307
- msgid "Browsers by Platform"
308
- msgstr "Przeglądarki wg platformy"
309
 
310
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:194
311
- msgid "Platform share"
312
- msgstr "Udział platformy"
313
 
314
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:274
315
- #, php-format
316
- msgid "%s Version"
317
- msgstr "Wersja %s"
 
 
 
318
 
319
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:338
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"
436
- msgstr "Liczba odwiedzin i odwiedzających"
 
 
 
 
 
437
 
438
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:102
439
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:42
440
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:442
441
- msgid "Visitor"
442
- msgstr "Odwiedziło"
 
 
443
 
444
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:112
445
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:43
446
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:452
447
- msgid "Visit"
448
- msgstr "Odwiedzin"
449
 
450
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:4
451
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:4
452
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:4
453
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
454
- msgid "To be added soon"
455
- msgstr "Wkrótce dodany"
456
 
457
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:35
458
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
459
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:565
460
- msgid "Latest search words"
461
- msgstr "Ostatnio wyszukiwane słowa"
462
 
463
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:104
464
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:94
465
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:585
466
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:618
467
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
468
- msgid "Map"
469
- msgstr "Mapa"
470
 
471
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:122
472
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:119
473
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:124
474
- msgid "Page"
475
- msgstr "Strona"
 
 
 
 
476
 
477
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:122
478
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:119
479
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:124
480
- msgid "From"
481
- msgstr "z"
482
 
483
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:34
484
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:57
485
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:603
486
- msgid "Recent Visitors"
487
- msgstr "Ostatni odwiedzający"
488
 
489
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:36
490
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:36
491
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:141
492
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:55
493
- msgid "All"
494
- msgstr "Wszystkie"
495
 
496
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:95
497
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:296
498
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:30
499
- msgid "Country"
500
- msgstr "Kraj"
501
 
502
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
503
- msgid "Summary Statistics"
504
- msgstr "Podsumowanie statystyk"
505
 
506
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:47
507
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:92
508
- msgid "Today"
509
- msgstr "Dzisiaj"
510
 
511
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:53
512
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:93
513
- msgid "Yesterday"
514
- msgstr "Wczoraj"
515
 
516
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:59
517
- msgid "Week"
518
- msgstr "W tygodniu"
519
 
520
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:65
521
- msgid "Month"
522
- msgstr "W miesiącu"
523
 
524
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:71
525
- msgid "Year"
526
- msgstr "W roku"
527
 
528
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:77
529
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:117
530
- msgid "Total"
531
- msgstr "Razem"
532
 
533
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:87
534
- msgid "Search Engine Referrals"
535
- msgstr "Polecone w wyszukiwarkach"
536
 
537
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:111
538
- msgid "Daily Total"
539
- msgstr "Razem codziennie"
540
 
541
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:125
542
- msgid "Current Time and Date"
543
- msgstr "Bieżący czas i data"
544
 
545
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:125
546
- msgid "(Adjustment)"
547
- msgstr "(Wyrównanie)"
548
 
549
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:129
550
- #, php-format
551
- msgid "Date: <code dir=\"ltr\">%s</code></code>"
552
- msgstr "Data: <code dir=\"ltr\">%s</code></code>"
553
 
554
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:133
555
- #, php-format
556
- msgid "Time: <code dir=\"ltr\">%s</code>"
557
- msgstr "Czas: <code dir=\"ltr\">%s</code>"
558
 
559
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
560
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:243
561
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:288
562
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:377
563
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:472
564
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:565
565
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:603
566
- msgid "(See more)"
567
- msgstr "(Zobacz więcej)"
568
 
569
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:173
570
- msgid "Graph of Browsers"
571
- msgstr "Wykres przeglądarek"
572
 
573
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:243
574
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:34
575
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:49
576
- msgid "Top referring sites"
577
- msgstr "Najlepsze strony odsyłające"
578
 
579
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:249
580
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:109
581
- msgid "Reference"
582
- msgstr "Odesłań"
583
 
584
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:250
585
- msgid "Address"
586
- msgstr "Adres"
 
 
587
 
588
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:288
589
- msgid "Top 10 Countries"
590
- msgstr "Najlepszych 10 państw"
591
 
592
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:294
593
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:28
594
- msgid "Rank"
595
- msgstr "Pozycja"
596
 
597
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:295
598
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:29
599
- msgid "Flag"
600
- msgstr "Flaga"
601
 
602
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:297
603
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:31
604
- msgid "Visitor Count"
605
- msgstr "Ilość odwiedzających"
 
 
 
606
 
607
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:332
608
- msgid "About plugin"
609
- msgstr "O wtyczce"
610
 
611
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:335
612
- #, php-format
613
- msgid "Plugin version: %s"
614
- msgstr "Wersja wtyczki: %s"
615
 
616
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:336
617
- msgid "Translations"
618
- msgstr "Tłumaczenia"
 
 
 
 
 
 
 
 
619
 
620
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:337
621
- msgid "Support"
622
- msgstr "Pomoc techniczna"
623
 
624
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:337
625
- msgid "Farsi"
626
- msgstr "Farsi"
627
 
628
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:338
629
- msgid "Facebook"
630
- msgstr "Facebook"
631
 
632
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:339
633
- msgid "Weblog"
634
- msgstr "Weblog"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
635
 
636
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:344
637
  msgid ""
@@ -641,28 +797,11 @@ msgstr ""
641
  "Proszę wspomóc WP Statistics. Z twoją pomocą WP Statistics będzie rządzić "
642
  "światem!"
643
 
644
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:357
645
- msgid "Donate"
646
- msgstr "Wesprzyj"
647
-
648
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:393
649
- msgid "Hits chart in the last 20 days"
650
- msgstr "Wykres odwiedzin z ostatnich 20 dni"
651
-
652
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:472
653
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:36
654
  msgid "Search Engine Referrers Statistical Chart"
655
  msgstr "Statystyczny wykres odsyłań w wyszukiwarkach"
656
 
657
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:488
658
- msgid "Referrer search engine chart in the last 20 days"
659
- msgstr "Wykres odsyłań w wyszukiwarkach z ostatnich 20 dni"
660
-
661
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:511
662
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:76
663
- msgid "Number of referrer"
664
- msgstr "Liczba odsyłań"
665
-
666
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
667
  msgid "Search Engine Referrers Statistics"
668
  msgstr "Statystyki odsyłań w wyszukiwarkach"
@@ -675,123 +814,70 @@ msgstr "Wykres ostatnich odsyłań w wyszukiwarkach"
675
  msgid "Top Countries"
676
  msgstr "Najlepsze kraje"
677
 
678
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:47
679
- msgid "Referring sites from"
680
- msgstr "Strony odsyłające z"
681
-
682
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
683
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
684
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
685
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
686
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:5
687
- msgid "Access denied!"
688
- msgstr "Dostęp zabroniony!"
689
-
690
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
691
- #, php-format
692
  msgid "<code>%s</code> agent data deleted successfully."
693
  msgstr "<code>%s</code> danych agenta usunięto pomyślnie."
694
 
695
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
696
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
697
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:36
698
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:47
699
- msgid "Please select the desired items."
700
- msgstr "Proszę wybierz odpowiednie wpisy."
701
-
702
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
703
- #, php-format
704
  msgid "<code>%s</code> platform data deleted successfully."
705
  msgstr "<code>%s</code> danych platform usunięto pomyślnie."
706
 
707
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:47
708
- #, php-format
709
- msgid "<code>%s</code> table data deleted successfully."
710
- msgstr "<code>%s</code> danych tabel usunięto pomyślnie."
711
-
712
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:51
713
- #, php-format
714
- msgid "Error, %s not emptied!"
715
- msgstr "Błąd, %s nie opróźniono!"
716
 
717
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:17
718
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:27
719
- #, php-format
720
- msgid ""
721
- "<code>%s</code> data older than <code>%s</code> days purged successfully."
722
- msgstr ""
723
- "<code>%s</code> danych starszych niż <code>%s</code> dni oczyszczonych "
724
- "pomyślnie."
725
 
726
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:19
727
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:29
728
- #, php-format
729
- msgid "No records found to purge from <code>%s</code>!"
730
- msgstr "Nie znaleziono rekordów w celu usunięcia z <code>%s</code>!"
731
 
732
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:35
733
- msgid "Please select a value over 30 days."
734
- msgstr "Proszę wybrać wartość w ciągu 30 dni."
 
735
 
736
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:3
737
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:116
738
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:11
739
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:3
740
- msgid "Resources/Information"
741
- msgstr "Zasoby/Informacje"
742
 
743
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:4
744
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:15
745
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:117
746
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:12
747
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:4
748
- msgid "Export"
749
- msgstr "Eksportuj"
750
 
751
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:5
752
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:118
753
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:13
754
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:5
755
- msgid "Purging"
756
- msgstr "Wyczyść"
757
 
758
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:7
759
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:120
760
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:15
761
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:7
762
- msgid "Updates"
763
- msgstr "Zaktualizuj"
764
 
765
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:20
766
- msgid "Export from"
767
- msgstr "Eksportuj z"
768
 
769
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:25
770
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:41
771
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:137
772
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:176
773
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:200
774
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:131
775
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:168
776
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:184
777
- msgid "Please select."
778
- msgstr "Proszę wybrać"
779
 
780
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:30
781
- msgid "Select the table for the output file."
782
- msgstr "Wybierż tablę dla pliku wyjściowego."
783
 
784
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:36
785
- msgid "Export To"
786
- msgstr "Eksportuj do"
787
 
788
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:47
789
- msgid "Select the output file type."
790
- msgstr "Wybierz typ liku wyjściowego."
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
@@ -800,74 +886,32 @@ msgstr "Rozpocznij"
800
  msgid "Are you sure?"
801
  msgstr "Czy na pewno?"
802
 
803
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:127
804
- msgid "Data"
805
- msgstr "Dane"
806
-
807
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:132
808
- msgid "Empty Table"
809
- msgstr "Opróżnij tabelę"
810
-
811
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:143
812
- msgid "All data table will be lost."
813
- msgstr "Wszystkie dane tabeli będą utracone."
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"
821
- msgstr "Wyczyść rekordy stasrze niż"
822
-
823
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:158
824
- msgid ""
825
- "Deleted user statistics data older than the selected number of days. "
826
- "Minimum value is 30 days."
827
- msgstr ""
828
- "Usunięto dane statystyk użytkownika starszych niż wybrana liczba dni. "
829
- "Minimalna wartość to 30 dni."
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"
837
- msgstr "Usuń typy agentów użytkownika"
838
-
839
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:171
840
- msgid "Delete Agents"
841
- msgstr "Usuń agentów"
842
-
843
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:186
844
- msgid "All visitor data will be lost for this agent type."
845
- msgstr "Wszystkie dane odwiedzających będą utracone dla tego typu agenta."
846
-
847
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:187
848
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:211
849
- msgid "Delete now!"
850
- msgstr "Usuń"
851
-
852
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:195
853
- msgid "Delete Platforms"
854
- msgstr "Usuń platformy"
855
-
856
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:210
857
- msgid "All visitor data will be lost for this platform type."
858
- msgstr "Wszystkie dane odwiedzających będą utracone dla tego typu platformy."
859
 
860
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:22
861
- msgid "GeoIP Options"
862
- msgstr "Opcje GeoIP"
 
 
 
 
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"
@@ -883,7 +927,6 @@ 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
 
@@ -900,293 +943,459 @@ 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
 
960
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:2
961
- msgid "Name"
962
- msgstr "Nazwa"
963
 
964
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:6
965
- msgid "Items"
966
- msgstr "Wpisów"
967
 
968
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:42
969
- msgid "Select type of search engine"
970
- msgstr "Wybierz typ wyszukiwarki"
971
 
972
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:86
973
- msgid "Type date for last update"
974
- msgstr "Wpisz datę ostaniej aktualizacji"
975
 
976
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:88
977
- msgid "English"
978
- msgstr "Angielski"
979
 
980
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:91
981
- msgid "Persian"
982
- msgstr "Perski"
983
 
984
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:11
985
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:11
986
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:11
987
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:11
988
- msgid ""
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
997
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:21
998
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:21
999
- msgid "General Settings"
1000
- msgstr "Ogólne ustawienia"
1001
 
1002
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:22
1003
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:22
1004
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:22
1005
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:22
1006
- msgid "Access/Exclusions"
1007
- msgstr "Dostęp/Wykluczenia"
1008
 
1009
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:23
1010
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:23
1011
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:23
1012
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:23
1013
- msgid "GeoIP"
1014
- msgstr "GeoIP"
1015
 
1016
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:24
1017
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:24
1018
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:24
1019
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:24
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
@@ -1196,114 +1405,18 @@ msgstr "Biblioteka GeoIP"
1196
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:54
1197
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:66
1198
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:78
1199
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:155
 
 
 
 
1200
  msgid "Active"
1201
  msgstr "Uaktywnij"
1202
 
1203
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:49
1204
- msgid ""
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 ""
1241
- "This option will also download the database if the local filesize is less "
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
1260
- msgid ""
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"
1269
- msgstr "Zarządzanie bazą danych"
1270
-
1271
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:37
1272
- msgid "Run a daily WP Cron job to prune the databases"
1273
- msgstr "Uruchom codzienne zadanie WP Corn, aby czyścić bazy danych"
1274
-
1275
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:43
1276
- msgid ""
1277
- "A WP Cron job will be run daily to prune any data older than a set number of "
1278
- "days."
1279
- msgstr ""
1280
- "Zostanie uruchomione codzienne zadanie WP Cron, aby czyścić wszelkie dane "
1281
- "starsze niż w określonej liczbie dni."
1282
-
1283
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:49
1284
- msgid "Prune data older than"
1285
- msgstr "Wczyść dane starsze niż"
1286
-
1287
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:54
1288
- msgid "Days"
1289
- msgstr "Dni"
1290
-
1291
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:55
1292
- msgid ""
1293
- "The number of days to keep statistics for. Minimum value is 30 days. "
1294
- "Invalid values will disable the daily maintenance."
1295
- msgstr ""
1296
- "Liczba dni dla przechowujących statystyk. Minimalna wartość to 30 dni. "
1297
- "Nieprawidłowe wartości wyłączy codzienną konserwację."
1298
-
1299
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:32
1300
- msgid "General"
1301
- msgstr "Ogólne"
1302
-
1303
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:43
1304
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:55
1305
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:67
1306
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:156
1307
  msgid "Enable or disable this feature"
1308
  msgstr "Włącz lub wyłącz tą funkcję"
1309
 
@@ -1311,24 +1424,16 @@ msgstr "Włącz lub wyłącz tą funkcję"
1311
  msgid "Visits"
1312
  msgstr "Odwiedzin"
1313
 
1314
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:73
1315
- msgid "Store entire user agent string"
1316
- msgstr "Przechowuj cały ciąg agenta użytkownika"
1317
-
1318
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:79
1319
- msgid "Only enabled for debugging"
1320
- msgstr "Włączone tylko do debugowania"
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"
1328
- msgstr "Sekund"
1329
-
1330
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:91
1331
- #, php-format
1332
  msgid "Time for the check accurate online user in the site. Now: %s Second"
1333
  msgstr "Czas sprawdzania liczby użytkowników online. Aktualnie: %s sekund."
1334
 
@@ -1353,88 +1458,57 @@ msgid "Coefficient per visitor"
1353
  msgstr "Współczynnik dla odwiedzającego"
1354
 
1355
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:116
1356
- #, php-format
1357
  msgid "For each visit to account for several hits. Currently %s."
1358
  msgstr "Dla każdej odwiedziny z jednego konta. Aktualnie %s."
1359
 
1360
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:121
1361
- msgid "Charts"
1362
- msgstr "Wykresy"
1363
-
1364
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:126
1365
- msgid "Chart type"
1366
- msgstr "Typ wykresu"
1367
-
1368
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:132
1369
- msgid "Line"
1370
- msgstr "Liniowy"
1371
-
1372
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:133
1373
- msgid "Spline"
1374
- msgstr "Interpolowany"
1375
-
1376
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:134
1377
- msgid "Area"
1378
- msgstr "Powierzchniowy"
1379
-
1380
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:135
1381
- msgid "Area Spline"
1382
- msgstr "Interpolowany powierzchniowy"
1383
-
1384
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:136
1385
- msgid "Column"
1386
- msgstr "Słupkowy"
1387
-
1388
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:137
1389
- msgid "Bar"
1390
- msgstr "Kolumnowy"
1391
-
1392
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:138
1393
- msgid "Scatter"
1394
- msgstr "Punktowy"
1395
-
1396
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:140
1397
- msgid "Chart type in view stats."
1398
- msgstr "Typ wykresu w podglądzie statystyk."
1399
-
1400
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:163
1401
  msgid "Time send"
1402
  msgstr "Czas wysłania"
1403
 
1404
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:169
 
 
 
 
 
 
 
 
 
 
 
1405
  msgid "Hourly"
1406
  msgstr "Co godzinę"
1407
 
1408
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:170
1409
  msgid "Twice daily"
1410
  msgstr "2 razy dziennie"
1411
 
1412
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:171
1413
  msgid "daily"
1414
  msgstr "codziennie"
1415
 
1416
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:173
1417
  msgid "Select when receiving statistics report."
1418
  msgstr "Wybierz kiedy otrzymywać raporty statystyczne."
1419
 
1420
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:179
1421
  msgid "Send Statistical reporting to"
1422
  msgstr "Wysyłaj raport statystyk do"
1423
 
1424
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:185
1425
  msgid "Email"
1426
  msgstr "E-mail"
1427
 
1428
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:186
1429
  msgid "SMS"
1430
  msgstr "SMS"
1431
 
1432
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:188
1433
  msgid "Type Select Get Status Report."
1434
  msgstr "Sposób wysyłania raportów."
1435
 
1436
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:191
1437
- #, php-format
1438
  msgid ""
1439
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
1440
  "\"_blank\">Wordpress SMS</a> plugin."
@@ -1442,14 +1516,33 @@ msgstr ""
1442
  "Ważne: By wysyłać wiadomości SMS zainstaluj wtyczkę <a href=\"%s\" target="
1443
  "\"_blank\">Wordpress SMS</a>."
1444
 
1445
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:198
1446
  msgid "Send Content Report"
1447
  msgstr "Wyślij raport z przygotowaną treścią"
1448
 
1449
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:203
1450
  msgid "Enter the contents of the reports received."
1451
  msgstr "Wprowadź treść otrzymanych sprawozdań."
1452
 
1453
- #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:205
1454
  msgid "Input data:"
1455
  msgstr "Wprowadź dane:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of WP Statistics in Polish
2
+ # This file is distributed under the same license as the WP Statistics package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2014-03-10 09:50+0100\n"
 
 
 
 
 
 
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
 
 
 
 
9
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
10
  "|| n%100>=20) ? 1 : 2);\n"
11
+ "X-Generator: Poedit 1.6.4\n"
12
+ "Project-Id-Version: WP Statistics\n"
13
+ "POT-Creation-Date: \n"
14
+ "Last-Translator: \n"
15
+ "Language-Team: \n"
16
+ "Language: pl_PL\n"
 
 
17
 
18
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:100
19
+ msgid "cURL Version"
20
+ msgstr "Wersja cURL"
 
 
21
 
22
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:104
23
+ msgid "cURL not installed"
24
+ msgstr "cURL nie zainstalowane"
25
 
26
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:105
27
+ msgid ""
28
+ "The PHP cURL Extension version you are running. cURL is required for the "
29
+ "GeoIP code, if it is not installed GeoIP will be disabled."
30
+ msgstr ""
31
+ "Użyawsz uruchomionej wersji rozszerzenia PHP cURL. cURL wymaga kodu GeoIP, "
32
+ "jeśli nie jest zainstalowane GeoIP zostanie wyłączone."
 
33
 
34
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:111
35
+ msgid "BC Math"
36
+ msgstr "BC Math"
 
 
37
 
38
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
39
+ msgid "Installed"
40
+ msgstr "Zainstalowany"
 
 
41
 
42
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:115
43
+ msgid "Not installed"
44
+ msgstr "Nie zainstalowany"
 
45
 
46
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:116
47
+ msgid ""
48
+ "If the PHP BC Math Extension is installed. BC Math is required for the "
49
+ "GeoIP code, if it is not installed GeoIP will be disabled."
50
+ msgstr ""
51
+ "Jeśli jest zainstalowane rozszerzenie PHP BC Math. BC Math jest wymagane dla "
52
+ "kodu GeoIP, jeśli nie jest zainstalowane GeoIP zostanie wyłączone."
53
 
54
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:122
55
+ msgid ""
56
+ "GeoIP collection requires the cURL PHP extension and it is not loaded on "
57
+ "your version of PHP!"
58
+ msgstr ""
59
+ "Gromadzony GeoIP wymaga rozszerzenia cURL PHP i nie jest uruchomiony w "
60
+ "Twojej wersji PHP!"
61
 
62
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:127
63
+ msgid ""
64
+ "GeoIP collection requires the BC Math PHP extension and it is not loaded on "
65
+ "your version of PHP!"
66
+ msgstr ""
67
+ "Gromadzony GeoIP wymaga rozszerzenia BC Math PHP i nie jest uruchomiony w "
68
+ "Twojej wersji PHP!"
69
 
70
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:19
71
+ msgid ""
72
+ "Unable to load the GeoIP database, make sure you have downloaded it in the "
73
+ "settings page."
74
+ msgstr ""
75
+ "Nie można załadować bazy danych GeoIP, upewnij się, że pobrałeś ją na "
76
+ "stronie ustawień."
77
 
78
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:36
79
+ msgid "Database file does not exist."
80
+ msgstr "Plik bazy danych nie istnieje."
 
 
81
 
82
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:61
83
+ msgid "Search for"
84
+ msgstr "Szukaj dla"
 
 
85
 
86
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
87
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:243
88
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:288
89
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:378
90
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:473
91
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:584
92
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:633
93
+ msgid "More"
94
+ msgstr "Więcej"
95
 
96
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:681
97
+ msgid "Today visitors on map"
98
+ msgstr "Dzisiejsi odwiedzający na mapie"
 
99
 
100
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:22
101
+ msgid "GeoIP File Info"
102
+ msgstr "Informacje pliku GeoIP"
 
103
 
104
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:27
105
+ msgid "File Date"
106
+ msgstr "Data pliku"
 
107
 
108
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:40
109
+ msgid "The file date of the GeoIP database."
110
+ msgstr "Data pliku bazy danych GeoIP."
 
111
 
112
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:46
113
+ msgid "File Size"
114
+ msgstr "Rozmiar pliku"
 
115
 
116
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:63
117
+ msgid "The file size of the GeoIP database."
118
+ msgstr "Rozmiar pliku bazy danych GeoIP."
 
119
 
120
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:146
121
+ msgid "Include totals"
122
+ msgstr "Razem dołączonych"
 
123
 
124
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:152
125
+ msgid ""
126
+ "Add a total line to charts with multiple values, like the search engine "
127
+ "referrals"
128
+ msgstr ""
129
+ "Dodaj całkowitą linię do wykresów z wieloma wartościami, takimi jak "
130
+ "odwołania w wyszukiwarkach"
131
 
132
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:162
133
+ msgid "Disable map"
134
+ msgstr "Wyłącz mapę"
 
135
 
136
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:168
137
+ msgid "Disable the map display"
138
+ msgstr "Wyłącz wyświetlanie mapy"
139
 
140
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:174
141
+ msgid "Alternate map location"
142
+ msgstr "Alternatywna lokalizacja mapy"
143
 
144
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:180
 
145
  msgid ""
146
+ "Place the map above the recent visitors area instead of at the top of the "
147
+ "page."
148
  msgstr ""
149
+ "Umieść powyższą mapę w obszarsze ostatnio odwiedzający zamiast na górnej "
150
+ "stronie."
151
 
152
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:186
153
+ msgid "Get country location from Google"
154
+ msgstr "Otrzymaj położenie kraju z Google"
 
 
 
 
 
 
155
 
156
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:192
157
+ msgid ""
158
+ "This feature may cause a performance degradation when viewing statistics."
159
+ msgstr ""
160
+ "Ta funkcja może spowodować pogorszenie wydajności podczas przeglądania "
161
+ "statystyk."
162
 
163
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:67
164
+ msgid ""
165
+ "GeoIP collection is not active! Please go to <a href=\"%s\">Setting page > "
166
+ "GeoIP</a> and enable this feature (GeoIP can detect the visitors country)"
167
+ msgstr ""
168
+ "Gromadzenie GeoIP nie jest aktywne! Proszę przejść na stronę <a href=\"%s"
169
+ "\">Ustawienia > GeoIP</a> i włączyć tą funkcję (GeoIP może wykryć kraj "
170
+ "odwiedzających)"
171
 
172
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:8
173
+ msgid ""
174
+ "Attention: Exclusion are not currently set to be recorded, the results below "
175
+ "may not reflect current statistics!"
176
+ msgstr ""
177
+ "Uwaga: Wykluczenia nie są obecnie ustawione na zapisywanie, poniższe wyniki "
178
+ "mogą nie odzwierciedlać aktualnej statystyki!"
179
 
180
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:87
181
+ msgid "Excluded hits chart in the last"
182
+ msgstr "Wykres wykluczonych wejść w ciągu"
183
 
184
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:111
185
+ msgid "Number of excluded hits"
186
+ msgstr "Liczba wykluczonych wejść"
187
 
188
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:85
189
+ msgid ""
190
+ "Hint: manage_network = Super Admin Network, manage_options = Administrator, "
191
+ "edit_others_posts = Editor, publish_posts = Author, edit_posts = "
192
+ "Contributor, read = Everyone."
193
+ msgstr ""
194
+ "Porada: manage_network = Super Admin Network, manage_options = "
195
+ "Administrator, edit_others_posts = Editor, publish_posts = Author, "
196
+ "edit_posts = Contributor, read = Everyone."
197
 
198
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:96
199
+ msgid "Record Exclusions"
200
+ msgstr "Zarejestrowane wykluczenia"
 
201
 
202
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:98
203
+ msgid "Enable"
204
+ msgstr "Włącz"
205
 
206
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:99
207
+ msgid ""
208
+ "This will record all the excluded hits in a separate table with the reasons "
209
+ "why it was excluded but no other information. This will generate a lot of "
210
+ "data but is useful if you want to see the total number of hits your site "
211
+ "gets, not just actual user visits."
212
+ msgstr ""
213
+ "Będzie to rekord wszystkich wykluczonych odsłon w oddzielnej tabeli z "
214
+ "powodu, dla których zostały wykluczone z pominięciem innych informacji. "
215
+ "Dzięki temu uzyskasz sporo danych, jeśli chcesz zobaczyć łączną liczbę "
216
+ "odsłon strony otrzymując, nie tylko rzeczywiste odwiedziny użytkowników."
217
 
218
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:159
219
+ msgid "Site URL Exclusions"
220
+ msgstr "Wykluczenia adresów URL"
221
 
222
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:163
223
+ msgid "Excluded Login Page"
224
+ msgstr "Wykluczona strona logowania"
225
 
226
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:166
227
+ msgid "Exclude the login page for registering as a hit."
228
+ msgstr "Wyklucz stronę logowania do rejestracji jako wejście."
229
 
230
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:170
231
+ msgid "Excluded Admin Pages"
232
+ msgstr "Wykluczone strony administracji"
 
233
 
234
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:173
235
+ msgid "Exclude the admin pages for registering as a hit."
236
+ msgstr "Wyklucz strony administracji do rejestracji jako wejście."
237
 
238
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:130
239
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:92
240
+ msgid "Exclusions"
241
+ msgstr "Wykluczenia"
 
242
 
243
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:64
244
+ msgid "Total Exclusions: %s"
245
+ msgstr "Razem wykluczeń: %s"
246
 
247
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:71
248
+ msgid "Exclusions Statistical Chart"
249
+ msgstr "Statystyczny wykres odsłon"
 
250
 
251
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:32
252
+ msgid "Access Levels"
253
+ msgstr "Dostęp do poziomów"
 
254
 
255
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:3
256
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:116
257
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:11
258
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:3
259
+ msgid "Resources/Information"
260
+ msgstr "Zasoby/Informacje"
261
 
262
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:5
263
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:118
264
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:13
265
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:5
266
+ msgid "Purging"
267
+ msgstr "Wyczyść"
268
 
269
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:7
270
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:120
271
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:15
272
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:7
273
+ msgid "Updates"
274
+ msgstr "Zaktualizuj"
275
 
276
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:22
277
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:22
278
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:22
279
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:22
280
+ msgid "Access/Exclusions"
281
+ msgstr "Dostęp/Wykluczenia"
282
 
283
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:24
284
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:24
285
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:24
286
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:24
287
+ msgid "Maintenance"
288
+ msgstr "Zarządzanie"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
 
290
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:182
291
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:139
292
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:65
293
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:274
294
+ msgid "Update"
295
+ msgstr "Zaktualizuj"
296
 
297
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:32
298
+ msgid "General"
299
+ msgstr "Ogólne"
 
300
 
301
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:51
302
+ msgid "Error, %s not emptied!"
303
+ msgstr "Błąd, %s nie opróźniono!"
304
 
305
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:127
306
+ msgid "Data"
307
+ msgstr "Dane"
308
 
309
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:152
310
+ msgid "Purge records older than"
311
+ msgstr "Wyczyść rekordy stasrze niż"
312
 
313
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:158
314
+ msgid ""
315
+ "Deleted user statistics data older than the selected number of days. "
316
+ "Minimum value is 30 days."
317
+ msgstr ""
318
+ "Usunięto dane statystyk użytkownika starszych niż wybrana liczba dni. "
319
+ "Minimalna wartość to 30 dni."
320
 
321
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:159
322
+ msgid "Purge now!"
323
+ msgstr "Wyczyść"
324
 
325
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:17
326
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:27
327
  msgid ""
328
+ "<code>%s</code> data older than <code>%s</code> days purged successfully."
 
329
  msgstr ""
330
+ "<code>%s</code> danych starszych niż <code>%s</code> dni oczyszczonych "
331
+ "pomyślnie."
 
 
 
 
332
 
333
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:19
334
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:29
335
+ msgid "No records found to purge from <code>%s</code>!"
336
+ msgstr "Nie znaleziono rekordów w celu usunięcia z <code>%s</code>!"
337
 
338
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:35
339
+ msgid "Please select a value over 30 days."
340
+ msgstr "Proszę wybrać wartość w ciągu 30 dni."
341
 
342
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:11
343
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:11
344
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:11
345
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:11
346
+ msgid ""
347
+ "This will permanently delete data from the database each day, are you sure "
348
+ "you want to enable this option?"
349
+ msgstr ""
350
+ "Spowoduje to trwałe usunięcie danych z bazy danych każdego dnia, czy na "
351
+ "pewno chcesz włączyć tą opcję?"
352
 
353
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:32
354
+ msgid "Database Maintenance"
355
+ msgstr "Zarządzanie bazą danych"
 
356
 
357
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:37
358
+ msgid "Run a daily WP Cron job to prune the databases"
359
+ msgstr "Uruchom codzienne zadanie WP Corn, aby czyścić bazy danych"
 
 
360
 
361
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:43
362
+ msgid ""
363
+ "A WP Cron job will be run daily to prune any data older than a set number of "
364
+ "days."
365
+ msgstr ""
366
+ "Zostanie uruchomione codzienne zadanie WP Cron, aby czyścić wszelkie dane "
367
+ "starsze niż w określonej liczbie dni."
368
 
369
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:49
370
+ msgid "Prune data older than"
371
+ msgstr "Wczyść dane starsze niż"
 
 
372
 
373
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:54
374
+ msgid "Days"
375
+ msgstr "Dni"
 
 
376
 
377
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:55
378
+ msgid ""
379
+ "The number of days to keep statistics for. Minimum value is 30 days. "
380
+ "Invalid values will disable the daily maintenance."
381
+ msgstr ""
382
+ "Liczba dni dla przechowujących statystyk. Minimalna wartość to 30 dni. "
383
+ "Nieprawidłowe wartości wyłączy codzienną konserwację."
384
 
385
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:129
386
+ msgid "Date: <code dir=\"ltr\">%s</code></code>"
387
+ msgstr "Data: <code dir=\"ltr\">%s</code></code>"
 
 
388
 
389
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:133
390
+ msgid "Time: <code dir=\"ltr\">%s</code>"
391
+ msgstr "Czas: <code dir=\"ltr\">%s</code>"
 
 
392
 
393
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:23
394
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:23
395
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:23
396
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:23
397
+ msgid "GeoIP"
398
+ msgstr "GeoIP"
399
 
400
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:75
401
+ msgid "Next update will be"
402
+ msgstr "Następna aktualizacja będzie za"
 
403
 
404
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:117
405
+ msgid ""
406
+ "GeoIP collection requires PHP %s or above, it is currently disabled due to "
407
+ "the installed PHP version being "
408
+ msgstr ""
409
+ "Biblioteka GeoIP wymaga PHP %s lub nowszego, obecnie jest wyłączona z powodu "
410
+ "zainstalowanej istniejącej wersji PHP"
411
 
412
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:87
413
+ msgid "Search Engine Referrals"
414
+ msgstr "Polecone w wyszukiwarkach"
415
 
416
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:111
417
+ msgid "Daily Total"
418
+ msgstr "Razem codziennie"
 
 
 
419
 
420
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:125
421
+ msgid "Current Time and Date"
422
+ msgstr "Bieżący czas i data"
423
 
424
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:77
425
+ msgid "Update Now!"
426
+ msgstr "Zaktualizuj"
 
427
 
428
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:84
429
+ msgid ""
430
+ "See the %sWordPress Roles and Capabilities page%s for details on capability "
431
+ "levels."
432
+ msgstr ""
433
+ "Zobacz %s zasady WordPress oraz możliwości strony %s dla szczegółowych "
434
+ "informacji na temat poziomów użytkowania."
435
 
436
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:86
437
+ msgid ""
438
+ "Each of the above casscades the rights upwards in the default WordPress "
439
+ "configuration. So for example selecting publish_posts grants the right to "
440
+ "Authors, Editors, Admins and Super Admins."
441
+ msgstr ""
442
+ "Każdy z powyższych górnych praw z góry ustawia domyślną konfigurację "
443
+ "WordPress. Na przykład wybierając publish_posts daje prawo dla Autorów, "
444
+ "Redaktorów, Administratorów i Super Administratorów."
445
 
446
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:87
447
+ msgid ""
448
+ "If you need a more robust solution to delegate access you might want to look "
449
+ "at %s in the WordPress plugin directory."
450
+ msgstr ""
451
+ "Jeśli potrzebujesz bardziej niezawodne rozwiązanie do delegowania dostępu, "
452
+ "możesz zajrzeć do %s w katalogu wtyczek WordPress."
453
 
454
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:61
455
+ msgid "Required user level to view WP Statistics"
456
+ msgstr "Wymagany poziom użytkownika, aby wyświetlić WP Statistics"
 
 
457
 
458
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:76
459
+ msgid "Required user level to manage WP Statistics"
460
+ msgstr "Wymagany poziom użytkownika, aby zarządzać WP Statistics"
 
 
 
461
 
462
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:67
463
+ msgid "Schedule monthly update of GeoIP DB"
464
+ msgstr "Kalendarz miesięczny aktualizacji GeoIP DB"
 
 
465
 
466
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:94
467
+ msgid ""
468
+ "Download of the GeoIP database will be scheduled for 2 days after the first "
469
+ "Tuesday of the month."
470
+ msgstr ""
471
+ "Pobranie bazy danych GeoIP będzie zaplanowane na 2 dni po pierwszym Wtorku "
472
+ "każdego miesiąca."
473
 
474
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:95
475
+ msgid ""
476
+ "This option will also download the database if the local filesize is less "
477
+ "than 1k (which usually means the stub that comes with the plugin is still in "
478
+ "place)."
479
+ msgstr ""
480
+ "Ta opcja również pobiera bazę danych, jeśli lokalny rozmiar pliku jest "
481
+ "mniejszy niż 1k (który zazwyczaj oznacza odcinek, pochodzący z tej wtyczk "
482
+ "jest nadal w tym miejscu)."
483
 
484
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:101
485
+ msgid "Populate missing GeoIP after update of GeoIP DB"
486
+ msgstr "Wypełnienie brakujących GeoIP po aktualizacji GeoIP DB"
 
 
487
 
488
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:107
489
+ msgid "Update any missing GeoIP data after downloading a new database."
490
+ msgstr ""
491
+ "Zaktualizuj wszelkie brakujące dane GeoIP po pobraniu nowej bazy danych."
 
492
 
493
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/functions/geoip-populate.php:36
494
+ msgid "Updated %s GeoIP records in the visitors database."
495
+ msgstr "Zaktualizowano %s rekordów GeoIP w bazie danych odwiedzających. "
 
 
 
496
 
497
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:62
498
+ msgid "Version Info"
499
+ msgstr "Informacje o wersji"
 
 
500
 
501
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:67
502
+ msgid "WP Statistics Version"
503
+ msgstr "Wersja WP Statistics"
504
 
505
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:72
506
+ msgid "The WP Statistics version you are running."
507
+ msgstr "Używasz wersji WP Statistics."
 
508
 
509
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:78
510
+ msgid "PHP Version"
511
+ msgstr "Wersja PHP"
 
512
 
513
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:83
514
+ msgid "The PHP version you are running."
515
+ msgstr "Używasz wersji PHP."
516
 
517
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:89
518
+ msgid "jQuery Version"
519
+ msgstr "Wersja jQuery"
520
 
521
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:94
522
+ msgid "The jQuery version you are running."
523
+ msgstr "Używasz wersji jQuery."
524
 
525
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:370
526
+ msgid "Error downloading GeoIP database from: %s"
527
+ msgstr "Błąd pobierania bazy danych GeoIP z: %s"
 
528
 
529
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:378
530
+ msgid "Error could not open downloaded GeoIP database for reading: %s"
531
+ msgstr "Nie mogę otworzyć pobranej bazy danych GeoIP odnoszącej się do: %s"
532
 
533
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:384
534
+ msgid "Error could not open destination GeoIP database for writing %s"
535
+ msgstr "Nie mogę otworzyć pobranej bazy danych GeoIP zapisanej w %s"
536
 
537
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:397
538
+ msgid "GeoIP Database updated successfully!"
539
+ msgstr "Baza danych GeoIP zaktualizowana pomyślnie!"
540
 
541
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:121
542
+ msgid "Client Info"
543
+ msgstr "Informacje o kliencie"
544
 
545
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:126
546
+ msgid "Client IP"
547
+ msgstr "Adres IP klienta"
 
548
 
549
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:131
550
+ msgid "The client IP address."
551
+ msgstr "Adres IP Klienta."
 
552
 
553
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:137
554
+ msgid "User Agent"
555
+ msgstr "Agent uzytkownika"
 
 
 
 
 
 
556
 
557
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:142
558
+ msgid "The client user agent string."
559
+ msgstr "Ciąg agenta użytkownika klienta."
560
 
561
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:78
562
+ msgid "Get updates for the location and the countries, this may take a while"
563
+ msgstr "Pobierz aktualizacje dla lokalizacji i krajów, może to chwilę potrwać"
 
 
564
 
565
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:104
566
+ msgid "Exclude User Roles"
567
+ msgstr "Wyklucz zasady użytkownika"
 
568
 
569
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:120
570
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:165
571
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:172
572
+ msgid "Exclude"
573
+ msgstr "Wyklucz"
574
 
575
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:121
576
+ msgid "Exclude %s role from data collection."
577
+ msgstr "Wyklucz regułę %s z gromadzonych danych."
578
 
579
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:127
580
+ msgid "IP/Robot Exclusions"
581
+ msgstr "Wykluczenia adresów IP/robotów"
 
582
 
583
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:131
584
+ msgid "Robot List"
585
+ msgstr "Lista robotów"
 
586
 
587
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:143
588
+ msgid ""
589
+ "A list of words (one per line) to match against to detect robots. Entries "
590
+ "must be at least 4 characters long or they will be ignored."
591
+ msgstr ""
592
+ "Lista słów (po jednym w wierszu) tak, aby zgadzały się z wykrytymi robotami. "
593
+ "Wpisy muszą być co najmniej z 4 znakami lub będą one ignorowane."
594
 
595
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:144
596
+ msgid "Reset to Default"
597
+ msgstr "Przywróć domyślne"
598
 
599
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:148
600
+ msgid "Excluded IP Address List"
601
+ msgstr "Wykluczona lista adresów IP"
 
602
 
603
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:151
604
+ msgid ""
605
+ "A list of IP addresses and (optional) subnet masks (one per line) to exclude "
606
+ "from statistics collection (both 192.168.0.0/24 and "
607
+ "192.168.0.0/255.255.255.0 formats are accepted). To specify an IP address "
608
+ "only, do not add any subnet value."
609
+ msgstr ""
610
+ "Lista adresów IP i (opcjonalnie) maski podsieci (po jednej w wierszu) można "
611
+ "wyłączyć z gromadzonych statystyk (zarówno formaty 192.168.0.0/24 i "
612
+ "192.168.0.0/255.255.255.0 są akceptowane). Aby podać tylko adres IP, nie "
613
+ "należy dodawać żadnych wartości podsieci."
614
 
615
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:152
616
+ msgid "Add 10.0.0.0"
617
+ msgstr "Dodaj 10.0.0.0"
618
 
619
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:153
620
+ msgid "Add 172.16.0.0"
621
+ msgstr "Dodaj 172.16.0.0"
622
 
623
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:154
624
+ msgid "Add 192.168.0.0"
625
+ msgstr "Dodaj 192.168.0.0"
626
 
627
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:121
628
+ msgid "Charts"
629
+ msgstr "Wykresy"
630
+
631
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:49
632
+ msgid ""
633
+ "For get more information and location (country) from visitor, enable this "
634
+ "feature."
635
+ msgstr ""
636
+ "Dla uzyskania dodatkowych informacji i lokalizacji (kraju) z odwiedzającym, "
637
+ "włącz tą funkcję."
638
+
639
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:23
640
+ msgid "Wordpress Statistics"
641
+ msgstr "Statystyki Wordpress"
642
+
643
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:24
644
+ msgid "Complete statistics for your blog."
645
+ msgstr "Uzupełnij statystyki dla blogu."
646
+
647
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:124
648
+ msgid "Overview"
649
+ msgstr "Przegląd"
650
+
651
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:127
652
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:73
653
+ msgid "Countries"
654
+ msgstr "Kraje"
655
+
656
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:129
657
+ msgid "Hits"
658
+ msgstr "Wejścia"
659
+
660
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:131
661
+ msgid "Referers"
662
+ msgstr "Strony odsyłające"
663
+
664
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:132
665
+ msgid "Searches"
666
+ msgstr "Wyszukiwarki"
667
+
668
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:133
669
+ msgid "Search Words"
670
+ msgstr "Wyszukiwane frazy"
671
+
672
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:90
673
+ msgid "Second"
674
+ msgstr "Sekund"
675
+
676
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:17
677
+ msgid "Browser Statistics"
678
+ msgstr "Statystyki przeglądarki"
679
+
680
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:55
681
+ msgid "Browsers by Type"
682
+ msgstr "Typ przeglądarek"
683
+
684
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:130
685
+ msgid "Platform"
686
+ msgstr "Platforma"
687
+
688
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:150
689
+ msgid "Browsers by Platform"
690
+ msgstr "Przeglądarki wg platformy"
691
+
692
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:194
693
+ msgid "Platform share"
694
+ msgstr "Udział platformy"
695
+
696
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:274
697
+ msgid "%s Version"
698
+ msgstr "Wersja %s"
699
+
700
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:338
701
+ msgid "Browser version share"
702
+ msgstr "Udział wersji przeglądarki"
703
+
704
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:50
705
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:17
706
+ msgid "Hit Statistics"
707
+ msgstr "Statystyki odsłon"
708
+
709
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:53
710
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:21
711
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:21
712
+ msgid "10 Days"
713
+ msgstr "10 dni"
714
+
715
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:54
716
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:22
717
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:22
718
+ msgid "20 Days"
719
+ msgstr "20 dni"
720
+
721
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:55
722
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:23
723
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:23
724
+ msgid "30 Days"
725
+ msgstr "30 dni"
726
+
727
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:56
728
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:24
729
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:24
730
+ msgid "2 Months"
731
+ msgstr "2 miesiące"
732
+
733
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:57
734
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:25
735
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:25
736
+ msgid "3 Months"
737
+ msgstr "3 miesiące"
738
+
739
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:58
740
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:26
741
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:26
742
+ msgid "6 Months"
743
+ msgstr "6 miesięcy"
744
+
745
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:59
746
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:27
747
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:27
748
+ msgid "9 Months"
749
+ msgstr "9 miesięcy"
750
+
751
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:60
752
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:28
753
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:28
754
+ msgid "1 Year"
755
+ msgstr "Rok"
756
+
757
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:36
758
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:378
759
+ msgid "Hits Statistical Chart"
760
+ msgstr "Statystyczny wykres odsłon"
761
+
762
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
763
+ msgid "Hits chart in the last"
764
+ msgstr "Wykres odsłon w ostatnich"
765
+
766
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:87
767
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:52
768
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:52
769
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:157
770
+ msgid "days"
771
+ msgstr "dniach"
772
+
773
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:288
774
+ msgid "Top 10 Countries"
775
+ msgstr "Najlepszych 10 państw"
776
+
777
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:294
778
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:28
779
+ msgid "Rank"
780
+ msgstr "Pozycja"
781
+
782
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:295
783
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:29
784
+ msgid "Flag"
785
+ msgstr "Flaga"
786
+
787
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:297
788
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:31
789
+ msgid "Visitor Count"
790
+ msgstr "Ilość odwiedzających"
791
 
792
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:344
793
  msgid ""
797
  "Proszę wspomóc WP Statistics. Z twoją pomocą WP Statistics będzie rządzić "
798
  "światem!"
799
 
800
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:473
 
 
 
 
 
 
 
 
801
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:36
802
  msgid "Search Engine Referrers Statistical Chart"
803
  msgstr "Statystyczny wykres odsyłań w wyszukiwarkach"
804
 
 
 
 
 
 
 
 
 
 
805
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:17
806
  msgid "Search Engine Referrers Statistics"
807
  msgstr "Statystyki odsyłań w wyszukiwarkach"
814
  msgid "Top Countries"
815
  msgstr "Najlepsze kraje"
816
 
 
 
 
 
 
 
 
 
 
 
 
 
817
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:14
 
818
  msgid "<code>%s</code> agent data deleted successfully."
819
  msgstr "<code>%s</code> danych agenta usunięto pomyślnie."
820
 
 
 
 
 
 
 
 
821
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:14
 
822
  msgid "<code>%s</code> platform data deleted successfully."
823
  msgstr "<code>%s</code> danych platform usunięto pomyślnie."
824
 
825
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:166
826
+ msgid "Delete User Agent Types"
827
+ msgstr "Usuń typy agentów użytkownika"
 
 
 
 
 
 
828
 
829
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:171
830
+ msgid "Delete Agents"
831
+ msgstr "Usuń agentów"
 
 
 
 
 
832
 
833
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:186
834
+ msgid "All visitor data will be lost for this agent type."
835
+ msgstr "Wszystkie dane odwiedzających będą utracone dla tego typu agenta."
 
 
836
 
837
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:187
838
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:211
839
+ msgid "Delete now!"
840
+ msgstr "Usuń"
841
 
842
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:195
843
+ msgid "Delete Platforms"
844
+ msgstr "Usuń platformy"
 
 
 
845
 
846
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:210
847
+ msgid "All visitor data will be lost for this platform type."
848
+ msgstr "Wszystkie dane odwiedzających będą utracone dla tego typu platformy."
 
 
 
 
849
 
850
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:68
851
+ msgid "GeoIP Options"
852
+ msgstr "Opcje GeoIP"
 
 
 
853
 
854
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:73
855
+ msgid "Store entire user agent string"
856
+ msgstr "Przechowuj cały ciąg agenta użytkownika"
 
 
 
857
 
858
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:79
859
+ msgid "Only enabled for debugging"
860
+ msgstr "Włączone tylko do debugowania"
861
 
862
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:32
863
+ msgid "GeoIP settings"
864
+ msgstr "Ustawienia GeoIP"
 
 
 
 
 
 
 
865
 
866
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:43
867
+ msgid "GeoIP collection"
868
+ msgstr "Biblioteka GeoIP"
869
 
870
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:55
871
+ msgid "Update GeoIP Info"
872
+ msgstr "Aktualizacja informacji GeoIP"
873
 
874
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:60
875
+ msgid "Download GeoIP Database"
876
+ msgstr "Pobierz bazę danych GeoIP"
877
 
878
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:61
879
+ msgid "Save changes on this page to download the update."
880
+ msgstr "Zapisz zmiany na tej stronie, aby pobrać aktualizację."
881
 
882
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:10
883
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:36
886
  msgid "Are you sure?"
887
  msgstr "Czy na pewno?"
888
 
 
 
 
 
 
 
 
 
 
 
 
 
889
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:144
890
  msgid "Clear now!"
891
  msgstr "Wyczyść"
892
 
893
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:136
894
+ msgid "Optimization"
895
+ msgstr "Optymizacja"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
896
 
897
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:5
898
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:5
899
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:5
900
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:5
901
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/purge-data.php:5
902
+ msgid "Access denied!"
903
+ msgstr "Dostęp zabroniony!"
904
 
905
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:47
906
+ msgid "<code>%s</code> table data deleted successfully."
907
+ msgstr "<code>%s</code> danych tabel usunięto pomyślnie."
908
 
909
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-agents.php:18
910
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/delete-platforms.php:18
911
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/empty.php:36
912
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/export.php:47
913
+ msgid "Please select the desired items."
914
+ msgstr "Proszę wybierz odpowiednie wpisy."
915
 
916
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:14
917
  msgid "Resources"
927
  msgstr "Bajt"
928
 
929
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:30
 
930
  msgid "Number of rows in the <code>%sstatistics_useronline</code> table"
931
  msgstr "Liczba rzędów w tabeli <code>%sstatistics_useronline</code>"
932
 
943
  msgstr "Liczba rzędów"
944
 
945
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:41
 
946
  msgid "Number of rows in the <code>%sstatistics_visit</code> table"
947
  msgstr "Liczba rzędów w tabeli <code>%sstatistics_visit</code>"
948
 
949
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:52
 
950
  msgid "Number of rows in the <code>%sstatistics_visitor</code> table"
951
  msgstr "Liczba rzędów w tabeli <code>%sstatistics_visitor</code>"
952
 
953
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:4
954
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:15
955
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:117
956
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-updates.php:12
957
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization.php:4
958
+ msgid "Export"
959
+ msgstr "Eksportuj"
960
 
961
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:20
962
+ msgid "Export from"
963
+ msgstr "Eksportuj z"
964
 
965
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:30
966
+ msgid "Select the table for the output file."
967
+ msgstr "Wybierż tablę dla pliku wyjściowego."
968
 
969
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:36
970
+ msgid "Export To"
971
+ msgstr "Eksportuj do"
972
 
973
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:47
974
+ msgid "Select the output file type."
975
+ msgstr "Wybierz typ liku wyjściowego."
976
 
977
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:48
978
+ msgid "Start Now!"
979
+ msgstr "Rozpocznij"
980
 
981
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:132
982
+ msgid "Empty Table"
983
+ msgstr "Opróżnij tabelę"
984
 
985
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:143
986
+ msgid "All data table will be lost."
987
+ msgstr "Wszystkie dane tabeli będą utracone."
988
 
989
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:394
990
+ msgid "Hits chart in the last 20 days"
991
+ msgstr "Wykres odwiedzin z ostatnich 20 dni"
992
 
993
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:489
994
+ msgid "Referrer search engine chart in the last 20 days"
995
+ msgstr "Wykres odsyłań w wyszukiwarkach z ostatnich 20 dni"
996
 
997
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:512
998
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:76
999
+ msgid "Number of referrer"
1000
+ msgstr "Liczba odsyłań"
1001
 
1002
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:126
1003
+ msgid "Chart type"
1004
+ msgstr "Typ wykresu"
1005
 
1006
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:132
1007
+ msgid "Line"
1008
+ msgstr "Liniowy"
1009
 
1010
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:133
1011
+ msgid "Spline"
1012
+ msgstr "Interpolowany"
1013
 
1014
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:134
1015
+ msgid "Area"
1016
+ msgstr "Powierzchniowy"
1017
 
1018
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:135
1019
+ msgid "Area Spline"
1020
+ msgstr "Interpolowany powierzchniowy"
1021
 
1022
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:136
1023
+ msgid "Column"
1024
+ msgstr "Słupkowy"
1025
 
1026
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:137
1027
+ msgid "Bar"
1028
+ msgstr "Kolumnowy"
 
 
 
 
 
 
 
1029
 
1030
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:138
1031
+ msgid "Scatter"
1032
+ msgstr "Punktowy"
 
 
 
1033
 
1034
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:140
1035
+ msgid "Chart type in view stats."
1036
+ msgstr "Typ wykresu w podglądzie statystyk."
 
 
 
1037
 
1038
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:337
1039
+ msgid "Support"
1040
+ msgstr "Pomoc techniczna"
 
 
 
1041
 
1042
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:337
1043
+ msgid "Farsi"
1044
+ msgstr "Farsi"
 
 
 
1045
 
1046
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:47
1047
+ msgid "Referring sites from"
1048
+ msgstr "Strony odsyłające z"
1049
 
1050
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:336
1051
+ msgid "Translations"
1052
+ msgstr "Tłumaczenia"
1053
 
1054
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:338
1055
+ msgid "Facebook"
1056
+ msgstr "Facebook"
1057
 
1058
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:4
1059
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:4
1060
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:4
1061
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:4
1062
+ msgid "To be added soon"
1063
+ msgstr "Wkrótce dodany"
 
 
1064
 
1065
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:103
1066
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:97
1067
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:602
1068
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:647
1069
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:78
1070
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:157
1071
+ msgid "Map"
1072
+ msgstr "Mapa"
 
1073
 
1074
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:132
1075
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:122
1076
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
1077
+ msgid "Page"
1078
+ msgstr "Strona"
 
 
 
 
1079
 
1080
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:132
1081
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:122
1082
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:132
1083
+ msgid "From"
1084
+ msgstr "z"
1085
+
1086
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:64
1087
  msgid ""
1088
+ "Facilities Wordpress Statistics not enabled! Please go to <a href=\"%s"
1089
+ "\">setting page</a> and enable statistics"
1090
  msgstr ""
1091
+ "Pobieranie statystyk nie jest uruchomine! Przedjdź do <a href=\"%s"
1092
+ "\">ustawień</a> i uruchom je."
1093
 
1094
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:274
1095
+ msgid "Table plugin does not exist! Please disable and re-enable the plugin."
1096
+ msgstr "Tabela wtyczki nie istnieje! Proszę wyłącz i włącz wtyczkę."
1097
 
1098
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/schedule.php:110
1099
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:197
1100
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:202
1101
+ msgid "Statistical reporting"
1102
+ msgstr "Raporty statystyk"
1103
 
1104
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:4
1105
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:6
1106
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:122
1107
+ msgid "Statistics"
1108
+ msgstr "Statystyki"
 
 
 
 
 
 
1109
 
1110
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:5
1111
+ msgid "Show site stats in sidebar"
1112
+ msgstr "Pokaż statystyki stron w menu bocznym"
1113
 
1114
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:19
1115
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:175
1116
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:36
1117
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:9
1118
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:37
1119
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:258
1120
+ msgid "User Online"
1121
+ msgstr "Osób online"
1122
 
1123
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:26
1124
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:12
1125
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:260
1126
+ msgid "Today Visit"
1127
+ msgstr "Odwiedzin dzisiaj"
1128
 
1129
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:33
1130
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:15
1131
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:259
1132
+ msgid "Today Visitor"
1133
+ msgstr "Odwiedziło dzisiaj"
1134
 
1135
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:40
1136
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:262
1137
+ msgid "Yesterday Visit"
1138
+ msgstr "Odwiedzin wczoraj"
1139
 
1140
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:47
1141
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:21
1142
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:261
1143
+ msgid "Yesterday Visitor"
1144
+ msgstr "Odwiedziń wczoraj"
 
 
1145
 
1146
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:54
1147
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:24
1148
+ msgid "Week Visit"
1149
+ msgstr "Odwiedzin w tygodniu"
1150
 
1151
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:61
1152
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:27
1153
+ msgid "Month Visit"
1154
+ msgstr "Odwiedzin w miesiącu"
1155
 
1156
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:68
1157
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:30
1158
+ msgid "Years Visit"
1159
+ msgstr "Odwiedzin w roku"
 
 
 
 
 
 
 
1160
 
1161
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:75
1162
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:33
1163
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:264
1164
+ msgid "Total Visit"
1165
+ msgstr "Razem odwiedzin"
1166
+
1167
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:82
1168
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:36
1169
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:263
1170
+ msgid "Total Visitor"
1171
+ msgstr "Razem odwiedzin"
1172
+
1173
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:90
1174
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:39
1175
+ msgid "Search Engine reffered"
1176
+ msgstr "Razem odwiedziło"
1177
+
1178
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:97
1179
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:59
1180
+ msgid "Total Posts"
1181
+ msgstr "Razem wpisów"
1182
+
1183
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:104
1184
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:62
1185
+ msgid "Total Pages"
1186
+ msgstr "Razem stron"
1187
+
1188
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:111
1189
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:65
1190
+ msgid "Total Comments"
1191
+ msgstr "Razem komentarzy"
1192
+
1193
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:118
1194
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:68
1195
+ msgid "Total Spams"
1196
+ msgstr "Razem spamów"
1197
+
1198
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:125
1199
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:71
1200
+ msgid "Total Users"
1201
+ msgstr "Razem uzytkowników"
1202
+
1203
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:132
1204
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:74
1205
+ msgid "Average Posts"
1206
+ msgstr "Średnio wpisów"
1207
+
1208
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:139
1209
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:77
1210
+ msgid "Average Comments"
1211
+ msgstr "Średnio komentarzy"
1212
+
1213
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:146
1214
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:80
1215
+ msgid "Average Users"
1216
+ msgstr "Średnio użytkowników"
1217
+
1218
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/widget.php:153
1219
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:83
1220
+ msgid "Last Post Date"
1221
+ msgstr "Data ostatniego wpisu"
1222
+
1223
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:200
1224
+ msgid "View Stats"
1225
+ msgstr "Zobacz statystyki"
1226
+
1227
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:137
1228
+ msgid "Settings"
1229
+ msgstr "Ustawienia"
1230
+
1231
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:180
1232
+ msgid "Today visitor"
1233
+ msgstr "Dzisiaj odwiedziło"
1234
+
1235
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:185
1236
+ msgid "Today visit"
1237
+ msgstr "Dzisiaj odwiedzin"
1238
+
1239
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:190
1240
+ msgid "Yesterday visitor"
1241
+ msgstr "Wczoraj odwiedziło"
1242
+
1243
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:195
1244
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:18
1245
+ msgid "Yesterday visit"
1246
+ msgstr "Wczoraj odwiedzin"
1247
+
1248
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:262
1249
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:328
1250
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:416
1251
+ msgid "You do not have sufficient permissions to access this page."
1252
+ msgstr "Nie posiadasz wystarczających uprawnień by wyświetlić tę stronę."
1253
+
1254
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:23
1255
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:129
1256
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:273
1257
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/exclusions.php:70
1258
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:35
1259
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:66
1260
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:59
1261
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:30
1262
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:141
1263
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:241
1264
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:286
1265
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:331
1266
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:377
1267
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:472
1268
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:582
1269
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:631
1270
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:680
1271
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:35
1272
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:45
1273
+ msgid "Click to toggle"
1274
+ msgstr "Kliknij, aby przełączyć"
1275
+
1276
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:31
1277
+ msgid "Summary Statistics"
1278
+ msgstr "Podsumowanie statystyk"
1279
+
1280
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:102
1281
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:42
1282
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:443
1283
+ msgid "Visitor"
1284
+ msgstr "Odwiedziło"
1285
+
1286
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:112
1287
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:43
1288
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:453
1289
+ msgid "Visit"
1290
+ msgstr "Odwiedzin"
1291
+
1292
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:47
1293
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:92
1294
+ msgid "Today"
1295
+ msgstr "Dzisiaj"
1296
+
1297
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:53
1298
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:93
1299
+ msgid "Yesterday"
1300
+ msgstr "Wczoraj"
1301
+
1302
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:59
1303
+ msgid "Week"
1304
+ msgstr "W tygodniu"
1305
+
1306
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:65
1307
+ msgid "Month"
1308
+ msgstr "W miesiącu"
1309
+
1310
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:71
1311
+ msgid "Year"
1312
+ msgstr "W roku"
1313
+
1314
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:77
1315
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:117
1316
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:559
1317
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/search-statistics.php:123
1318
+ msgid "Total"
1319
+ msgstr "Razem"
1320
+
1321
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:125
1322
+ msgid "(Adjustment)"
1323
+ msgstr "(Wyrównanie)"
1324
+
1325
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:125
1326
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:24
1327
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:142
1328
+ msgid "Browsers"
1329
+ msgstr "Przeglądarki"
1330
+
1331
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:173
1332
+ msgid "Graph of Browsers"
1333
+ msgstr "Wykres przeglądarek"
1334
+
1335
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/all-browsers.php:99
1336
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:217
1337
+ msgid "Browser share"
1338
+ msgstr "Udział przeglądarek"
1339
+
1340
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:243
1341
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:34
1342
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:49
1343
+ msgid "Top referring sites"
1344
+ msgstr "Najlepsze strony odsyłające"
1345
+
1346
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:249
1347
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:117
1348
+ msgid "Reference"
1349
+ msgstr "Odesłań"
1350
 
1351
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:250
1352
+ msgid "Address"
1353
+ msgstr "Adres"
1354
 
1355
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:332
1356
+ msgid "About plugin"
1357
+ msgstr "O wtyczce"
1358
 
1359
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:335
1360
+ msgid "Plugin version: %s"
1361
+ msgstr "Wersja wtyczki: %s"
1362
 
1363
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:339
1364
+ msgid "Weblog"
1365
+ msgstr "Weblog"
1366
 
1367
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:357
1368
+ msgid "Donate"
1369
+ msgstr "Wesprzyj"
1370
 
1371
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/hit-statistics.php:76
1372
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:417
1373
+ msgid "Number of visits and visitors"
1374
+ msgstr "Liczba odwiedzin i odwiedzających"
1375
 
1376
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:35
1377
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-search.php:67
1378
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:584
1379
+ msgid "Latest search words"
1380
+ msgstr "Ostatnio wyszukiwane frazy"
1381
 
1382
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:32
1383
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:63
1384
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:633
1385
+ msgid "Recent Visitors"
1386
+ msgstr "Ostatni odwiedzający"
 
1387
 
1388
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/log.php:296
1389
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-countries.php:30
1390
+ msgid "Country"
1391
+ msgstr "Kraj"
1392
 
1393
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-access-level.php:21
1394
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:21
1395
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-maintenance.php:21
1396
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:21
1397
+ msgid "General Settings"
1398
+ msgstr "Ogólne ustawienia"
1399
 
1400
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:48
1401
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-geoip.php:72
1405
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:54
1406
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:66
1407
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:78
1408
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:151
1409
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:167
1410
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:179
1411
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:191
1412
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:207
1413
  msgid "Active"
1414
  msgstr "Uaktywnij"
1415
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1416
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:43
1417
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:55
1418
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:67
1419
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:208
1420
  msgid "Enable or disable this feature"
1421
  msgstr "Włącz lub wyłącz tą funkcję"
1422
 
1424
  msgid "Visits"
1425
  msgstr "Odwiedzin"
1426
 
1427
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/wp-statistics.php:134
1428
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:61
1429
+ msgid "Visitors"
1430
+ msgstr "Odzwiedzający"
 
 
 
1431
 
1432
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:85
1433
  msgid "Check for online users every"
1434
  msgstr "Sprawdź aktywne osoby co"
1435
 
 
 
 
 
1436
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:91
 
1437
  msgid "Time for the check accurate online user in the site. Now: %s Second"
1438
  msgstr "Czas sprawdzania liczby użytkowników online. Aktualnie: %s sekund."
1439
 
1458
  msgstr "Współczynnik dla odwiedzającego"
1459
 
1460
  #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:116
 
1461
  msgid "For each visit to account for several hits. Currently %s."
1462
  msgstr "Dla każdej odwiedziny z jednego konta. Aktualnie %s."
1463
 
1464
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:215
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1465
  msgid "Time send"
1466
  msgstr "Czas wysłania"
1467
 
1468
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:25
1469
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-export.php:41
1470
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:137
1471
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:176
1472
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:200
1473
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:131
1474
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:220
1475
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:236
1476
+ msgid "Please select."
1477
+ msgstr "Proszę wybrać"
1478
+
1479
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:221
1480
  msgid "Hourly"
1481
  msgstr "Co godzinę"
1482
 
1483
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:222
1484
  msgid "Twice daily"
1485
  msgstr "2 razy dziennie"
1486
 
1487
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:223
1488
  msgid "daily"
1489
  msgstr "codziennie"
1490
 
1491
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:225
1492
  msgid "Select when receiving statistics report."
1493
  msgstr "Wybierz kiedy otrzymywać raporty statystyczne."
1494
 
1495
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:231
1496
  msgid "Send Statistical reporting to"
1497
  msgstr "Wysyłaj raport statystyk do"
1498
 
1499
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:237
1500
  msgid "Email"
1501
  msgstr "E-mail"
1502
 
1503
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:238
1504
  msgid "SMS"
1505
  msgstr "SMS"
1506
 
1507
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:240
1508
  msgid "Type Select Get Status Report."
1509
  msgstr "Sposób wysyłania raportów."
1510
 
1511
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:243
 
1512
  msgid ""
1513
  "Note: To send SMS text messages please install the <a href=\"%s\" target="
1514
  "\"_blank\">Wordpress SMS</a> plugin."
1516
  "Ważne: By wysyłać wiadomości SMS zainstaluj wtyczkę <a href=\"%s\" target="
1517
  "\"_blank\">Wordpress SMS</a>."
1518
 
1519
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:250
1520
  msgid "Send Content Report"
1521
  msgstr "Wyślij raport z przygotowaną treścią"
1522
 
1523
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:255
1524
  msgid "Enter the contents of the reports received."
1525
  msgstr "Wprowadź treść otrzymanych sprawozdań."
1526
 
1527
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/wps-settings.php:257
1528
  msgid "Input data:"
1529
  msgstr "Wprowadź dane:"
1530
+
1531
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:2
1532
+ msgid "Name"
1533
+ msgstr "Nazwa"
1534
+
1535
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:6
1536
+ msgid "Items"
1537
+ msgstr "Wpisów"
1538
+
1539
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:42
1540
+ msgid "Select type of search engine"
1541
+ msgstr "Wybierz typ wyszukiwarki"
1542
+
1543
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/last-visitor.php:34
1544
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/log/top-referring.php:36
1545
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/optimization/templates/wps-optimization-purging.php:141
1546
+ #: F:\Programming\xampp\htdocs\cms\wordpress\wp-content\plugins\wp-statistics/includes/settings/widget.php:55
1547
+ msgid "All"
1548
+ msgstr "Wszystkie"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://mostafa-soufi.ir/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: 5.1
8
  License: GPL2
9
 
10
  Complete statistics for your blog.
@@ -96,9 +96,9 @@ Where:
96
 
97
  stat = the statistic you want.
98
 
99
- time = is the timeframe, strtotime() will be used to calculate it.
100
 
101
- provider = the search provider to get stats on.
102
 
103
  * User online: `[wpstatistics stat="usersonline"]`
104
  * Today visit: `[wpstatistics stat="visits" time="today"]`
@@ -195,6 +195,13 @@ The webcrawler detection code has be Fixes and will now exclude them from your s
195
  * 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.
196
 
197
  == Changelog ==
 
 
 
 
 
 
 
198
  = 5.1 =
199
  * Fixes: Small bug in referral url.
200
  * Fixes: Problem export table.
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: 5.2
8
  License: GPL2
9
 
10
  Complete statistics for your blog.
96
 
97
  stat = the statistic you want.
98
 
99
+ time = is the time frame, [strtotime()](http://php.net/manual/en/datetime.formats.php) will be used to calculate it, some acceptable values include; today, yesterday, week, month, year, total and "-x" (i.e., "-10" for the past 10 days).
100
 
101
+ provider = the search provider to get stats on (bing/duckduckgo/google/yahoo/yandex).
102
 
103
  * User online: `[wpstatistics stat="usersonline"]`
104
  * Today visit: `[wpstatistics stat="visits" time="today"]`
195
  * 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.
196
 
197
  == Changelog ==
198
+ = 5.2 =
199
+ * Added: Additional checks for BC Math and cURL which are required for the GeoIP code.
200
+ * Updated: GeoIP database handling if it is missing or invalid.
201
+ * Updated: GeoIP database is now stored in uploads/wp-statistics directory so it does not get overwritten during upgrades.
202
+ * Fixed: Typo's in the shortcode codes (thanks g33kg0dd3ss).
203
+ * Updated: Polish (pl_PL) language.
204
+
205
  = 5.1 =
206
  * Fixes: Small bug in referral url.
207
  * Fixes: Problem export table.
schedule.php CHANGED
@@ -44,9 +44,11 @@
44
 
45
  $lastupdate = get_option('wps_last_geoip_dl');
46
 
 
 
47
  // We're also going to look to see if our filesize is to small, this means the plugin stub still exists and should
48
  // be replaced with a proper file.
49
- $dbsize = filesize(plugin_dir_path( __FILE__ ) . 'GeoIP2-db/GeoLite2-Country.mmdb');
50
 
51
  if( $lastupdate < $thisupdate || $dbsize < 1024 ) {
52
 
44
 
45
  $lastupdate = get_option('wps_last_geoip_dl');
46
 
47
+ $upload_dir = wp_upload_dir();
48
+
49
  // We're also going to look to see if our filesize is to small, this means the plugin stub still exists and should
50
  // be replaced with a proper file.
51
+ $dbsize = filesize($upload_dir['basedir'] . '/wp-statistics/GeoLite2-Country.mmdb');
52
 
53
  if( $lastupdate < $thisupdate || $dbsize < 1024 ) {
54
 
shortcode.php CHANGED
@@ -10,7 +10,7 @@
10
 
11
  Where:
12
  stat = the statistic you want.
13
- time = is the timeframe, strtotime() will be used to calculate it.
14
  provider = the search provider to get stats on.
15
  */
16
 
@@ -23,12 +23,12 @@
23
  $result = wp_statistics_visit($atts['time']);
24
  break;
25
 
26
- case 'vistors':
27
  $result = wp_statistics_visitor($atts['time']);
28
  break;
29
 
30
- case 'searchs':
31
- $result = wp_statistics_searchengine($attr['provider']);
32
  break;
33
 
34
  case 'postcount':
10
 
11
  Where:
12
  stat = the statistic you want.
13
+ time = is the timeframe, strtotime() (http://php.net/manual/en/datetime.formats.php) will be used to calculate it.
14
  provider = the search provider to get stats on.
15
  */
16
 
23
  $result = wp_statistics_visit($atts['time']);
24
  break;
25
 
26
+ case 'visitors':
27
  $result = wp_statistics_visitor($atts['time']);
28
  break;
29
 
30
+ case 'searches':
31
+ $result = wp_statistics_searchengine($atts['provider']);
32
  break;
33
 
34
  case 'postcount':
wp-statistics.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Wordpress Statistics
4
  Plugin URI: http://mostafa-soufi.ir/blog/wordpress-statistics
5
  Description: Complete statistics for your blog.
6
- Version: 5.1
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', '5.1');
19
  define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', '5.3.0');
20
  define('WPS_EXPORT_FILE_NAME', 'wp-statistics');
21
 
@@ -46,7 +46,7 @@ License: GPL2
46
  include_once dirname( __FILE__ ) . '/includes/classes/statistics.class.php';
47
  include_once dirname( __FILE__ ) . '/includes/classes/useronline.class.php';
48
 
49
- if( get_option('wps_geoip') && version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') ) {
50
  include_once dirname( __FILE__ ) . '/includes/classes/hits.geoip.class.php';
51
  } else {
52
  include_once dirname( __FILE__ ) . '/includes/classes/hits.class.php';
@@ -63,7 +63,7 @@ License: GPL2
63
  if( !get_option('wps_useronline') || !get_option('wps_visits') || !get_option('wps_visitors') )
64
  echo '<div class="error"><p>'.sprintf(__('Facilities Wordpress Statistics not enabled! Please go to <a href="%s">setting page</a> and enable statistics', 'wp_statistics'), $get_bloginfo_url).'</p></div>';
65
 
66
- if(!get_option('wps_geoip'))
67
  echo '<div class="error"><p>'.sprintf(__('GeoIP collection is not active! Please go to <a href="%s">Setting page > GeoIP</a> and enable this feature (GeoIP can detect the visitors country)', 'wp_statistics'), $get_bloginfo_url . '&tab=geoip').'</p></div>';
68
  }
69
 
@@ -357,8 +357,13 @@ License: GPL2
357
 
358
  $download_url = 'http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz';
359
 
360
- $DBFile = plugin_dir_path( __FILE__ ) . 'GeoIP2-db/GeoLite2-Country.mmdb';
 
 
 
361
 
 
 
362
  // Download
363
  $TempFile = download_url( $download_url );
364
  if (is_wp_error( $TempFile ) ) {
@@ -394,7 +399,7 @@ License: GPL2
394
  update_option('wps_last_geoip_dl', time());
395
  update_option('wps_update_geoip', false);
396
 
397
- if( get_option('wps_geoip') && version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') && get_option('wps_auto_pop')) {
398
  include_once dirname( __FILE__ ) . '/includes/functions/geoip-populate.php';
399
  $result .= wp_statistics_populate_geoip_info();
400
  }
3
  Plugin Name: Wordpress Statistics
4
  Plugin URI: http://mostafa-soufi.ir/blog/wordpress-statistics
5
  Description: Complete statistics for your blog.
6
+ Version: 5.2
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', '5.2');
19
  define('WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION', '5.3.0');
20
  define('WPS_EXPORT_FILE_NAME', 'wp-statistics');
21
 
46
  include_once dirname( __FILE__ ) . '/includes/classes/statistics.class.php';
47
  include_once dirname( __FILE__ ) . '/includes/classes/useronline.class.php';
48
 
49
+ if( get_option('wps_geoip') && version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') && function_exists('curl_init') && function_exists('bcadd') ) {
50
  include_once dirname( __FILE__ ) . '/includes/classes/hits.geoip.class.php';
51
  } else {
52
  include_once dirname( __FILE__ ) . '/includes/classes/hits.class.php';
63
  if( !get_option('wps_useronline') || !get_option('wps_visits') || !get_option('wps_visitors') )
64
  echo '<div class="error"><p>'.sprintf(__('Facilities Wordpress Statistics not enabled! Please go to <a href="%s">setting page</a> and enable statistics', 'wp_statistics'), $get_bloginfo_url).'</p></div>';
65
 
66
+ if(!get_option('wps_geoip') && version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') && function_exists('curl_init') && function_exists('bcadd'))
67
  echo '<div class="error"><p>'.sprintf(__('GeoIP collection is not active! Please go to <a href="%s">Setting page > GeoIP</a> and enable this feature (GeoIP can detect the visitors country)', 'wp_statistics'), $get_bloginfo_url . '&tab=geoip').'</p></div>';
68
  }
69
 
357
 
358
  $download_url = 'http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz';
359
 
360
+ $upload_dir = wp_upload_dir();
361
+
362
+ $dbsize = filesize($upload_dir['basedir'] . '/wp-statistics/GeoLite2-Country.mmdb');
363
+ $DBFile = $upload_dir['basedir'] . '/wp-statistics/GeoLite2-Country.mmdb';
364
 
365
+ if( !file_exists($upload_dir['basedir'] . '/wp-statistics') ) { mkdir($upload_dir['basedir'] . '/wp-statistics'); }
366
+
367
  // Download
368
  $TempFile = download_url( $download_url );
369
  if (is_wp_error( $TempFile ) ) {
399
  update_option('wps_last_geoip_dl', time());
400
  update_option('wps_update_geoip', false);
401
 
402
+ if( get_option('wps_geoip') && version_compare(phpversion(), WP_STATISTICS_REQUIRED_GEOIP_PHP_VERSION, '>') && function_exists('curl_init') && function_exists('bcadd') && get_option('wps_auto_pop')) {
403
  include_once dirname( __FILE__ ) . '/includes/functions/geoip-populate.php';
404
  $result .= wp_statistics_populate_geoip_info();
405
  }