iQ Block Country - Version 1.1.15

Version Description

  • Bugfix: You can now set an option to buffer the output of the iQ Block Country plugin. If you use for instance NextGen Gallery you should not set this option as it will break uploading pictures to your gallery.
  • Bugfix: Last time GeoIP databases were downloaded was wrong.
  • Bugfix: If you configured auto-update of the GeoIP databases the tools tab showed that you did not configure auto update.
  • Added check for HTTP_X_TM_REMOTE_ADDR to get real ip address of T-Mobile users.
  • Added Twitter, Bitly, Cliqz and TinEye to the search engines list.
  • New: No longer blocks category pages of categories you have not blocked.
  • Bugfix: Added check if HTTP_USER_AGENT is set.
Download this release

Release Info

Developer iqpascal
Plugin Icon 128x128 iQ Block Country
Version 1.1.15
Comparing to
See all releases

Code changes from version 1.1.14 to 1.1.15

iq-block-country.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: iQ Block Country
4
  Plugin URI: http://www.redeo.nl/2013/12/iq-block-country-wordpress-plugin-blocks-countries/
5
- Version: 1.1.14
6
  Author: Pascal
7
  Author URI: http://www.redeo.nl/
8
  Description: Block visitors from visiting your website and backend website based on which country their IP address is from. The Maxmind GeoIP lite database is used for looking up from which country an ip address is from.
@@ -111,7 +111,6 @@ function iqblockcountry_get_countries()
111
  /*
112
  * Retrieves the IP address from the HTTP Headers
113
  */
114
-
115
  function iqblockcountry_get_ipaddress() {
116
  global $ip_address;
117
 
@@ -193,7 +192,7 @@ define("IPV4DBFILE",WP_PLUGIN_DIR . "/" . dirname ( plugin_basename ( __FILE__ )
193
  define("IPV6DBFILE",WP_PLUGIN_DIR . "/" . dirname ( plugin_basename ( __FILE__ ) ) . "/GeoIPv6.dat");
194
  define("TRACKINGURL","http://tracking.webence.nl/iq-block-country-tracking.php");
195
  define("TRACKINGRETRIEVEURL","http://tracking.webence.nl/iq-block-country-retrieve.php");
196
- define("VERSION","1.1.14");
197
  define("DBVERSION","121");
198
  define("PLUGINPATH",plugin_dir_path( __FILE__ ));
199
 
@@ -237,7 +236,10 @@ add_filter ( 'add_option_blockcountry_apikey', 'iqblockcountry_schedule_retrievi
237
  //add_filter ( 'add_option_blockcountry_backendlogging', 'iqblockcountry_blockcountry_backendlogging', 10, 2);
238
  add_action ( 'blockcountry_tracking', 'iqblockcountry_tracking' );
239
  add_action ( 'blockcountry_retrievebanlist', 'iqblockcountry_tracking_retrieve_xml');
240
- add_action ( 'init', 'iqblockcountry_buffer',1);
241
- add_action ( 'wp_footer', 'iqblockcountry_buffer_flush');
 
 
 
242
 
243
  ?>
2
  /*
3
  Plugin Name: iQ Block Country
4
  Plugin URI: http://www.redeo.nl/2013/12/iq-block-country-wordpress-plugin-blocks-countries/
5
+ Version: 1.1.15
6
  Author: Pascal
7
  Author URI: http://www.redeo.nl/
8
  Description: Block visitors from visiting your website and backend website based on which country their IP address is from. The Maxmind GeoIP lite database is used for looking up from which country an ip address is from.
111
  /*
112
  * Retrieves the IP address from the HTTP Headers
113
  */
 
114
  function iqblockcountry_get_ipaddress() {
115
  global $ip_address;
116
 
192
  define("IPV6DBFILE",WP_PLUGIN_DIR . "/" . dirname ( plugin_basename ( __FILE__ ) ) . "/GeoIPv6.dat");
193
  define("TRACKINGURL","http://tracking.webence.nl/iq-block-country-tracking.php");
194
  define("TRACKINGRETRIEVEURL","http://tracking.webence.nl/iq-block-country-retrieve.php");
195
+ define("VERSION","1.1.15");
196
  define("DBVERSION","121");
197
  define("PLUGINPATH",plugin_dir_path( __FILE__ ));
198
 
236
  //add_filter ( 'add_option_blockcountry_backendlogging', 'iqblockcountry_blockcountry_backendlogging', 10, 2);
237
  add_action ( 'blockcountry_tracking', 'iqblockcountry_tracking' );
238
  add_action ( 'blockcountry_retrievebanlist', 'iqblockcountry_tracking_retrieve_xml');
239
+ if (get_option('blockcountry_buffer') == "on")
240
+ {
241
+ add_action ( 'init', 'iqblockcountry_buffer',1);
242
+ add_action ( 'wp_footer', 'iqblockcountry_buffer_flush');
243
+ }
244
 
245
  ?>
lang/en_EN.mo CHANGED
Binary file
lang/en_EN.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: iQ Block Country\n"
4
- "POT-Creation-Date: 2014-09-02 09:49+0100\n"
5
- "PO-Revision-Date: 2014-09-02 09:49+0100\n"
6
- "Last-Translator: \n"
7
  "Language-Team: iQ Block Country <info@redeo.nl>\n"
8
  "Language: English\n"
9
  "MIME-Version: 1.0\n"
@@ -15,362 +15,372 @@ msgstr ""
15
  "X-Poedit-SearchPath-0: libs\n"
16
  "X-Poedit-SearchPath-1: .\n"
17
 
18
- #: libs/blockcountry-settings.php:130
19
  msgid ""
20
  "Check which country belongs to an IP Address according to the current "
21
  "database."
22
  msgstr ""
23
 
24
- #: libs/blockcountry-settings.php:134
25
  msgid "IP Address to check:"
26
  msgstr ""
27
 
28
- #: libs/blockcountry-settings.php:144
29
  msgid "No country for"
30
  msgstr ""
31
 
32
- #: libs/blockcountry-settings.php:144
33
  msgid "could be found. Or"
34
  msgstr ""
35
 
36
- #: libs/blockcountry-settings.php:144
37
  msgid "is not a valid IPv4 or IPv6 IP address"
38
  msgstr ""
39
 
40
- #: libs/blockcountry-settings.php:149
41
  msgid "IP Adress"
42
  msgstr ""
43
 
44
- #: libs/blockcountry-settings.php:149
45
  msgid "belongs to"
46
  msgstr ""
47
 
48
- #: libs/blockcountry-settings.php:152
49
  msgid "This country is not permitted to visit the frontend of this website."
50
  msgstr ""
51
 
52
- #: libs/blockcountry-settings.php:157
53
  msgid "This country is not permitted to visit the backend of this website."
54
  msgstr ""
55
 
56
- #: libs/blockcountry-settings.php:162
57
  msgid "This ip is present in the blacklist."
58
  msgstr ""
59
 
60
- #: libs/blockcountry-settings.php:168
61
  msgid "Check IP address"
62
  msgstr ""
63
 
64
- #: libs/blockcountry-settings.php:174
65
  msgid "Download GeoIP database"
66
  msgstr ""
67
 
68
- #: libs/blockcountry-settings.php:182
69
  msgid "Automatic update is not setup. Last update: "
70
  msgstr ""
71
 
72
- #: libs/blockcountry-settings.php:187
73
  msgid "The GeoIP database is updated once a month. Last update: "
74
  msgstr ""
75
 
76
- #: libs/blockcountry-settings.php:189
77
  msgid "If you need a manual update please press buttons below to update."
78
  msgstr ""
79
 
80
- #: libs/blockcountry-settings.php:195
81
  msgid "Download new GeoIP IPv4 Database"
82
  msgstr ""
83
 
84
- #: libs/blockcountry-settings.php:202
85
  msgid "Download new GeoIP IPv6 Database"
86
  msgstr ""
87
 
88
- #: libs/blockcountry-settings.php:207 libs/blockcountry-settings.php:211
89
  msgid "Downloading..."
90
  msgstr ""
91
 
92
- #: libs/blockcountry-settings.php:217
93
  msgid "Active plugins"
94
  msgstr ""
95
 
96
- #: libs/blockcountry-settings.php:224
97
  msgid "Plugin name"
98
  msgstr ""
99
 
100
- #: libs/blockcountry-settings.php:224
101
  msgid "Version"
102
  msgstr ""
103
 
104
- #: libs/blockcountry-settings.php:224 libs/blockcountry-settings.php:867
105
- #: libs/blockcountry-settings.php:910
106
  msgid "URL"
107
  msgstr ""
108
 
109
- #: libs/blockcountry-settings.php:249
110
  msgid "Export"
111
  msgstr ""
112
 
113
- #: libs/blockcountry-settings.php:250
114
  msgid ""
115
  "When you click on <tt>Backup all settings</tt> button a backup of the iQ "
116
  "Block Country configuration will be created."
117
  msgstr ""
118
 
119
- #: libs/blockcountry-settings.php:251
120
  msgid ""
121
  "After exporting, you can either use the backup file to restore your settings "
122
  "on this site again or copy the settings to another WordPress site."
123
  msgstr ""
124
 
125
- #: libs/blockcountry-settings.php:255
126
  msgid "Backup all settings"
127
  msgstr ""
128
 
129
- #: libs/blockcountry-settings.php:262
130
  msgid "Import"
131
  msgstr ""
132
 
133
- #: libs/blockcountry-settings.php:263
134
  msgid "Click the browse button and choose a zip file that you exported before."
135
  msgstr ""
136
 
137
- #: libs/blockcountry-settings.php:264
138
  msgid "Press Restore settings button, and let WordPress do the magic for you."
139
  msgstr ""
140
 
141
- #: libs/blockcountry-settings.php:269
142
  msgid "Restore settings"
143
  msgstr ""
144
 
145
- #: libs/blockcountry-settings.php:292 libs/blockcountry-settings.php:295
146
- #: libs/blockcountry-settings.php:304
147
  msgid "Something went wrong exporting this file"
148
  msgstr ""
149
 
150
- #: libs/blockcountry-settings.php:307
151
  msgid "Exporting settings..."
152
  msgstr ""
153
 
154
- #: libs/blockcountry-settings.php:322
155
  msgid "Something went wrong importing this file"
156
  msgstr ""
157
 
158
- #: libs/blockcountry-settings.php:339
159
  msgid "All options are restored successfully."
160
  msgstr ""
161
 
162
- #: libs/blockcountry-settings.php:342
163
  msgid "Invalid file."
164
  msgstr ""
165
 
166
- #: libs/blockcountry-settings.php:347
167
  msgid "No correct import or export option given."
168
  msgstr ""
169
 
170
- #: libs/blockcountry-settings.php:356
171
  msgid "Select which pages are blocked."
172
  msgstr ""
173
 
174
- #: libs/blockcountry-settings.php:363
175
  msgid "Do you want to block individual pages:"
176
  msgstr ""
177
 
178
- #: libs/blockcountry-settings.php:364
179
  msgid "If you do not select this option all pages will be blocked."
180
  msgstr ""
181
 
182
- #: libs/blockcountry-settings.php:369
183
  msgid "Select pages you want to block:"
184
  msgstr ""
185
 
186
- #: libs/blockcountry-settings.php:391 libs/blockcountry-settings.php:445
187
- #: libs/blockcountry-settings.php:488 libs/blockcountry-settings.php:584
188
- #: libs/blockcountry-settings.php:688 libs/blockcountry-settings.php:839
189
  msgid "Save Changes"
190
  msgstr ""
191
 
192
- #: libs/blockcountry-settings.php:404
193
  msgid "Select which categories are blocked."
194
  msgstr ""
195
 
196
- #: libs/blockcountry-settings.php:411
197
  msgid "Do you want to block individual categories:"
198
  msgstr ""
199
 
200
- #: libs/blockcountry-settings.php:412
201
  msgid "If you do not select this option all blog articles will be blocked."
202
  msgstr ""
203
 
204
- #: libs/blockcountry-settings.php:417
205
  msgid "Do you want to block the homepage:"
206
  msgstr ""
207
 
208
- #: libs/blockcountry-settings.php:418
209
  msgid ""
210
  "If you do not select this option visitors will not be blocked from your "
211
  "homepage regardless of the categories you select."
212
  msgstr ""
213
 
214
- #: libs/blockcountry-settings.php:423
215
  msgid "Select categories you want to block:"
216
  msgstr ""
217
 
218
- #: libs/blockcountry-settings.php:458
219
  msgid "Select which search engines are allowed."
220
  msgstr ""
221
 
222
- #: libs/blockcountry-settings.php:465
223
  msgid "Select which search engines you want to allow:"
224
  msgstr ""
225
 
226
- #: libs/blockcountry-settings.php:466
227
  msgid ""
228
  "This will allow a search engine to your site despite if you blocked the "
229
  "country."
230
  msgstr ""
231
 
232
- #: libs/blockcountry-settings.php:503
233
  msgid "Frontend options"
234
  msgstr ""
235
 
236
- #: libs/blockcountry-settings.php:538
237
  msgid ""
238
  "Do not block visitors that are logged in from visiting frontend website:"
239
  msgstr ""
240
 
241
- #: libs/blockcountry-settings.php:544
242
  msgid "Block visitors from visiting the frontend of your website:"
243
  msgstr ""
244
 
245
- #: libs/blockcountry-settings.php:550
246
  msgid ""
247
  "Select the countries that should be blocked from visiting your frontend:"
248
  msgstr ""
249
 
250
- #: libs/blockcountry-settings.php:551
251
  msgid "Use the CTRL key to select multiple countries"
252
  msgstr ""
253
 
254
- #: libs/blockcountry-settings.php:567
255
  msgid "Frontend whitelist IPv4 and/or IPv6 addresses:"
256
  msgstr ""
257
 
258
- #: libs/blockcountry-settings.php:567 libs/blockcountry-settings.php:575
259
- #: libs/blockcountry-settings.php:671 libs/blockcountry-settings.php:679
260
  msgid "Use a semicolon (;) to separate IP addresses"
261
  msgstr ""
262
 
263
- #: libs/blockcountry-settings.php:575
264
  msgid "Frontend blacklist IPv4 and/or IPv6 addresses:"
265
  msgstr ""
266
 
267
- #: libs/blockcountry-settings.php:604
268
  msgid "Backend Options"
269
  msgstr ""
270
 
271
- #: libs/blockcountry-settings.php:638
272
  msgid ""
273
  "Block visitors from visiting the backend (administrator) of your website:"
274
  msgstr ""
275
 
276
- #: libs/blockcountry-settings.php:646
277
  msgid "Your IP address is"
278
  msgstr ""
279
 
280
- #: libs/blockcountry-settings.php:646
281
  msgid "The country that is listed for this IP address is"
282
  msgstr ""
283
 
284
- #: libs/blockcountry-settings.php:647
285
  msgid ""
286
  "Do <strong>NOT</strong> set the 'Block visitors from visiting the backend "
287
  "(administrator) of your website' and also select"
288
  msgstr ""
289
 
290
- #: libs/blockcountry-settings.php:647
291
  msgid "below."
292
  msgstr ""
293
 
294
- #: libs/blockcountry-settings.php:648
295
  msgid ""
296
  "You will NOT be able to login the next time if you DO block your own country "
297
  "from visiting the backend."
298
  msgstr ""
299
 
300
- #: libs/blockcountry-settings.php:653
301
  msgid "Select the countries that should be blocked from visiting your backend:"
302
  msgstr ""
303
 
304
- #: libs/blockcountry-settings.php:654
305
  msgid "Use the x behind the country to remove a country from this blocklist."
306
  msgstr ""
307
 
308
- #: libs/blockcountry-settings.php:671
309
  msgid "Backend whitelist IPv4 and/or IPv6 addresses:"
310
  msgstr ""
311
 
312
- #: libs/blockcountry-settings.php:679
313
  msgid "Backend blacklist IPv4 and/or IPv6 addresses:"
314
  msgstr ""
315
 
316
- #: libs/blockcountry-settings.php:709
317
  msgid "Overall statistics since start"
318
  msgstr ""
319
 
320
- #: libs/blockcountry-settings.php:712
321
  msgid "visitors blocked from the backend."
322
  msgstr ""
323
 
324
- #: libs/blockcountry-settings.php:714
325
  msgid "visitors blocked from the frontend."
326
  msgstr ""
327
 
328
- #: libs/blockcountry-settings.php:718
329
  msgid "Basic Options"
330
  msgstr ""
331
 
332
- #: libs/blockcountry-settings.php:753
333
  msgid "Message to display when people are blocked:"
334
  msgstr ""
335
 
336
- #: libs/blockcountry-settings.php:763
337
  msgid "Page to redirect to:"
338
  msgstr ""
339
 
340
- #: libs/blockcountry-settings.php:764
341
  msgid ""
342
  "If you select a page here blocked visitors will be redirected to this page "
343
  "instead of displaying above block message."
344
  msgstr ""
345
 
346
- #: libs/blockcountry-settings.php:770
347
  msgid "Choose a page..."
348
  msgstr ""
349
 
350
- #: libs/blockcountry-settings.php:785
351
  msgid "Send headers when user is blocked:"
352
  msgstr ""
353
 
354
- #: libs/blockcountry-settings.php:786
355
  msgid ""
356
  "Under normal circumstances you should keep this selected! Only if you have "
357
  "\"Cannot modify header information - headers already sent\" errors or if you "
358
  "know what you are doing uncheck this."
359
  msgstr ""
360
 
361
- #: libs/blockcountry-settings.php:792
 
 
 
 
 
 
 
 
 
 
362
  msgid "Number of rows on statistics page:"
363
  msgstr ""
364
 
365
- #: libs/blockcountry-settings.php:793
366
  msgid "How many rows do you want to display on each tab the statistics page."
367
  msgstr ""
368
 
369
- #: libs/blockcountry-settings.php:808
370
  msgid "Allow tracking:"
371
  msgstr ""
372
 
373
- #: libs/blockcountry-settings.php:809
374
  msgid ""
375
  "This sends only the IP address and the number of attempts this ip address "
376
  "tried to login to your backend and was blocked doing so to a central server. "
@@ -378,116 +388,115 @@ msgid ""
378
  "countries."
379
  msgstr ""
380
 
381
- #: libs/blockcountry-settings.php:815
382
  msgid "API Key:"
383
  msgstr ""
384
 
385
- #: libs/blockcountry-settings.php:821
386
  msgid "Log all visits to the backend:"
387
  msgstr ""
388
 
389
- #: libs/blockcountry-settings.php:822
390
  msgid ""
391
  "This logs all visits to the backend despite if they are blocked or not. This "
392
  "is mainly for debugging purposes."
393
  msgstr ""
394
 
395
- #: libs/blockcountry-settings.php:828
396
  msgid "Auto update GeoIP Database:"
397
  msgstr ""
398
 
399
- #: libs/blockcountry-settings.php:829
400
  msgid ""
401
- "Selecting this update makes sure that the GeoIP database is downloaded once "
402
- "a month."
403
  msgstr ""
404
 
405
- #: libs/blockcountry-settings.php:857
406
  msgid "Last blocked visits"
407
  msgstr ""
408
 
409
- #: libs/blockcountry-settings.php:867
410
  msgid "Date / Time"
411
  msgstr ""
412
 
413
- #: libs/blockcountry-settings.php:867 libs/blockcountry-settings.php:899
414
  msgid "IP Address"
415
  msgstr ""
416
 
417
- #: libs/blockcountry-settings.php:867 libs/blockcountry-settings.php:899
418
  msgid "Hostname"
419
  msgstr ""
420
 
421
- #: libs/blockcountry-settings.php:867 libs/blockcountry-settings.php:886
422
  msgid "Country"
423
  msgstr ""
424
 
425
- #: libs/blockcountry-settings.php:867
426
  msgid "Frontend/Backend"
427
  msgstr ""
428
 
429
- #: libs/blockcountry-settings.php:877 libs/blockcountry-settings.php:938
430
  msgid "Frontend"
431
  msgstr ""
432
 
433
- #: libs/blockcountry-settings.php:877
434
  msgid "Backend banlist"
435
  msgstr ""
436
 
437
- #: libs/blockcountry-settings.php:877
438
  msgid "Backend & Backend banlist"
439
  msgstr ""
440
 
441
- #: libs/blockcountry-settings.php:877 libs/blockcountry-settings.php:939
442
  msgid "Backend"
443
  msgstr ""
444
 
445
- #: libs/blockcountry-settings.php:884
446
  msgid "Top countries that are blocked"
447
  msgstr ""
448
 
449
- #: libs/blockcountry-settings.php:886 libs/blockcountry-settings.php:899
450
- #: libs/blockcountry-settings.php:910
451
  msgid "# of blocked attempts"
452
  msgstr ""
453
 
454
- #: libs/blockcountry-settings.php:897
455
  msgid "Top hosts that are blocked"
456
  msgstr ""
457
 
458
- #: libs/blockcountry-settings.php:908
459
  msgid "Top URLs that are blocked"
460
  msgstr ""
461
 
462
- #: libs/blockcountry-settings.php:937
463
  msgid "Home"
464
  msgstr ""
465
 
466
- #: libs/blockcountry-settings.php:940
467
  msgid "Pages"
468
  msgstr ""
469
 
470
- #: libs/blockcountry-settings.php:941
471
  msgid "Categories"
472
  msgstr ""
473
 
474
- #: libs/blockcountry-settings.php:942
475
  msgid "Search Engines"
476
  msgstr ""
477
 
478
- #: libs/blockcountry-settings.php:943
479
  msgid "Tools"
480
  msgstr ""
481
 
482
- #: libs/blockcountry-settings.php:944
483
  msgid "Logging"
484
  msgstr ""
485
 
486
- #: libs/blockcountry-settings.php:945
487
  msgid "Import/Export"
488
  msgstr ""
489
 
490
- #: libs/blockcountry-settings.php:999
491
  msgid "GeoIP database does not exists. Trying to download it..."
492
  msgstr ""
493
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: iQ Block Country\n"
4
+ "POT-Creation-Date: 2014-09-15 19:39+0100\n"
5
+ "PO-Revision-Date: 2014-09-15 19:39+0100\n"
6
+ "Last-Translator: Pascal <pascal@redeo.nl>\n"
7
  "Language-Team: iQ Block Country <info@redeo.nl>\n"
8
  "Language: English\n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-SearchPath-0: libs\n"
16
  "X-Poedit-SearchPath-1: .\n"
17
 
18
+ #: libs/blockcountry-settings.php:132
19
  msgid ""
20
  "Check which country belongs to an IP Address according to the current "
21
  "database."
22
  msgstr ""
23
 
24
+ #: libs/blockcountry-settings.php:136
25
  msgid "IP Address to check:"
26
  msgstr ""
27
 
28
+ #: libs/blockcountry-settings.php:146
29
  msgid "No country for"
30
  msgstr ""
31
 
32
+ #: libs/blockcountry-settings.php:146
33
  msgid "could be found. Or"
34
  msgstr ""
35
 
36
+ #: libs/blockcountry-settings.php:146
37
  msgid "is not a valid IPv4 or IPv6 IP address"
38
  msgstr ""
39
 
40
+ #: libs/blockcountry-settings.php:151
41
  msgid "IP Adress"
42
  msgstr ""
43
 
44
+ #: libs/blockcountry-settings.php:151
45
  msgid "belongs to"
46
  msgstr ""
47
 
48
+ #: libs/blockcountry-settings.php:154
49
  msgid "This country is not permitted to visit the frontend of this website."
50
  msgstr ""
51
 
52
+ #: libs/blockcountry-settings.php:159
53
  msgid "This country is not permitted to visit the backend of this website."
54
  msgstr ""
55
 
56
+ #: libs/blockcountry-settings.php:164
57
  msgid "This ip is present in the blacklist."
58
  msgstr ""
59
 
60
+ #: libs/blockcountry-settings.php:169
61
  msgid "Check IP address"
62
  msgstr ""
63
 
64
+ #: libs/blockcountry-settings.php:175
65
  msgid "Download GeoIP database"
66
  msgstr ""
67
 
68
+ #: libs/blockcountry-settings.php:183
69
  msgid "Automatic update is not setup. Last update: "
70
  msgstr ""
71
 
72
+ #: libs/blockcountry-settings.php:188
73
  msgid "The GeoIP database is updated once a month. Last update: "
74
  msgstr ""
75
 
76
+ #: libs/blockcountry-settings.php:190
77
  msgid "If you need a manual update please press buttons below to update."
78
  msgstr ""
79
 
80
+ #: libs/blockcountry-settings.php:196
81
  msgid "Download new GeoIP IPv4 Database"
82
  msgstr ""
83
 
84
+ #: libs/blockcountry-settings.php:203
85
  msgid "Download new GeoIP IPv6 Database"
86
  msgstr ""
87
 
88
+ #: libs/blockcountry-settings.php:208 libs/blockcountry-settings.php:212
89
  msgid "Downloading..."
90
  msgstr ""
91
 
92
+ #: libs/blockcountry-settings.php:218
93
  msgid "Active plugins"
94
  msgstr ""
95
 
96
+ #: libs/blockcountry-settings.php:225
97
  msgid "Plugin name"
98
  msgstr ""
99
 
100
+ #: libs/blockcountry-settings.php:225
101
  msgid "Version"
102
  msgstr ""
103
 
104
+ #: libs/blockcountry-settings.php:225 libs/blockcountry-settings.php:875
105
+ #: libs/blockcountry-settings.php:918
106
  msgid "URL"
107
  msgstr ""
108
 
109
+ #: libs/blockcountry-settings.php:250
110
  msgid "Export"
111
  msgstr ""
112
 
113
+ #: libs/blockcountry-settings.php:251
114
  msgid ""
115
  "When you click on <tt>Backup all settings</tt> button a backup of the iQ "
116
  "Block Country configuration will be created."
117
  msgstr ""
118
 
119
+ #: libs/blockcountry-settings.php:252
120
  msgid ""
121
  "After exporting, you can either use the backup file to restore your settings "
122
  "on this site again or copy the settings to another WordPress site."
123
  msgstr ""
124
 
125
+ #: libs/blockcountry-settings.php:256
126
  msgid "Backup all settings"
127
  msgstr ""
128
 
129
+ #: libs/blockcountry-settings.php:263
130
  msgid "Import"
131
  msgstr ""
132
 
133
+ #: libs/blockcountry-settings.php:264
134
  msgid "Click the browse button and choose a zip file that you exported before."
135
  msgstr ""
136
 
137
+ #: libs/blockcountry-settings.php:265
138
  msgid "Press Restore settings button, and let WordPress do the magic for you."
139
  msgstr ""
140
 
141
+ #: libs/blockcountry-settings.php:270
142
  msgid "Restore settings"
143
  msgstr ""
144
 
145
+ #: libs/blockcountry-settings.php:293 libs/blockcountry-settings.php:296
146
+ #: libs/blockcountry-settings.php:305
147
  msgid "Something went wrong exporting this file"
148
  msgstr ""
149
 
150
+ #: libs/blockcountry-settings.php:308
151
  msgid "Exporting settings..."
152
  msgstr ""
153
 
154
+ #: libs/blockcountry-settings.php:323
155
  msgid "Something went wrong importing this file"
156
  msgstr ""
157
 
158
+ #: libs/blockcountry-settings.php:340
159
  msgid "All options are restored successfully."
160
  msgstr ""
161
 
162
+ #: libs/blockcountry-settings.php:343
163
  msgid "Invalid file."
164
  msgstr ""
165
 
166
+ #: libs/blockcountry-settings.php:348
167
  msgid "No correct import or export option given."
168
  msgstr ""
169
 
170
+ #: libs/blockcountry-settings.php:357
171
  msgid "Select which pages are blocked."
172
  msgstr ""
173
 
174
+ #: libs/blockcountry-settings.php:364
175
  msgid "Do you want to block individual pages:"
176
  msgstr ""
177
 
178
+ #: libs/blockcountry-settings.php:365
179
  msgid "If you do not select this option all pages will be blocked."
180
  msgstr ""
181
 
182
+ #: libs/blockcountry-settings.php:370
183
  msgid "Select pages you want to block:"
184
  msgstr ""
185
 
186
+ #: libs/blockcountry-settings.php:392 libs/blockcountry-settings.php:446
187
+ #: libs/blockcountry-settings.php:489 libs/blockcountry-settings.php:585
188
+ #: libs/blockcountry-settings.php:689 libs/blockcountry-settings.php:847
189
  msgid "Save Changes"
190
  msgstr ""
191
 
192
+ #: libs/blockcountry-settings.php:405
193
  msgid "Select which categories are blocked."
194
  msgstr ""
195
 
196
+ #: libs/blockcountry-settings.php:412
197
  msgid "Do you want to block individual categories:"
198
  msgstr ""
199
 
200
+ #: libs/blockcountry-settings.php:413
201
  msgid "If you do not select this option all blog articles will be blocked."
202
  msgstr ""
203
 
204
+ #: libs/blockcountry-settings.php:418
205
  msgid "Do you want to block the homepage:"
206
  msgstr ""
207
 
208
+ #: libs/blockcountry-settings.php:419
209
  msgid ""
210
  "If you do not select this option visitors will not be blocked from your "
211
  "homepage regardless of the categories you select."
212
  msgstr ""
213
 
214
+ #: libs/blockcountry-settings.php:424
215
  msgid "Select categories you want to block:"
216
  msgstr ""
217
 
218
+ #: libs/blockcountry-settings.php:459
219
  msgid "Select which search engines are allowed."
220
  msgstr ""
221
 
222
+ #: libs/blockcountry-settings.php:466
223
  msgid "Select which search engines you want to allow:"
224
  msgstr ""
225
 
226
+ #: libs/blockcountry-settings.php:467
227
  msgid ""
228
  "This will allow a search engine to your site despite if you blocked the "
229
  "country."
230
  msgstr ""
231
 
232
+ #: libs/blockcountry-settings.php:504
233
  msgid "Frontend options"
234
  msgstr ""
235
 
236
+ #: libs/blockcountry-settings.php:539
237
  msgid ""
238
  "Do not block visitors that are logged in from visiting frontend website:"
239
  msgstr ""
240
 
241
+ #: libs/blockcountry-settings.php:545
242
  msgid "Block visitors from visiting the frontend of your website:"
243
  msgstr ""
244
 
245
+ #: libs/blockcountry-settings.php:551
246
  msgid ""
247
  "Select the countries that should be blocked from visiting your frontend:"
248
  msgstr ""
249
 
250
+ #: libs/blockcountry-settings.php:552
251
  msgid "Use the CTRL key to select multiple countries"
252
  msgstr ""
253
 
254
+ #: libs/blockcountry-settings.php:568
255
  msgid "Frontend whitelist IPv4 and/or IPv6 addresses:"
256
  msgstr ""
257
 
258
+ #: libs/blockcountry-settings.php:568 libs/blockcountry-settings.php:576
259
+ #: libs/blockcountry-settings.php:672 libs/blockcountry-settings.php:680
260
  msgid "Use a semicolon (;) to separate IP addresses"
261
  msgstr ""
262
 
263
+ #: libs/blockcountry-settings.php:576
264
  msgid "Frontend blacklist IPv4 and/or IPv6 addresses:"
265
  msgstr ""
266
 
267
+ #: libs/blockcountry-settings.php:605
268
  msgid "Backend Options"
269
  msgstr ""
270
 
271
+ #: libs/blockcountry-settings.php:639
272
  msgid ""
273
  "Block visitors from visiting the backend (administrator) of your website:"
274
  msgstr ""
275
 
276
+ #: libs/blockcountry-settings.php:647
277
  msgid "Your IP address is"
278
  msgstr ""
279
 
280
+ #: libs/blockcountry-settings.php:647
281
  msgid "The country that is listed for this IP address is"
282
  msgstr ""
283
 
284
+ #: libs/blockcountry-settings.php:648
285
  msgid ""
286
  "Do <strong>NOT</strong> set the 'Block visitors from visiting the backend "
287
  "(administrator) of your website' and also select"
288
  msgstr ""
289
 
290
+ #: libs/blockcountry-settings.php:648
291
  msgid "below."
292
  msgstr ""
293
 
294
+ #: libs/blockcountry-settings.php:649
295
  msgid ""
296
  "You will NOT be able to login the next time if you DO block your own country "
297
  "from visiting the backend."
298
  msgstr ""
299
 
300
+ #: libs/blockcountry-settings.php:654
301
  msgid "Select the countries that should be blocked from visiting your backend:"
302
  msgstr ""
303
 
304
+ #: libs/blockcountry-settings.php:655
305
  msgid "Use the x behind the country to remove a country from this blocklist."
306
  msgstr ""
307
 
308
+ #: libs/blockcountry-settings.php:672
309
  msgid "Backend whitelist IPv4 and/or IPv6 addresses:"
310
  msgstr ""
311
 
312
+ #: libs/blockcountry-settings.php:680
313
  msgid "Backend blacklist IPv4 and/or IPv6 addresses:"
314
  msgstr ""
315
 
316
+ #: libs/blockcountry-settings.php:710
317
  msgid "Overall statistics since start"
318
  msgstr ""
319
 
320
+ #: libs/blockcountry-settings.php:713
321
  msgid "visitors blocked from the backend."
322
  msgstr ""
323
 
324
+ #: libs/blockcountry-settings.php:715
325
  msgid "visitors blocked from the frontend."
326
  msgstr ""
327
 
328
+ #: libs/blockcountry-settings.php:719
329
  msgid "Basic Options"
330
  msgstr ""
331
 
332
+ #: libs/blockcountry-settings.php:754
333
  msgid "Message to display when people are blocked:"
334
  msgstr ""
335
 
336
+ #: libs/blockcountry-settings.php:764
337
  msgid "Page to redirect to:"
338
  msgstr ""
339
 
340
+ #: libs/blockcountry-settings.php:765
341
  msgid ""
342
  "If you select a page here blocked visitors will be redirected to this page "
343
  "instead of displaying above block message."
344
  msgstr ""
345
 
346
+ #: libs/blockcountry-settings.php:771
347
  msgid "Choose a page..."
348
  msgstr ""
349
 
350
+ #: libs/blockcountry-settings.php:786
351
  msgid "Send headers when user is blocked:"
352
  msgstr ""
353
 
354
+ #: libs/blockcountry-settings.php:787
355
  msgid ""
356
  "Under normal circumstances you should keep this selected! Only if you have "
357
  "\"Cannot modify header information - headers already sent\" errors or if you "
358
  "know what you are doing uncheck this."
359
  msgstr ""
360
 
361
+ #: libs/blockcountry-settings.php:793
362
+ msgid "Buffer output?:"
363
+ msgstr ""
364
+
365
+ #: libs/blockcountry-settings.php:794
366
+ msgid ""
367
+ "You can use this option to buffer all output. This can be helpful in case "
368
+ "you have \"headers already sent\" issues."
369
+ msgstr ""
370
+
371
+ #: libs/blockcountry-settings.php:800
372
  msgid "Number of rows on statistics page:"
373
  msgstr ""
374
 
375
+ #: libs/blockcountry-settings.php:801
376
  msgid "How many rows do you want to display on each tab the statistics page."
377
  msgstr ""
378
 
379
+ #: libs/blockcountry-settings.php:816
380
  msgid "Allow tracking:"
381
  msgstr ""
382
 
383
+ #: libs/blockcountry-settings.php:817
384
  msgid ""
385
  "This sends only the IP address and the number of attempts this ip address "
386
  "tried to login to your backend and was blocked doing so to a central server. "
388
  "countries."
389
  msgstr ""
390
 
391
+ #: libs/blockcountry-settings.php:823
392
  msgid "API Key:"
393
  msgstr ""
394
 
395
+ #: libs/blockcountry-settings.php:829
396
  msgid "Log all visits to the backend:"
397
  msgstr ""
398
 
399
+ #: libs/blockcountry-settings.php:830
400
  msgid ""
401
  "This logs all visits to the backend despite if they are blocked or not. This "
402
  "is mainly for debugging purposes."
403
  msgstr ""
404
 
405
+ #: libs/blockcountry-settings.php:836
406
  msgid "Auto update GeoIP Database:"
407
  msgstr ""
408
 
409
+ #: libs/blockcountry-settings.php:837
410
  msgid ""
411
+ "Selecting this makes sure that the GeoIP database is downloaded once a month."
 
412
  msgstr ""
413
 
414
+ #: libs/blockcountry-settings.php:865
415
  msgid "Last blocked visits"
416
  msgstr ""
417
 
418
+ #: libs/blockcountry-settings.php:875
419
  msgid "Date / Time"
420
  msgstr ""
421
 
422
+ #: libs/blockcountry-settings.php:875 libs/blockcountry-settings.php:907
423
  msgid "IP Address"
424
  msgstr ""
425
 
426
+ #: libs/blockcountry-settings.php:875 libs/blockcountry-settings.php:907
427
  msgid "Hostname"
428
  msgstr ""
429
 
430
+ #: libs/blockcountry-settings.php:875 libs/blockcountry-settings.php:894
431
  msgid "Country"
432
  msgstr ""
433
 
434
+ #: libs/blockcountry-settings.php:875
435
  msgid "Frontend/Backend"
436
  msgstr ""
437
 
438
+ #: libs/blockcountry-settings.php:885 libs/blockcountry-settings.php:946
439
  msgid "Frontend"
440
  msgstr ""
441
 
442
+ #: libs/blockcountry-settings.php:885
443
  msgid "Backend banlist"
444
  msgstr ""
445
 
446
+ #: libs/blockcountry-settings.php:885
447
  msgid "Backend & Backend banlist"
448
  msgstr ""
449
 
450
+ #: libs/blockcountry-settings.php:885 libs/blockcountry-settings.php:947
451
  msgid "Backend"
452
  msgstr ""
453
 
454
+ #: libs/blockcountry-settings.php:892
455
  msgid "Top countries that are blocked"
456
  msgstr ""
457
 
458
+ #: libs/blockcountry-settings.php:894 libs/blockcountry-settings.php:907
459
+ #: libs/blockcountry-settings.php:918
460
  msgid "# of blocked attempts"
461
  msgstr ""
462
 
463
+ #: libs/blockcountry-settings.php:905
464
  msgid "Top hosts that are blocked"
465
  msgstr ""
466
 
467
+ #: libs/blockcountry-settings.php:916
468
  msgid "Top URLs that are blocked"
469
  msgstr ""
470
 
471
+ #: libs/blockcountry-settings.php:945
472
  msgid "Home"
473
  msgstr ""
474
 
475
+ #: libs/blockcountry-settings.php:948
476
  msgid "Pages"
477
  msgstr ""
478
 
479
+ #: libs/blockcountry-settings.php:949
480
  msgid "Categories"
481
  msgstr ""
482
 
483
+ #: libs/blockcountry-settings.php:950
484
  msgid "Search Engines"
485
  msgstr ""
486
 
487
+ #: libs/blockcountry-settings.php:951
488
  msgid "Tools"
489
  msgstr ""
490
 
491
+ #: libs/blockcountry-settings.php:952
492
  msgid "Logging"
493
  msgstr ""
494
 
495
+ #: libs/blockcountry-settings.php:953
496
  msgid "Import/Export"
497
  msgstr ""
498
 
499
+ #: libs/blockcountry-settings.php:1007
500
  msgid "GeoIP database does not exists. Trying to download it..."
501
  msgstr ""
502
 
lang/iqblockcountry-nl_NL.mo CHANGED
Binary file
lang/iqblockcountry-nl_NL.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: iQ Block Country\n"
4
- "POT-Creation-Date: 2014-09-02 09:51+0100\n"
5
- "PO-Revision-Date: 2014-09-02 09:53+0100\n"
6
- "Last-Translator: \n"
7
  "Language-Team: iQ Block Country <info@redeo.nl>\n"
8
  "Language: Dutch\n"
9
  "MIME-Version: 1.0\n"
@@ -15,107 +15,107 @@ msgstr ""
15
  "X-Poedit-SearchPath-0: libs\n"
16
  "X-Poedit-SearchPath-1: .\n"
17
 
18
- #: libs/blockcountry-settings.php:130
19
  msgid ""
20
  "Check which country belongs to an IP Address according to the current "
21
  "database."
22
  msgstr ""
23
  "Controleer welk land behoort tot een IP adres volgens de huidige database."
24
 
25
- #: libs/blockcountry-settings.php:134
26
  msgid "IP Address to check:"
27
  msgstr "IP adres om te controleren:"
28
 
29
- #: libs/blockcountry-settings.php:144
30
  msgid "No country for"
31
  msgstr "Geen land voor"
32
 
33
- #: libs/blockcountry-settings.php:144
34
  msgid "could be found. Or"
35
  msgstr "gevonden. Of"
36
 
37
- #: libs/blockcountry-settings.php:144
38
  msgid "is not a valid IPv4 or IPv6 IP address"
39
  msgstr "is geen valide IPv4 of IPv6 ip adres."
40
 
41
- #: libs/blockcountry-settings.php:149
42
  msgid "IP Adress"
43
  msgstr "IP Adres"
44
 
45
- #: libs/blockcountry-settings.php:149
46
  msgid "belongs to"
47
  msgstr "behoort tot"
48
 
49
- #: libs/blockcountry-settings.php:152
50
  msgid "This country is not permitted to visit the frontend of this website."
51
  msgstr ""
52
  "Dit land wordt niet toegestaan om de voorkant van deze website te bezoeken."
53
 
54
- #: libs/blockcountry-settings.php:157
55
  msgid "This country is not permitted to visit the backend of this website."
56
  msgstr ""
57
  "Dit land wordt niet toegestaan om de achterkant van deze website te bezoeken."
58
 
59
- #: libs/blockcountry-settings.php:162
60
  msgid "This ip is present in the blacklist."
61
  msgstr "Dit ip adres staat op de zwarte lijst"
62
 
63
- #: libs/blockcountry-settings.php:168
64
  msgid "Check IP address"
65
  msgstr "Controleer IP adres"
66
 
67
- #: libs/blockcountry-settings.php:174
68
  msgid "Download GeoIP database"
69
  msgstr "Download GeoIP database"
70
 
71
- #: libs/blockcountry-settings.php:182
72
  msgid "Automatic update is not setup. Last update: "
73
  msgstr "Automatisch updaten is niet geconfigureerd. Laatste update:"
74
 
75
- #: libs/blockcountry-settings.php:187
76
  msgid "The GeoIP database is updated once a month. Last update: "
77
  msgstr ""
78
  "De GeoIP database wordt eenmaal per maand bijgewerkt. Laatste keer "
79
  "bijgewerkt:"
80
 
81
- #: libs/blockcountry-settings.php:189
82
  msgid "If you need a manual update please press buttons below to update."
83
  msgstr "Indien je handmatig wilt bijwerken druk je op de knoppen hier beneden."
84
 
85
- #: libs/blockcountry-settings.php:195
86
  msgid "Download new GeoIP IPv4 Database"
87
  msgstr "Download nieuwe GeoIP IPv4 database"
88
 
89
- #: libs/blockcountry-settings.php:202
90
  msgid "Download new GeoIP IPv6 Database"
91
  msgstr "Download nieuwe GeoIP IPv6 database"
92
 
93
- #: libs/blockcountry-settings.php:207 libs/blockcountry-settings.php:211
94
  msgid "Downloading..."
95
  msgstr "Downloading..."
96
 
97
- #: libs/blockcountry-settings.php:217
98
  msgid "Active plugins"
99
  msgstr "Actieve plugins"
100
 
101
- #: libs/blockcountry-settings.php:224
102
  msgid "Plugin name"
103
  msgstr "Plugin naam"
104
 
105
- #: libs/blockcountry-settings.php:224
106
  msgid "Version"
107
  msgstr "Versie"
108
 
109
- #: libs/blockcountry-settings.php:224 libs/blockcountry-settings.php:867
110
- #: libs/blockcountry-settings.php:910
111
  msgid "URL"
112
  msgstr "URL"
113
 
114
- #: libs/blockcountry-settings.php:249
115
  msgid "Export"
116
  msgstr "Exporteren"
117
 
118
- #: libs/blockcountry-settings.php:250
119
  msgid ""
120
  "When you click on <tt>Backup all settings</tt> button a backup of the iQ "
121
  "Block Country configuration will be created."
@@ -123,7 +123,7 @@ msgstr ""
123
  "Wanneer je klikt op de <tt>Backup alle instellingen</tt> knop zal een backup "
124
  "van alle iQ Block Country instellingen worden gecreerd."
125
 
126
- #: libs/blockcountry-settings.php:251
127
  msgid ""
128
  "After exporting, you can either use the backup file to restore your settings "
129
  "on this site again or copy the settings to another WordPress site."
@@ -132,95 +132,95 @@ msgstr ""
132
  "te herstellen of je kunt het bestand gebruiken om je instellingen naar een "
133
  "andere WordPress site te exporteren."
134
 
135
- #: libs/blockcountry-settings.php:255
136
  msgid "Backup all settings"
137
  msgstr "Backup alle instellingen"
138
 
139
- #: libs/blockcountry-settings.php:262
140
  msgid "Import"
141
  msgstr "Importeer"
142
 
143
- #: libs/blockcountry-settings.php:263
144
  msgid "Click the browse button and choose a zip file that you exported before."
145
  msgstr ""
146
  "Klik op de Browse button and selecteer een zip file welke je eerder hebt "
147
  "geexporteerd."
148
 
149
- #: libs/blockcountry-settings.php:264
150
  msgid "Press Restore settings button, and let WordPress do the magic for you."
151
  msgstr ""
152
  "Druk op de herstel instellingen knop en laat WordPress haar magie voor je "
153
  "doen."
154
 
155
- #: libs/blockcountry-settings.php:269
156
  msgid "Restore settings"
157
  msgstr "Herstel instellingen"
158
 
159
- #: libs/blockcountry-settings.php:292 libs/blockcountry-settings.php:295
160
- #: libs/blockcountry-settings.php:304
161
  msgid "Something went wrong exporting this file"
162
  msgstr "Er is iets verkeerd gegaan met het exporteren van het bestand."
163
 
164
- #: libs/blockcountry-settings.php:307
165
  msgid "Exporting settings..."
166
  msgstr "Exporteer instellingen"
167
 
168
- #: libs/blockcountry-settings.php:322
169
  msgid "Something went wrong importing this file"
170
  msgstr "Er is iets verkeerd gegaan met het importeren van dit bestand"
171
 
172
- #: libs/blockcountry-settings.php:339
173
  msgid "All options are restored successfully."
174
  msgstr "Alle opties zijn succesvol hersteld"
175
 
176
- #: libs/blockcountry-settings.php:342
177
  msgid "Invalid file."
178
  msgstr "Ongeldig bestand"
179
 
180
- #: libs/blockcountry-settings.php:347
181
  msgid "No correct import or export option given."
182
  msgstr "Geen correcte importeer of exporteer optie gegeven."
183
 
184
- #: libs/blockcountry-settings.php:356
185
  msgid "Select which pages are blocked."
186
  msgstr "Selecteer welke pagina's geblokkeerd worden."
187
 
188
- #: libs/blockcountry-settings.php:363
189
  msgid "Do you want to block individual pages:"
190
  msgstr "Wil je individuele pagina's blokkeren:"
191
 
192
- #: libs/blockcountry-settings.php:364
193
  msgid "If you do not select this option all pages will be blocked."
194
  msgstr "Indien je deze optie niet selecteert worden alle pagina's geblokkeerd."
195
 
196
- #: libs/blockcountry-settings.php:369
197
  msgid "Select pages you want to block:"
198
  msgstr "Selecteer welke pagina's je wil blokkeren."
199
 
200
- #: libs/blockcountry-settings.php:391 libs/blockcountry-settings.php:445
201
- #: libs/blockcountry-settings.php:488 libs/blockcountry-settings.php:584
202
- #: libs/blockcountry-settings.php:688 libs/blockcountry-settings.php:839
203
  msgid "Save Changes"
204
  msgstr "Bewaar wijzigingen"
205
 
206
- #: libs/blockcountry-settings.php:404
207
  msgid "Select which categories are blocked."
208
  msgstr "Selecteer welke categorieen geblokkeerd worden."
209
 
210
- #: libs/blockcountry-settings.php:411
211
  msgid "Do you want to block individual categories:"
212
  msgstr "Wil je individuele categorieen blokkeren:"
213
 
214
- #: libs/blockcountry-settings.php:412
215
  msgid "If you do not select this option all blog articles will be blocked."
216
  msgstr ""
217
  "Indien je deze optie niet selecteert worden alle blog artikelen geblokkeerd."
218
 
219
- #: libs/blockcountry-settings.php:417
220
  msgid "Do you want to block the homepage:"
221
  msgstr "Wil je je homepage blokkeren:"
222
 
223
- #: libs/blockcountry-settings.php:418
224
  msgid ""
225
  "If you do not select this option visitors will not be blocked from your "
226
  "homepage regardless of the categories you select."
@@ -229,19 +229,19 @@ msgstr ""
229
  "geblokkeerd van het bezoeken van je homepagina ongeacht welke categorieen je "
230
  "selecteert."
231
 
232
- #: libs/blockcountry-settings.php:423
233
  msgid "Select categories you want to block:"
234
  msgstr "Selecteer welke categorieen je wil blokkeren."
235
 
236
- #: libs/blockcountry-settings.php:458
237
  msgid "Select which search engines are allowed."
238
  msgstr "Selecteer welke zoek machines je wilt toestaan."
239
 
240
- #: libs/blockcountry-settings.php:465
241
  msgid "Select which search engines you want to allow:"
242
  msgstr "Selecteer welke zoek machines je wilt toestaan:"
243
 
244
- #: libs/blockcountry-settings.php:466
245
  msgid ""
246
  "This will allow a search engine to your site despite if you blocked the "
247
  "country."
@@ -249,66 +249,66 @@ msgstr ""
249
  "Deze optie staat het toe dat zoekmachines je site bezoeken ondanks dat ze "
250
  "uit een land komen welk geblokkeerd is."
251
 
252
- #: libs/blockcountry-settings.php:503
253
  msgid "Frontend options"
254
  msgstr "Voorkant opties"
255
 
256
- #: libs/blockcountry-settings.php:538
257
  msgid ""
258
  "Do not block visitors that are logged in from visiting frontend website:"
259
  msgstr ""
260
  "Blokkeer geen bezoekers welke ingelogd zijn van het bezoeken van de voorkant:"
261
 
262
- #: libs/blockcountry-settings.php:544
263
  msgid "Block visitors from visiting the frontend of your website:"
264
  msgstr "Blokkeer bezoekers van het bezoeken van de voorkant van je website:"
265
 
266
- #: libs/blockcountry-settings.php:550
267
  msgid ""
268
  "Select the countries that should be blocked from visiting your frontend:"
269
  msgstr ""
270
  "Selecteer de landen welke geblokkeerd moeten worden voor het bezoeken van de "
271
  "voorkant van je website:"
272
 
273
- #: libs/blockcountry-settings.php:551
274
  msgid "Use the CTRL key to select multiple countries"
275
  msgstr "Gebruik de CTRL toets om meerdere landen te selecteren"
276
 
277
- #: libs/blockcountry-settings.php:567
278
  msgid "Frontend whitelist IPv4 and/or IPv6 addresses:"
279
  msgstr ""
280
  "Whitelist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
281
 
282
- #: libs/blockcountry-settings.php:567 libs/blockcountry-settings.php:575
283
- #: libs/blockcountry-settings.php:671 libs/blockcountry-settings.php:679
284
  msgid "Use a semicolon (;) to separate IP addresses"
285
  msgstr "Gebruik een puntkomma (;) om adressen van elkaar te scheiden"
286
 
287
- #: libs/blockcountry-settings.php:575
288
  msgid "Frontend blacklist IPv4 and/or IPv6 addresses:"
289
  msgstr ""
290
  "Blacklist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
291
 
292
- #: libs/blockcountry-settings.php:604
293
  msgid "Backend Options"
294
  msgstr "Achterkant opties"
295
 
296
- #: libs/blockcountry-settings.php:638
297
  msgid ""
298
  "Block visitors from visiting the backend (administrator) of your website:"
299
  msgstr ""
300
  "Blokkeer bezoekers van het bezoeken van de achterkant (administratie "
301
  "gedeelte) van je website:"
302
 
303
- #: libs/blockcountry-settings.php:646
304
  msgid "Your IP address is"
305
  msgstr "Je IP adres is"
306
 
307
- #: libs/blockcountry-settings.php:646
308
  msgid "The country that is listed for this IP address is"
309
  msgstr "Het land waar dit adres toe behoort is"
310
 
311
- #: libs/blockcountry-settings.php:647
312
  msgid ""
313
  "Do <strong>NOT</strong> set the 'Block visitors from visiting the backend "
314
  "(administrator) of your website' and also select"
@@ -316,11 +316,11 @@ msgstr ""
316
  "Selecteer <strong>NIET</strong> \"Blokkeer bezoekers van het bezoeken van de "
317
  "achterkant (administratie gedeelte) van je website\" en"
318
 
319
- #: libs/blockcountry-settings.php:647
320
  msgid "below."
321
  msgstr "hier beneden."
322
 
323
- #: libs/blockcountry-settings.php:648
324
  msgid ""
325
  "You will NOT be able to login the next time if you DO block your own country "
326
  "from visiting the backend."
@@ -328,52 +328,52 @@ msgstr ""
328
  "Het zal daarna niet meer mogelijk zijn om nog in te loggen als je je eigen "
329
  "land blokkeert van het bezoeken van de achterkant van je website."
330
 
331
- #: libs/blockcountry-settings.php:653
332
  msgid "Select the countries that should be blocked from visiting your backend:"
333
  msgstr ""
334
  "Selecteer de landen welke geblokkeerd moeten worden voor het bezoeken van de "
335
  "achterkant (administratie gedeelte) van je website:"
336
 
337
- #: libs/blockcountry-settings.php:654
338
  msgid "Use the x behind the country to remove a country from this blocklist."
339
  msgstr ""
340
  "Gebruik de x achter een land om het land te verwijderen uit deze lijst."
341
 
342
- #: libs/blockcountry-settings.php:671
343
  msgid "Backend whitelist IPv4 and/or IPv6 addresses:"
344
  msgstr ""
345
  "Whitelist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
346
 
347
- #: libs/blockcountry-settings.php:679
348
  msgid "Backend blacklist IPv4 and/or IPv6 addresses:"
349
  msgstr ""
350
  "Blacklist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
351
 
352
- #: libs/blockcountry-settings.php:709
353
  msgid "Overall statistics since start"
354
  msgstr "Statistieken sinds het begin"
355
 
356
- #: libs/blockcountry-settings.php:712
357
  msgid "visitors blocked from the backend."
358
  msgstr "bezoekers geblokkeerd op de achterkant."
359
 
360
- #: libs/blockcountry-settings.php:714
361
  msgid "visitors blocked from the frontend."
362
  msgstr "bezoekers geblokkeerd op de voorkant."
363
 
364
- #: libs/blockcountry-settings.php:718
365
  msgid "Basic Options"
366
  msgstr "Standaard opties"
367
 
368
- #: libs/blockcountry-settings.php:753
369
  msgid "Message to display when people are blocked:"
370
  msgstr "Welk bericht wil je tonen aan bezoekers welke geblokkeerd worden:"
371
 
372
- #: libs/blockcountry-settings.php:763
373
  msgid "Page to redirect to:"
374
  msgstr "Naar welke pagina wilt u bezoekers toesturen:"
375
 
376
- #: libs/blockcountry-settings.php:764
377
  msgid ""
378
  "If you select a page here blocked visitors will be redirected to this page "
379
  "instead of displaying above block message."
@@ -382,15 +382,15 @@ msgstr ""
382
  "doorgestuurd naar deze pagina anders wordt bovestaande tekst getoond aan "
383
  "bezoekers."
384
 
385
- #: libs/blockcountry-settings.php:770
386
  msgid "Choose a page..."
387
  msgstr "Kies een pagina..."
388
 
389
- #: libs/blockcountry-settings.php:785
390
  msgid "Send headers when user is blocked:"
391
  msgstr "Stuur headers wanneer een gebruiker is geblokkeerd:"
392
 
393
- #: libs/blockcountry-settings.php:786
394
  msgid ""
395
  "Under normal circumstances you should keep this selected! Only if you have "
396
  "\"Cannot modify header information - headers already sent\" errors or if you "
@@ -400,19 +400,31 @@ msgstr ""
400
  "deze alleen indien je \"Cannot modify header information - headers already "
401
  "sent\" foutmeldingen krijgt of indien je weet wat je doet."
402
 
403
- #: libs/blockcountry-settings.php:792
 
 
 
 
 
 
 
 
 
 
 
 
404
  msgid "Number of rows on statistics page:"
405
  msgstr "Aantal regels op de statistieken pagina:"
406
 
407
- #: libs/blockcountry-settings.php:793
408
  msgid "How many rows do you want to display on each tab the statistics page."
409
  msgstr "Hoeveel regels wil je tonen op de statistieken pagina."
410
 
411
- #: libs/blockcountry-settings.php:808
412
  msgid "Allow tracking:"
413
  msgstr "Sta traceren toe:"
414
 
415
- #: libs/blockcountry-settings.php:809
416
  msgid ""
417
  "This sends only the IP address and the number of attempts this ip address "
418
  "tried to login to your backend and was blocked doing so to a central server. "
@@ -425,15 +437,15 @@ msgstr ""
425
  "ons om beter inzicht te krijgen in de landen waarvandaan een hoop hack "
426
  "pogingen worden gedaan. "
427
 
428
- #: libs/blockcountry-settings.php:815
429
  msgid "API Key:"
430
  msgstr "API Key:"
431
 
432
- #: libs/blockcountry-settings.php:821
433
  msgid "Log all visits to the backend:"
434
  msgstr "Log alle bezoekers op de achterkant:"
435
 
436
- #: libs/blockcountry-settings.php:822
437
  msgid ""
438
  "This logs all visits to the backend despite if they are blocked or not. This "
439
  "is mainly for debugging purposes."
@@ -441,103 +453,103 @@ msgstr ""
441
  "Dit logt alle bezoeken aan de achterkant ongeacht of de bezoeker werd "
442
  "geblokkeerd of niet. Dit is voornamelijk bedoeld voor fout opsporing."
443
 
444
- #: libs/blockcountry-settings.php:828
445
  msgid "Auto update GeoIP Database:"
446
  msgstr "Automatisch updaten GeoIP Database:"
447
 
448
- #: libs/blockcountry-settings.php:829
449
  msgid ""
450
  "Selecting this makes sure that the GeoIP database is downloaded once a month."
451
  msgstr ""
452
  "Deze optie selecteren zorgt er voor dat de GeoIP Database automatisch "
453
  "maandelijks wordt bijgewerkt."
454
 
455
- #: libs/blockcountry-settings.php:857
456
  msgid "Last blocked visits"
457
  msgstr "Laatste geblokkeerde bezoekers"
458
 
459
- #: libs/blockcountry-settings.php:867
460
  msgid "Date / Time"
461
  msgstr "Datum / Tijd"
462
 
463
- #: libs/blockcountry-settings.php:867 libs/blockcountry-settings.php:899
464
  msgid "IP Address"
465
  msgstr "IP adres"
466
 
467
- #: libs/blockcountry-settings.php:867 libs/blockcountry-settings.php:899
468
  msgid "Hostname"
469
  msgstr "Hostnaam"
470
 
471
- #: libs/blockcountry-settings.php:867 libs/blockcountry-settings.php:886
472
  msgid "Country"
473
  msgstr "Land"
474
 
475
- #: libs/blockcountry-settings.php:867
476
  msgid "Frontend/Backend"
477
  msgstr "Voorkant/Achterkant"
478
 
479
- #: libs/blockcountry-settings.php:877 libs/blockcountry-settings.php:938
480
  msgid "Frontend"
481
  msgstr "Voorkant"
482
 
483
- #: libs/blockcountry-settings.php:877
484
  msgid "Backend banlist"
485
  msgstr "Achterkant banlist"
486
 
487
- #: libs/blockcountry-settings.php:877
488
  msgid "Backend & Backend banlist"
489
  msgstr "Achterkant & Achterkant banlist"
490
 
491
- #: libs/blockcountry-settings.php:877 libs/blockcountry-settings.php:939
492
  msgid "Backend"
493
  msgstr "Achterkant"
494
 
495
- #: libs/blockcountry-settings.php:884
496
  msgid "Top countries that are blocked"
497
  msgstr "Top landen welke zijn geblokkeerd"
498
 
499
- #: libs/blockcountry-settings.php:886 libs/blockcountry-settings.php:899
500
- #: libs/blockcountry-settings.php:910
501
  msgid "# of blocked attempts"
502
  msgstr "# of geblokkeerde pogingen"
503
 
504
- #: libs/blockcountry-settings.php:897
505
  msgid "Top hosts that are blocked"
506
  msgstr "Top hosts welke geblokkeerd zijn"
507
 
508
- #: libs/blockcountry-settings.php:908
509
  msgid "Top URLs that are blocked"
510
  msgstr "Top URLs welke geblokkeerd zijn"
511
 
512
- #: libs/blockcountry-settings.php:937
513
  msgid "Home"
514
  msgstr "Home"
515
 
516
- #: libs/blockcountry-settings.php:940
517
  msgid "Pages"
518
  msgstr "Pagina's"
519
 
520
- #: libs/blockcountry-settings.php:941
521
  msgid "Categories"
522
  msgstr "Categorieen"
523
 
524
- #: libs/blockcountry-settings.php:942
525
  msgid "Search Engines"
526
  msgstr "Zoek machines"
527
 
528
- #: libs/blockcountry-settings.php:943
529
  msgid "Tools"
530
  msgstr "Gereedschap"
531
 
532
- #: libs/blockcountry-settings.php:944
533
  msgid "Logging"
534
  msgstr "Statistieken"
535
 
536
- #: libs/blockcountry-settings.php:945
537
  msgid "Import/Export"
538
  msgstr "Importeren/Exporteren"
539
 
540
- #: libs/blockcountry-settings.php:999
541
  msgid "GeoIP database does not exists. Trying to download it..."
542
  msgstr "GeoIP database bestaat niet. Probeer om nieuwe versie te downloaden"
543
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: iQ Block Country\n"
4
+ "POT-Creation-Date: 2014-09-15 19:39+0100\n"
5
+ "PO-Revision-Date: 2014-09-15 19:40+0100\n"
6
+ "Last-Translator: Pascal <pascal@redeo.nl>\n"
7
  "Language-Team: iQ Block Country <info@redeo.nl>\n"
8
  "Language: Dutch\n"
9
  "MIME-Version: 1.0\n"
15
  "X-Poedit-SearchPath-0: libs\n"
16
  "X-Poedit-SearchPath-1: .\n"
17
 
18
+ #: libs/blockcountry-settings.php:132
19
  msgid ""
20
  "Check which country belongs to an IP Address according to the current "
21
  "database."
22
  msgstr ""
23
  "Controleer welk land behoort tot een IP adres volgens de huidige database."
24
 
25
+ #: libs/blockcountry-settings.php:136
26
  msgid "IP Address to check:"
27
  msgstr "IP adres om te controleren:"
28
 
29
+ #: libs/blockcountry-settings.php:146
30
  msgid "No country for"
31
  msgstr "Geen land voor"
32
 
33
+ #: libs/blockcountry-settings.php:146
34
  msgid "could be found. Or"
35
  msgstr "gevonden. Of"
36
 
37
+ #: libs/blockcountry-settings.php:146
38
  msgid "is not a valid IPv4 or IPv6 IP address"
39
  msgstr "is geen valide IPv4 of IPv6 ip adres."
40
 
41
+ #: libs/blockcountry-settings.php:151
42
  msgid "IP Adress"
43
  msgstr "IP Adres"
44
 
45
+ #: libs/blockcountry-settings.php:151
46
  msgid "belongs to"
47
  msgstr "behoort tot"
48
 
49
+ #: libs/blockcountry-settings.php:154
50
  msgid "This country is not permitted to visit the frontend of this website."
51
  msgstr ""
52
  "Dit land wordt niet toegestaan om de voorkant van deze website te bezoeken."
53
 
54
+ #: libs/blockcountry-settings.php:159
55
  msgid "This country is not permitted to visit the backend of this website."
56
  msgstr ""
57
  "Dit land wordt niet toegestaan om de achterkant van deze website te bezoeken."
58
 
59
+ #: libs/blockcountry-settings.php:164
60
  msgid "This ip is present in the blacklist."
61
  msgstr "Dit ip adres staat op de zwarte lijst"
62
 
63
+ #: libs/blockcountry-settings.php:169
64
  msgid "Check IP address"
65
  msgstr "Controleer IP adres"
66
 
67
+ #: libs/blockcountry-settings.php:175
68
  msgid "Download GeoIP database"
69
  msgstr "Download GeoIP database"
70
 
71
+ #: libs/blockcountry-settings.php:183
72
  msgid "Automatic update is not setup. Last update: "
73
  msgstr "Automatisch updaten is niet geconfigureerd. Laatste update:"
74
 
75
+ #: libs/blockcountry-settings.php:188
76
  msgid "The GeoIP database is updated once a month. Last update: "
77
  msgstr ""
78
  "De GeoIP database wordt eenmaal per maand bijgewerkt. Laatste keer "
79
  "bijgewerkt:"
80
 
81
+ #: libs/blockcountry-settings.php:190
82
  msgid "If you need a manual update please press buttons below to update."
83
  msgstr "Indien je handmatig wilt bijwerken druk je op de knoppen hier beneden."
84
 
85
+ #: libs/blockcountry-settings.php:196
86
  msgid "Download new GeoIP IPv4 Database"
87
  msgstr "Download nieuwe GeoIP IPv4 database"
88
 
89
+ #: libs/blockcountry-settings.php:203
90
  msgid "Download new GeoIP IPv6 Database"
91
  msgstr "Download nieuwe GeoIP IPv6 database"
92
 
93
+ #: libs/blockcountry-settings.php:208 libs/blockcountry-settings.php:212
94
  msgid "Downloading..."
95
  msgstr "Downloading..."
96
 
97
+ #: libs/blockcountry-settings.php:218
98
  msgid "Active plugins"
99
  msgstr "Actieve plugins"
100
 
101
+ #: libs/blockcountry-settings.php:225
102
  msgid "Plugin name"
103
  msgstr "Plugin naam"
104
 
105
+ #: libs/blockcountry-settings.php:225
106
  msgid "Version"
107
  msgstr "Versie"
108
 
109
+ #: libs/blockcountry-settings.php:225 libs/blockcountry-settings.php:875
110
+ #: libs/blockcountry-settings.php:918
111
  msgid "URL"
112
  msgstr "URL"
113
 
114
+ #: libs/blockcountry-settings.php:250
115
  msgid "Export"
116
  msgstr "Exporteren"
117
 
118
+ #: libs/blockcountry-settings.php:251
119
  msgid ""
120
  "When you click on <tt>Backup all settings</tt> button a backup of the iQ "
121
  "Block Country configuration will be created."
123
  "Wanneer je klikt op de <tt>Backup alle instellingen</tt> knop zal een backup "
124
  "van alle iQ Block Country instellingen worden gecreerd."
125
 
126
+ #: libs/blockcountry-settings.php:252
127
  msgid ""
128
  "After exporting, you can either use the backup file to restore your settings "
129
  "on this site again or copy the settings to another WordPress site."
132
  "te herstellen of je kunt het bestand gebruiken om je instellingen naar een "
133
  "andere WordPress site te exporteren."
134
 
135
+ #: libs/blockcountry-settings.php:256
136
  msgid "Backup all settings"
137
  msgstr "Backup alle instellingen"
138
 
139
+ #: libs/blockcountry-settings.php:263
140
  msgid "Import"
141
  msgstr "Importeer"
142
 
143
+ #: libs/blockcountry-settings.php:264
144
  msgid "Click the browse button and choose a zip file that you exported before."
145
  msgstr ""
146
  "Klik op de Browse button and selecteer een zip file welke je eerder hebt "
147
  "geexporteerd."
148
 
149
+ #: libs/blockcountry-settings.php:265
150
  msgid "Press Restore settings button, and let WordPress do the magic for you."
151
  msgstr ""
152
  "Druk op de herstel instellingen knop en laat WordPress haar magie voor je "
153
  "doen."
154
 
155
+ #: libs/blockcountry-settings.php:270
156
  msgid "Restore settings"
157
  msgstr "Herstel instellingen"
158
 
159
+ #: libs/blockcountry-settings.php:293 libs/blockcountry-settings.php:296
160
+ #: libs/blockcountry-settings.php:305
161
  msgid "Something went wrong exporting this file"
162
  msgstr "Er is iets verkeerd gegaan met het exporteren van het bestand."
163
 
164
+ #: libs/blockcountry-settings.php:308
165
  msgid "Exporting settings..."
166
  msgstr "Exporteer instellingen"
167
 
168
+ #: libs/blockcountry-settings.php:323
169
  msgid "Something went wrong importing this file"
170
  msgstr "Er is iets verkeerd gegaan met het importeren van dit bestand"
171
 
172
+ #: libs/blockcountry-settings.php:340
173
  msgid "All options are restored successfully."
174
  msgstr "Alle opties zijn succesvol hersteld"
175
 
176
+ #: libs/blockcountry-settings.php:343
177
  msgid "Invalid file."
178
  msgstr "Ongeldig bestand"
179
 
180
+ #: libs/blockcountry-settings.php:348
181
  msgid "No correct import or export option given."
182
  msgstr "Geen correcte importeer of exporteer optie gegeven."
183
 
184
+ #: libs/blockcountry-settings.php:357
185
  msgid "Select which pages are blocked."
186
  msgstr "Selecteer welke pagina's geblokkeerd worden."
187
 
188
+ #: libs/blockcountry-settings.php:364
189
  msgid "Do you want to block individual pages:"
190
  msgstr "Wil je individuele pagina's blokkeren:"
191
 
192
+ #: libs/blockcountry-settings.php:365
193
  msgid "If you do not select this option all pages will be blocked."
194
  msgstr "Indien je deze optie niet selecteert worden alle pagina's geblokkeerd."
195
 
196
+ #: libs/blockcountry-settings.php:370
197
  msgid "Select pages you want to block:"
198
  msgstr "Selecteer welke pagina's je wil blokkeren."
199
 
200
+ #: libs/blockcountry-settings.php:392 libs/blockcountry-settings.php:446
201
+ #: libs/blockcountry-settings.php:489 libs/blockcountry-settings.php:585
202
+ #: libs/blockcountry-settings.php:689 libs/blockcountry-settings.php:847
203
  msgid "Save Changes"
204
  msgstr "Bewaar wijzigingen"
205
 
206
+ #: libs/blockcountry-settings.php:405
207
  msgid "Select which categories are blocked."
208
  msgstr "Selecteer welke categorieen geblokkeerd worden."
209
 
210
+ #: libs/blockcountry-settings.php:412
211
  msgid "Do you want to block individual categories:"
212
  msgstr "Wil je individuele categorieen blokkeren:"
213
 
214
+ #: libs/blockcountry-settings.php:413
215
  msgid "If you do not select this option all blog articles will be blocked."
216
  msgstr ""
217
  "Indien je deze optie niet selecteert worden alle blog artikelen geblokkeerd."
218
 
219
+ #: libs/blockcountry-settings.php:418
220
  msgid "Do you want to block the homepage:"
221
  msgstr "Wil je je homepage blokkeren:"
222
 
223
+ #: libs/blockcountry-settings.php:419
224
  msgid ""
225
  "If you do not select this option visitors will not be blocked from your "
226
  "homepage regardless of the categories you select."
229
  "geblokkeerd van het bezoeken van je homepagina ongeacht welke categorieen je "
230
  "selecteert."
231
 
232
+ #: libs/blockcountry-settings.php:424
233
  msgid "Select categories you want to block:"
234
  msgstr "Selecteer welke categorieen je wil blokkeren."
235
 
236
+ #: libs/blockcountry-settings.php:459
237
  msgid "Select which search engines are allowed."
238
  msgstr "Selecteer welke zoek machines je wilt toestaan."
239
 
240
+ #: libs/blockcountry-settings.php:466
241
  msgid "Select which search engines you want to allow:"
242
  msgstr "Selecteer welke zoek machines je wilt toestaan:"
243
 
244
+ #: libs/blockcountry-settings.php:467
245
  msgid ""
246
  "This will allow a search engine to your site despite if you blocked the "
247
  "country."
249
  "Deze optie staat het toe dat zoekmachines je site bezoeken ondanks dat ze "
250
  "uit een land komen welk geblokkeerd is."
251
 
252
+ #: libs/blockcountry-settings.php:504
253
  msgid "Frontend options"
254
  msgstr "Voorkant opties"
255
 
256
+ #: libs/blockcountry-settings.php:539
257
  msgid ""
258
  "Do not block visitors that are logged in from visiting frontend website:"
259
  msgstr ""
260
  "Blokkeer geen bezoekers welke ingelogd zijn van het bezoeken van de voorkant:"
261
 
262
+ #: libs/blockcountry-settings.php:545
263
  msgid "Block visitors from visiting the frontend of your website:"
264
  msgstr "Blokkeer bezoekers van het bezoeken van de voorkant van je website:"
265
 
266
+ #: libs/blockcountry-settings.php:551
267
  msgid ""
268
  "Select the countries that should be blocked from visiting your frontend:"
269
  msgstr ""
270
  "Selecteer de landen welke geblokkeerd moeten worden voor het bezoeken van de "
271
  "voorkant van je website:"
272
 
273
+ #: libs/blockcountry-settings.php:552
274
  msgid "Use the CTRL key to select multiple countries"
275
  msgstr "Gebruik de CTRL toets om meerdere landen te selecteren"
276
 
277
+ #: libs/blockcountry-settings.php:568
278
  msgid "Frontend whitelist IPv4 and/or IPv6 addresses:"
279
  msgstr ""
280
  "Whitelist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
281
 
282
+ #: libs/blockcountry-settings.php:568 libs/blockcountry-settings.php:576
283
+ #: libs/blockcountry-settings.php:672 libs/blockcountry-settings.php:680
284
  msgid "Use a semicolon (;) to separate IP addresses"
285
  msgstr "Gebruik een puntkomma (;) om adressen van elkaar te scheiden"
286
 
287
+ #: libs/blockcountry-settings.php:576
288
  msgid "Frontend blacklist IPv4 and/or IPv6 addresses:"
289
  msgstr ""
290
  "Blacklist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
291
 
292
+ #: libs/blockcountry-settings.php:605
293
  msgid "Backend Options"
294
  msgstr "Achterkant opties"
295
 
296
+ #: libs/blockcountry-settings.php:639
297
  msgid ""
298
  "Block visitors from visiting the backend (administrator) of your website:"
299
  msgstr ""
300
  "Blokkeer bezoekers van het bezoeken van de achterkant (administratie "
301
  "gedeelte) van je website:"
302
 
303
+ #: libs/blockcountry-settings.php:647
304
  msgid "Your IP address is"
305
  msgstr "Je IP adres is"
306
 
307
+ #: libs/blockcountry-settings.php:647
308
  msgid "The country that is listed for this IP address is"
309
  msgstr "Het land waar dit adres toe behoort is"
310
 
311
+ #: libs/blockcountry-settings.php:648
312
  msgid ""
313
  "Do <strong>NOT</strong> set the 'Block visitors from visiting the backend "
314
  "(administrator) of your website' and also select"
316
  "Selecteer <strong>NIET</strong> \"Blokkeer bezoekers van het bezoeken van de "
317
  "achterkant (administratie gedeelte) van je website\" en"
318
 
319
+ #: libs/blockcountry-settings.php:648
320
  msgid "below."
321
  msgstr "hier beneden."
322
 
323
+ #: libs/blockcountry-settings.php:649
324
  msgid ""
325
  "You will NOT be able to login the next time if you DO block your own country "
326
  "from visiting the backend."
328
  "Het zal daarna niet meer mogelijk zijn om nog in te loggen als je je eigen "
329
  "land blokkeert van het bezoeken van de achterkant van je website."
330
 
331
+ #: libs/blockcountry-settings.php:654
332
  msgid "Select the countries that should be blocked from visiting your backend:"
333
  msgstr ""
334
  "Selecteer de landen welke geblokkeerd moeten worden voor het bezoeken van de "
335
  "achterkant (administratie gedeelte) van je website:"
336
 
337
+ #: libs/blockcountry-settings.php:655
338
  msgid "Use the x behind the country to remove a country from this blocklist."
339
  msgstr ""
340
  "Gebruik de x achter een land om het land te verwijderen uit deze lijst."
341
 
342
+ #: libs/blockcountry-settings.php:672
343
  msgid "Backend whitelist IPv4 and/or IPv6 addresses:"
344
  msgstr ""
345
  "Whitelist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
346
 
347
+ #: libs/blockcountry-settings.php:680
348
  msgid "Backend blacklist IPv4 and/or IPv6 addresses:"
349
  msgstr ""
350
  "Blacklist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
351
 
352
+ #: libs/blockcountry-settings.php:710
353
  msgid "Overall statistics since start"
354
  msgstr "Statistieken sinds het begin"
355
 
356
+ #: libs/blockcountry-settings.php:713
357
  msgid "visitors blocked from the backend."
358
  msgstr "bezoekers geblokkeerd op de achterkant."
359
 
360
+ #: libs/blockcountry-settings.php:715
361
  msgid "visitors blocked from the frontend."
362
  msgstr "bezoekers geblokkeerd op de voorkant."
363
 
364
+ #: libs/blockcountry-settings.php:719
365
  msgid "Basic Options"
366
  msgstr "Standaard opties"
367
 
368
+ #: libs/blockcountry-settings.php:754
369
  msgid "Message to display when people are blocked:"
370
  msgstr "Welk bericht wil je tonen aan bezoekers welke geblokkeerd worden:"
371
 
372
+ #: libs/blockcountry-settings.php:764
373
  msgid "Page to redirect to:"
374
  msgstr "Naar welke pagina wilt u bezoekers toesturen:"
375
 
376
+ #: libs/blockcountry-settings.php:765
377
  msgid ""
378
  "If you select a page here blocked visitors will be redirected to this page "
379
  "instead of displaying above block message."
382
  "doorgestuurd naar deze pagina anders wordt bovestaande tekst getoond aan "
383
  "bezoekers."
384
 
385
+ #: libs/blockcountry-settings.php:771
386
  msgid "Choose a page..."
387
  msgstr "Kies een pagina..."
388
 
389
+ #: libs/blockcountry-settings.php:786
390
  msgid "Send headers when user is blocked:"
391
  msgstr "Stuur headers wanneer een gebruiker is geblokkeerd:"
392
 
393
+ #: libs/blockcountry-settings.php:787
394
  msgid ""
395
  "Under normal circumstances you should keep this selected! Only if you have "
396
  "\"Cannot modify header information - headers already sent\" errors or if you "
400
  "deze alleen indien je \"Cannot modify header information - headers already "
401
  "sent\" foutmeldingen krijgt of indien je weet wat je doet."
402
 
403
+ #: libs/blockcountry-settings.php:793
404
+ msgid "Buffer output?:"
405
+ msgstr "Buffer output?"
406
+
407
+ #: libs/blockcountry-settings.php:794
408
+ msgid ""
409
+ "You can use this option to buffer all output. This can be helpful in case "
410
+ "you have \"headers already sent\" issues."
411
+ msgstr ""
412
+ "Je kunt deze optie gebruiken om alle output te bufferen. Dit kan helpen "
413
+ "indien je \"headers already sent\" problemen hebt."
414
+
415
+ #: libs/blockcountry-settings.php:800
416
  msgid "Number of rows on statistics page:"
417
  msgstr "Aantal regels op de statistieken pagina:"
418
 
419
+ #: libs/blockcountry-settings.php:801
420
  msgid "How many rows do you want to display on each tab the statistics page."
421
  msgstr "Hoeveel regels wil je tonen op de statistieken pagina."
422
 
423
+ #: libs/blockcountry-settings.php:816
424
  msgid "Allow tracking:"
425
  msgstr "Sta traceren toe:"
426
 
427
+ #: libs/blockcountry-settings.php:817
428
  msgid ""
429
  "This sends only the IP address and the number of attempts this ip address "
430
  "tried to login to your backend and was blocked doing so to a central server. "
437
  "ons om beter inzicht te krijgen in de landen waarvandaan een hoop hack "
438
  "pogingen worden gedaan. "
439
 
440
+ #: libs/blockcountry-settings.php:823
441
  msgid "API Key:"
442
  msgstr "API Key:"
443
 
444
+ #: libs/blockcountry-settings.php:829
445
  msgid "Log all visits to the backend:"
446
  msgstr "Log alle bezoekers op de achterkant:"
447
 
448
+ #: libs/blockcountry-settings.php:830
449
  msgid ""
450
  "This logs all visits to the backend despite if they are blocked or not. This "
451
  "is mainly for debugging purposes."
453
  "Dit logt alle bezoeken aan de achterkant ongeacht of de bezoeker werd "
454
  "geblokkeerd of niet. Dit is voornamelijk bedoeld voor fout opsporing."
455
 
456
+ #: libs/blockcountry-settings.php:836
457
  msgid "Auto update GeoIP Database:"
458
  msgstr "Automatisch updaten GeoIP Database:"
459
 
460
+ #: libs/blockcountry-settings.php:837
461
  msgid ""
462
  "Selecting this makes sure that the GeoIP database is downloaded once a month."
463
  msgstr ""
464
  "Deze optie selecteren zorgt er voor dat de GeoIP Database automatisch "
465
  "maandelijks wordt bijgewerkt."
466
 
467
+ #: libs/blockcountry-settings.php:865
468
  msgid "Last blocked visits"
469
  msgstr "Laatste geblokkeerde bezoekers"
470
 
471
+ #: libs/blockcountry-settings.php:875
472
  msgid "Date / Time"
473
  msgstr "Datum / Tijd"
474
 
475
+ #: libs/blockcountry-settings.php:875 libs/blockcountry-settings.php:907
476
  msgid "IP Address"
477
  msgstr "IP adres"
478
 
479
+ #: libs/blockcountry-settings.php:875 libs/blockcountry-settings.php:907
480
  msgid "Hostname"
481
  msgstr "Hostnaam"
482
 
483
+ #: libs/blockcountry-settings.php:875 libs/blockcountry-settings.php:894
484
  msgid "Country"
485
  msgstr "Land"
486
 
487
+ #: libs/blockcountry-settings.php:875
488
  msgid "Frontend/Backend"
489
  msgstr "Voorkant/Achterkant"
490
 
491
+ #: libs/blockcountry-settings.php:885 libs/blockcountry-settings.php:946
492
  msgid "Frontend"
493
  msgstr "Voorkant"
494
 
495
+ #: libs/blockcountry-settings.php:885
496
  msgid "Backend banlist"
497
  msgstr "Achterkant banlist"
498
 
499
+ #: libs/blockcountry-settings.php:885
500
  msgid "Backend & Backend banlist"
501
  msgstr "Achterkant & Achterkant banlist"
502
 
503
+ #: libs/blockcountry-settings.php:885 libs/blockcountry-settings.php:947
504
  msgid "Backend"
505
  msgstr "Achterkant"
506
 
507
+ #: libs/blockcountry-settings.php:892
508
  msgid "Top countries that are blocked"
509
  msgstr "Top landen welke zijn geblokkeerd"
510
 
511
+ #: libs/blockcountry-settings.php:894 libs/blockcountry-settings.php:907
512
+ #: libs/blockcountry-settings.php:918
513
  msgid "# of blocked attempts"
514
  msgstr "# of geblokkeerde pogingen"
515
 
516
+ #: libs/blockcountry-settings.php:905
517
  msgid "Top hosts that are blocked"
518
  msgstr "Top hosts welke geblokkeerd zijn"
519
 
520
+ #: libs/blockcountry-settings.php:916
521
  msgid "Top URLs that are blocked"
522
  msgstr "Top URLs welke geblokkeerd zijn"
523
 
524
+ #: libs/blockcountry-settings.php:945
525
  msgid "Home"
526
  msgstr "Home"
527
 
528
+ #: libs/blockcountry-settings.php:948
529
  msgid "Pages"
530
  msgstr "Pagina's"
531
 
532
+ #: libs/blockcountry-settings.php:949
533
  msgid "Categories"
534
  msgstr "Categorieen"
535
 
536
+ #: libs/blockcountry-settings.php:950
537
  msgid "Search Engines"
538
  msgstr "Zoek machines"
539
 
540
+ #: libs/blockcountry-settings.php:951
541
  msgid "Tools"
542
  msgstr "Gereedschap"
543
 
544
+ #: libs/blockcountry-settings.php:952
545
  msgid "Logging"
546
  msgstr "Statistieken"
547
 
548
+ #: libs/blockcountry-settings.php:953
549
  msgid "Import/Export"
550
  msgstr "Importeren/Exporteren"
551
 
552
+ #: libs/blockcountry-settings.php:1007
553
  msgid "GeoIP database does not exists. Trying to download it..."
554
  msgstr "GeoIP database bestaat niet. Probeer om nieuwe versie te downloaden"
555
 
libs/blockcountry-checks.php CHANGED
@@ -190,6 +190,21 @@ function iqblockcountry_check($country,$badcountries,$ip_address)
190
  }
191
  if ($flagged) { $blocked = TRUE; } else { $blocked = FALSE; }
192
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
  if (is_home() && (get_option('blockcountry_blockhome')) == FALSE && $blockedcategory == "on")
194
  {
195
  $blocked = FALSE;
@@ -200,7 +215,7 @@ function iqblockcountry_check($country,$badcountries,$ip_address)
200
  }
201
 
202
  $allowse = get_option('blockcountry_allowse');
203
- if (!iqblockcountry_is_login_page() && iqblockcountry_check_searchengine($_SERVER['HTTP_USER_AGENT'], $allowse))
204
  {
205
  $blocked = FALSE;
206
  }
@@ -223,12 +238,14 @@ function iqblockcountry_CheckCountry() {
223
  $ip_address = $_SERVER['HTTP_X_REAL_IP'];
224
  } elseif ( isset($_SERVER['HTTP_CLIENT_IP']) && !empty($_SERVER['HTTP_CLIENT_IP']) ) {
225
  $ip_address = $_SERVER['HTTP_CLIENT_IP'];
 
 
226
  }
 
 
227
 
228
  $ip_address = iqblockcountry_get_ipaddress();
229
  $country = iqblockcountry_check_ipaddress($ip_address);
230
- // $city = iqblockcountry_check_city_ipaddress($ip_address);
231
- // print_r($city);
232
 
233
  if ((iqblockcountry_is_login_page() || is_admin()) && get_option('blockcountry_blockbackend'))
234
  {
@@ -304,7 +321,6 @@ function iqblockcountry_CheckCountry() {
304
  * Check if page is the login page
305
  */
306
  function iqblockcountry_is_login_page() {
307
- // return !strncmp($_SERVER['REQUEST_URI'], '/wp-login.php', strlen('/wp-login.php'));
308
  $found = FALSE;
309
  $pos = strpos( $_SERVER['REQUEST_URI'], 'wp-login' );
310
  if ($pos !== false)
190
  }
191
  if ($flagged) { $blocked = TRUE; } else { $blocked = FALSE; }
192
  }
193
+ if (is_category() && $blockedcategory == "on")
194
+ {
195
+ $blockedcategories = get_option('blockcountry_categories');
196
+ if (!is_array($blockedcategories)) { $blockedcategories = array(); }
197
+ if (is_category($blockedcategories))
198
+ {
199
+ $blocked = TRUE;
200
+ }
201
+ else
202
+ {
203
+ $blocked = FALSE;
204
+ }
205
+ }
206
+
207
+
208
  if (is_home() && (get_option('blockcountry_blockhome')) == FALSE && $blockedcategory == "on")
209
  {
210
  $blocked = FALSE;
215
  }
216
 
217
  $allowse = get_option('blockcountry_allowse');
218
+ if (!iqblockcountry_is_login_page() && isset ($_SERVER['HTTP_USER_AGENT']) && iqblockcountry_check_searchengine($_SERVER['HTTP_USER_AGENT'], $allowse))
219
  {
220
  $blocked = FALSE;
221
  }
238
  $ip_address = $_SERVER['HTTP_X_REAL_IP'];
239
  } elseif ( isset($_SERVER['HTTP_CLIENT_IP']) && !empty($_SERVER['HTTP_CLIENT_IP']) ) {
240
  $ip_address = $_SERVER['HTTP_CLIENT_IP'];
241
+ } elseif ( isset($_SERVER['HTTP_X_TM_REMOTE_ADDR']) && !empty($_SERVER['HTTP_X_TM_REMOTE_ADDR']) ) {
242
+ $ip_address = $_SERVER['HTTP_X_TM_REMOTE_ADDR'];
243
  }
244
+
245
+
246
 
247
  $ip_address = iqblockcountry_get_ipaddress();
248
  $country = iqblockcountry_check_ipaddress($ip_address);
 
 
249
 
250
  if ((iqblockcountry_is_login_page() || is_admin()) && get_option('blockcountry_blockbackend'))
251
  {
321
  * Check if page is the login page
322
  */
323
  function iqblockcountry_is_login_page() {
 
324
  $found = FALSE;
325
  $pos = strpos( $_SERVER['REQUEST_URI'], 'wp-login' );
326
  if ($pos !== false)
libs/blockcountry-logging.php CHANGED
@@ -87,7 +87,6 @@ function iqblockcountry_clean_loggingdb()
87
  $table_name = $wpdb->prefix . "iqblock_logging_db";
88
  $sql = "DELETE FROM " . $table_name . " WHERE DATE_SUB(CURDATE(),INTERVAL 14 DAY) >= datetime;";
89
  $wpdb->query($sql);
90
-
91
  }
92
 
93
  /*
@@ -125,6 +124,6 @@ function iqblockcountry_logging_backend($ipaddress,$country,$banend)
125
 
126
  $urlRequested = (isset($_SERVER["REQUEST_URI"]) ? $_SERVER["REQUEST_URI"] : '/' );
127
 
128
- $table_name = $wpdb->prefix . "iqblock_logging_backend";
129
  $wpdb->insert($table_name,array ('datetime' => current_time('mysql'), 'ipaddress' => $ipaddress, 'country' => $country, 'banned' => $banend,'url' => $urlRequested));
130
  }
87
  $table_name = $wpdb->prefix . "iqblock_logging_db";
88
  $sql = "DELETE FROM " . $table_name . " WHERE DATE_SUB(CURDATE(),INTERVAL 14 DAY) >= datetime;";
89
  $wpdb->query($sql);
 
90
  }
91
 
92
  /*
124
 
125
  $urlRequested = (isset($_SERVER["REQUEST_URI"]) ? $_SERVER["REQUEST_URI"] : '/' );
126
 
127
+ $table_name = $wpdb->prefix . "iqblock_logging_backend";
128
  $wpdb->insert($table_name,array ('datetime' => current_time('mysql'), 'ipaddress' => $ipaddress, 'country' => $country, 'banned' => $banend,'url' => $urlRequested));
129
  }
libs/blockcountry-retrieve-geodb.php CHANGED
@@ -71,7 +71,7 @@ function iqblockcountry_download_geodb($url,$geofile,$displayerror)
71
  $fp = fopen ( $geofile, "w" );
72
  fwrite ( $fp, "$buffer" );
73
  fclose ( $fp );
74
- // update_option('blockcountry_lastupdate' , time());
75
  if($displayerror)
76
  {
77
  print "<p>" . _e('Finished downloading', 'iqblockcountry') . "</p>";
71
  $fp = fopen ( $geofile, "w" );
72
  fwrite ( $fp, "$buffer" );
73
  fclose ( $fp );
74
+ update_option('blockcountry_lastupdate' , time());
75
  if($displayerror)
76
  {
77
  print "<p>" . _e('Finished downloading', 'iqblockcountry') . "</p>";
libs/blockcountry-search-engines.php CHANGED
@@ -4,10 +4,14 @@ global $searchengines;
4
  $searchengines = array(
5
  "Ask" => "ask jeeves",
6
  "Bing" => "bingbot",
 
 
7
  "Duck Duck Go" => "duckduckbot",
8
  "Facebook" => "facebookexternalhit",
9
  "Google" => "googlebot",
10
  "MSN" => "msnbot",
 
 
11
  "Yahoo!" => "yahoo! slurp",
12
  "Yandex" => "yandexbot"
13
  );
4
  $searchengines = array(
5
  "Ask" => "ask jeeves",
6
  "Bing" => "bingbot",
7
+ "Bitly" => "bitlybot",
8
+ "Cliqz" => "cliqzbot",
9
  "Duck Duck Go" => "duckduckbot",
10
  "Facebook" => "facebookexternalhit",
11
  "Google" => "googlebot",
12
  "MSN" => "msnbot",
13
+ "TinEye" => "tineye-bot",
14
+ "Twitter" => "twitterbot",
15
  "Yahoo!" => "yahoo! slurp",
16
  "Yandex" => "yandexbot"
17
  );
libs/blockcountry-settings.php CHANGED
@@ -20,6 +20,7 @@ function iqblockcountry_register_mysettings()
20
  register_setting ( 'iqblockcountry-settings-group', 'blockcountry_blockmessage' );
21
  register_setting ( 'iqblockcountry-settings-group', 'blockcountry_redirect');
22
  register_setting ( 'iqblockcountry-settings-group', 'blockcountry_header');
 
23
  register_setting ( 'iqblockcountry-settings-group', 'blockcountry_tracking');
24
  register_setting ( 'iqblockcountry-settings-group', 'blockcountry_nrstatistics');
25
  register_setting ( 'iqblockcountry-settings-group', 'blockcountry_nrstatistics');
@@ -53,7 +54,7 @@ function iqblockcountry_get_options_arr() {
53
  'blockcountry_frontendblacklist','blockcountry_frontendwhitelist','blockcountry_blockmessage','blockcountry_blocklogin','blockcountry_blockfrontend',
54
  'blockcountry_blockbackend','blockcountry_header','blockcountry_blockpages','blockcountry_pages','blockcountry_blockcategories','blockcountry_categories',
55
  'blockcountry_tracking','blockcountry_blockhome','blockcountry_nrstatistics','blockcountry_apikey','blockcountry_redirect','blockcountry_allowse',
56
- 'blockcountry_backendlogging','blockcountry_automaticupdate');
57
  return apply_filters( 'iqblockcountry_options', $optarr );
58
  }
59
 
@@ -121,6 +122,7 @@ function iqblockcountry_uninstall() //deletes all the database entries that the
121
  delete_option('blockcountry_allowse');
122
  delete_option('blockcountry_backendlogging');
123
  delete_option('blockcountry_automaticupdate');
 
124
  }
125
 
126
 
@@ -161,7 +163,6 @@ function iqblockcountry_settings_tools() {
161
  if (is_array($backendbanlistip) && in_array($ip_address,$backendbanlistip)) {
162
  _e('This ip is present in the blacklist.', 'iqblockcountry');
163
  }
164
- // Add blacklist check
165
  }
166
  }
167
  }
@@ -177,7 +178,7 @@ function iqblockcountry_settings_tools() {
177
  $time = get_option('blockcountry_lastupdate');
178
 
179
  $lastupdated = date($dateformat,$time);
180
- if (get_option('blockcountry_automaticupdate') == 'on')
181
  {
182
  echo "<strong>"; _e('Automatic update is not setup. Last update: ', 'iqblockcountry'); echo $lastupdated; echo ".</strong>.<br />";
183
 
@@ -787,7 +788,14 @@ function iqblockcountry_settings_home()
787
  <td width="70%">
788
  <input type="checkbox" name="blockcountry_header" <?php checked('on', get_option('blockcountry_header'), true); ?> />
789
  </td></tr>
790
-
 
 
 
 
 
 
 
791
  <tr valign="top">
792
  <th width="30%"><?php _e('Number of rows on statistics page:', 'iqblockcountry'); ?><br />
793
  <em><?php _e('How many rows do you want to display on each tab the statistics page.', 'iqblockcountry'); ?></em></th>
20
  register_setting ( 'iqblockcountry-settings-group', 'blockcountry_blockmessage' );
21
  register_setting ( 'iqblockcountry-settings-group', 'blockcountry_redirect');
22
  register_setting ( 'iqblockcountry-settings-group', 'blockcountry_header');
23
+ register_setting ( 'iqblockcountry-settings-group', 'blockcountry_buffer');
24
  register_setting ( 'iqblockcountry-settings-group', 'blockcountry_tracking');
25
  register_setting ( 'iqblockcountry-settings-group', 'blockcountry_nrstatistics');
26
  register_setting ( 'iqblockcountry-settings-group', 'blockcountry_nrstatistics');
54
  'blockcountry_frontendblacklist','blockcountry_frontendwhitelist','blockcountry_blockmessage','blockcountry_blocklogin','blockcountry_blockfrontend',
55
  'blockcountry_blockbackend','blockcountry_header','blockcountry_blockpages','blockcountry_pages','blockcountry_blockcategories','blockcountry_categories',
56
  'blockcountry_tracking','blockcountry_blockhome','blockcountry_nrstatistics','blockcountry_apikey','blockcountry_redirect','blockcountry_allowse',
57
+ 'blockcountry_backendlogging','blockcountry_automaticupdate','blockcountry_buffer');
58
  return apply_filters( 'iqblockcountry_options', $optarr );
59
  }
60
 
122
  delete_option('blockcountry_allowse');
123
  delete_option('blockcountry_backendlogging');
124
  delete_option('blockcountry_automaticupdate');
125
+ delete_option('blockcountry_buffer');
126
  }
127
 
128
 
163
  if (is_array($backendbanlistip) && in_array($ip_address,$backendbanlistip)) {
164
  _e('This ip is present in the blacklist.', 'iqblockcountry');
165
  }
 
166
  }
167
  }
168
  }
178
  $time = get_option('blockcountry_lastupdate');
179
 
180
  $lastupdated = date($dateformat,$time);
181
+ if (get_option('blockcountry_automaticupdate') !== 'on')
182
  {
183
  echo "<strong>"; _e('Automatic update is not setup. Last update: ', 'iqblockcountry'); echo $lastupdated; echo ".</strong>.<br />";
184
 
788
  <td width="70%">
789
  <input type="checkbox" name="blockcountry_header" <?php checked('on', get_option('blockcountry_header'), true); ?> />
790
  </td></tr>
791
+
792
+ <tr valign="top">
793
+ <th width="30%"><?php _e('Buffer output?:', 'iqblockcountry'); ?><br />
794
+ <em><?php _e('You can use this option to buffer all output. This can be helpful in case you have "headers already sent" issues.', 'iqblockcountry'); ?></em></th>
795
+ <td width="70%">
796
+ <input type="checkbox" name="blockcountry_buffer" <?php checked('on', get_option('blockcountry_buffer'), true); ?> />
797
+ </td></tr>
798
+
799
  <tr valign="top">
800
  <th width="30%"><?php _e('Number of rows on statistics page:', 'iqblockcountry'); ?><br />
801
  <em><?php _e('How many rows do you want to display on each tab the statistics page.', 'iqblockcountry'); ?></em></th>
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.redeo.nl/plugins/donate
4
  Tags: spam, block, countries, country, comments, ban, geo, geo blocking, geo ip, block country, block countries, ban countries, ban country, blacklist, whitelist
5
  Requires at least: 3.5.2
6
  Tested up to: 4.0
7
- Stable tag: 1.1.14
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -161,7 +161,7 @@ If your download fails try to download it from home or work and upload it via FT
161
 
162
  This is possible if another plugin or your template sends out header information before this plugin does. You can deactivate and reactivate this plugin, it will try to load as the first plugin upon activation.
163
 
164
- If this does not help you out deselect "Send headers when user is blocked". This will no longer send headers but only display the block message. This however will mess up your website if you use caching software for your website.
165
 
166
  = What data get sends to you when I select "Allow tracking"? =
167
 
@@ -177,6 +177,16 @@ If storing or sharing an IP address is illegal in your country do not select thi
177
 
178
  == Changelog ==
179
 
 
 
 
 
 
 
 
 
 
 
180
  = 1.1.14 =
181
 
182
  * Bugfix: The plugin did not recognise the login page when installed to a subdirectory.
4
  Tags: spam, block, countries, country, comments, ban, geo, geo blocking, geo ip, block country, block countries, ban countries, ban country, blacklist, whitelist
5
  Requires at least: 3.5.2
6
  Tested up to: 4.0
7
+ Stable tag: 1.1.15
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
161
 
162
  This is possible if another plugin or your template sends out header information before this plugin does. You can deactivate and reactivate this plugin, it will try to load as the first plugin upon activation.
163
 
164
+ If this does not help you out deselectt "Send headers when user is blocked". This will no longer send headers but only display the block message. This however will mess up your website if you use caching software for your website.
165
 
166
  = What data get sends to you when I select "Allow tracking"? =
167
 
177
 
178
  == Changelog ==
179
 
180
+ = 1.1.15 =
181
+
182
+ * Bugfix: You can now set an option to buffer the output of the iQ Block Country plugin. If you use for instance NextGen Gallery you should not set this option as it will break uploading pictures to your gallery.
183
+ * Bugfix: Last time GeoIP databases were downloaded was wrong.
184
+ * Bugfix: If you configured auto-update of the GeoIP databases the tools tab showed that you did not configure auto update.
185
+ * Added check for HTTP_X_TM_REMOTE_ADDR to get real ip address of T-Mobile users.
186
+ * Added Twitter, Bitly, Cliqz and TinEye to the search engines list.
187
+ * New: No longer blocks category pages of categories you have not blocked.
188
+ * Bugfix: Added check if HTTP_USER_AGENT is set.
189
+
190
  = 1.1.14 =
191
 
192
  * Bugfix: The plugin did not recognise the login page when installed to a subdirectory.