iQ Block Country - Version 1.2.1

Version Description

  • New: Added Link Checker (https://validator.w3.org/checklink) as service.
  • New: Added Dead Link Checker as a service.
  • New: Added Broken Link Check as a service.
  • New: Added Pingdom as a service
  • Change: Adjusted loading chosen library (Credits to Uzzal)
  • Change: Display error when only the legacy GeoIP database exists and not the new GeoIP2 version
Download this release

Release Info

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

Code changes from version 1.2.0 to 1.2.1

iq-block-country.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: iQ Block Country
4
  Plugin URI: https://www.webence.nl/plugins/iq-block-country-the-wordpress-plugin-that-blocks-countries-for-you/
5
- Version: 1.2.0
6
  Author: Pascal
7
  Author URI: https://www.webence.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.
@@ -215,7 +215,7 @@ define("GEOIPAPIURLASIA","https://asia.geoip.webence.nl/geoipapi.php");
215
  define("GEOIPAPICHECKURL","https://eu.geoip.webence.nl/geoipapi-keycheck.php");
216
  define("ADMINAPICHECKURL","https://tracking.webence.nl/adminapi-keycheck.php");
217
  define("IPLOOKUPURL",'https://geoip.webence.nl/iplookup/iplookup.php');
218
- define("VERSION","1.2.0");
219
  define("DBVERSION","122");
220
  define("PLUGINPATH",plugin_dir_path( __FILE__ ));
221
 
@@ -290,13 +290,16 @@ if (isset($_POST['action']))
290
 
291
 
292
  function iq_add_my_scripts() {
293
- // Scripts
294
- wp_enqueue_script( 'chosen', CHOSENJS, array( 'jquery' ), false, true );
295
- wp_enqueue_script( 'custom', CHOSENCUSTOM, array( 'jquery', 'chosen' ), false, true );
 
 
 
296
  }
297
 
298
  add_action( 'admin_enqueue_scripts', 'iq_add_my_scripts' );
299
-
300
 
301
  /*
302
  * Check first if users want to block the backend.
2
  /*
3
  Plugin Name: iQ Block Country
4
  Plugin URI: https://www.webence.nl/plugins/iq-block-country-the-wordpress-plugin-that-blocks-countries-for-you/
5
+ Version: 1.2.1
6
  Author: Pascal
7
  Author URI: https://www.webence.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.
215
  define("GEOIPAPICHECKURL","https://eu.geoip.webence.nl/geoipapi-keycheck.php");
216
  define("ADMINAPICHECKURL","https://tracking.webence.nl/adminapi-keycheck.php");
217
  define("IPLOOKUPURL",'https://geoip.webence.nl/iplookup/iplookup.php');
218
+ define("VERSION","1.2.1");
219
  define("DBVERSION","122");
220
  define("PLUGINPATH",plugin_dir_path( __FILE__ ));
221
 
290
 
291
 
292
  function iq_add_my_scripts() {
293
+ $iqscreen = get_current_screen();
294
+ if ( $iqscreen->id == 'settings_page_iq-block-country/libs/blockcountry-settings' ) {
295
+ // Scripts
296
+ wp_enqueue_script( 'chosen', CHOSENJS, array( 'jquery' ), false, true );
297
+ wp_enqueue_script( 'custom', CHOSENCUSTOM, array( 'jquery', 'chosen' ), false, true );
298
+ }
299
  }
300
 
301
  add_action( 'admin_enqueue_scripts', 'iq_add_my_scripts' );
302
+
303
 
304
  /*
305
  * Check first if users want to block the backend.
lang/en_EN.mo CHANGED
Binary file
lang/en_EN.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: iQ Block Country\n"
4
  "POT-Creation-Date: 2016-08-02 20:45+0100\n"
5
- "PO-Revision-Date: 2018-07-21 15:00+0200\n"
6
  "Last-Translator: Pascal <pascal@webence.nl>\n"
7
  "Language-Team: iQ Block Country <info@redeo.nl>\n"
8
  "Language: en\n"
2
  msgstr ""
3
  "Project-Id-Version: iQ Block Country\n"
4
  "POT-Creation-Date: 2016-08-02 20:45+0100\n"
5
+ "PO-Revision-Date: 2019-01-01 11:03+0100\n"
6
  "Last-Translator: Pascal <pascal@webence.nl>\n"
7
  "Language-Team: iQ Block Country <info@redeo.nl>\n"
8
  "Language: en\n"
lang/iqblockcountry-nl_NL.mo CHANGED
Binary file
lang/iqblockcountry-nl_NL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: iQ Block Country\n"
4
- "POT-Creation-Date: 2018-07-21 15:00+0200\n"
5
- "PO-Revision-Date: 2018-07-21 15:01+0200\n"
6
  "Last-Translator: Pascal <pascal@webence.nl>\n"
7
  "Language-Team: iQ Block Country <support@webence.nl>\n"
8
  "Language: nl\n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "X-Poedit-SearchPathExcluded-1: old\n"
19
  "X-Poedit-SearchPathExcluded-2: admin\n"
20
 
21
- #: libs/blockcountry-settings.php:61
22
  msgid ""
23
  "The MaxMind GeoIP2 database does not exist. Please download this file "
24
  "manually or if you wish to use the GeoIP API get an API key from: "
@@ -26,24 +26,47 @@ msgstr ""
26
  "De MaxMind GeoIP2 database bestaat niet. Download dit bestand handmatig of "
27
  "indien je dit wenst kun je ook een GeoIP API key verkrijgen op: "
28
 
29
- #: libs/blockcountry-settings.php:62 libs/blockcountry-settings.php:100
 
30
  msgid "Please download the database from: "
31
  msgstr "Download de database vanaf:"
32
 
33
- #: libs/blockcountry-settings.php:64 libs/blockcountry-settings.php:102
34
- msgid "unzip the file and afterwards upload it to the following location: "
35
- msgstr "pak het bestand uit en upload dit bestand naar de volgende locatie:"
 
 
 
 
36
 
37
- #: libs/blockcountry-settings.php:67 libs/blockcountry-settings.php:105
 
38
  msgid "For more detailed instructions take a look at the documentation.."
39
  msgstr "Voor gedetaileerde instructies bekijk de documentatie."
40
 
41
- #: libs/blockcountry-settings.php:82
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  msgid "A caching plugin appears to be active on your WordPress installation."
43
  msgstr ""
44
  "Een caching plugin is waarschijnlijk actief in je WordPress installatie."
45
 
46
- #: libs/blockcountry-settings.php:83
47
  msgid ""
48
  "Caching plugins do not always cooperate nicely together with the iQ Block "
49
  "Country plugin which may lead to non blocked visitors getting a cached "
@@ -53,11 +76,11 @@ msgstr ""
53
  "wat kan leiden dat bezoekers welke niet geblokkeerd zijn de pagina dat ze "
54
  "geblokkeerd zijn getoond wordt vanuit de cache."
55
 
56
- #: libs/blockcountry-settings.php:84
57
  msgid "For more information visit the following page:"
58
  msgstr "Voor meer informatie bezoek de volgende pagina:"
59
 
60
- #: libs/blockcountry-settings.php:99
61
  msgid ""
62
  "The MaxMind GeoIP database is older than 3 months. Please update this file "
63
  "manually or if you wish to use the GeoIP API get an API key from: "
@@ -66,335 +89,339 @@ msgstr ""
66
  "handmatig of indien je gebruik wilt maken van de GeoIP API kun je een API "
67
  "sleutel verkrijgen van:"
68
 
69
- #: libs/blockcountry-settings.php:266
 
 
 
 
70
  msgid ""
71
  "Check which country belongs to an IP Address according to the current "
72
  "database."
73
  msgstr ""
74
  "Controleer welk land behoort tot een IP adres volgens de huidige database."
75
 
76
- #: libs/blockcountry-settings.php:271
77
  msgid "IP Address to check:"
78
  msgstr "IP adres om te controleren:"
79
 
80
- #: libs/blockcountry-settings.php:289
81
  msgid "No country for"
82
  msgstr "Geen land voor"
83
 
84
- #: libs/blockcountry-settings.php:289
85
  msgid "could be found. Or"
86
  msgstr "gevonden. Of"
87
 
88
- #: libs/blockcountry-settings.php:289
89
  msgid "is not a valid IPv4 or IPv6 IP address"
90
  msgstr "is geen valide IPv4 of IPv6 ip adres."
91
 
92
- #: libs/blockcountry-settings.php:294
93
  msgid "IP Adress"
94
  msgstr "IP Adres"
95
 
96
- #: libs/blockcountry-settings.php:294
97
  msgid "belongs to"
98
  msgstr "behoort tot"
99
 
100
- #: libs/blockcountry-settings.php:300 libs/blockcountry-settings.php:305
101
  msgid "This country is not permitted to visit the frontend of this website."
102
  msgstr ""
103
  "Dit land wordt niet toegestaan om de voorkant van deze website te bezoeken."
104
 
105
- #: libs/blockcountry-settings.php:314 libs/blockcountry-settings.php:321
106
  msgid "This country is not permitted to visit the backend of this website."
107
  msgstr ""
108
  "Dit land wordt niet toegestaan om de achterkant van deze website te bezoeken."
109
 
110
- #: libs/blockcountry-settings.php:327
111
  msgid "This IP address is present in the blacklist."
112
  msgstr "Dit IP adres staat op de zwarte lijst."
113
 
114
- #: libs/blockcountry-settings.php:333
115
  msgid "This IP address is present in the frontend blacklist."
116
  msgstr "Dit IP adres staat op de zwarte lijst voor de voorkant."
117
 
118
- #: libs/blockcountry-settings.php:338
119
  msgid "This IP address is present in the frontend whitelist."
120
  msgstr "Dit IP adres staat op de witte lijst voor de voorkant."
121
 
122
- #: libs/blockcountry-settings.php:343
123
  msgid "This IP address is present in the backend blacklist."
124
  msgstr "Dit IP adres staat op de zwarte lijst voor de achterkant."
125
 
126
- #: libs/blockcountry-settings.php:348
127
  msgid "This IP address is present in the backend whitelist."
128
  msgstr "Dit IP adres staat op de witte lijst voor de achterkant."
129
 
130
- #: libs/blockcountry-settings.php:355
131
  msgid "Check IP address"
132
  msgstr "Controleer IP adres"
133
 
134
- #: libs/blockcountry-settings.php:363
135
  msgid "Database information"
136
  msgstr "Database informatie"
137
 
138
- #: libs/blockcountry-settings.php:370
139
  msgid "IPv4 database exists. File date: "
140
  msgstr "IPv4 database bestaat. Bestands datum:"
141
 
142
- #: libs/blockcountry-settings.php:377 libs/blockcountry-settings.php:412
143
  msgid "Database is older than 3 months... Please update..."
144
  msgstr ""
145
  "Uw MaxMind GeoIP database is ouder dan 3 maanden. Update je database "
146
  "alstublieft."
147
 
148
- #: libs/blockcountry-settings.php:382
149
  msgid "IPv4 database does not exist."
150
  msgstr "IPv4 database bestaat niet."
151
 
152
- #: libs/blockcountry-settings.php:388
153
  msgid "IPv6 database exists. File date: "
154
  msgstr "IPv6 database bestaat. Bestands datum:"
155
 
156
- #: libs/blockcountry-settings.php:395
157
  msgid "Database is older than 3 months... Please update..."
158
  msgstr ""
159
  "Uw MaxMind GeoIP database is ouder dan 3 maanden. Update je database "
160
  "alstublieft."
161
 
162
- #: libs/blockcountry-settings.php:400
163
  msgid "IPv6 database does not exist."
164
  msgstr "IPv6 database bestaat niet."
165
 
166
- #: libs/blockcountry-settings.php:405
167
  msgid "GeoIP2 database exists. File date: "
168
  msgstr "GeoIP2 database bestaat. Bestands datum:"
169
 
170
- #: libs/blockcountry-settings.php:417
171
  msgid "GeoIP2 database does not exist."
172
  msgstr "GeoIP2 database bestaat niet."
173
 
174
- #: libs/blockcountry-settings.php:424
175
  msgid "Your GeoIP API key is valid till: "
176
  msgstr "Uw GeoIP API key is geldig tot:"
177
 
178
- #: libs/blockcountry-settings.php:431
179
  msgid "Active plugins"
180
  msgstr "Actieve plugins"
181
 
182
- #: libs/blockcountry-settings.php:438
183
  msgid "Plugin name"
184
  msgstr "Plugin naam"
185
 
186
- #: libs/blockcountry-settings.php:438
187
  msgid "Version"
188
  msgstr "Versie"
189
 
190
- #: libs/blockcountry-settings.php:438 libs/blockcountry-settings.php:1544
191
- #: libs/blockcountry-settings.php:1604
192
  msgid "URL"
193
  msgstr "URL"
194
 
195
- #: libs/blockcountry-settings.php:457
196
  msgid "none"
197
  msgstr "Geen"
198
 
199
- #: libs/blockcountry-settings.php:463 libs/blockcountry-settings.php:464
200
  msgid "unavailable"
201
  msgstr "niet beschikbaar"
202
 
203
- #: libs/blockcountry-settings.php:468
204
  msgid "File System Information"
205
  msgstr "File systeem informatie"
206
 
207
- #: libs/blockcountry-settings.php:471
208
  msgid "Website Root Folder"
209
  msgstr "Website root directory"
210
 
211
- #: libs/blockcountry-settings.php:472 libs/blockcountry-settings.php:666
212
  msgid "Document Root Path"
213
  msgstr "Document root pad"
214
 
215
- #: libs/blockcountry-settings.php:476
216
  msgid "Database Information"
217
  msgstr "Database informatie"
218
 
219
- #: libs/blockcountry-settings.php:478
220
  msgid "MySQL Database Version"
221
  msgstr "MySQL Database versie"
222
 
223
- #: libs/blockcountry-settings.php:479
224
  msgid "MySQL Client Version"
225
  msgstr "MySQL Client versie"
226
 
227
- #: libs/blockcountry-settings.php:480
228
  msgid "Database Host"
229
  msgstr "Database Host"
230
 
231
- #: libs/blockcountry-settings.php:486
232
  msgid "Not Set"
233
  msgstr "Niet gezet"
234
 
235
- #: libs/blockcountry-settings.php:488 libs/blockcountry-settings.php:568
236
- #: libs/blockcountry-settings.php:576 libs/blockcountry-settings.php:584
237
- #: libs/blockcountry-settings.php:592 libs/blockcountry-settings.php:601
238
- #: libs/blockcountry-settings.php:618
239
  msgid "Off"
240
  msgstr "Uit"
241
 
242
- #: libs/blockcountry-settings.php:491
243
  msgid "SQL Mode"
244
  msgstr "SQL Mode"
245
 
246
- #: libs/blockcountry-settings.php:495
247
  msgid "Server Information"
248
  msgstr "Server informatie"
249
 
250
- #: libs/blockcountry-settings.php:500
251
  msgid "Server IP Address"
252
  msgstr "Server IP Adres"
253
 
254
- #: libs/blockcountry-settings.php:502
255
  msgid "Server Type"
256
  msgstr "Server Type"
257
 
258
- #: libs/blockcountry-settings.php:503
259
  msgid "Operating System"
260
  msgstr "Operating System"
261
 
262
- #: libs/blockcountry-settings.php:504
263
  msgid "Browser Compression Supported"
264
  msgstr "Browser Compressie ondersteund"
265
 
266
- #: libs/blockcountry-settings.php:520
267
  msgid "undefined"
268
  msgstr "Ongedefinieerd"
269
 
270
- #: libs/blockcountry-settings.php:527
271
  msgid "PHP Process User (UID:GID)"
272
  msgstr "PHP Process User (UID:GID)"
273
 
274
- #: libs/blockcountry-settings.php:532
275
  msgid "PHP Information"
276
  msgstr "PHP Informatie"
277
 
278
- #: libs/blockcountry-settings.php:537
279
  msgid "PHP Version"
280
  msgstr "PHP versie"
281
 
282
- #: libs/blockcountry-settings.php:538
283
  msgid "PHP Memory Usage"
284
  msgstr "PHP Memory Usage"
285
 
286
- #: libs/blockcountry-settings.php:538
287
  msgid " MB"
288
  msgstr " MB"
289
 
290
- #: libs/blockcountry-settings.php:544 libs/blockcountry-settings.php:552
291
- #: libs/blockcountry-settings.php:560 libs/blockcountry-settings.php:609
292
  msgid "N/A"
293
  msgstr "N/A"
294
 
295
- #: libs/blockcountry-settings.php:547
296
  msgid "PHP Memory Limit"
297
  msgstr "PHP Memory Limit"
298
 
299
- #: libs/blockcountry-settings.php:555
300
  msgid "PHP Max Upload Size"
301
  msgstr "PHP Max Upload Size"
302
 
303
- #: libs/blockcountry-settings.php:563
304
  msgid "PHP Max Post Size"
305
  msgstr "PHP Max Post Size"
306
 
307
- #: libs/blockcountry-settings.php:566 libs/blockcountry-settings.php:574
308
- #: libs/blockcountry-settings.php:582 libs/blockcountry-settings.php:590
309
- #: libs/blockcountry-settings.php:599 libs/blockcountry-settings.php:616
310
  msgid "On"
311
  msgstr "Aan"
312
 
313
- #: libs/blockcountry-settings.php:571
314
  msgid "PHP Allow URL fopen"
315
  msgstr "PHP Allow URL fopen"
316
 
317
- #: libs/blockcountry-settings.php:579
318
  msgid "PHP Allow URL Include"
319
  msgstr "PHP Allow URL Include"
320
 
321
- #: libs/blockcountry-settings.php:587
322
  msgid "PHP Display Errors"
323
  msgstr "PHP Display Errors"
324
 
325
- #: libs/blockcountry-settings.php:595
326
  msgid "PHP Display Startup Errors"
327
  msgstr "PHP Display Startup Errors"
328
 
329
- #: libs/blockcountry-settings.php:604
330
  msgid "PHP Expose PHP"
331
  msgstr "PHP Expose PHP"
332
 
333
- #: libs/blockcountry-settings.php:612
334
  msgid "PHP Max Script Execution Time"
335
  msgstr "PHP Max Script Execution Time"
336
 
337
- #: libs/blockcountry-settings.php:613
338
  msgid "Seconds"
339
  msgstr "Seconden"
340
 
341
- #: libs/blockcountry-settings.php:621
342
  msgid "PHP open_basedir"
343
  msgstr "PHP open_basedir"
344
 
345
- #: libs/blockcountry-settings.php:624 libs/blockcountry-settings.php:632
346
  msgid "Yes"
347
  msgstr "Ja"
348
 
349
- #: libs/blockcountry-settings.php:626 libs/blockcountry-settings.php:634
350
  msgid "No"
351
  msgstr "Nee"
352
 
353
- #: libs/blockcountry-settings.php:629
354
  msgid "PHP XML Support"
355
  msgstr "PHP XML Support"
356
 
357
- #: libs/blockcountry-settings.php:637
358
  msgid "PHP IPTC Support"
359
  msgstr "PHP IPTC Support"
360
 
361
- #: libs/blockcountry-settings.php:639
362
  msgid "Disabled PHP Functions"
363
  msgstr "Disabled PHP Functions"
364
 
365
- #: libs/blockcountry-settings.php:646
366
  msgid "Wordpress info"
367
  msgstr "Wordpress Informatie"
368
 
369
- #: libs/blockcountry-settings.php:651
370
  msgid "is enabled"
371
  msgstr "is aangezet"
372
 
373
- #: libs/blockcountry-settings.php:653
374
  msgid "is disabled"
375
  msgstr "Is uitgezet"
376
 
377
- #: libs/blockcountry-settings.php:656
378
  msgid " Multisite"
379
  msgstr "Multisite"
380
 
381
- #: libs/blockcountry-settings.php:659
382
  msgid "are enabled"
383
  msgstr "is aangezet"
384
 
385
- #: libs/blockcountry-settings.php:661
386
  msgid "are disabled"
387
  msgstr "Is uitgezet"
388
 
389
- #: libs/blockcountry-settings.php:664
390
  msgid "Permalinks"
391
  msgstr "Permalinks"
392
 
393
- #: libs/blockcountry-settings.php:681
394
  msgid "Export"
395
  msgstr "Exporteren"
396
 
397
- #: libs/blockcountry-settings.php:682
398
  msgid ""
399
  "When you click on <tt>Backup all settings</tt> button a backup of the iQ "
400
  "Block Country configuration will be created."
@@ -402,7 +429,7 @@ msgstr ""
402
  "Wanneer je klikt op de <tt>Backup alle instellingen</tt> knop zal een backup "
403
  "van alle iQ Block Country instellingen worden gecreerd."
404
 
405
- #: libs/blockcountry-settings.php:683
406
  msgid ""
407
  "After exporting, you can either use the backup file to restore your settings "
408
  "on this site again or copy the settings to another WordPress site."
@@ -411,96 +438,96 @@ msgstr ""
411
  "te herstellen of je kunt het bestand gebruiken om je instellingen naar een "
412
  "andere WordPress site te exporteren."
413
 
414
- #: libs/blockcountry-settings.php:687
415
  msgid "Backup all settings"
416
  msgstr "Backup alle instellingen"
417
 
418
- #: libs/blockcountry-settings.php:694
419
  msgid "Import"
420
  msgstr "Importeer"
421
 
422
- #: libs/blockcountry-settings.php:695
423
  msgid "Click the browse button and choose a zip file that you exported before."
424
  msgstr ""
425
  "Klik op de Browse button and selecteer een zip file welke je eerder hebt "
426
  "geexporteerd."
427
 
428
- #: libs/blockcountry-settings.php:696
429
  msgid "Press Restore settings button, and let WordPress do the magic for you."
430
  msgstr ""
431
  "Druk op de herstel instellingen knop en laat WordPress haar magie voor je "
432
  "doen."
433
 
434
- #: libs/blockcountry-settings.php:701
435
  msgid "Restore settings"
436
  msgstr "Herstel instellingen"
437
 
438
- #: libs/blockcountry-settings.php:724 libs/blockcountry-settings.php:727
439
- #: libs/blockcountry-settings.php:736
440
  msgid "Something went wrong exporting this file"
441
  msgstr "Er is iets verkeerd gegaan met het exporteren van het bestand."
442
 
443
- #: libs/blockcountry-settings.php:739
444
  msgid "Exporting settings..."
445
  msgstr "Exporteer instellingen"
446
 
447
- #: libs/blockcountry-settings.php:754
448
  msgid "Something went wrong importing this file"
449
  msgstr "Er is iets verkeerd gegaan met het importeren van dit bestand"
450
 
451
- #: libs/blockcountry-settings.php:771
452
  msgid "All options are restored successfully."
453
  msgstr "Alle opties zijn succesvol hersteld"
454
 
455
- #: libs/blockcountry-settings.php:774
456
  msgid "Invalid file."
457
  msgstr "Ongeldig bestand"
458
 
459
- #: libs/blockcountry-settings.php:779
460
  msgid "No correct import or export option given."
461
  msgstr "Geen correcte importeer of exporteer optie gegeven."
462
 
463
- #: libs/blockcountry-settings.php:788
464
  msgid "Select which pages are blocked."
465
  msgstr "Selecteer welke pagina's geblokkeerd worden."
466
 
467
- #: libs/blockcountry-settings.php:795
468
  msgid "Do you want to block individual pages:"
469
  msgstr "Wil je individuele pagina's blokkeren:"
470
 
471
- #: libs/blockcountry-settings.php:796
472
  msgid "If you do not select this option all pages will be blocked."
473
  msgstr "Indien je deze optie niet selecteert worden alle pagina's geblokkeerd."
474
 
475
- #: libs/blockcountry-settings.php:801
476
  msgid "Select pages you want to block:"
477
  msgstr "Selecteer welke pagina's je wil blokkeren."
478
 
479
- #: libs/blockcountry-settings.php:823 libs/blockcountry-settings.php:877
480
- #: libs/blockcountry-settings.php:925 libs/blockcountry-settings.php:973
481
- #: libs/blockcountry-settings.php:1020 libs/blockcountry-settings.php:1152
482
- #: libs/blockcountry-settings.php:1281 libs/blockcountry-settings.php:1511
483
  msgid "Save Changes"
484
  msgstr "Bewaar wijzigingen"
485
 
486
- #: libs/blockcountry-settings.php:836
487
  msgid "Select which categories are blocked."
488
  msgstr "Selecteer welke categorieen geblokkeerd worden."
489
 
490
- #: libs/blockcountry-settings.php:843
491
  msgid "Do you want to block individual categories:"
492
  msgstr "Wil je individuele categorieen blokkeren:"
493
 
494
- #: libs/blockcountry-settings.php:844 libs/blockcountry-settings.php:898
495
  msgid "If you do not select this option all blog articles will be blocked."
496
  msgstr ""
497
  "Indien je deze optie niet selecteert worden alle blog artikelen geblokkeerd."
498
 
499
- #: libs/blockcountry-settings.php:849
500
  msgid "Do you want to block the homepage:"
501
  msgstr "Wil je je homepage blokkeren:"
502
 
503
- #: libs/blockcountry-settings.php:850
504
  msgid ""
505
  "If you do not select this option visitors will not be blocked from your "
506
  "homepage regardless of the categories you select."
@@ -509,43 +536,43 @@ msgstr ""
509
  "geblokkeerd van het bezoeken van je homepagina ongeacht welke categorieen je "
510
  "selecteert."
511
 
512
- #: libs/blockcountry-settings.php:855
513
  msgid "Select categories you want to block:"
514
  msgstr "Selecteer welke categorieen je wil blokkeren."
515
 
516
- #: libs/blockcountry-settings.php:890
517
  msgid "Select which tags are blocked."
518
  msgstr "Selecteer welke tags geblokkeerd moeten worden."
519
 
520
- #: libs/blockcountry-settings.php:897
521
  msgid "Do you want to block individual tags:"
522
  msgstr "Wil je individuele tags blokkeren?:"
523
 
524
- #: libs/blockcountry-settings.php:903
525
  msgid "Select tags you want to block:"
526
  msgstr "Selecteer welke tags geblokkeerd moeten worden."
527
 
528
- #: libs/blockcountry-settings.php:939
529
  msgid "Select which post types are blocked."
530
  msgstr "Selecteer welke post types geblokkeerd worden."
531
 
532
- #: libs/blockcountry-settings.php:946
533
  msgid "Do you want to block individual post types:"
534
  msgstr "Wil je individuele post types blokkeren:"
535
 
536
- #: libs/blockcountry-settings.php:951
537
  msgid "Select post types you want to block:"
538
  msgstr "Selecteer welke post types je wil blokkeren."
539
 
540
- #: libs/blockcountry-settings.php:988
541
  msgid "Select which services are allowed."
542
  msgstr "Selecteer welke diensten je wilt toestaan."
543
 
544
- #: libs/blockcountry-settings.php:995
545
  msgid "Select which services you want to allow:"
546
  msgstr "Selecteer welke diensten je wilt toestaan:"
547
 
548
- #: libs/blockcountry-settings.php:996
549
  msgid ""
550
  "This will allow a service like for instance a search engine to your site "
551
  "despite if you blocked the country."
@@ -553,50 +580,50 @@ msgstr ""
553
  "Dit staat een dienst toe zoals bijvoorbeeld een zoek machine ongeacht of je "
554
  "het land van de zoekmachine hebt geblokkeerd."
555
 
556
- #: libs/blockcountry-settings.php:997
557
  msgid "Please note the \"Search Engine Visibility\" should not be selected in "
558
  msgstr ""
559
  "Let op: \"Zoekmachine zichtbaarheid\" dient niet geselecteer te staan op "
560
 
561
- #: libs/blockcountry-settings.php:997
562
  msgid "reading settings."
563
  msgstr "lezen instellingen"
564
 
565
- #: libs/blockcountry-settings.php:1035
566
  msgid "Frontend options"
567
  msgstr "Voorkant opties"
568
 
569
- #: libs/blockcountry-settings.php:1062
570
  msgid ""
571
  "Do not block visitors that are logged in from visiting frontend website:"
572
  msgstr ""
573
  "Blokkeer geen bezoekers welke ingelogd zijn van het bezoeken van de voorkant:"
574
 
575
- #: libs/blockcountry-settings.php:1068
576
  msgid "Block visitors from visiting the frontend of your website:"
577
  msgstr "Blokkeer bezoekers van het bezoeken van de voorkant van je website:"
578
 
579
- #: libs/blockcountry-settings.php:1074
580
  msgid "Block visitors from using the search function of your website:"
581
  msgstr ""
582
  "Blokkeer bezoekers van het bezoeken van de zoek functie van je website:"
583
 
584
- #: libs/blockcountry-settings.php:1080
585
  msgid ""
586
  "Select the countries that should be blocked from visiting your frontend:"
587
  msgstr ""
588
  "Selecteer de landen welke geblokkeerd moeten worden voor het bezoeken van de "
589
  "voorkant van je website:"
590
 
591
- #: libs/blockcountry-settings.php:1081
592
  msgid "Use the CTRL key to select multiple countries"
593
  msgstr "Gebruik de CTRL toets om meerdere landen te selecteren"
594
 
595
- #: libs/blockcountry-settings.php:1123 libs/blockcountry-settings.php:1257
596
  msgid "Inverse the selection above:"
597
  msgstr "Keer bovenstaande selectie om:"
598
 
599
- #: libs/blockcountry-settings.php:1124 libs/blockcountry-settings.php:1258
600
  msgid ""
601
  "If you select this option only the countries that are selected are "
602
  "<em>allowed</em>."
@@ -604,56 +631,56 @@ msgstr ""
604
  "Indien je deze optie selecteert de zijn de landen die hierboven geselecteerd "
605
  "<em>toegestaan</em>."
606
 
607
- #: libs/blockcountry-settings.php:1129
608
  msgid "Block tag pages:"
609
  msgstr "Blokkeer tag pagina's"
610
 
611
- #: libs/blockcountry-settings.php:1130
612
  msgid "If you select this option tag pages will be blocked."
613
  msgstr "Indien je deze optie selecteert worden tag pagina's geblokkeerd."
614
 
615
- #: libs/blockcountry-settings.php:1135
616
  msgid "Frontend whitelist IPv4 and/or IPv6 addresses:"
617
  msgstr ""
618
  "Whitelist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
619
 
620
- #: libs/blockcountry-settings.php:1135 libs/blockcountry-settings.php:1143
621
- #: libs/blockcountry-settings.php:1264 libs/blockcountry-settings.php:1272
622
  msgid "Use a semicolon (;) to separate IP addresses"
623
  msgstr "Gebruik een puntkomma (;) om adressen van elkaar te scheiden"
624
 
625
- #: libs/blockcountry-settings.php:1135 libs/blockcountry-settings.php:1143
626
- #: libs/blockcountry-settings.php:1264 libs/blockcountry-settings.php:1272
627
  msgid ""
628
  "This field accepts single IP addresses as well as ranges in CIDR format."
629
  msgstr ""
630
  "Dit veld accepteert zowel enkele IP adressen als IP reeksen in CIDR formaat."
631
 
632
- #: libs/blockcountry-settings.php:1143
633
  msgid "Frontend blacklist IPv4 and/or IPv6 addresses:"
634
  msgstr ""
635
  "Blacklist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
636
 
637
- #: libs/blockcountry-settings.php:1172
638
  msgid "Backend Options"
639
  msgstr "Achterkant opties"
640
 
641
- #: libs/blockcountry-settings.php:1200
642
  msgid ""
643
  "Block visitors from visiting the backend (administrator) of your website:"
644
  msgstr ""
645
  "Blokkeer bezoekers van het bezoeken van de achterkant (administratie "
646
  "gedeelte) van je website:"
647
 
648
- #: libs/blockcountry-settings.php:1208
649
  msgid "Your IP address is"
650
  msgstr "Je IP adres is"
651
 
652
- #: libs/blockcountry-settings.php:1208
653
  msgid "The country that is listed for this IP address is"
654
  msgstr "Het land waar dit adres toe behoort is"
655
 
656
- #: libs/blockcountry-settings.php:1209
657
  msgid ""
658
  "Do <strong>NOT</strong> set the 'Block visitors from visiting the backend "
659
  "(administrator) of your website' and also select"
@@ -661,11 +688,11 @@ msgstr ""
661
  "Selecteer <strong>NIET</strong> \"Blokkeer bezoekers van het bezoeken van de "
662
  "achterkant (administratie gedeelte) van je website\" en"
663
 
664
- #: libs/blockcountry-settings.php:1209
665
  msgid "below."
666
  msgstr "hier beneden."
667
 
668
- #: libs/blockcountry-settings.php:1210
669
  msgid ""
670
  "You will NOT be able to login the next time if you DO block your own country "
671
  "from visiting the backend."
@@ -673,44 +700,44 @@ msgstr ""
673
  "Het zal daarna niet meer mogelijk zijn om nog in te loggen als je je eigen "
674
  "land blokkeert van het bezoeken van de achterkant van je website."
675
 
676
- #: libs/blockcountry-settings.php:1215
677
  msgid "Select the countries that should be blocked from visiting your backend:"
678
  msgstr ""
679
  "Selecteer de landen welke geblokkeerd moeten worden voor het bezoeken van de "
680
  "achterkant (administratie gedeelte) van je website:"
681
 
682
- #: libs/blockcountry-settings.php:1216
683
  msgid "Use the x behind the country to remove a country from this blocklist."
684
  msgstr ""
685
  "Gebruik de x achter een land om het land te verwijderen uit deze lijst."
686
 
687
- #: libs/blockcountry-settings.php:1264
688
  msgid "Backend whitelist IPv4 and/or IPv6 addresses:"
689
  msgstr ""
690
  "Whitelist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
691
 
692
- #: libs/blockcountry-settings.php:1272
693
  msgid "Backend blacklist IPv4 and/or IPv6 addresses:"
694
  msgstr ""
695
  "Blacklist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
696
 
697
- #: libs/blockcountry-settings.php:1314
698
  msgid "Overall statistics since start"
699
  msgstr "Statistieken sinds het begin"
700
 
701
- #: libs/blockcountry-settings.php:1317
702
  msgid "visitors blocked from the backend."
703
  msgstr "bezoekers geblokkeerd op de achterkant."
704
 
705
- #: libs/blockcountry-settings.php:1319
706
  msgid "visitors blocked from the frontend."
707
  msgstr "bezoekers geblokkeerd op de voorkant."
708
 
709
- #: libs/blockcountry-settings.php:1336
710
  msgid "Block type"
711
  msgstr "Blokkeer type"
712
 
713
- #: libs/blockcountry-settings.php:1338
714
  msgid ""
715
  "You should choose one of the 3 block options below. This wil either show a "
716
  "block message, redirect to an internal page or redirect to an external page."
@@ -719,15 +746,15 @@ msgstr ""
719
  "bericht, stuurt de bezoeker door naar een interne pagina of stuurt de "
720
  "bezoeker door naar een externe pagina."
721
 
722
- #: libs/blockcountry-settings.php:1343
723
  msgid "Message to display when people are blocked:"
724
  msgstr "Welk bericht wil je tonen aan bezoekers welke geblokkeerd worden:"
725
 
726
- #: libs/blockcountry-settings.php:1354
727
  msgid "Page to redirect to:"
728
  msgstr "Naar welke pagina wilt u bezoekers toesturen:"
729
 
730
- #: libs/blockcountry-settings.php:1355
731
  msgid ""
732
  "If you select a page here blocked visitors will be redirected to this page "
733
  "instead of displaying above block message."
@@ -736,15 +763,15 @@ msgstr ""
736
  "doorgestuurd naar deze pagina anders wordt bovestaande tekst getoond aan "
737
  "bezoekers."
738
 
739
- #: libs/blockcountry-settings.php:1361
740
  msgid "Choose a page..."
741
  msgstr "Kies een pagina..."
742
 
743
- #: libs/blockcountry-settings.php:1376
744
  msgid "URL to redirect to:"
745
  msgstr "Naar welke URL wilt u geblokkerde bezoekers verwijzen:"
746
 
747
- #: libs/blockcountry-settings.php:1377
748
  msgid ""
749
  "If you enter a URL here blocked visitors will be redirected to this URL "
750
  "instead of displaying above block message or redirected to a local page."
@@ -753,15 +780,15 @@ msgstr ""
753
  "naar deze url anders wordt bovestaande blokkeer tekst getoond aan bezoekers "
754
  "of worden bezoekers doorverwezen naar de geselecteerde pagina."
755
 
756
- #: libs/blockcountry-settings.php:1384
757
  msgid "General settings"
758
  msgstr "Algemene instellingen"
759
 
760
- #: libs/blockcountry-settings.php:1388
761
  msgid "Send headers when user is blocked:"
762
  msgstr "Stuur headers wanneer een gebruiker is geblokkeerd:"
763
 
764
- #: libs/blockcountry-settings.php:1389
765
  msgid ""
766
  "Under normal circumstances you should keep this selected! Only if you have "
767
  "\"Cannot modify header information - headers already sent\" errors or if you "
@@ -771,11 +798,11 @@ msgstr ""
771
  "deze alleen indien je \"Cannot modify header information - headers already "
772
  "sent\" foutmeldingen krijgt of indien je weet wat je doet."
773
 
774
- #: libs/blockcountry-settings.php:1395
775
  msgid "Buffer output?:"
776
  msgstr "Buffer output?"
777
 
778
- #: libs/blockcountry-settings.php:1396
779
  msgid ""
780
  "You can use this option to buffer all output. This can be helpful in case "
781
  "you have \"headers already sent\" issues."
@@ -783,11 +810,11 @@ msgstr ""
783
  "Je kunt deze optie gebruiken om alle output te bufferen. Dit kan helpen "
784
  "indien je \"headers already sent\" problemen hebt."
785
 
786
- #: libs/blockcountry-settings.php:1402
787
  msgid "Do not log IP addresses:"
788
  msgstr "Log geen IP adressen"
789
 
790
- #: libs/blockcountry-settings.php:1403
791
  msgid ""
792
  "Check this box if the laws in your country do not permit you to log IP "
793
  "addresses or if you do not want to log the ip addresses."
@@ -796,50 +823,50 @@ msgstr ""
796
  "adressen vast te leggen of indien je zelf deze informatie niet wilt "
797
  "vastleggen."
798
 
799
- #: libs/blockcountry-settings.php:1409
800
  msgid "Do not block admin-ajax.php:"
801
  msgstr "Blokkeer admin-ajax.php niet:"
802
 
803
- #: libs/blockcountry-settings.php:1410
804
  msgid "Check this box if you use a plugin that uses admin-ajax.php."
805
  msgstr ""
806
  "Selecteer deze optie indien je een plugin gebruikt welke gebruik maakt van "
807
  "admin-ajax.php."
808
 
809
- #: libs/blockcountry-settings.php:1419
810
  msgid "Number of rows on logging tab:"
811
  msgstr "Aantal regels op het statistieken tabblad:"
812
 
813
- #: libs/blockcountry-settings.php:1420
814
  msgid "How many rows do you want to display on each column on the logging tab."
815
  msgstr "Hoeveel regels wil je tonen in elke kolom op de statistieken tabblad."
816
 
817
- #: libs/blockcountry-settings.php:1435
818
  msgid "Number of days to keep logging:"
819
  msgstr "Aantal dagen dat je logs wilt bewaren:"
820
 
821
- #: libs/blockcountry-settings.php:1436
822
  msgid "How many days do you want to keep the logging used for the logging tab."
823
  msgstr ""
824
  "Hoeveel dagen wil je de logs bewaren welke gebruikt wordt op het "
825
  "statistieken tabblad."
826
 
827
- #: libs/blockcountry-settings.php:1451
828
  msgid "Do not lookup hosts on the logging tab:"
829
  msgstr "Zoek niet de hostnaam op op het statistieken tabblad."
830
 
831
- #: libs/blockcountry-settings.php:1452
832
  msgid ""
833
  "On some hosting environments looking up hosts may slow down the logging tab."
834
  msgstr ""
835
  "Op sommige hosting omgevingen zal het opzoeken van hostnamen zorgen voor "
836
  "vertraging op het statistieken tabblad."
837
 
838
- #: libs/blockcountry-settings.php:1458
839
  msgid "Allow tracking:"
840
  msgstr "Sta traceren toe:"
841
 
842
- #: libs/blockcountry-settings.php:1459
843
  msgid ""
844
  "This sends only the IP address and the number of attempts this ip address "
845
  "tried to login to your backend and was blocked doing so to a central server. "
@@ -852,11 +879,11 @@ msgstr ""
852
  "ons om beter inzicht te krijgen in de landen waarvandaan een hoop hack "
853
  "pogingen worden gedaan. "
854
 
855
- #: libs/blockcountry-settings.php:1465
856
  msgid "GeoIP API Key:"
857
  msgstr "GeoIP API sleutel:"
858
 
859
- #: libs/blockcountry-settings.php:1466
860
  msgid ""
861
  "If for some reason you cannot or do not want to download the MaxMind GeoIP "
862
  "databases you will need an API key for the GeoIP api.<br />You can get an "
@@ -866,19 +893,19 @@ msgstr ""
866
  "Maxmind GeoIP heb je een API sleutelnodig voor de GeoIP api.<br />Je kunt "
867
  "een API sleutel verkrijgen op:"
868
 
869
- #: libs/blockcountry-settings.php:1474
870
  msgid "GeoIP API Key Server Location:"
871
  msgstr "GeoIP API sleutel server locatie:"
872
 
873
- #: libs/blockcountry-settings.php:1475
874
  msgid "Choose a location closest to your own location."
875
  msgstr "Kies een land welke het dichtsbij is bij je eigen land."
876
 
877
- #: libs/blockcountry-settings.php:1486
878
  msgid "Admin block API Key:"
879
  msgstr "Admin block API Sleutel:"
880
 
881
- #: libs/blockcountry-settings.php:1487
882
  msgid ""
883
  "For additional security you can protect your backend from known IP addresses "
884
  "who have made hack attempts at other WordPress sites.<br />You can get more "
@@ -889,21 +916,21 @@ msgstr ""
889
  "tegen andere WordPress sites.<br />Je kunt meer informatie hierover vinden "
890
  "en een API key verkrijgen op:"
891
 
892
- #: libs/blockcountry-settings.php:1495
893
  msgid "Accessibility options:"
894
  msgstr "Toegankelijkheids opties:"
895
 
896
- #: libs/blockcountry-settings.php:1496
897
  msgid "Set this option if you cannot use the default country selection box."
898
  msgstr ""
899
  "Selecteer deze optie indien je de landen standaard selectie methode niet "
900
  "kunt gebruiken. "
901
 
902
- #: libs/blockcountry-settings.php:1502
903
  msgid "Log all visits:"
904
  msgstr "Log alle bezoekers:"
905
 
906
- #: libs/blockcountry-settings.php:1503
907
  msgid ""
908
  "This logs all visits despite if they are blocked or not. This is only for "
909
  "debugging purposes."
@@ -911,72 +938,72 @@ msgstr ""
911
  "Dit logt alle bezoekers ondanks of ze geblokkeerd zijn of niet. Dit is "
912
  "alleen voor debugging."
913
 
914
- #: libs/blockcountry-settings.php:1529
915
  msgid "Last blocked visits"
916
  msgstr "Laatste geblokkeerde bezoekers"
917
 
918
- #: libs/blockcountry-settings.php:1544
919
  msgid "Date / Time"
920
  msgstr "Datum / Tijd"
921
 
922
- #: libs/blockcountry-settings.php:1544 libs/blockcountry-settings.php:1583
923
  msgid "IP Address"
924
  msgstr "IP adres"
925
 
926
- #: libs/blockcountry-settings.php:1544 libs/blockcountry-settings.php:1583
927
  msgid "Hostname"
928
  msgstr "Hostnaam"
929
 
930
- #: libs/blockcountry-settings.php:1544 libs/blockcountry-settings.php:1570
931
  msgid "Country"
932
  msgstr "Land"
933
 
934
- #: libs/blockcountry-settings.php:1544
935
  msgid "Frontend/Backend"
936
  msgstr "Voorkant/Achterkant"
937
 
938
- #: libs/blockcountry-settings.php:1561 libs/blockcountry-settings.php:1671
939
  msgid "Frontend"
940
  msgstr "Voorkant"
941
 
942
- #: libs/blockcountry-settings.php:1561
943
  msgid "Backend banlist"
944
  msgstr "Achterkant banlist"
945
 
946
- #: libs/blockcountry-settings.php:1561
947
  msgid "Backend & Backend banlist"
948
  msgstr "Achterkant & Achterkant banlist"
949
 
950
- #: libs/blockcountry-settings.php:1561 libs/blockcountry-settings.php:1672
951
  msgid "Backend"
952
  msgstr "Achterkant"
953
 
954
- #: libs/blockcountry-settings.php:1568
955
  msgid "Top countries that are blocked"
956
  msgstr "Top landen welke zijn geblokkeerd"
957
 
958
- #: libs/blockcountry-settings.php:1570 libs/blockcountry-settings.php:1583
959
- #: libs/blockcountry-settings.php:1604
960
  msgid "# of blocked attempts"
961
  msgstr "# of geblokkeerde pogingen"
962
 
963
- #: libs/blockcountry-settings.php:1581
964
  msgid "Top hosts that are blocked"
965
  msgstr "Top hosts welke geblokkeerd zijn"
966
 
967
- #: libs/blockcountry-settings.php:1602
968
  msgid "Top URLs that are blocked"
969
  msgstr "Top URLs welke geblokkeerd zijn"
970
 
971
- #: libs/blockcountry-settings.php:1618
972
  msgid "Clear database"
973
  msgstr "Leeg database"
974
 
975
- #: libs/blockcountry-settings.php:1641
976
  msgid "Download as CSV file"
977
  msgstr "Download als een csv bestand."
978
 
979
- #: libs/blockcountry-settings.php:1648
980
  msgid ""
981
  "You are not logging any information. Please uncheck the option 'Do not log "
982
  "IP addresses' if this is not what you want."
@@ -984,39 +1011,39 @@ msgstr ""
984
  "Je logt geen informatie. Deselecteer alstublieft de optie 'Log geen IP "
985
  "adressen' indien dit niet is wat je wilt."
986
 
987
- #: libs/blockcountry-settings.php:1670
988
  msgid "Home"
989
  msgstr "Home"
990
 
991
- #: libs/blockcountry-settings.php:1673
992
  msgid "Pages"
993
  msgstr "Pagina's"
994
 
995
- #: libs/blockcountry-settings.php:1674
996
  msgid "Categories"
997
  msgstr "Categorieen"
998
 
999
- #: libs/blockcountry-settings.php:1675
1000
  msgid "Tags"
1001
  msgstr "Tags"
1002
 
1003
- #: libs/blockcountry-settings.php:1675
1004
  msgid "Post types"
1005
  msgstr "Post types"
1006
 
1007
- #: libs/blockcountry-settings.php:1676
1008
  msgid "Services"
1009
  msgstr "Diensten"
1010
 
1011
- #: libs/blockcountry-settings.php:1677
1012
  msgid "Tools"
1013
  msgstr "Gereedschap"
1014
 
1015
- #: libs/blockcountry-settings.php:1678
1016
  msgid "Logging"
1017
  msgstr "Statistieken"
1018
 
1019
- #: libs/blockcountry-settings.php:1679
1020
  msgid "Import/Export"
1021
  msgstr "Importeren/Exporteren"
1022
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: iQ Block Country\n"
4
+ "POT-Creation-Date: 2019-01-01 11:03+0100\n"
5
+ "PO-Revision-Date: 2019-01-01 11:06+0100\n"
6
  "Last-Translator: Pascal <pascal@webence.nl>\n"
7
  "Language-Team: iQ Block Country <support@webence.nl>\n"
8
  "Language: nl\n"
18
  "X-Poedit-SearchPathExcluded-1: old\n"
19
  "X-Poedit-SearchPathExcluded-2: admin\n"
20
 
21
+ #: libs/blockcountry-settings.php:66
22
  msgid ""
23
  "The MaxMind GeoIP2 database does not exist. Please download this file "
24
  "manually or if you wish to use the GeoIP API get an API key from: "
26
  "De MaxMind GeoIP2 database bestaat niet. Download dit bestand handmatig of "
27
  "indien je dit wenst kun je ook een GeoIP API key verkrijgen op: "
28
 
29
+ #: libs/blockcountry-settings.php:67 libs/blockcountry-settings.php:91
30
+ #: libs/blockcountry-settings.php:130
31
  msgid "Please download the database from: "
32
  msgstr "Download de database vanaf:"
33
 
34
+ #: libs/blockcountry-settings.php:69 libs/blockcountry-settings.php:93
35
+ msgid ""
36
+ "unzip the file and afterwards upload the GeoLite2-Country.mmdb file to the "
37
+ "following location: "
38
+ msgstr ""
39
+ "pak het bestand uit en upload het GeoLite2-Country.mmdb bestand naar de "
40
+ "volgende locatie:"
41
 
42
+ #: libs/blockcountry-settings.php:72 libs/blockcountry-settings.php:96
43
+ #: libs/blockcountry-settings.php:135
44
  msgid "For more detailed instructions take a look at the documentation.."
45
  msgstr "Voor gedetaileerde instructies bekijk de documentatie."
46
 
47
+ #: libs/blockcountry-settings.php:89
48
+ msgid ""
49
+ "Please upgrade your old GeoIP database. This database is no longer "
50
+ "maintained by MaxMind and everyone should upgrade to the GeoIP2 database."
51
+ "<br />"
52
+ msgstr ""
53
+ "Upgrade uw oude GeoIP database. Deze database wordt niet langer bijgewerkt "
54
+ "door MaxMind en iedereen zou moeten upgraden naar de GeoIP2 database.<br />"
55
+
56
+ #: libs/blockcountry-settings.php:90
57
+ msgid ""
58
+ "The MaxMind GeoIP2 database does not exist yet . Please download this file "
59
+ "manually or if you wish to use the GeoIP API get an API key from: "
60
+ msgstr ""
61
+ "De MaxMind GeoIP2 database bestaat nog niet. Download dit bestand handmatig "
62
+ "of indien je dit wenst kun je ook een GeoIP API key verkrijgen op: "
63
+
64
+ #: libs/blockcountry-settings.php:112
65
  msgid "A caching plugin appears to be active on your WordPress installation."
66
  msgstr ""
67
  "Een caching plugin is waarschijnlijk actief in je WordPress installatie."
68
 
69
+ #: libs/blockcountry-settings.php:113
70
  msgid ""
71
  "Caching plugins do not always cooperate nicely together with the iQ Block "
72
  "Country plugin which may lead to non blocked visitors getting a cached "
76
  "wat kan leiden dat bezoekers welke niet geblokkeerd zijn de pagina dat ze "
77
  "geblokkeerd zijn getoond wordt vanuit de cache."
78
 
79
+ #: libs/blockcountry-settings.php:114
80
  msgid "For more information visit the following page:"
81
  msgstr "Voor meer informatie bezoek de volgende pagina:"
82
 
83
+ #: libs/blockcountry-settings.php:129
84
  msgid ""
85
  "The MaxMind GeoIP database is older than 3 months. Please update this file "
86
  "manually or if you wish to use the GeoIP API get an API key from: "
89
  "handmatig of indien je gebruik wilt maken van de GeoIP API kun je een API "
90
  "sleutel verkrijgen van:"
91
 
92
+ #: libs/blockcountry-settings.php:132
93
+ msgid "unzip the file and afterwards upload it to the following location: "
94
+ msgstr "pak het bestand uit en upload dit bestand naar de volgende locatie:"
95
+
96
+ #: libs/blockcountry-settings.php:296
97
  msgid ""
98
  "Check which country belongs to an IP Address according to the current "
99
  "database."
100
  msgstr ""
101
  "Controleer welk land behoort tot een IP adres volgens de huidige database."
102
 
103
+ #: libs/blockcountry-settings.php:301
104
  msgid "IP Address to check:"
105
  msgstr "IP adres om te controleren:"
106
 
107
+ #: libs/blockcountry-settings.php:319
108
  msgid "No country for"
109
  msgstr "Geen land voor"
110
 
111
+ #: libs/blockcountry-settings.php:319
112
  msgid "could be found. Or"
113
  msgstr "gevonden. Of"
114
 
115
+ #: libs/blockcountry-settings.php:319
116
  msgid "is not a valid IPv4 or IPv6 IP address"
117
  msgstr "is geen valide IPv4 of IPv6 ip adres."
118
 
119
+ #: libs/blockcountry-settings.php:324
120
  msgid "IP Adress"
121
  msgstr "IP Adres"
122
 
123
+ #: libs/blockcountry-settings.php:324
124
  msgid "belongs to"
125
  msgstr "behoort tot"
126
 
127
+ #: libs/blockcountry-settings.php:330 libs/blockcountry-settings.php:335
128
  msgid "This country is not permitted to visit the frontend of this website."
129
  msgstr ""
130
  "Dit land wordt niet toegestaan om de voorkant van deze website te bezoeken."
131
 
132
+ #: libs/blockcountry-settings.php:344 libs/blockcountry-settings.php:351
133
  msgid "This country is not permitted to visit the backend of this website."
134
  msgstr ""
135
  "Dit land wordt niet toegestaan om de achterkant van deze website te bezoeken."
136
 
137
+ #: libs/blockcountry-settings.php:357
138
  msgid "This IP address is present in the blacklist."
139
  msgstr "Dit IP adres staat op de zwarte lijst."
140
 
141
+ #: libs/blockcountry-settings.php:363
142
  msgid "This IP address is present in the frontend blacklist."
143
  msgstr "Dit IP adres staat op de zwarte lijst voor de voorkant."
144
 
145
+ #: libs/blockcountry-settings.php:368
146
  msgid "This IP address is present in the frontend whitelist."
147
  msgstr "Dit IP adres staat op de witte lijst voor de voorkant."
148
 
149
+ #: libs/blockcountry-settings.php:373
150
  msgid "This IP address is present in the backend blacklist."
151
  msgstr "Dit IP adres staat op de zwarte lijst voor de achterkant."
152
 
153
+ #: libs/blockcountry-settings.php:378
154
  msgid "This IP address is present in the backend whitelist."
155
  msgstr "Dit IP adres staat op de witte lijst voor de achterkant."
156
 
157
+ #: libs/blockcountry-settings.php:385
158
  msgid "Check IP address"
159
  msgstr "Controleer IP adres"
160
 
161
+ #: libs/blockcountry-settings.php:393
162
  msgid "Database information"
163
  msgstr "Database informatie"
164
 
165
+ #: libs/blockcountry-settings.php:402
166
  msgid "IPv4 database exists. File date: "
167
  msgstr "IPv4 database bestaat. Bestands datum:"
168
 
169
+ #: libs/blockcountry-settings.php:409 libs/blockcountry-settings.php:444
170
  msgid "Database is older than 3 months... Please update..."
171
  msgstr ""
172
  "Uw MaxMind GeoIP database is ouder dan 3 maanden. Update je database "
173
  "alstublieft."
174
 
175
+ #: libs/blockcountry-settings.php:414
176
  msgid "IPv4 database does not exist."
177
  msgstr "IPv4 database bestaat niet."
178
 
179
+ #: libs/blockcountry-settings.php:420
180
  msgid "IPv6 database exists. File date: "
181
  msgstr "IPv6 database bestaat. Bestands datum:"
182
 
183
+ #: libs/blockcountry-settings.php:427
184
  msgid "Database is older than 3 months... Please update..."
185
  msgstr ""
186
  "Uw MaxMind GeoIP database is ouder dan 3 maanden. Update je database "
187
  "alstublieft."
188
 
189
+ #: libs/blockcountry-settings.php:432
190
  msgid "IPv6 database does not exist."
191
  msgstr "IPv6 database bestaat niet."
192
 
193
+ #: libs/blockcountry-settings.php:437
194
  msgid "GeoIP2 database exists. File date: "
195
  msgstr "GeoIP2 database bestaat. Bestands datum:"
196
 
197
+ #: libs/blockcountry-settings.php:449
198
  msgid "GeoIP2 database does not exist."
199
  msgstr "GeoIP2 database bestaat niet."
200
 
201
+ #: libs/blockcountry-settings.php:456
202
  msgid "Your GeoIP API key is valid till: "
203
  msgstr "Uw GeoIP API key is geldig tot:"
204
 
205
+ #: libs/blockcountry-settings.php:463
206
  msgid "Active plugins"
207
  msgstr "Actieve plugins"
208
 
209
+ #: libs/blockcountry-settings.php:470
210
  msgid "Plugin name"
211
  msgstr "Plugin naam"
212
 
213
+ #: libs/blockcountry-settings.php:470
214
  msgid "Version"
215
  msgstr "Versie"
216
 
217
+ #: libs/blockcountry-settings.php:470 libs/blockcountry-settings.php:1576
218
+ #: libs/blockcountry-settings.php:1636
219
  msgid "URL"
220
  msgstr "URL"
221
 
222
+ #: libs/blockcountry-settings.php:489
223
  msgid "none"
224
  msgstr "Geen"
225
 
226
+ #: libs/blockcountry-settings.php:495 libs/blockcountry-settings.php:496
227
  msgid "unavailable"
228
  msgstr "niet beschikbaar"
229
 
230
+ #: libs/blockcountry-settings.php:500
231
  msgid "File System Information"
232
  msgstr "File systeem informatie"
233
 
234
+ #: libs/blockcountry-settings.php:503
235
  msgid "Website Root Folder"
236
  msgstr "Website root directory"
237
 
238
+ #: libs/blockcountry-settings.php:504 libs/blockcountry-settings.php:698
239
  msgid "Document Root Path"
240
  msgstr "Document root pad"
241
 
242
+ #: libs/blockcountry-settings.php:508
243
  msgid "Database Information"
244
  msgstr "Database informatie"
245
 
246
+ #: libs/blockcountry-settings.php:510
247
  msgid "MySQL Database Version"
248
  msgstr "MySQL Database versie"
249
 
250
+ #: libs/blockcountry-settings.php:511
251
  msgid "MySQL Client Version"
252
  msgstr "MySQL Client versie"
253
 
254
+ #: libs/blockcountry-settings.php:512
255
  msgid "Database Host"
256
  msgstr "Database Host"
257
 
258
+ #: libs/blockcountry-settings.php:518
259
  msgid "Not Set"
260
  msgstr "Niet gezet"
261
 
262
+ #: libs/blockcountry-settings.php:520 libs/blockcountry-settings.php:600
263
+ #: libs/blockcountry-settings.php:608 libs/blockcountry-settings.php:616
264
+ #: libs/blockcountry-settings.php:624 libs/blockcountry-settings.php:633
265
+ #: libs/blockcountry-settings.php:650
266
  msgid "Off"
267
  msgstr "Uit"
268
 
269
+ #: libs/blockcountry-settings.php:523
270
  msgid "SQL Mode"
271
  msgstr "SQL Mode"
272
 
273
+ #: libs/blockcountry-settings.php:527
274
  msgid "Server Information"
275
  msgstr "Server informatie"
276
 
277
+ #: libs/blockcountry-settings.php:532
278
  msgid "Server IP Address"
279
  msgstr "Server IP Adres"
280
 
281
+ #: libs/blockcountry-settings.php:534
282
  msgid "Server Type"
283
  msgstr "Server Type"
284
 
285
+ #: libs/blockcountry-settings.php:535
286
  msgid "Operating System"
287
  msgstr "Operating System"
288
 
289
+ #: libs/blockcountry-settings.php:536
290
  msgid "Browser Compression Supported"
291
  msgstr "Browser Compressie ondersteund"
292
 
293
+ #: libs/blockcountry-settings.php:552
294
  msgid "undefined"
295
  msgstr "Ongedefinieerd"
296
 
297
+ #: libs/blockcountry-settings.php:559
298
  msgid "PHP Process User (UID:GID)"
299
  msgstr "PHP Process User (UID:GID)"
300
 
301
+ #: libs/blockcountry-settings.php:564
302
  msgid "PHP Information"
303
  msgstr "PHP Informatie"
304
 
305
+ #: libs/blockcountry-settings.php:569
306
  msgid "PHP Version"
307
  msgstr "PHP versie"
308
 
309
+ #: libs/blockcountry-settings.php:570
310
  msgid "PHP Memory Usage"
311
  msgstr "PHP Memory Usage"
312
 
313
+ #: libs/blockcountry-settings.php:570
314
  msgid " MB"
315
  msgstr " MB"
316
 
317
+ #: libs/blockcountry-settings.php:576 libs/blockcountry-settings.php:584
318
+ #: libs/blockcountry-settings.php:592 libs/blockcountry-settings.php:641
319
  msgid "N/A"
320
  msgstr "N/A"
321
 
322
+ #: libs/blockcountry-settings.php:579
323
  msgid "PHP Memory Limit"
324
  msgstr "PHP Memory Limit"
325
 
326
+ #: libs/blockcountry-settings.php:587
327
  msgid "PHP Max Upload Size"
328
  msgstr "PHP Max Upload Size"
329
 
330
+ #: libs/blockcountry-settings.php:595
331
  msgid "PHP Max Post Size"
332
  msgstr "PHP Max Post Size"
333
 
334
+ #: libs/blockcountry-settings.php:598 libs/blockcountry-settings.php:606
335
+ #: libs/blockcountry-settings.php:614 libs/blockcountry-settings.php:622
336
+ #: libs/blockcountry-settings.php:631 libs/blockcountry-settings.php:648
337
  msgid "On"
338
  msgstr "Aan"
339
 
340
+ #: libs/blockcountry-settings.php:603
341
  msgid "PHP Allow URL fopen"
342
  msgstr "PHP Allow URL fopen"
343
 
344
+ #: libs/blockcountry-settings.php:611
345
  msgid "PHP Allow URL Include"
346
  msgstr "PHP Allow URL Include"
347
 
348
+ #: libs/blockcountry-settings.php:619
349
  msgid "PHP Display Errors"
350
  msgstr "PHP Display Errors"
351
 
352
+ #: libs/blockcountry-settings.php:627
353
  msgid "PHP Display Startup Errors"
354
  msgstr "PHP Display Startup Errors"
355
 
356
+ #: libs/blockcountry-settings.php:636
357
  msgid "PHP Expose PHP"
358
  msgstr "PHP Expose PHP"
359
 
360
+ #: libs/blockcountry-settings.php:644
361
  msgid "PHP Max Script Execution Time"
362
  msgstr "PHP Max Script Execution Time"
363
 
364
+ #: libs/blockcountry-settings.php:645
365
  msgid "Seconds"
366
  msgstr "Seconden"
367
 
368
+ #: libs/blockcountry-settings.php:653
369
  msgid "PHP open_basedir"
370
  msgstr "PHP open_basedir"
371
 
372
+ #: libs/blockcountry-settings.php:656 libs/blockcountry-settings.php:664
373
  msgid "Yes"
374
  msgstr "Ja"
375
 
376
+ #: libs/blockcountry-settings.php:658 libs/blockcountry-settings.php:666
377
  msgid "No"
378
  msgstr "Nee"
379
 
380
+ #: libs/blockcountry-settings.php:661
381
  msgid "PHP XML Support"
382
  msgstr "PHP XML Support"
383
 
384
+ #: libs/blockcountry-settings.php:669
385
  msgid "PHP IPTC Support"
386
  msgstr "PHP IPTC Support"
387
 
388
+ #: libs/blockcountry-settings.php:671
389
  msgid "Disabled PHP Functions"
390
  msgstr "Disabled PHP Functions"
391
 
392
+ #: libs/blockcountry-settings.php:678
393
  msgid "Wordpress info"
394
  msgstr "Wordpress Informatie"
395
 
396
+ #: libs/blockcountry-settings.php:683
397
  msgid "is enabled"
398
  msgstr "is aangezet"
399
 
400
+ #: libs/blockcountry-settings.php:685
401
  msgid "is disabled"
402
  msgstr "Is uitgezet"
403
 
404
+ #: libs/blockcountry-settings.php:688
405
  msgid " Multisite"
406
  msgstr "Multisite"
407
 
408
+ #: libs/blockcountry-settings.php:691
409
  msgid "are enabled"
410
  msgstr "is aangezet"
411
 
412
+ #: libs/blockcountry-settings.php:693
413
  msgid "are disabled"
414
  msgstr "Is uitgezet"
415
 
416
+ #: libs/blockcountry-settings.php:696
417
  msgid "Permalinks"
418
  msgstr "Permalinks"
419
 
420
+ #: libs/blockcountry-settings.php:713
421
  msgid "Export"
422
  msgstr "Exporteren"
423
 
424
+ #: libs/blockcountry-settings.php:714
425
  msgid ""
426
  "When you click on <tt>Backup all settings</tt> button a backup of the iQ "
427
  "Block Country configuration will be created."
429
  "Wanneer je klikt op de <tt>Backup alle instellingen</tt> knop zal een backup "
430
  "van alle iQ Block Country instellingen worden gecreerd."
431
 
432
+ #: libs/blockcountry-settings.php:715
433
  msgid ""
434
  "After exporting, you can either use the backup file to restore your settings "
435
  "on this site again or copy the settings to another WordPress site."
438
  "te herstellen of je kunt het bestand gebruiken om je instellingen naar een "
439
  "andere WordPress site te exporteren."
440
 
441
+ #: libs/blockcountry-settings.php:719
442
  msgid "Backup all settings"
443
  msgstr "Backup alle instellingen"
444
 
445
+ #: libs/blockcountry-settings.php:726
446
  msgid "Import"
447
  msgstr "Importeer"
448
 
449
+ #: libs/blockcountry-settings.php:727
450
  msgid "Click the browse button and choose a zip file that you exported before."
451
  msgstr ""
452
  "Klik op de Browse button and selecteer een zip file welke je eerder hebt "
453
  "geexporteerd."
454
 
455
+ #: libs/blockcountry-settings.php:728
456
  msgid "Press Restore settings button, and let WordPress do the magic for you."
457
  msgstr ""
458
  "Druk op de herstel instellingen knop en laat WordPress haar magie voor je "
459
  "doen."
460
 
461
+ #: libs/blockcountry-settings.php:733
462
  msgid "Restore settings"
463
  msgstr "Herstel instellingen"
464
 
465
+ #: libs/blockcountry-settings.php:756 libs/blockcountry-settings.php:759
466
+ #: libs/blockcountry-settings.php:768
467
  msgid "Something went wrong exporting this file"
468
  msgstr "Er is iets verkeerd gegaan met het exporteren van het bestand."
469
 
470
+ #: libs/blockcountry-settings.php:771
471
  msgid "Exporting settings..."
472
  msgstr "Exporteer instellingen"
473
 
474
+ #: libs/blockcountry-settings.php:786
475
  msgid "Something went wrong importing this file"
476
  msgstr "Er is iets verkeerd gegaan met het importeren van dit bestand"
477
 
478
+ #: libs/blockcountry-settings.php:803
479
  msgid "All options are restored successfully."
480
  msgstr "Alle opties zijn succesvol hersteld"
481
 
482
+ #: libs/blockcountry-settings.php:806
483
  msgid "Invalid file."
484
  msgstr "Ongeldig bestand"
485
 
486
+ #: libs/blockcountry-settings.php:811
487
  msgid "No correct import or export option given."
488
  msgstr "Geen correcte importeer of exporteer optie gegeven."
489
 
490
+ #: libs/blockcountry-settings.php:820
491
  msgid "Select which pages are blocked."
492
  msgstr "Selecteer welke pagina's geblokkeerd worden."
493
 
494
+ #: libs/blockcountry-settings.php:827
495
  msgid "Do you want to block individual pages:"
496
  msgstr "Wil je individuele pagina's blokkeren:"
497
 
498
+ #: libs/blockcountry-settings.php:828
499
  msgid "If you do not select this option all pages will be blocked."
500
  msgstr "Indien je deze optie niet selecteert worden alle pagina's geblokkeerd."
501
 
502
+ #: libs/blockcountry-settings.php:833
503
  msgid "Select pages you want to block:"
504
  msgstr "Selecteer welke pagina's je wil blokkeren."
505
 
506
+ #: libs/blockcountry-settings.php:855 libs/blockcountry-settings.php:909
507
+ #: libs/blockcountry-settings.php:957 libs/blockcountry-settings.php:1005
508
+ #: libs/blockcountry-settings.php:1052 libs/blockcountry-settings.php:1184
509
+ #: libs/blockcountry-settings.php:1313 libs/blockcountry-settings.php:1543
510
  msgid "Save Changes"
511
  msgstr "Bewaar wijzigingen"
512
 
513
+ #: libs/blockcountry-settings.php:868
514
  msgid "Select which categories are blocked."
515
  msgstr "Selecteer welke categorieen geblokkeerd worden."
516
 
517
+ #: libs/blockcountry-settings.php:875
518
  msgid "Do you want to block individual categories:"
519
  msgstr "Wil je individuele categorieen blokkeren:"
520
 
521
+ #: libs/blockcountry-settings.php:876 libs/blockcountry-settings.php:930
522
  msgid "If you do not select this option all blog articles will be blocked."
523
  msgstr ""
524
  "Indien je deze optie niet selecteert worden alle blog artikelen geblokkeerd."
525
 
526
+ #: libs/blockcountry-settings.php:881
527
  msgid "Do you want to block the homepage:"
528
  msgstr "Wil je je homepage blokkeren:"
529
 
530
+ #: libs/blockcountry-settings.php:882
531
  msgid ""
532
  "If you do not select this option visitors will not be blocked from your "
533
  "homepage regardless of the categories you select."
536
  "geblokkeerd van het bezoeken van je homepagina ongeacht welke categorieen je "
537
  "selecteert."
538
 
539
+ #: libs/blockcountry-settings.php:887
540
  msgid "Select categories you want to block:"
541
  msgstr "Selecteer welke categorieen je wil blokkeren."
542
 
543
+ #: libs/blockcountry-settings.php:922
544
  msgid "Select which tags are blocked."
545
  msgstr "Selecteer welke tags geblokkeerd moeten worden."
546
 
547
+ #: libs/blockcountry-settings.php:929
548
  msgid "Do you want to block individual tags:"
549
  msgstr "Wil je individuele tags blokkeren?:"
550
 
551
+ #: libs/blockcountry-settings.php:935
552
  msgid "Select tags you want to block:"
553
  msgstr "Selecteer welke tags geblokkeerd moeten worden."
554
 
555
+ #: libs/blockcountry-settings.php:971
556
  msgid "Select which post types are blocked."
557
  msgstr "Selecteer welke post types geblokkeerd worden."
558
 
559
+ #: libs/blockcountry-settings.php:978
560
  msgid "Do you want to block individual post types:"
561
  msgstr "Wil je individuele post types blokkeren:"
562
 
563
+ #: libs/blockcountry-settings.php:983
564
  msgid "Select post types you want to block:"
565
  msgstr "Selecteer welke post types je wil blokkeren."
566
 
567
+ #: libs/blockcountry-settings.php:1020
568
  msgid "Select which services are allowed."
569
  msgstr "Selecteer welke diensten je wilt toestaan."
570
 
571
+ #: libs/blockcountry-settings.php:1027
572
  msgid "Select which services you want to allow:"
573
  msgstr "Selecteer welke diensten je wilt toestaan:"
574
 
575
+ #: libs/blockcountry-settings.php:1028
576
  msgid ""
577
  "This will allow a service like for instance a search engine to your site "
578
  "despite if you blocked the country."
580
  "Dit staat een dienst toe zoals bijvoorbeeld een zoek machine ongeacht of je "
581
  "het land van de zoekmachine hebt geblokkeerd."
582
 
583
+ #: libs/blockcountry-settings.php:1029
584
  msgid "Please note the \"Search Engine Visibility\" should not be selected in "
585
  msgstr ""
586
  "Let op: \"Zoekmachine zichtbaarheid\" dient niet geselecteer te staan op "
587
 
588
+ #: libs/blockcountry-settings.php:1029
589
  msgid "reading settings."
590
  msgstr "lezen instellingen"
591
 
592
+ #: libs/blockcountry-settings.php:1067
593
  msgid "Frontend options"
594
  msgstr "Voorkant opties"
595
 
596
+ #: libs/blockcountry-settings.php:1094
597
  msgid ""
598
  "Do not block visitors that are logged in from visiting frontend website:"
599
  msgstr ""
600
  "Blokkeer geen bezoekers welke ingelogd zijn van het bezoeken van de voorkant:"
601
 
602
+ #: libs/blockcountry-settings.php:1100
603
  msgid "Block visitors from visiting the frontend of your website:"
604
  msgstr "Blokkeer bezoekers van het bezoeken van de voorkant van je website:"
605
 
606
+ #: libs/blockcountry-settings.php:1106
607
  msgid "Block visitors from using the search function of your website:"
608
  msgstr ""
609
  "Blokkeer bezoekers van het bezoeken van de zoek functie van je website:"
610
 
611
+ #: libs/blockcountry-settings.php:1112
612
  msgid ""
613
  "Select the countries that should be blocked from visiting your frontend:"
614
  msgstr ""
615
  "Selecteer de landen welke geblokkeerd moeten worden voor het bezoeken van de "
616
  "voorkant van je website:"
617
 
618
+ #: libs/blockcountry-settings.php:1113
619
  msgid "Use the CTRL key to select multiple countries"
620
  msgstr "Gebruik de CTRL toets om meerdere landen te selecteren"
621
 
622
+ #: libs/blockcountry-settings.php:1155 libs/blockcountry-settings.php:1289
623
  msgid "Inverse the selection above:"
624
  msgstr "Keer bovenstaande selectie om:"
625
 
626
+ #: libs/blockcountry-settings.php:1156 libs/blockcountry-settings.php:1290
627
  msgid ""
628
  "If you select this option only the countries that are selected are "
629
  "<em>allowed</em>."
631
  "Indien je deze optie selecteert de zijn de landen die hierboven geselecteerd "
632
  "<em>toegestaan</em>."
633
 
634
+ #: libs/blockcountry-settings.php:1161
635
  msgid "Block tag pages:"
636
  msgstr "Blokkeer tag pagina's"
637
 
638
+ #: libs/blockcountry-settings.php:1162
639
  msgid "If you select this option tag pages will be blocked."
640
  msgstr "Indien je deze optie selecteert worden tag pagina's geblokkeerd."
641
 
642
+ #: libs/blockcountry-settings.php:1167
643
  msgid "Frontend whitelist IPv4 and/or IPv6 addresses:"
644
  msgstr ""
645
  "Whitelist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
646
 
647
+ #: libs/blockcountry-settings.php:1167 libs/blockcountry-settings.php:1175
648
+ #: libs/blockcountry-settings.php:1296 libs/blockcountry-settings.php:1304
649
  msgid "Use a semicolon (;) to separate IP addresses"
650
  msgstr "Gebruik een puntkomma (;) om adressen van elkaar te scheiden"
651
 
652
+ #: libs/blockcountry-settings.php:1167 libs/blockcountry-settings.php:1175
653
+ #: libs/blockcountry-settings.php:1296 libs/blockcountry-settings.php:1304
654
  msgid ""
655
  "This field accepts single IP addresses as well as ranges in CIDR format."
656
  msgstr ""
657
  "Dit veld accepteert zowel enkele IP adressen als IP reeksen in CIDR formaat."
658
 
659
+ #: libs/blockcountry-settings.php:1175
660
  msgid "Frontend blacklist IPv4 and/or IPv6 addresses:"
661
  msgstr ""
662
  "Blacklist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
663
 
664
+ #: libs/blockcountry-settings.php:1204
665
  msgid "Backend Options"
666
  msgstr "Achterkant opties"
667
 
668
+ #: libs/blockcountry-settings.php:1232
669
  msgid ""
670
  "Block visitors from visiting the backend (administrator) of your website:"
671
  msgstr ""
672
  "Blokkeer bezoekers van het bezoeken van de achterkant (administratie "
673
  "gedeelte) van je website:"
674
 
675
+ #: libs/blockcountry-settings.php:1240
676
  msgid "Your IP address is"
677
  msgstr "Je IP adres is"
678
 
679
+ #: libs/blockcountry-settings.php:1240
680
  msgid "The country that is listed for this IP address is"
681
  msgstr "Het land waar dit adres toe behoort is"
682
 
683
+ #: libs/blockcountry-settings.php:1241
684
  msgid ""
685
  "Do <strong>NOT</strong> set the 'Block visitors from visiting the backend "
686
  "(administrator) of your website' and also select"
688
  "Selecteer <strong>NIET</strong> \"Blokkeer bezoekers van het bezoeken van de "
689
  "achterkant (administratie gedeelte) van je website\" en"
690
 
691
+ #: libs/blockcountry-settings.php:1241
692
  msgid "below."
693
  msgstr "hier beneden."
694
 
695
+ #: libs/blockcountry-settings.php:1242
696
  msgid ""
697
  "You will NOT be able to login the next time if you DO block your own country "
698
  "from visiting the backend."
700
  "Het zal daarna niet meer mogelijk zijn om nog in te loggen als je je eigen "
701
  "land blokkeert van het bezoeken van de achterkant van je website."
702
 
703
+ #: libs/blockcountry-settings.php:1247
704
  msgid "Select the countries that should be blocked from visiting your backend:"
705
  msgstr ""
706
  "Selecteer de landen welke geblokkeerd moeten worden voor het bezoeken van de "
707
  "achterkant (administratie gedeelte) van je website:"
708
 
709
+ #: libs/blockcountry-settings.php:1248
710
  msgid "Use the x behind the country to remove a country from this blocklist."
711
  msgstr ""
712
  "Gebruik de x achter een land om het land te verwijderen uit deze lijst."
713
 
714
+ #: libs/blockcountry-settings.php:1296
715
  msgid "Backend whitelist IPv4 and/or IPv6 addresses:"
716
  msgstr ""
717
  "Whitelist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
718
 
719
+ #: libs/blockcountry-settings.php:1304
720
  msgid "Backend blacklist IPv4 and/or IPv6 addresses:"
721
  msgstr ""
722
  "Blacklist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
723
 
724
+ #: libs/blockcountry-settings.php:1346
725
  msgid "Overall statistics since start"
726
  msgstr "Statistieken sinds het begin"
727
 
728
+ #: libs/blockcountry-settings.php:1349
729
  msgid "visitors blocked from the backend."
730
  msgstr "bezoekers geblokkeerd op de achterkant."
731
 
732
+ #: libs/blockcountry-settings.php:1351
733
  msgid "visitors blocked from the frontend."
734
  msgstr "bezoekers geblokkeerd op de voorkant."
735
 
736
+ #: libs/blockcountry-settings.php:1368
737
  msgid "Block type"
738
  msgstr "Blokkeer type"
739
 
740
+ #: libs/blockcountry-settings.php:1370
741
  msgid ""
742
  "You should choose one of the 3 block options below. This wil either show a "
743
  "block message, redirect to an internal page or redirect to an external page."
746
  "bericht, stuurt de bezoeker door naar een interne pagina of stuurt de "
747
  "bezoeker door naar een externe pagina."
748
 
749
+ #: libs/blockcountry-settings.php:1375
750
  msgid "Message to display when people are blocked:"
751
  msgstr "Welk bericht wil je tonen aan bezoekers welke geblokkeerd worden:"
752
 
753
+ #: libs/blockcountry-settings.php:1386
754
  msgid "Page to redirect to:"
755
  msgstr "Naar welke pagina wilt u bezoekers toesturen:"
756
 
757
+ #: libs/blockcountry-settings.php:1387
758
  msgid ""
759
  "If you select a page here blocked visitors will be redirected to this page "
760
  "instead of displaying above block message."
763
  "doorgestuurd naar deze pagina anders wordt bovestaande tekst getoond aan "
764
  "bezoekers."
765
 
766
+ #: libs/blockcountry-settings.php:1393
767
  msgid "Choose a page..."
768
  msgstr "Kies een pagina..."
769
 
770
+ #: libs/blockcountry-settings.php:1408
771
  msgid "URL to redirect to:"
772
  msgstr "Naar welke URL wilt u geblokkerde bezoekers verwijzen:"
773
 
774
+ #: libs/blockcountry-settings.php:1409
775
  msgid ""
776
  "If you enter a URL here blocked visitors will be redirected to this URL "
777
  "instead of displaying above block message or redirected to a local page."
780
  "naar deze url anders wordt bovestaande blokkeer tekst getoond aan bezoekers "
781
  "of worden bezoekers doorverwezen naar de geselecteerde pagina."
782
 
783
+ #: libs/blockcountry-settings.php:1416
784
  msgid "General settings"
785
  msgstr "Algemene instellingen"
786
 
787
+ #: libs/blockcountry-settings.php:1420
788
  msgid "Send headers when user is blocked:"
789
  msgstr "Stuur headers wanneer een gebruiker is geblokkeerd:"
790
 
791
+ #: libs/blockcountry-settings.php:1421
792
  msgid ""
793
  "Under normal circumstances you should keep this selected! Only if you have "
794
  "\"Cannot modify header information - headers already sent\" errors or if you "
798
  "deze alleen indien je \"Cannot modify header information - headers already "
799
  "sent\" foutmeldingen krijgt of indien je weet wat je doet."
800
 
801
+ #: libs/blockcountry-settings.php:1427
802
  msgid "Buffer output?:"
803
  msgstr "Buffer output?"
804
 
805
+ #: libs/blockcountry-settings.php:1428
806
  msgid ""
807
  "You can use this option to buffer all output. This can be helpful in case "
808
  "you have \"headers already sent\" issues."
810
  "Je kunt deze optie gebruiken om alle output te bufferen. Dit kan helpen "
811
  "indien je \"headers already sent\" problemen hebt."
812
 
813
+ #: libs/blockcountry-settings.php:1434
814
  msgid "Do not log IP addresses:"
815
  msgstr "Log geen IP adressen"
816
 
817
+ #: libs/blockcountry-settings.php:1435
818
  msgid ""
819
  "Check this box if the laws in your country do not permit you to log IP "
820
  "addresses or if you do not want to log the ip addresses."
823
  "adressen vast te leggen of indien je zelf deze informatie niet wilt "
824
  "vastleggen."
825
 
826
+ #: libs/blockcountry-settings.php:1441
827
  msgid "Do not block admin-ajax.php:"
828
  msgstr "Blokkeer admin-ajax.php niet:"
829
 
830
+ #: libs/blockcountry-settings.php:1442
831
  msgid "Check this box if you use a plugin that uses admin-ajax.php."
832
  msgstr ""
833
  "Selecteer deze optie indien je een plugin gebruikt welke gebruik maakt van "
834
  "admin-ajax.php."
835
 
836
+ #: libs/blockcountry-settings.php:1451
837
  msgid "Number of rows on logging tab:"
838
  msgstr "Aantal regels op het statistieken tabblad:"
839
 
840
+ #: libs/blockcountry-settings.php:1452
841
  msgid "How many rows do you want to display on each column on the logging tab."
842
  msgstr "Hoeveel regels wil je tonen in elke kolom op de statistieken tabblad."
843
 
844
+ #: libs/blockcountry-settings.php:1467
845
  msgid "Number of days to keep logging:"
846
  msgstr "Aantal dagen dat je logs wilt bewaren:"
847
 
848
+ #: libs/blockcountry-settings.php:1468
849
  msgid "How many days do you want to keep the logging used for the logging tab."
850
  msgstr ""
851
  "Hoeveel dagen wil je de logs bewaren welke gebruikt wordt op het "
852
  "statistieken tabblad."
853
 
854
+ #: libs/blockcountry-settings.php:1483
855
  msgid "Do not lookup hosts on the logging tab:"
856
  msgstr "Zoek niet de hostnaam op op het statistieken tabblad."
857
 
858
+ #: libs/blockcountry-settings.php:1484
859
  msgid ""
860
  "On some hosting environments looking up hosts may slow down the logging tab."
861
  msgstr ""
862
  "Op sommige hosting omgevingen zal het opzoeken van hostnamen zorgen voor "
863
  "vertraging op het statistieken tabblad."
864
 
865
+ #: libs/blockcountry-settings.php:1490
866
  msgid "Allow tracking:"
867
  msgstr "Sta traceren toe:"
868
 
869
+ #: libs/blockcountry-settings.php:1491
870
  msgid ""
871
  "This sends only the IP address and the number of attempts this ip address "
872
  "tried to login to your backend and was blocked doing so to a central server. "
879
  "ons om beter inzicht te krijgen in de landen waarvandaan een hoop hack "
880
  "pogingen worden gedaan. "
881
 
882
+ #: libs/blockcountry-settings.php:1497
883
  msgid "GeoIP API Key:"
884
  msgstr "GeoIP API sleutel:"
885
 
886
+ #: libs/blockcountry-settings.php:1498
887
  msgid ""
888
  "If for some reason you cannot or do not want to download the MaxMind GeoIP "
889
  "databases you will need an API key for the GeoIP api.<br />You can get an "
893
  "Maxmind GeoIP heb je een API sleutelnodig voor de GeoIP api.<br />Je kunt "
894
  "een API sleutel verkrijgen op:"
895
 
896
+ #: libs/blockcountry-settings.php:1506
897
  msgid "GeoIP API Key Server Location:"
898
  msgstr "GeoIP API sleutel server locatie:"
899
 
900
+ #: libs/blockcountry-settings.php:1507
901
  msgid "Choose a location closest to your own location."
902
  msgstr "Kies een land welke het dichtsbij is bij je eigen land."
903
 
904
+ #: libs/blockcountry-settings.php:1518
905
  msgid "Admin block API Key:"
906
  msgstr "Admin block API Sleutel:"
907
 
908
+ #: libs/blockcountry-settings.php:1519
909
  msgid ""
910
  "For additional security you can protect your backend from known IP addresses "
911
  "who have made hack attempts at other WordPress sites.<br />You can get more "
916
  "tegen andere WordPress sites.<br />Je kunt meer informatie hierover vinden "
917
  "en een API key verkrijgen op:"
918
 
919
+ #: libs/blockcountry-settings.php:1527
920
  msgid "Accessibility options:"
921
  msgstr "Toegankelijkheids opties:"
922
 
923
+ #: libs/blockcountry-settings.php:1528
924
  msgid "Set this option if you cannot use the default country selection box."
925
  msgstr ""
926
  "Selecteer deze optie indien je de landen standaard selectie methode niet "
927
  "kunt gebruiken. "
928
 
929
+ #: libs/blockcountry-settings.php:1534
930
  msgid "Log all visits:"
931
  msgstr "Log alle bezoekers:"
932
 
933
+ #: libs/blockcountry-settings.php:1535
934
  msgid ""
935
  "This logs all visits despite if they are blocked or not. This is only for "
936
  "debugging purposes."
938
  "Dit logt alle bezoekers ondanks of ze geblokkeerd zijn of niet. Dit is "
939
  "alleen voor debugging."
940
 
941
+ #: libs/blockcountry-settings.php:1561
942
  msgid "Last blocked visits"
943
  msgstr "Laatste geblokkeerde bezoekers"
944
 
945
+ #: libs/blockcountry-settings.php:1576
946
  msgid "Date / Time"
947
  msgstr "Datum / Tijd"
948
 
949
+ #: libs/blockcountry-settings.php:1576 libs/blockcountry-settings.php:1615
950
  msgid "IP Address"
951
  msgstr "IP adres"
952
 
953
+ #: libs/blockcountry-settings.php:1576 libs/blockcountry-settings.php:1615
954
  msgid "Hostname"
955
  msgstr "Hostnaam"
956
 
957
+ #: libs/blockcountry-settings.php:1576 libs/blockcountry-settings.php:1602
958
  msgid "Country"
959
  msgstr "Land"
960
 
961
+ #: libs/blockcountry-settings.php:1576
962
  msgid "Frontend/Backend"
963
  msgstr "Voorkant/Achterkant"
964
 
965
+ #: libs/blockcountry-settings.php:1593 libs/blockcountry-settings.php:1703
966
  msgid "Frontend"
967
  msgstr "Voorkant"
968
 
969
+ #: libs/blockcountry-settings.php:1593
970
  msgid "Backend banlist"
971
  msgstr "Achterkant banlist"
972
 
973
+ #: libs/blockcountry-settings.php:1593
974
  msgid "Backend & Backend banlist"
975
  msgstr "Achterkant & Achterkant banlist"
976
 
977
+ #: libs/blockcountry-settings.php:1593 libs/blockcountry-settings.php:1704
978
  msgid "Backend"
979
  msgstr "Achterkant"
980
 
981
+ #: libs/blockcountry-settings.php:1600
982
  msgid "Top countries that are blocked"
983
  msgstr "Top landen welke zijn geblokkeerd"
984
 
985
+ #: libs/blockcountry-settings.php:1602 libs/blockcountry-settings.php:1615
986
+ #: libs/blockcountry-settings.php:1636
987
  msgid "# of blocked attempts"
988
  msgstr "# of geblokkeerde pogingen"
989
 
990
+ #: libs/blockcountry-settings.php:1613
991
  msgid "Top hosts that are blocked"
992
  msgstr "Top hosts welke geblokkeerd zijn"
993
 
994
+ #: libs/blockcountry-settings.php:1634
995
  msgid "Top URLs that are blocked"
996
  msgstr "Top URLs welke geblokkeerd zijn"
997
 
998
+ #: libs/blockcountry-settings.php:1650
999
  msgid "Clear database"
1000
  msgstr "Leeg database"
1001
 
1002
+ #: libs/blockcountry-settings.php:1673
1003
  msgid "Download as CSV file"
1004
  msgstr "Download als een csv bestand."
1005
 
1006
+ #: libs/blockcountry-settings.php:1680
1007
  msgid ""
1008
  "You are not logging any information. Please uncheck the option 'Do not log "
1009
  "IP addresses' if this is not what you want."
1011
  "Je logt geen informatie. Deselecteer alstublieft de optie 'Log geen IP "
1012
  "adressen' indien dit niet is wat je wilt."
1013
 
1014
+ #: libs/blockcountry-settings.php:1702
1015
  msgid "Home"
1016
  msgstr "Home"
1017
 
1018
+ #: libs/blockcountry-settings.php:1705
1019
  msgid "Pages"
1020
  msgstr "Pagina's"
1021
 
1022
+ #: libs/blockcountry-settings.php:1706
1023
  msgid "Categories"
1024
  msgstr "Categorieen"
1025
 
1026
+ #: libs/blockcountry-settings.php:1707
1027
  msgid "Tags"
1028
  msgstr "Tags"
1029
 
1030
+ #: libs/blockcountry-settings.php:1707
1031
  msgid "Post types"
1032
  msgstr "Post types"
1033
 
1034
+ #: libs/blockcountry-settings.php:1708
1035
  msgid "Services"
1036
  msgstr "Diensten"
1037
 
1038
+ #: libs/blockcountry-settings.php:1709
1039
  msgid "Tools"
1040
  msgstr "Gereedschap"
1041
 
1042
+ #: libs/blockcountry-settings.php:1710
1043
  msgid "Logging"
1044
  msgstr "Statistieken"
1045
 
1046
+ #: libs/blockcountry-settings.php:1711
1047
  msgid "Import/Export"
1048
  msgstr "Importeren/Exporteren"
1049
 
libs/blockcountry-search-engines.php CHANGED
@@ -8,7 +8,9 @@ $searchengines = array(
8
  "Baidu" => "Baiduspider",
9
  "Bing" => "bingbot",
10
  "Bitly" => "bitlybot",
 
11
  "Cliqz" => "cliqzbot",
 
12
  "Duck Duck Go" => "duckduckbot",
13
  "Feedly" => "Feedly",
14
  "Facebook" => "facebookexternalhit",
@@ -20,7 +22,9 @@ $searchengines = array(
20
  "Google Search Console" => "Google Search Console",
21
  "Google Site Verification" => "Google-Site-Verification",
22
  "Jetpack" => "Jetpack by WordPress.com",
 
23
  "MSN" => "msnbot",
 
24
  "Pinterest" => "Pinterest",
25
  "TinEye" => "tineye-bot",
26
  "Twitter" => "twitterbot",
8
  "Baidu" => "Baiduspider",
9
  "Bing" => "bingbot",
10
  "Bitly" => "bitlybot",
11
+ "Broken Link Check" => "brokenlinkcheck.com",
12
  "Cliqz" => "cliqzbot",
13
+ "Dead Link Checker" => "www.deadlinkchecker.com",
14
  "Duck Duck Go" => "duckduckbot",
15
  "Feedly" => "Feedly",
16
  "Facebook" => "facebookexternalhit",
22
  "Google Search Console" => "Google Search Console",
23
  "Google Site Verification" => "Google-Site-Verification",
24
  "Jetpack" => "Jetpack by WordPress.com",
25
+ "Link checker" => "W3C-checklink",
26
  "MSN" => "msnbot",
27
+ "Pingdom" => "Pingdom.com_bot",
28
  "Pinterest" => "Pinterest",
29
  "TinEye" => "tineye-bot",
30
  "Twitter" => "twitterbot",
libs/blockcountry-settings.php CHANGED
@@ -5,6 +5,11 @@ if (!is_file ( GEOIP2DBFILE ) && (!get_option('blockcountry_geoapikey'))) {
5
  add_action( 'admin_notices', 'iq_missing_db_notice' );
6
  }
7
 
 
 
 
 
 
8
  /* check if caching plugins are active, if so display notice */
9
 
10
  if (iqblockcountry_is_caching_active())
@@ -53,7 +58,7 @@ if (is_file(IPV6DBFILE . ".gz"))
53
  */
54
  function iq_missing_db_notice()
55
  {
56
- if (!is_file(IPV4DBFILE))
57
  {
58
  ?>
59
  <div class="notice notice-error">
@@ -61,7 +66,7 @@ function iq_missing_db_notice()
61
  <p><?php _e('The MaxMind GeoIP2 database does not exist. Please download this file manually or if you wish to use the GeoIP API get an API key from: ', 'iq-block-country'); ?> <a href="https://geoip.webence.nl/" target="_blank">https://geoip.webence.nl/</a></p>
62
  <p><?php _e("Please download the database from: " , 'iq-block-country'); ?>
63
  <?php echo "<a href=\"" . GEOIP2DB . "\" target=\"_blank\">" . GEOIP2DB . "</a> "; ?>
64
- <?php _e("unzip the file and afterwards upload it to the following location: " , 'iq-block-country'); ?>
65
  <b><?php echo GEOIP2DBFILE; ?></b></p>
66
 
67
  <p><?php _e('For more detailed instructions take a look at the documentation..', 'iq-block-country'); ?></p>
@@ -71,6 +76,31 @@ function iq_missing_db_notice()
71
  }
72
  }
73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  /*
75
  * Display missing database notification.
76
  */
@@ -364,42 +394,47 @@ function iqblockcountry_settings_tools() {
364
  <?php
365
 
366
  $format = get_option('date_format') . ' ' . get_option('time_format');
367
- /* Check if the Geo Database exists */
368
- if (is_file ( IPV4DBFILE )) {
 
 
 
 
369
 
370
- _e("IPv4 database exists. File date: ", 'iq-block-country');
371
- $iqfiledate = filemtime(IPV4DBFILE);
372
- echo date ($format,$iqfiledate);
373
- echo " ";
374
- $iq3months = time() - 3 * 31 * 86400;
375
- if ($iqfiledate < $iq3months)
376
- {
377
- _e("Database is older than 3 months... Please update...", 'iq-block-country');
378
- }
379
- }
380
- else
381
- {
382
- _e("IPv4 database does not exist.", 'iq-block-country');
383
- }
384
- echo "<br />";
385
 
386
- if (is_file ( IPV6DBFILE )) {
387
 
388
- _e("IPv6 database exists. File date: ", 'iq-block-country');
389
- $iqfiledate = filemtime(IPV6DBFILE);
390
- echo date ($format,$iqfiledate);
391
- echo " ";
392
- $iq3months = time() - 3 * 31 * 86400;
393
- if ($iqfiledate < $iq3months)
394
- {
395
- _e("Database is older than 3 months... Please update...", 'iq-block-country');
396
- }
397
- }
398
- else
399
- {
400
- _e("IPv6 database does not exist.", 'iq-block-country');
 
 
401
  }
402
- echo "<br />";
403
  if (is_file ( GEOIP2DBFILE )) {
404
 
405
  _e("GeoIP2 database exists. File date: ", 'iq-block-country');
@@ -417,7 +452,7 @@ function iqblockcountry_settings_tools() {
417
  _e("GeoIP2 database does not exist.", 'iq-block-country');
418
  }
419
  echo "<br />";
420
-
421
  if (get_option('blockcountry_geoapikey'))
422
  {
423
  $licensedate = strtotime(iqblockcountry_get_licensedate_geoapikey(get_option('blockcountry_geoapikey')));
@@ -1734,10 +1769,10 @@ function iqblockcountry_settings_page() {
1734
 
1735
  <p>If you need assistance with this plugin please send an email to <a href="mailto:support@webence.nl">support@webence.nl</a></p>
1736
 
1737
- <p>This product uses GeoLite data created by MaxMind, available from <a href="http://www.maxmind.com/">http://www.maxmind.com/</a>.</p>
1738
 
1739
  <p>If you like this plugin please link back to <a href="https://www.webence.nl/">www.webence.nl</a>! :-) and support the development of the plugin.
1740
- See <a href="https://www.webence.nl/plugins/donate/">Plugin donation page</a> or become a <a href="https://www.patreon.com/webence" target="_blank">Patreon</a></p>
1741
 
1742
  <?php
1743
 
@@ -1755,7 +1790,7 @@ function iqblockcountry_find_geoip_location()
1755
  curl_setopt_array($curl, array(
1756
  CURLOPT_RETURNTRANSFER => 1,
1757
  CURLOPT_URL => 'https://us.geoip.webence.nl/test',
1758
- CURLOPT_USERAGENT => 'iQ Block Country US location test'
1759
  ));
1760
  $resp = curl_exec($curl);
1761
  $infous = curl_getinfo($curl);
@@ -1765,7 +1800,7 @@ function iqblockcountry_find_geoip_location()
1765
  curl_setopt_array($curl, array(
1766
  CURLOPT_RETURNTRANSFER => 1,
1767
  CURLOPT_URL => 'https://us2.geoip.webence.nl/test',
1768
- CURLOPT_USERAGENT => 'iQ Block Country US2 location test'
1769
  ));
1770
  $resp = curl_exec($curl);
1771
  $infous2 = curl_getinfo($curl);
@@ -1775,7 +1810,7 @@ function iqblockcountry_find_geoip_location()
1775
  curl_setopt_array($curl, array(
1776
  CURLOPT_RETURNTRANSFER => 1,
1777
  CURLOPT_URL => 'https://us3.geoip.webence.nl/test',
1778
- CURLOPT_USERAGENT => 'iQ Block Country US3 location test'
1779
  ));
1780
  $resp = curl_exec($curl);
1781
  $infous3 = curl_getinfo($curl);
@@ -1785,7 +1820,7 @@ function iqblockcountry_find_geoip_location()
1785
  curl_setopt_array($curl, array(
1786
  CURLOPT_RETURNTRANSFER => 1,
1787
  CURLOPT_URL => 'https://asia.geoip.webence.nl/test',
1788
- CURLOPT_USERAGENT => 'iQ Block Country Asia location test'
1789
  ));
1790
  $resp = curl_exec($curl);
1791
  $infoasia = curl_getinfo($curl);
@@ -1794,7 +1829,7 @@ function iqblockcountry_find_geoip_location()
1794
  $curl = curl_init();
1795
  curl_setopt_array($curl, array(
1796
  CURLOPT_URL => 'https://eu.geoip.webence.nl/test',
1797
- CURLOPT_USERAGENT => 'iQ Block Country EU location test'
1798
  ));
1799
  $resp = curl_exec($curl);
1800
  $infoeu = curl_getinfo($curl);
5
  add_action( 'admin_notices', 'iq_missing_db_notice' );
6
  }
7
 
8
+ /* Check if the Geo Database exists or if GeoIP API key is entered otherwise display notification */
9
+ if ((is_file(IPV4DBFILE) && !is_file ( GEOIP2DBFILE )) && (!get_option('blockcountry_geoapikey'))) {
10
+ add_action( 'admin_notices', 'iq_missing_dbgeoip2_notice' );
11
+ }
12
+
13
  /* check if caching plugins are active, if so display notice */
14
 
15
  if (iqblockcountry_is_caching_active())
58
  */
59
  function iq_missing_db_notice()
60
  {
61
+ if (!is_file(GEOIP2DBFILE) && !is_file(IPV4DBFILE))
62
  {
63
  ?>
64
  <div class="notice notice-error">
66
  <p><?php _e('The MaxMind GeoIP2 database does not exist. Please download this file manually or if you wish to use the GeoIP API get an API key from: ', 'iq-block-country'); ?> <a href="https://geoip.webence.nl/" target="_blank">https://geoip.webence.nl/</a></p>
67
  <p><?php _e("Please download the database from: " , 'iq-block-country'); ?>
68
  <?php echo "<a href=\"" . GEOIP2DB . "\" target=\"_blank\">" . GEOIP2DB . "</a> "; ?>
69
+ <?php _e("unzip the file and afterwards upload the GeoLite2-Country.mmdb file to the following location: " , 'iq-block-country'); ?>
70
  <b><?php echo GEOIP2DBFILE; ?></b></p>
71
 
72
  <p><?php _e('For more detailed instructions take a look at the documentation..', 'iq-block-country'); ?></p>
76
  }
77
  }
78
 
79
+ /*
80
+ * Display missing GeoIP2 database notification.
81
+ */
82
+ function iq_missing_dbgeoip2_notice()
83
+ {
84
+ if (is_file(IPV4DBFILE) && !(is_file(GEOIP2DBFILE)))
85
+ {
86
+ ?>
87
+ <div class="notice notice-error">
88
+ <h3>iQ Block Country</h3>
89
+ <p><?php _e('Please upgrade your old GeoIP database. This database is no longer maintained by MaxMind and everyone should upgrade to the GeoIP2 database.<br />', 'iq-block-country');
90
+ _e( 'The MaxMind GeoIP2 database does not exist yet . Please download this file manually or if you wish to use the GeoIP API get an API key from: ', 'iq-block-country'); ?> <a href="https://geoip.webence.nl/" target="_blank">https://geoip.webence.nl/</a></p>
91
+ <p><?php _e("Please download the database from: " , 'iq-block-country'); ?>
92
+ <?php echo "<a href=\"" . GEOIP2DB . "\" target=\"_blank\">" . GEOIP2DB . "</a> "; ?>
93
+ <?php _e("unzip the file and afterwards upload the GeoLite2-Country.mmdb file to the following location: " , 'iq-block-country'); ?>
94
+ <b><?php echo GEOIP2DBFILE; ?></b></p>
95
+
96
+ <p><?php _e('For more detailed instructions take a look at the documentation..', 'iq-block-country'); ?></p>
97
+
98
+ </div>
99
+ <?php
100
+ }
101
+ }
102
+
103
+
104
  /*
105
  * Display missing database notification.
106
  */
394
  <?php
395
 
396
  $format = get_option('date_format') . ' ' . get_option('time_format');
397
+ if (!get_option('blockcountry_geoapikey'))
398
+ {
399
+ if (!is_file ( GEOIP2DBFILE ))
400
+ {
401
+ /* Check if the Geo Database exists */
402
+ if (is_file ( IPV4DBFILE )) {
403
 
404
+ _e("IPv4 database exists. File date: ", 'iq-block-country');
405
+ $iqfiledate = filemtime(IPV4DBFILE);
406
+ echo date ($format,$iqfiledate);
407
+ echo " ";
408
+ $iq3months = time() - 3 * 31 * 86400;
409
+ if ($iqfiledate < $iq3months)
410
+ {
411
+ _e("Database is older than 3 months... Please update...", 'iq-block-country');
412
+ }
413
+ }
414
+ else
415
+ {
416
+ _e("IPv4 database does not exist.", 'iq-block-country');
417
+ }
418
+ echo "<br />";
419
 
420
+ if (is_file ( IPV6DBFILE )) {
421
 
422
+ _e("IPv6 database exists. File date: ", 'iq-block-country');
423
+ $iqfiledate = filemtime(IPV6DBFILE);
424
+ echo date ($format,$iqfiledate);
425
+ echo " ";
426
+ $iq3months = time() - 3 * 31 * 86400;
427
+ if ($iqfiledate < $iq3months)
428
+ {
429
+ _e("Database is older than 3 months... Please update...", 'iq-block-country');
430
+ }
431
+ }
432
+ else
433
+ {
434
+ _e("IPv6 database does not exist.", 'iq-block-country');
435
+ }
436
+ echo "<br />";
437
  }
 
438
  if (is_file ( GEOIP2DBFILE )) {
439
 
440
  _e("GeoIP2 database exists. File date: ", 'iq-block-country');
452
  _e("GeoIP2 database does not exist.", 'iq-block-country');
453
  }
454
  echo "<br />";
455
+ }
456
  if (get_option('blockcountry_geoapikey'))
457
  {
458
  $licensedate = strtotime(iqblockcountry_get_licensedate_geoapikey(get_option('blockcountry_geoapikey')));
1769
 
1770
  <p>If you need assistance with this plugin please send an email to <a href="mailto:support@webence.nl">support@webence.nl</a></p>
1771
 
1772
+ <p>This product uses GeoIP2 data created by MaxMind, available from <a href="http://www.maxmind.com/">http://www.maxmind.com/</a>.</p>
1773
 
1774
  <p>If you like this plugin please link back to <a href="https://www.webence.nl/">www.webence.nl</a>! :-) and support the development of the plugin.
1775
+ See <a href="https://www.webence.nl/plugins/donate/">Plugin donation page</a></p>
1776
 
1777
  <?php
1778
 
1790
  curl_setopt_array($curl, array(
1791
  CURLOPT_RETURNTRANSFER => 1,
1792
  CURLOPT_URL => 'https://us.geoip.webence.nl/test',
1793
+ CURLOPT_USERAGENT => 'iQ Block Country US location test/' . get_bloginfo('wpurl')
1794
  ));
1795
  $resp = curl_exec($curl);
1796
  $infous = curl_getinfo($curl);
1800
  curl_setopt_array($curl, array(
1801
  CURLOPT_RETURNTRANSFER => 1,
1802
  CURLOPT_URL => 'https://us2.geoip.webence.nl/test',
1803
+ CURLOPT_USERAGENT => 'iQ Block Country US2 location test/' . get_bloginfo('wpurl')
1804
  ));
1805
  $resp = curl_exec($curl);
1806
  $infous2 = curl_getinfo($curl);
1810
  curl_setopt_array($curl, array(
1811
  CURLOPT_RETURNTRANSFER => 1,
1812
  CURLOPT_URL => 'https://us3.geoip.webence.nl/test',
1813
+ CURLOPT_USERAGENT => 'iQ Block Country US3 location test/' . get_bloginfo('wpurl')
1814
  ));
1815
  $resp = curl_exec($curl);
1816
  $infous3 = curl_getinfo($curl);
1820
  curl_setopt_array($curl, array(
1821
  CURLOPT_RETURNTRANSFER => 1,
1822
  CURLOPT_URL => 'https://asia.geoip.webence.nl/test',
1823
+ CURLOPT_USERAGENT => 'iQ Block Country Asia location test/' . get_bloginfo('wpurl')
1824
  ));
1825
  $resp = curl_exec($curl);
1826
  $infoasia = curl_getinfo($curl);
1829
  $curl = curl_init();
1830
  curl_setopt_array($curl, array(
1831
  CURLOPT_URL => 'https://eu.geoip.webence.nl/test',
1832
+ CURLOPT_USERAGENT => 'iQ Block Country EU location test/' . get_bloginfo('wpurl')
1833
  ));
1834
  $resp = curl_exec($curl);
1835
  $infoeu = curl_getinfo($curl);
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: iqpascal
3
  Donate link: https://www.webence.nl/plugins/donate
4
  Tags: spam, block, country, comments, ban, geo, geo blocking, geo ip, block country, block countries, ban countries, ban country, blacklist, whitelist, security
5
  Requires at least: 3.5.2
6
- Tested up to: 4.9.7
7
- Stable tag: 1.2.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
  Requires PHP: 5.6
@@ -230,6 +230,15 @@ be used.
230
 
231
  == Changelog ==
232
 
 
 
 
 
 
 
 
 
 
233
  = 1.2.0 =
234
 
235
  * New: Added support for GeoIP2 country database
3
  Donate link: https://www.webence.nl/plugins/donate
4
  Tags: spam, block, country, comments, ban, geo, geo blocking, geo ip, block country, block countries, ban countries, ban country, blacklist, whitelist, security
5
  Requires at least: 3.5.2
6
+ Tested up to: 5.0.2
7
+ Stable tag: 1.2.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
  Requires PHP: 5.6
230
 
231
  == Changelog ==
232
 
233
+ = 1.2.1 =
234
+
235
+ * New: Added Link Checker (https://validator.w3.org/checklink) as service.
236
+ * New: Added Dead Link Checker as a service.
237
+ * New: Added Broken Link Check as a service.
238
+ * New: Added Pingdom as a service
239
+ * Change: Adjusted loading chosen library (Credits to Uzzal)
240
+ * Change: Display error when only the legacy GeoIP database exists and not the new GeoIP2 version
241
+
242
  = 1.2.0 =
243
 
244
  * New: Added support for GeoIP2 country database