iQ Block Country - Version 1.2.7

Version Description

  • Change: Typo in San Francisco (Thanks to Shizart)
  • New: Added France as GeoIP location
  • Change: Update to text description due to MaxMind update to Geo2Lite database policy
  • Bugfix: No empty location anymore (Thanks to Stonehenge Creations)
Download this release

Release Info

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

Code changes from version 1.2.6 to 1.2.7

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.6
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.
@@ -13,7 +13,7 @@ Domain Path: /lang
13
 
14
  /* This script uses GeoLite Country from MaxMind (http://www.maxmind.com) which is available under terms of GPL/LGPL */
15
 
16
- /* Copyright 2010-2019 Pascal (email: pascal@webence.nl)
17
 
18
  This program is free software; you can redistribute it and/or modify
19
  it under the terms of the GNU General Public License, version 2, as
@@ -83,6 +83,7 @@ function iqblockcountry_localization()
83
  function iqblockcountry_get_ipaddress() {
84
  global $ip_address;
85
 
 
86
  if(isset($_SERVER['SERVER_ADDR']))
87
  $server_address = $_SERVER['SERVER_ADDR'];
88
  elseif(array_key_exists('LOCAL_ADDR', $_SERVER))
@@ -151,7 +152,11 @@ function iqblockcountry_upgrade()
151
  $dbversion = get_option( 'blockcountry_version' );
152
  update_option('blockcountry_version',VERSION);
153
 
154
- if ($dbversion != "" && version_compare($dbversion, "1.2.5", '<') )
 
 
 
 
155
  {
156
  update_option('blockcountry_blockfeed' , 'on');
157
  }
@@ -159,10 +164,6 @@ function iqblockcountry_upgrade()
159
  {
160
  update_option('blockcountry_ipoverride' , 'NONE');
161
  }
162
- elseif ($dbversion != "" && version_compare($dbversion, "1.2.2", '<') )
163
- {
164
- iqblockcountry_find_geoip_location();
165
- }
166
  elseif ($dbversion != "" && version_compare($dbversion, "1.1.44", '<') )
167
  {
168
  $server_addr = array_key_exists( 'SERVER_ADDR', $_SERVER ) ? $_SERVER['SERVER_ADDR'] : $_SERVER['LOCAL_ADDR'];
@@ -171,7 +172,6 @@ function iqblockcountry_upgrade()
171
  }
172
  elseif ($dbversion != "" && version_compare($dbversion, "1.1.41", '<') )
173
  {
174
- iqblockcountry_find_geoip_location();
175
  update_option('blockcountry_daysstatistics',30);
176
  }
177
  elseif ($dbversion != "" && version_compare($dbversion, "1.1.31", '<') )
@@ -235,6 +235,7 @@ define("CHOSENJS", plugins_url('/js/chosen.jquery.js', __FILE__));
235
  define("CHOSENCSS", plugins_url('/chosen.css', __FILE__));
236
  define("CHOSENCUSTOM",plugins_url('/js/chosen.custom.js', __FILE__));
237
  define("GEOIP2DB","http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.tar.gz"); // Used to display download location.
 
238
  define("IPV4DBFILE",$upload_dir['basedir'] . "/GeoIP.dat");
239
  define("IPV6DBFILE",$upload_dir['basedir'] . "/GeoIPv6.dat");
240
  define("GEOIP2DBFILE",$upload_dir['basedir'] . "/GeoLite2-Country.mmdb");
@@ -243,6 +244,7 @@ define("BANLISTRETRIEVEURL","https://eu.adminblock.webence.nl/iq-block-country-r
243
  define("GEOIPAPIURL","https://eu.geoip.webence.nl/geoipapi.php");
244
  define("GEOIPAPIURLEU2","https://eu2.geoip.webence.nl/geoipapi.php");
245
  define("GEOIPAPIURLEU3","https://eu3.geoip.webence.nl/geoipapi.php");
 
246
  define("GEOIPAPIURLUS","https://us.geoip.webence.nl/geoipapi.php");
247
  define("GEOIPAPIURLUS2","https://us2.geoip.webence.nl/geoipapi.php");
248
  define("GEOIPAPIURLUS3","https://us3.geoip.webence.nl/geoipapi.php");
@@ -250,7 +252,7 @@ define("GEOIPAPIURLASIA","https://asia.geoip.webence.nl/geoipapi.php");
250
  define("GEOIPAPICHECKURL","https://eu.geoip.webence.nl/geoipapi-keycheck.php");
251
  define("ADMINAPICHECKURL","https://tracking.webence.nl/adminapi-keycheck.php");
252
  define("IPLOOKUPURL",'https://geoip.webence.nl/iplookup/iplookup.php');
253
- define("VERSION","1.2.5");
254
  define("DBVERSION","122");
255
  define("PLUGINPATH",plugin_dir_path( __FILE__ ));
256
 
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.7
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.
13
 
14
  /* This script uses GeoLite Country from MaxMind (http://www.maxmind.com) which is available under terms of GPL/LGPL */
15
 
16
+ /* Copyright 2010-2020 Pascal (email: pascal@webence.nl)
17
 
18
  This program is free software; you can redistribute it and/or modify
19
  it under the terms of the GNU General Public License, version 2, as
83
  function iqblockcountry_get_ipaddress() {
84
  global $ip_address;
85
 
86
+ $server_address = "";
87
  if(isset($_SERVER['SERVER_ADDR']))
88
  $server_address = $_SERVER['SERVER_ADDR'];
89
  elseif(array_key_exists('LOCAL_ADDR', $_SERVER))
152
  $dbversion = get_option( 'blockcountry_version' );
153
  update_option('blockcountry_version',VERSION);
154
 
155
+ if ($dbversion != "" && version_compare($dbversion, "1.2.7", '<') )
156
+ {
157
+ iqblockcountry_find_geoip_location();
158
+ }
159
+ elseif ($dbversion != "" && version_compare($dbversion, "1.2.5", '<') )
160
  {
161
  update_option('blockcountry_blockfeed' , 'on');
162
  }
164
  {
165
  update_option('blockcountry_ipoverride' , 'NONE');
166
  }
 
 
 
 
167
  elseif ($dbversion != "" && version_compare($dbversion, "1.1.44", '<') )
168
  {
169
  $server_addr = array_key_exists( 'SERVER_ADDR', $_SERVER ) ? $_SERVER['SERVER_ADDR'] : $_SERVER['LOCAL_ADDR'];
172
  }
173
  elseif ($dbversion != "" && version_compare($dbversion, "1.1.41", '<') )
174
  {
 
175
  update_option('blockcountry_daysstatistics',30);
176
  }
177
  elseif ($dbversion != "" && version_compare($dbversion, "1.1.31", '<') )
235
  define("CHOSENCSS", plugins_url('/chosen.css', __FILE__));
236
  define("CHOSENCUSTOM",plugins_url('/js/chosen.custom.js', __FILE__));
237
  define("GEOIP2DB","http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.tar.gz"); // Used to display download location.
238
+ define("MAXMINDURL","https://dev.maxmind.com/geoip/geoip2/geolite2/");
239
  define("IPV4DBFILE",$upload_dir['basedir'] . "/GeoIP.dat");
240
  define("IPV6DBFILE",$upload_dir['basedir'] . "/GeoIPv6.dat");
241
  define("GEOIP2DBFILE",$upload_dir['basedir'] . "/GeoLite2-Country.mmdb");
244
  define("GEOIPAPIURL","https://eu.geoip.webence.nl/geoipapi.php");
245
  define("GEOIPAPIURLEU2","https://eu2.geoip.webence.nl/geoipapi.php");
246
  define("GEOIPAPIURLEU3","https://eu3.geoip.webence.nl/geoipapi.php");
247
+ define("GEOIPAPIURLEU4","https://eu4.geoip.webence.nl/geoipapi.php");
248
  define("GEOIPAPIURLUS","https://us.geoip.webence.nl/geoipapi.php");
249
  define("GEOIPAPIURLUS2","https://us2.geoip.webence.nl/geoipapi.php");
250
  define("GEOIPAPIURLUS3","https://us3.geoip.webence.nl/geoipapi.php");
252
  define("GEOIPAPICHECKURL","https://eu.geoip.webence.nl/geoipapi-keycheck.php");
253
  define("ADMINAPICHECKURL","https://tracking.webence.nl/adminapi-keycheck.php");
254
  define("IPLOOKUPURL",'https://geoip.webence.nl/iplookup/iplookup.php');
255
+ define("VERSION","1.2.7");
256
  define("DBVERSION","122");
257
  define("PLUGINPATH",plugin_dir_path( __FILE__ ));
258
 
lang/en_EN.mo CHANGED
Binary file
lang/en_EN.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: iQ Block Country\n"
4
- "POT-Creation-Date: 2019-05-20 16:32+0200\n"
5
- "PO-Revision-Date: 2019-05-20 16:32+0200\n"
6
  "Last-Translator: Pascal <pascal@webence.nl>\n"
7
  "Language-Team: iQ Block Country <info@redeo.nl>\n"
8
  "Language: en\n"
@@ -21,785 +21,795 @@ msgid ""
21
  "manually or if you wish to use the GeoIP API get an API key from: "
22
  msgstr ""
23
 
24
- #: libs/blockcountry-settings.php:67 libs/blockcountry-settings.php:91
25
- #: libs/blockcountry-settings.php:130
26
- msgid "Please download the database from: "
27
  msgstr ""
28
 
29
- #: libs/blockcountry-settings.php:69 libs/blockcountry-settings.php:93
 
 
 
 
 
 
 
30
  msgid ""
31
  "unzip the file and afterwards upload the GeoLite2-Country.mmdb file to the "
32
  "following location: "
33
  msgstr ""
34
 
35
- #: libs/blockcountry-settings.php:72 libs/blockcountry-settings.php:96
36
- #: libs/blockcountry-settings.php:135
37
  msgid "For more detailed instructions take a look at the documentation.."
38
  msgstr ""
39
 
40
- #: libs/blockcountry-settings.php:89
41
  msgid ""
42
  "Please upgrade your old GeoIP database. This database is no longer "
43
  "maintained by MaxMind and everyone should upgrade to the GeoIP2 database."
44
  "<br />"
45
  msgstr ""
46
 
47
- #: libs/blockcountry-settings.php:90
48
  msgid ""
49
  "The MaxMind GeoIP2 database does not exist yet . Please download this file "
50
  "manually or if you wish to use the GeoIP API get an API key from: "
51
  msgstr ""
52
 
53
- #: libs/blockcountry-settings.php:112
54
  msgid "A caching plugin appears to be active on your WordPress installation."
55
  msgstr ""
56
 
57
- #: libs/blockcountry-settings.php:113
58
  msgid ""
59
  "Caching plugins do not always cooperate nicely together with the iQ Block "
60
  "Country plugin which may lead to non blocked visitors getting a cached "
61
  "banned message or page."
62
  msgstr ""
63
 
64
- #: libs/blockcountry-settings.php:114
65
  msgid "For more information visit the following page:"
66
  msgstr ""
67
 
68
- #: libs/blockcountry-settings.php:129
69
  msgid ""
70
  "The MaxMind GeoIP database is older than 3 months. Please update this file "
71
  "manually or if you wish to use the GeoIP API get an API key from: "
72
  msgstr ""
73
 
74
  #: libs/blockcountry-settings.php:132
 
 
 
 
75
  msgid "unzip the file and afterwards upload it to the following location: "
76
  msgstr ""
77
 
78
- #: libs/blockcountry-settings.php:306
79
  msgid ""
80
  "Check which country belongs to an IP Address according to the current "
81
  "database."
82
  msgstr ""
83
 
84
- #: libs/blockcountry-settings.php:311
85
  msgid "IP Address to check:"
86
  msgstr ""
87
 
88
- #: libs/blockcountry-settings.php:329
89
  msgid "No country for"
90
  msgstr ""
91
 
92
- #: libs/blockcountry-settings.php:329
93
  msgid "could be found. Or"
94
  msgstr ""
95
 
96
- #: libs/blockcountry-settings.php:329
97
  msgid "is not a valid IPv4 or IPv6 IP address"
98
  msgstr ""
99
 
100
- #: libs/blockcountry-settings.php:334
101
  msgid "IP Adress"
102
  msgstr ""
103
 
104
- #: libs/blockcountry-settings.php:334
105
  msgid "belongs to"
106
  msgstr ""
107
 
108
- #: libs/blockcountry-settings.php:340 libs/blockcountry-settings.php:345
109
  msgid "This country is not permitted to visit the frontend of this website."
110
  msgstr ""
111
 
112
- #: libs/blockcountry-settings.php:354 libs/blockcountry-settings.php:361
113
  msgid "This country is not permitted to visit the backend of this website."
114
  msgstr ""
115
 
116
- #: libs/blockcountry-settings.php:367
117
  msgid "This IP address is present in the blacklist."
118
  msgstr ""
119
 
120
- #: libs/blockcountry-settings.php:373
121
  msgid "This IP address is present in the frontend blacklist."
122
  msgstr ""
123
 
124
- #: libs/blockcountry-settings.php:378
125
  msgid "This IP address is present in the frontend whitelist."
126
  msgstr ""
127
 
128
- #: libs/blockcountry-settings.php:383
129
  msgid "This IP address is present in the backend blacklist."
130
  msgstr ""
131
 
132
- #: libs/blockcountry-settings.php:388
133
  msgid "This IP address is present in the backend whitelist."
134
  msgstr ""
135
 
136
- #: libs/blockcountry-settings.php:395
137
  msgid "Check IP address"
138
  msgstr ""
139
 
140
- #: libs/blockcountry-settings.php:403
141
  msgid "Database information"
142
  msgstr ""
143
 
144
- #: libs/blockcountry-settings.php:414
145
  msgid "IPv4 database exists. File date: "
146
  msgstr ""
147
 
148
- #: libs/blockcountry-settings.php:421 libs/blockcountry-settings.php:457
149
  msgid "Database is older than 3 months... Please update..."
150
  msgstr ""
151
 
152
- #: libs/blockcountry-settings.php:426
153
  msgid "IPv4 database does not exist."
154
  msgstr ""
155
 
156
- #: libs/blockcountry-settings.php:432
157
  msgid "IPv6 database exists. File date: "
158
  msgstr ""
159
 
160
- #: libs/blockcountry-settings.php:439
161
  msgid "Database is older than 3 months... Please update..."
162
  msgstr ""
163
 
164
- #: libs/blockcountry-settings.php:444
165
  msgid "IPv6 database does not exist."
166
  msgstr ""
167
 
168
- #: libs/blockcountry-settings.php:450
169
  msgid "GeoIP2 database exists. File date: "
170
  msgstr ""
171
 
172
- #: libs/blockcountry-settings.php:462
173
  msgid "GeoIP2 database does not exist."
174
  msgstr ""
175
 
176
- #: libs/blockcountry-settings.php:469
177
  msgid "Your GeoIP API key is valid till: "
178
  msgstr ""
179
 
180
- #: libs/blockcountry-settings.php:478
181
  msgid "Active plugins"
182
  msgstr ""
183
 
184
- #: libs/blockcountry-settings.php:485
185
  msgid "Plugin name"
186
  msgstr ""
187
 
188
- #: libs/blockcountry-settings.php:485
189
  msgid "Version"
190
  msgstr ""
191
 
192
- #: libs/blockcountry-settings.php:485 libs/blockcountry-settings.php:1689
193
- #: libs/blockcountry-settings.php:1748
194
  msgid "URL"
195
  msgstr ""
196
 
197
- #: libs/blockcountry-settings.php:504
198
  msgid "none"
199
  msgstr ""
200
 
201
- #: libs/blockcountry-settings.php:510 libs/blockcountry-settings.php:511
202
  msgid "unavailable"
203
  msgstr ""
204
 
205
- #: libs/blockcountry-settings.php:515
206
  msgid "File System Information"
207
  msgstr ""
208
 
209
- #: libs/blockcountry-settings.php:518
210
  msgid "Website Root Folder"
211
  msgstr ""
212
 
213
- #: libs/blockcountry-settings.php:519 libs/blockcountry-settings.php:713
214
  msgid "Document Root Path"
215
  msgstr ""
216
 
217
- #: libs/blockcountry-settings.php:523
218
  msgid "Database Information"
219
  msgstr ""
220
 
221
- #: libs/blockcountry-settings.php:525
222
  msgid "MySQL Database Version"
223
  msgstr ""
224
 
225
- #: libs/blockcountry-settings.php:526
226
  msgid "MySQL Client Version"
227
  msgstr ""
228
 
229
- #: libs/blockcountry-settings.php:527
230
  msgid "Database Host"
231
  msgstr ""
232
 
233
- #: libs/blockcountry-settings.php:533
234
  msgid "Not Set"
235
  msgstr ""
236
 
237
- #: libs/blockcountry-settings.php:535 libs/blockcountry-settings.php:615
238
- #: libs/blockcountry-settings.php:623 libs/blockcountry-settings.php:631
239
- #: libs/blockcountry-settings.php:639 libs/blockcountry-settings.php:648
240
- #: libs/blockcountry-settings.php:665
241
  msgid "Off"
242
  msgstr ""
243
 
244
- #: libs/blockcountry-settings.php:538
245
  msgid "SQL Mode"
246
  msgstr ""
247
 
248
- #: libs/blockcountry-settings.php:542
249
  msgid "Server Information"
250
  msgstr ""
251
 
252
- #: libs/blockcountry-settings.php:547
253
  msgid "Server IP Address"
254
  msgstr ""
255
 
256
- #: libs/blockcountry-settings.php:549
257
  msgid "Server Type"
258
  msgstr ""
259
 
260
- #: libs/blockcountry-settings.php:550
261
  msgid "Operating System"
262
  msgstr ""
263
 
264
- #: libs/blockcountry-settings.php:551
265
  msgid "Browser Compression Supported"
266
  msgstr ""
267
 
268
- #: libs/blockcountry-settings.php:567
269
  msgid "undefined"
270
  msgstr ""
271
 
272
- #: libs/blockcountry-settings.php:574
273
  msgid "PHP Process User (UID:GID)"
274
  msgstr ""
275
 
276
- #: libs/blockcountry-settings.php:579
277
  msgid "PHP Information"
278
  msgstr ""
279
 
280
- #: libs/blockcountry-settings.php:584
281
  msgid "PHP Version"
282
  msgstr ""
283
 
284
- #: libs/blockcountry-settings.php:585
285
  msgid "PHP Memory Usage"
286
  msgstr ""
287
 
288
- #: libs/blockcountry-settings.php:585
289
  msgid " MB"
290
  msgstr ""
291
 
292
- #: libs/blockcountry-settings.php:591 libs/blockcountry-settings.php:599
293
- #: libs/blockcountry-settings.php:607 libs/blockcountry-settings.php:656
294
  msgid "N/A"
295
  msgstr ""
296
 
297
- #: libs/blockcountry-settings.php:594
298
  msgid "PHP Memory Limit"
299
  msgstr ""
300
 
301
- #: libs/blockcountry-settings.php:602
302
  msgid "PHP Max Upload Size"
303
  msgstr ""
304
 
305
- #: libs/blockcountry-settings.php:610
306
  msgid "PHP Max Post Size"
307
  msgstr ""
308
 
309
- #: libs/blockcountry-settings.php:613 libs/blockcountry-settings.php:621
310
- #: libs/blockcountry-settings.php:629 libs/blockcountry-settings.php:637
311
- #: libs/blockcountry-settings.php:646 libs/blockcountry-settings.php:663
312
  msgid "On"
313
  msgstr ""
314
 
315
- #: libs/blockcountry-settings.php:618
316
  msgid "PHP Allow URL fopen"
317
  msgstr ""
318
 
319
- #: libs/blockcountry-settings.php:626
320
  msgid "PHP Allow URL Include"
321
  msgstr ""
322
 
323
- #: libs/blockcountry-settings.php:634
324
  msgid "PHP Display Errors"
325
  msgstr ""
326
 
327
- #: libs/blockcountry-settings.php:642
328
  msgid "PHP Display Startup Errors"
329
  msgstr ""
330
 
331
- #: libs/blockcountry-settings.php:651
332
  msgid "PHP Expose PHP"
333
  msgstr ""
334
 
335
- #: libs/blockcountry-settings.php:659
336
  msgid "PHP Max Script Execution Time"
337
  msgstr ""
338
 
339
- #: libs/blockcountry-settings.php:660
340
  msgid "Seconds"
341
  msgstr ""
342
 
343
- #: libs/blockcountry-settings.php:668
344
  msgid "PHP open_basedir"
345
  msgstr ""
346
 
347
- #: libs/blockcountry-settings.php:671 libs/blockcountry-settings.php:679
348
  msgid "Yes"
349
  msgstr ""
350
 
351
- #: libs/blockcountry-settings.php:673 libs/blockcountry-settings.php:681
352
  msgid "No"
353
  msgstr ""
354
 
355
- #: libs/blockcountry-settings.php:676
356
  msgid "PHP XML Support"
357
  msgstr ""
358
 
359
- #: libs/blockcountry-settings.php:684
360
  msgid "PHP IPTC Support"
361
  msgstr ""
362
 
363
- #: libs/blockcountry-settings.php:686
364
  msgid "Disabled PHP Functions"
365
  msgstr ""
366
 
367
- #: libs/blockcountry-settings.php:693
368
  msgid "Wordpress info"
369
  msgstr ""
370
 
371
- #: libs/blockcountry-settings.php:698
372
  msgid "is enabled"
373
  msgstr ""
374
 
375
- #: libs/blockcountry-settings.php:700
376
  msgid "is disabled"
377
  msgstr ""
378
 
379
- #: libs/blockcountry-settings.php:703
380
  msgid " Multisite"
381
  msgstr ""
382
 
383
- #: libs/blockcountry-settings.php:706
384
  msgid "are enabled"
385
  msgstr ""
386
 
387
- #: libs/blockcountry-settings.php:708
388
  msgid "are disabled"
389
  msgstr ""
390
 
391
- #: libs/blockcountry-settings.php:711
392
  msgid "Permalinks"
393
  msgstr ""
394
 
395
- #: libs/blockcountry-settings.php:718
396
  msgid "IP Address information"
397
  msgstr ""
398
 
399
- #: libs/blockcountry-settings.php:725 libs/blockcountry-settings.php:730
400
- #: libs/blockcountry-settings.php:735 libs/blockcountry-settings.php:740
401
- #: libs/blockcountry-settings.php:745 libs/blockcountry-settings.php:750
402
- #: libs/blockcountry-settings.php:755 libs/blockcountry-settings.php:760
403
- #: libs/blockcountry-settings.php:765
404
  msgid "Not set"
405
  msgstr ""
406
 
407
- #: libs/blockcountry-settings.php:781
408
  msgid "Export"
409
  msgstr ""
410
 
411
- #: libs/blockcountry-settings.php:782
412
  msgid ""
413
  "When you click on <tt>Backup all settings</tt> button a backup of the iQ "
414
  "Block Country configuration will be created."
415
  msgstr ""
416
 
417
- #: libs/blockcountry-settings.php:783
418
  msgid ""
419
  "After exporting, you can either use the backup file to restore your settings "
420
  "on this site again or copy the settings to another WordPress site."
421
  msgstr ""
422
 
423
- #: libs/blockcountry-settings.php:787
424
  msgid "Backup all settings"
425
  msgstr ""
426
 
427
- #: libs/blockcountry-settings.php:794
428
  msgid "Import"
429
  msgstr ""
430
 
431
- #: libs/blockcountry-settings.php:795
432
  msgid "Click the browse button and choose a zip file that you exported before."
433
  msgstr ""
434
 
435
- #: libs/blockcountry-settings.php:796
436
  msgid "Press Restore settings button, and let WordPress do the magic for you."
437
  msgstr ""
438
 
439
- #: libs/blockcountry-settings.php:801
440
  msgid "Restore settings"
441
  msgstr ""
442
 
443
- #: libs/blockcountry-settings.php:824 libs/blockcountry-settings.php:827
444
- #: libs/blockcountry-settings.php:836
445
  msgid "Something went wrong exporting this file"
446
  msgstr ""
447
 
448
- #: libs/blockcountry-settings.php:839
449
  msgid "Exporting settings..."
450
  msgstr ""
451
 
452
- #: libs/blockcountry-settings.php:854
453
  msgid "Something went wrong importing this file"
454
  msgstr ""
455
 
456
- #: libs/blockcountry-settings.php:871
457
  msgid "All options are restored successfully."
458
  msgstr ""
459
 
460
- #: libs/blockcountry-settings.php:874
461
  msgid "Invalid file."
462
  msgstr ""
463
 
464
- #: libs/blockcountry-settings.php:879
465
  msgid "No correct import or export option given."
466
  msgstr ""
467
 
468
- #: libs/blockcountry-settings.php:888
469
  msgid "Select which pages are blocked."
470
  msgstr ""
471
 
472
- #: libs/blockcountry-settings.php:895
473
  msgid "Do you want to block individual pages:"
474
  msgstr ""
475
 
476
- #: libs/blockcountry-settings.php:896
477
  msgid "If you do not select this option all pages will be blocked."
478
  msgstr ""
479
 
480
- #: libs/blockcountry-settings.php:903
481
  msgid "Block pages selected below:"
482
  msgstr ""
483
 
484
- #: libs/blockcountry-settings.php:904
485
  msgid "Block all pages except those selected below"
486
  msgstr ""
487
 
488
- #: libs/blockcountry-settings.php:911
489
  msgid "Select pages you want to block:"
490
  msgstr ""
491
 
492
- #: libs/blockcountry-settings.php:933 libs/blockcountry-settings.php:987
493
- #: libs/blockcountry-settings.php:1035 libs/blockcountry-settings.php:1083
494
- #: libs/blockcountry-settings.php:1130 libs/blockcountry-settings.php:1274
495
- #: libs/blockcountry-settings.php:1404 libs/blockcountry-settings.php:1656
496
  msgid "Save Changes"
497
  msgstr ""
498
 
499
- #: libs/blockcountry-settings.php:946
500
  msgid "Select which categories are blocked."
501
  msgstr ""
502
 
503
- #: libs/blockcountry-settings.php:953
504
  msgid "Do you want to block individual categories:"
505
  msgstr ""
506
 
507
- #: libs/blockcountry-settings.php:954 libs/blockcountry-settings.php:1008
508
  msgid "If you do not select this option all blog articles will be blocked."
509
  msgstr ""
510
 
511
- #: libs/blockcountry-settings.php:959
512
  msgid "Do you want to block the homepage:"
513
  msgstr ""
514
 
515
- #: libs/blockcountry-settings.php:960
516
  msgid ""
517
  "If you do not select this option visitors will not be blocked from your "
518
  "homepage regardless of the categories you select."
519
  msgstr ""
520
 
521
- #: libs/blockcountry-settings.php:965
522
  msgid "Select categories you want to block:"
523
  msgstr ""
524
 
525
- #: libs/blockcountry-settings.php:1000
526
  msgid "Select which tags are blocked."
527
  msgstr ""
528
 
529
- #: libs/blockcountry-settings.php:1007
530
  msgid "Do you want to block individual tags:"
531
  msgstr ""
532
 
533
- #: libs/blockcountry-settings.php:1013
534
  msgid "Select tags you want to block:"
535
  msgstr ""
536
 
537
- #: libs/blockcountry-settings.php:1049
538
  msgid "Select which post types are blocked."
539
  msgstr ""
540
 
541
- #: libs/blockcountry-settings.php:1056
542
  msgid "Do you want to block individual post types:"
543
  msgstr ""
544
 
545
- #: libs/blockcountry-settings.php:1061
546
  msgid "Select post types you want to block:"
547
  msgstr ""
548
 
549
- #: libs/blockcountry-settings.php:1098
550
  msgid "Select which services are allowed."
551
  msgstr ""
552
 
553
- #: libs/blockcountry-settings.php:1105
554
  msgid "Select which services you want to allow:"
555
  msgstr ""
556
 
557
- #: libs/blockcountry-settings.php:1106
558
  msgid ""
559
  "This will allow a service like for instance a search engine to your site "
560
  "despite if you blocked the country."
561
  msgstr ""
562
 
563
- #: libs/blockcountry-settings.php:1107
564
  msgid "Please note the \"Search Engine Visibility\" should not be selected in "
565
  msgstr ""
566
 
567
- #: libs/blockcountry-settings.php:1107
568
  msgid "reading settings."
569
  msgstr ""
570
 
571
- #: libs/blockcountry-settings.php:1145
572
  msgid "Frontend options"
573
  msgstr ""
574
 
575
- #: libs/blockcountry-settings.php:1172
576
  msgid "Block visitors from visiting the frontend of your website:"
577
  msgstr ""
578
 
579
- #: libs/blockcountry-settings.php:1178
580
  msgid ""
581
  "Do not block visitors that are logged in from visiting frontend website:"
582
  msgstr ""
583
 
584
- #: libs/blockcountry-settings.php:1184
585
  msgid "Block visitors from using the search function of your website:"
586
  msgstr ""
587
 
588
- #: libs/blockcountry-settings.php:1190 libs/blockcountry-settings.php:1337
589
  msgid "Block countries selected below:"
590
  msgstr ""
591
 
592
- #: libs/blockcountry-settings.php:1191 libs/blockcountry-settings.php:1338
593
  msgid "Block all countries except those selected below"
594
  msgstr ""
595
 
596
- #: libs/blockcountry-settings.php:1198 libs/blockcountry-settings.php:1345
597
  msgid "Select the countries:"
598
  msgstr ""
599
 
600
- #: libs/blockcountry-settings.php:1199 libs/blockcountry-settings.php:1346
601
  msgid "Use the CTRL key to select multiple countries"
602
  msgstr ""
603
 
604
- #: libs/blockcountry-settings.php:1241
605
  msgid "Block tag pages:"
606
  msgstr ""
607
 
608
- #: libs/blockcountry-settings.php:1242
609
  msgid "If you select this option tag pages will be blocked."
610
  msgstr ""
611
 
612
- #: libs/blockcountry-settings.php:1248
613
  msgid "Block feed:"
614
  msgstr ""
615
 
616
- #: libs/blockcountry-settings.php:1249
617
  msgid "If you select this option feed pages will be blocked."
618
  msgstr ""
619
 
620
- #: libs/blockcountry-settings.php:1257
621
  msgid "Frontend whitelist IPv4 and/or IPv6 addresses:"
622
  msgstr ""
623
 
624
- #: libs/blockcountry-settings.php:1257 libs/blockcountry-settings.php:1265
625
- #: libs/blockcountry-settings.php:1387 libs/blockcountry-settings.php:1395
626
  msgid "Use a semicolon (;) to separate IP addresses"
627
  msgstr ""
628
 
629
- #: libs/blockcountry-settings.php:1257 libs/blockcountry-settings.php:1265
630
- #: libs/blockcountry-settings.php:1387 libs/blockcountry-settings.php:1395
631
  msgid ""
632
  "This field accepts single IP addresses as well as ranges in CIDR format."
633
  msgstr ""
634
 
635
- #: libs/blockcountry-settings.php:1265
636
  msgid "Frontend blacklist IPv4 and/or IPv6 addresses:"
637
  msgstr ""
638
 
639
- #: libs/blockcountry-settings.php:1294
640
  msgid "Backend Options"
641
  msgstr ""
642
 
643
- #: libs/blockcountry-settings.php:1322
644
  msgid ""
645
  "Block visitors from visiting the backend (administrator) of your website:"
646
  msgstr ""
647
 
648
- #: libs/blockcountry-settings.php:1330
649
  msgid "Your IP address is"
650
  msgstr ""
651
 
652
- #: libs/blockcountry-settings.php:1330
653
  msgid "The country that is listed for this IP address is"
654
  msgstr ""
655
 
656
- #: libs/blockcountry-settings.php:1331
657
  msgid ""
658
  "Do <strong>NOT</strong> set the 'Block visitors from visiting the backend "
659
  "(administrator) of your website' and also select"
660
  msgstr ""
661
 
662
- #: libs/blockcountry-settings.php:1331
663
  msgid "below."
664
  msgstr ""
665
 
666
- #: libs/blockcountry-settings.php:1332
667
  msgid ""
668
  "You will NOT be able to login the next time if you DO block your own country "
669
  "from visiting the backend."
670
  msgstr ""
671
 
672
- #: libs/blockcountry-settings.php:1387
673
  msgid "Backend whitelist IPv4 and/or IPv6 addresses:"
674
  msgstr ""
675
 
676
- #: libs/blockcountry-settings.php:1395
677
  msgid "Backend blacklist IPv4 and/or IPv6 addresses:"
678
  msgstr ""
679
 
680
- #: libs/blockcountry-settings.php:1437
681
  msgid "Overall statistics since start"
682
  msgstr ""
683
 
684
- #: libs/blockcountry-settings.php:1440
685
  msgid "visitors blocked from the backend."
686
  msgstr ""
687
 
688
- #: libs/blockcountry-settings.php:1442
689
  msgid "visitors blocked from the frontend."
690
  msgstr ""
691
 
692
- #: libs/blockcountry-settings.php:1459
693
  msgid "Block type"
694
  msgstr ""
695
 
696
- #: libs/blockcountry-settings.php:1461
697
  msgid ""
698
  "You should choose one of the 3 block options below. This wil either show a "
699
  "block message, redirect to an internal page or redirect to an external page."
700
  msgstr ""
701
 
702
- #: libs/blockcountry-settings.php:1466
703
  msgid "Message to display when people are blocked:"
704
  msgstr ""
705
 
706
- #: libs/blockcountry-settings.php:1477
707
  msgid "Page to redirect to:"
708
  msgstr ""
709
 
710
- #: libs/blockcountry-settings.php:1478
711
  msgid ""
712
  "If you select a page here blocked visitors will be redirected to this page "
713
  "instead of displaying above block message."
714
  msgstr ""
715
 
716
- #: libs/blockcountry-settings.php:1484
717
  msgid "Choose a page..."
718
  msgstr ""
719
 
720
- #: libs/blockcountry-settings.php:1499
721
  msgid "URL to redirect to:"
722
  msgstr ""
723
 
724
- #: libs/blockcountry-settings.php:1500
725
  msgid ""
726
  "If you enter a URL here blocked visitors will be redirected to this URL "
727
  "instead of displaying above block message or redirected to a local page."
728
  msgstr ""
729
 
730
- #: libs/blockcountry-settings.php:1507
731
  msgid "General settings"
732
  msgstr ""
733
 
734
- #: libs/blockcountry-settings.php:1511
735
  msgid "Send headers when user is blocked:"
736
  msgstr ""
737
 
738
- #: libs/blockcountry-settings.php:1512
739
  msgid ""
740
  "Under normal circumstances you should keep this selected! Only if you have "
741
  "\"Cannot modify header information - headers already sent\" errors or if you "
742
  "know what you are doing uncheck this."
743
  msgstr ""
744
 
745
- #: libs/blockcountry-settings.php:1518
746
  msgid "Buffer output?:"
747
  msgstr ""
748
 
749
- #: libs/blockcountry-settings.php:1519
750
  msgid ""
751
  "You can use this option to buffer all output. This can be helpful in case "
752
  "you have \"headers already sent\" issues."
753
  msgstr ""
754
 
755
- #: libs/blockcountry-settings.php:1525
756
  msgid "Do not log IP addresses:"
757
  msgstr ""
758
 
759
- #: libs/blockcountry-settings.php:1526
760
  msgid ""
761
  "Check this box if the laws in your country do not permit you to log IP "
762
  "addresses or if you do not want to log the ip addresses."
763
  msgstr ""
764
 
765
- #: libs/blockcountry-settings.php:1532
766
  msgid "Do not block admin-ajax.php:"
767
  msgstr ""
768
 
769
- #: libs/blockcountry-settings.php:1533
770
  msgid "Check this box if you use a plugin that uses admin-ajax.php."
771
  msgstr ""
772
 
773
- #: libs/blockcountry-settings.php:1542
774
  msgid "Number of rows on logging tab:"
775
  msgstr ""
776
 
777
- #: libs/blockcountry-settings.php:1543
778
  msgid "How many rows do you want to display on each column on the logging tab."
779
  msgstr ""
780
 
781
- #: libs/blockcountry-settings.php:1558
782
  msgid "Number of days to keep logging:"
783
  msgstr ""
784
 
785
- #: libs/blockcountry-settings.php:1559
786
  msgid "How many days do you want to keep the logging used for the logging tab."
787
  msgstr ""
788
 
789
- #: libs/blockcountry-settings.php:1574
790
  msgid "Do not lookup hosts on the logging tab:"
791
  msgstr ""
792
 
793
- #: libs/blockcountry-settings.php:1575
794
  msgid ""
795
  "On some hosting environments looking up hosts may slow down the logging tab."
796
  msgstr ""
797
 
798
- #: libs/blockcountry-settings.php:1581
799
  msgid "Allow tracking:"
800
  msgstr ""
801
 
802
- #: libs/blockcountry-settings.php:1582
803
  msgid ""
804
  "This sends only the IP address and the number of attempts this ip address "
805
  "tried to login to your backend and was blocked doing so to a central server. "
@@ -807,168 +817,168 @@ msgid ""
807
  "countries."
808
  msgstr ""
809
 
810
- #: libs/blockcountry-settings.php:1588
811
  msgid "GeoIP API Key:"
812
  msgstr ""
813
 
814
- #: libs/blockcountry-settings.php:1589
815
  msgid ""
816
  "If for some reason you cannot or do not want to download the MaxMind GeoIP "
817
  "databases you will need an API key for the GeoIP api.<br />You can get an "
818
  "API key from: "
819
  msgstr ""
820
 
821
- #: libs/blockcountry-settings.php:1597
822
  msgid "GeoIP API Key Server Location:"
823
  msgstr ""
824
 
825
- #: libs/blockcountry-settings.php:1598
826
  msgid "Choose a location closest to your own location."
827
  msgstr ""
828
 
829
- #: libs/blockcountry-settings.php:1611
830
  msgid "Admin block API Key:"
831
  msgstr ""
832
 
833
- #: libs/blockcountry-settings.php:1612
834
  msgid ""
835
  "For additional security you can protect your backend from known IP addresses "
836
  "who have made hack attempts at other WordPress sites.<br />You can get more "
837
  "information and an API key from: "
838
  msgstr ""
839
 
840
- #: libs/blockcountry-settings.php:1620
841
  msgid "Accessibility options:"
842
  msgstr ""
843
 
844
- #: libs/blockcountry-settings.php:1621
845
  msgid "Set this option if you cannot use the default country selection box."
846
  msgstr ""
847
 
848
- #: libs/blockcountry-settings.php:1627
849
  msgid "Override IP information:"
850
  msgstr ""
851
 
852
- #: libs/blockcountry-settings.php:1628
853
  msgid ""
854
  "This option allows you to override how iQ Block Country gets the real IP of "
855
  "your visitors."
856
  msgstr ""
857
 
858
- #: libs/blockcountry-settings.php:1647
859
  msgid "Log all visits:"
860
  msgstr ""
861
 
862
- #: libs/blockcountry-settings.php:1648
863
  msgid ""
864
  "This logs all visits despite if they are blocked or not. This is only for "
865
  "debugging purposes."
866
  msgstr ""
867
 
868
- #: libs/blockcountry-settings.php:1674
869
  msgid "Last blocked visits"
870
  msgstr ""
871
 
872
- #: libs/blockcountry-settings.php:1689
873
  msgid "Date / Time"
874
  msgstr ""
875
 
876
- #: libs/blockcountry-settings.php:1689 libs/blockcountry-settings.php:1727
877
  msgid "IP Address"
878
  msgstr ""
879
 
880
- #: libs/blockcountry-settings.php:1689 libs/blockcountry-settings.php:1727
881
  msgid "Hostname"
882
  msgstr ""
883
 
884
- #: libs/blockcountry-settings.php:1689 libs/blockcountry-settings.php:1714
885
  msgid "Country"
886
  msgstr ""
887
 
888
- #: libs/blockcountry-settings.php:1689
889
  msgid "Frontend/Backend"
890
  msgstr ""
891
 
892
- #: libs/blockcountry-settings.php:1705 libs/blockcountry-settings.php:1815
893
  msgid "Frontend"
894
  msgstr ""
895
 
896
- #: libs/blockcountry-settings.php:1705
897
  msgid "Backend banlist"
898
  msgstr ""
899
 
900
- #: libs/blockcountry-settings.php:1705
901
  msgid "Backend & Backend banlist"
902
  msgstr ""
903
 
904
- #: libs/blockcountry-settings.php:1705 libs/blockcountry-settings.php:1816
905
  msgid "Backend"
906
  msgstr ""
907
 
908
- #: libs/blockcountry-settings.php:1712
909
  msgid "Top countries that are blocked"
910
  msgstr ""
911
 
912
- #: libs/blockcountry-settings.php:1714 libs/blockcountry-settings.php:1727
913
- #: libs/blockcountry-settings.php:1748
914
  msgid "# of blocked attempts"
915
  msgstr ""
916
 
917
- #: libs/blockcountry-settings.php:1725
918
  msgid "Top hosts that are blocked"
919
  msgstr ""
920
 
921
- #: libs/blockcountry-settings.php:1746
922
  msgid "Top URLs that are blocked"
923
  msgstr ""
924
 
925
- #: libs/blockcountry-settings.php:1762
926
  msgid "Clear database"
927
  msgstr ""
928
 
929
- #: libs/blockcountry-settings.php:1785
930
  msgid "Download as CSV file"
931
  msgstr ""
932
 
933
- #: libs/blockcountry-settings.php:1792
934
  msgid ""
935
  "You are not logging any information. Please uncheck the option 'Do not log "
936
  "IP addresses' if this is not what you want."
937
  msgstr ""
938
 
939
- #: libs/blockcountry-settings.php:1814
940
  msgid "Home"
941
  msgstr ""
942
 
943
- #: libs/blockcountry-settings.php:1817
944
  msgid "Pages"
945
  msgstr ""
946
 
947
- #: libs/blockcountry-settings.php:1818
948
  msgid "Categories"
949
  msgstr ""
950
 
951
- #: libs/blockcountry-settings.php:1819
952
  msgid "Tags"
953
  msgstr ""
954
 
955
- #: libs/blockcountry-settings.php:1819
956
  msgid "Post types"
957
  msgstr ""
958
 
959
- #: libs/blockcountry-settings.php:1820
960
  msgid "Services"
961
  msgstr ""
962
 
963
- #: libs/blockcountry-settings.php:1821
964
  msgid "Tools"
965
  msgstr ""
966
 
967
- #: libs/blockcountry-settings.php:1822
968
  msgid "Logging"
969
  msgstr ""
970
 
971
- #: libs/blockcountry-settings.php:1823
972
  msgid "Import/Export"
973
  msgstr ""
974
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: iQ Block Country\n"
4
+ "POT-Creation-Date: 2020-01-04 19:11+0100\n"
5
+ "PO-Revision-Date: 2020-01-04 19:12+0100\n"
6
  "Last-Translator: Pascal <pascal@webence.nl>\n"
7
  "Language-Team: iQ Block Country <info@redeo.nl>\n"
8
  "Language: en\n"
21
  "manually or if you wish to use the GeoIP API get an API key from: "
22
  msgstr ""
23
 
24
+ #: libs/blockcountry-settings.php:67 libs/blockcountry-settings.php:92
25
+ msgid "Please download the database (GeoLite2-Country.tar.gz) from: "
 
26
  msgstr ""
27
 
28
+ #: libs/blockcountry-settings.php:68 libs/blockcountry-settings.php:93
29
+ #: libs/blockcountry-settings.php:133
30
+ msgid ""
31
+ "If you do not have an account at Maxmind yet for the Geolite2 database sign "
32
+ "up for a free account at:"
33
+ msgstr ""
34
+
35
+ #: libs/blockcountry-settings.php:70 libs/blockcountry-settings.php:95
36
  msgid ""
37
  "unzip the file and afterwards upload the GeoLite2-Country.mmdb file to the "
38
  "following location: "
39
  msgstr ""
40
 
41
+ #: libs/blockcountry-settings.php:73 libs/blockcountry-settings.php:98
42
+ #: libs/blockcountry-settings.php:138
43
  msgid "For more detailed instructions take a look at the documentation.."
44
  msgstr ""
45
 
46
+ #: libs/blockcountry-settings.php:90
47
  msgid ""
48
  "Please upgrade your old GeoIP database. This database is no longer "
49
  "maintained by MaxMind and everyone should upgrade to the GeoIP2 database."
50
  "<br />"
51
  msgstr ""
52
 
53
+ #: libs/blockcountry-settings.php:91
54
  msgid ""
55
  "The MaxMind GeoIP2 database does not exist yet . Please download this file "
56
  "manually or if you wish to use the GeoIP API get an API key from: "
57
  msgstr ""
58
 
59
+ #: libs/blockcountry-settings.php:114
60
  msgid "A caching plugin appears to be active on your WordPress installation."
61
  msgstr ""
62
 
63
+ #: libs/blockcountry-settings.php:115
64
  msgid ""
65
  "Caching plugins do not always cooperate nicely together with the iQ Block "
66
  "Country plugin which may lead to non blocked visitors getting a cached "
67
  "banned message or page."
68
  msgstr ""
69
 
70
+ #: libs/blockcountry-settings.php:116
71
  msgid "For more information visit the following page:"
72
  msgstr ""
73
 
74
+ #: libs/blockcountry-settings.php:131
75
  msgid ""
76
  "The MaxMind GeoIP database is older than 3 months. Please update this file "
77
  "manually or if you wish to use the GeoIP API get an API key from: "
78
  msgstr ""
79
 
80
  #: libs/blockcountry-settings.php:132
81
+ msgid "Please download the database (GeoLite2-Country.tar.gz) from MaxMind. "
82
+ msgstr ""
83
+
84
+ #: libs/blockcountry-settings.php:135
85
  msgid "unzip the file and afterwards upload it to the following location: "
86
  msgstr ""
87
 
88
+ #: libs/blockcountry-settings.php:309
89
  msgid ""
90
  "Check which country belongs to an IP Address according to the current "
91
  "database."
92
  msgstr ""
93
 
94
+ #: libs/blockcountry-settings.php:314
95
  msgid "IP Address to check:"
96
  msgstr ""
97
 
98
+ #: libs/blockcountry-settings.php:332
99
  msgid "No country for"
100
  msgstr ""
101
 
102
+ #: libs/blockcountry-settings.php:332
103
  msgid "could be found. Or"
104
  msgstr ""
105
 
106
+ #: libs/blockcountry-settings.php:332
107
  msgid "is not a valid IPv4 or IPv6 IP address"
108
  msgstr ""
109
 
110
+ #: libs/blockcountry-settings.php:337
111
  msgid "IP Adress"
112
  msgstr ""
113
 
114
+ #: libs/blockcountry-settings.php:337
115
  msgid "belongs to"
116
  msgstr ""
117
 
118
+ #: libs/blockcountry-settings.php:343 libs/blockcountry-settings.php:348
119
  msgid "This country is not permitted to visit the frontend of this website."
120
  msgstr ""
121
 
122
+ #: libs/blockcountry-settings.php:357 libs/blockcountry-settings.php:364
123
  msgid "This country is not permitted to visit the backend of this website."
124
  msgstr ""
125
 
126
+ #: libs/blockcountry-settings.php:370
127
  msgid "This IP address is present in the blacklist."
128
  msgstr ""
129
 
130
+ #: libs/blockcountry-settings.php:376
131
  msgid "This IP address is present in the frontend blacklist."
132
  msgstr ""
133
 
134
+ #: libs/blockcountry-settings.php:381
135
  msgid "This IP address is present in the frontend whitelist."
136
  msgstr ""
137
 
138
+ #: libs/blockcountry-settings.php:386
139
  msgid "This IP address is present in the backend blacklist."
140
  msgstr ""
141
 
142
+ #: libs/blockcountry-settings.php:391
143
  msgid "This IP address is present in the backend whitelist."
144
  msgstr ""
145
 
146
+ #: libs/blockcountry-settings.php:398
147
  msgid "Check IP address"
148
  msgstr ""
149
 
150
+ #: libs/blockcountry-settings.php:406
151
  msgid "Database information"
152
  msgstr ""
153
 
154
+ #: libs/blockcountry-settings.php:417
155
  msgid "IPv4 database exists. File date: "
156
  msgstr ""
157
 
158
+ #: libs/blockcountry-settings.php:424 libs/blockcountry-settings.php:460
159
  msgid "Database is older than 3 months... Please update..."
160
  msgstr ""
161
 
162
+ #: libs/blockcountry-settings.php:429
163
  msgid "IPv4 database does not exist."
164
  msgstr ""
165
 
166
+ #: libs/blockcountry-settings.php:435
167
  msgid "IPv6 database exists. File date: "
168
  msgstr ""
169
 
170
+ #: libs/blockcountry-settings.php:442
171
  msgid "Database is older than 3 months... Please update..."
172
  msgstr ""
173
 
174
+ #: libs/blockcountry-settings.php:447
175
  msgid "IPv6 database does not exist."
176
  msgstr ""
177
 
178
+ #: libs/blockcountry-settings.php:453
179
  msgid "GeoIP2 database exists. File date: "
180
  msgstr ""
181
 
182
+ #: libs/blockcountry-settings.php:465
183
  msgid "GeoIP2 database does not exist."
184
  msgstr ""
185
 
186
+ #: libs/blockcountry-settings.php:472
187
  msgid "Your GeoIP API key is valid till: "
188
  msgstr ""
189
 
190
+ #: libs/blockcountry-settings.php:481
191
  msgid "Active plugins"
192
  msgstr ""
193
 
194
+ #: libs/blockcountry-settings.php:488
195
  msgid "Plugin name"
196
  msgstr ""
197
 
198
+ #: libs/blockcountry-settings.php:488
199
  msgid "Version"
200
  msgstr ""
201
 
202
+ #: libs/blockcountry-settings.php:488 libs/blockcountry-settings.php:1692
203
+ #: libs/blockcountry-settings.php:1763
204
  msgid "URL"
205
  msgstr ""
206
 
207
+ #: libs/blockcountry-settings.php:507
208
  msgid "none"
209
  msgstr ""
210
 
211
+ #: libs/blockcountry-settings.php:513 libs/blockcountry-settings.php:514
212
  msgid "unavailable"
213
  msgstr ""
214
 
215
+ #: libs/blockcountry-settings.php:518
216
  msgid "File System Information"
217
  msgstr ""
218
 
219
+ #: libs/blockcountry-settings.php:521
220
  msgid "Website Root Folder"
221
  msgstr ""
222
 
223
+ #: libs/blockcountry-settings.php:522 libs/blockcountry-settings.php:716
224
  msgid "Document Root Path"
225
  msgstr ""
226
 
227
+ #: libs/blockcountry-settings.php:526
228
  msgid "Database Information"
229
  msgstr ""
230
 
231
+ #: libs/blockcountry-settings.php:528
232
  msgid "MySQL Database Version"
233
  msgstr ""
234
 
235
+ #: libs/blockcountry-settings.php:529
236
  msgid "MySQL Client Version"
237
  msgstr ""
238
 
239
+ #: libs/blockcountry-settings.php:530
240
  msgid "Database Host"
241
  msgstr ""
242
 
243
+ #: libs/blockcountry-settings.php:536
244
  msgid "Not Set"
245
  msgstr ""
246
 
247
+ #: libs/blockcountry-settings.php:538 libs/blockcountry-settings.php:618
248
+ #: libs/blockcountry-settings.php:626 libs/blockcountry-settings.php:634
249
+ #: libs/blockcountry-settings.php:642 libs/blockcountry-settings.php:651
250
+ #: libs/blockcountry-settings.php:668
251
  msgid "Off"
252
  msgstr ""
253
 
254
+ #: libs/blockcountry-settings.php:541
255
  msgid "SQL Mode"
256
  msgstr ""
257
 
258
+ #: libs/blockcountry-settings.php:545
259
  msgid "Server Information"
260
  msgstr ""
261
 
262
+ #: libs/blockcountry-settings.php:550
263
  msgid "Server IP Address"
264
  msgstr ""
265
 
266
+ #: libs/blockcountry-settings.php:552
267
  msgid "Server Type"
268
  msgstr ""
269
 
270
+ #: libs/blockcountry-settings.php:553
271
  msgid "Operating System"
272
  msgstr ""
273
 
274
+ #: libs/blockcountry-settings.php:554
275
  msgid "Browser Compression Supported"
276
  msgstr ""
277
 
278
+ #: libs/blockcountry-settings.php:570
279
  msgid "undefined"
280
  msgstr ""
281
 
282
+ #: libs/blockcountry-settings.php:577
283
  msgid "PHP Process User (UID:GID)"
284
  msgstr ""
285
 
286
+ #: libs/blockcountry-settings.php:582
287
  msgid "PHP Information"
288
  msgstr ""
289
 
290
+ #: libs/blockcountry-settings.php:587
291
  msgid "PHP Version"
292
  msgstr ""
293
 
294
+ #: libs/blockcountry-settings.php:588
295
  msgid "PHP Memory Usage"
296
  msgstr ""
297
 
298
+ #: libs/blockcountry-settings.php:588
299
  msgid " MB"
300
  msgstr ""
301
 
302
+ #: libs/blockcountry-settings.php:594 libs/blockcountry-settings.php:602
303
+ #: libs/blockcountry-settings.php:610 libs/blockcountry-settings.php:659
304
  msgid "N/A"
305
  msgstr ""
306
 
307
+ #: libs/blockcountry-settings.php:597
308
  msgid "PHP Memory Limit"
309
  msgstr ""
310
 
311
+ #: libs/blockcountry-settings.php:605
312
  msgid "PHP Max Upload Size"
313
  msgstr ""
314
 
315
+ #: libs/blockcountry-settings.php:613
316
  msgid "PHP Max Post Size"
317
  msgstr ""
318
 
319
+ #: libs/blockcountry-settings.php:616 libs/blockcountry-settings.php:624
320
+ #: libs/blockcountry-settings.php:632 libs/blockcountry-settings.php:640
321
+ #: libs/blockcountry-settings.php:649 libs/blockcountry-settings.php:666
322
  msgid "On"
323
  msgstr ""
324
 
325
+ #: libs/blockcountry-settings.php:621
326
  msgid "PHP Allow URL fopen"
327
  msgstr ""
328
 
329
+ #: libs/blockcountry-settings.php:629
330
  msgid "PHP Allow URL Include"
331
  msgstr ""
332
 
333
+ #: libs/blockcountry-settings.php:637
334
  msgid "PHP Display Errors"
335
  msgstr ""
336
 
337
+ #: libs/blockcountry-settings.php:645
338
  msgid "PHP Display Startup Errors"
339
  msgstr ""
340
 
341
+ #: libs/blockcountry-settings.php:654
342
  msgid "PHP Expose PHP"
343
  msgstr ""
344
 
345
+ #: libs/blockcountry-settings.php:662
346
  msgid "PHP Max Script Execution Time"
347
  msgstr ""
348
 
349
+ #: libs/blockcountry-settings.php:663
350
  msgid "Seconds"
351
  msgstr ""
352
 
353
+ #: libs/blockcountry-settings.php:671
354
  msgid "PHP open_basedir"
355
  msgstr ""
356
 
357
+ #: libs/blockcountry-settings.php:674 libs/blockcountry-settings.php:682
358
  msgid "Yes"
359
  msgstr ""
360
 
361
+ #: libs/blockcountry-settings.php:676 libs/blockcountry-settings.php:684
362
  msgid "No"
363
  msgstr ""
364
 
365
+ #: libs/blockcountry-settings.php:679
366
  msgid "PHP XML Support"
367
  msgstr ""
368
 
369
+ #: libs/blockcountry-settings.php:687
370
  msgid "PHP IPTC Support"
371
  msgstr ""
372
 
373
+ #: libs/blockcountry-settings.php:689
374
  msgid "Disabled PHP Functions"
375
  msgstr ""
376
 
377
+ #: libs/blockcountry-settings.php:696
378
  msgid "Wordpress info"
379
  msgstr ""
380
 
381
+ #: libs/blockcountry-settings.php:701
382
  msgid "is enabled"
383
  msgstr ""
384
 
385
+ #: libs/blockcountry-settings.php:703
386
  msgid "is disabled"
387
  msgstr ""
388
 
389
+ #: libs/blockcountry-settings.php:706
390
  msgid " Multisite"
391
  msgstr ""
392
 
393
+ #: libs/blockcountry-settings.php:709
394
  msgid "are enabled"
395
  msgstr ""
396
 
397
+ #: libs/blockcountry-settings.php:711
398
  msgid "are disabled"
399
  msgstr ""
400
 
401
+ #: libs/blockcountry-settings.php:714
402
  msgid "Permalinks"
403
  msgstr ""
404
 
405
+ #: libs/blockcountry-settings.php:721
406
  msgid "IP Address information"
407
  msgstr ""
408
 
409
+ #: libs/blockcountry-settings.php:728 libs/blockcountry-settings.php:733
410
+ #: libs/blockcountry-settings.php:738 libs/blockcountry-settings.php:743
411
+ #: libs/blockcountry-settings.php:748 libs/blockcountry-settings.php:753
412
+ #: libs/blockcountry-settings.php:758 libs/blockcountry-settings.php:763
413
+ #: libs/blockcountry-settings.php:768
414
  msgid "Not set"
415
  msgstr ""
416
 
417
+ #: libs/blockcountry-settings.php:784
418
  msgid "Export"
419
  msgstr ""
420
 
421
+ #: libs/blockcountry-settings.php:785
422
  msgid ""
423
  "When you click on <tt>Backup all settings</tt> button a backup of the iQ "
424
  "Block Country configuration will be created."
425
  msgstr ""
426
 
427
+ #: libs/blockcountry-settings.php:786
428
  msgid ""
429
  "After exporting, you can either use the backup file to restore your settings "
430
  "on this site again or copy the settings to another WordPress site."
431
  msgstr ""
432
 
433
+ #: libs/blockcountry-settings.php:790
434
  msgid "Backup all settings"
435
  msgstr ""
436
 
437
+ #: libs/blockcountry-settings.php:797
438
  msgid "Import"
439
  msgstr ""
440
 
441
+ #: libs/blockcountry-settings.php:798
442
  msgid "Click the browse button and choose a zip file that you exported before."
443
  msgstr ""
444
 
445
+ #: libs/blockcountry-settings.php:799
446
  msgid "Press Restore settings button, and let WordPress do the magic for you."
447
  msgstr ""
448
 
449
+ #: libs/blockcountry-settings.php:804
450
  msgid "Restore settings"
451
  msgstr ""
452
 
453
+ #: libs/blockcountry-settings.php:827 libs/blockcountry-settings.php:830
454
+ #: libs/blockcountry-settings.php:839
455
  msgid "Something went wrong exporting this file"
456
  msgstr ""
457
 
458
+ #: libs/blockcountry-settings.php:842
459
  msgid "Exporting settings..."
460
  msgstr ""
461
 
462
+ #: libs/blockcountry-settings.php:857
463
  msgid "Something went wrong importing this file"
464
  msgstr ""
465
 
466
+ #: libs/blockcountry-settings.php:874
467
  msgid "All options are restored successfully."
468
  msgstr ""
469
 
470
+ #: libs/blockcountry-settings.php:877
471
  msgid "Invalid file."
472
  msgstr ""
473
 
474
+ #: libs/blockcountry-settings.php:882
475
  msgid "No correct import or export option given."
476
  msgstr ""
477
 
478
+ #: libs/blockcountry-settings.php:891
479
  msgid "Select which pages are blocked."
480
  msgstr ""
481
 
482
+ #: libs/blockcountry-settings.php:898
483
  msgid "Do you want to block individual pages:"
484
  msgstr ""
485
 
486
+ #: libs/blockcountry-settings.php:899
487
  msgid "If you do not select this option all pages will be blocked."
488
  msgstr ""
489
 
490
+ #: libs/blockcountry-settings.php:906
491
  msgid "Block pages selected below:"
492
  msgstr ""
493
 
494
+ #: libs/blockcountry-settings.php:907
495
  msgid "Block all pages except those selected below"
496
  msgstr ""
497
 
498
+ #: libs/blockcountry-settings.php:914
499
  msgid "Select pages you want to block:"
500
  msgstr ""
501
 
502
+ #: libs/blockcountry-settings.php:936 libs/blockcountry-settings.php:990
503
+ #: libs/blockcountry-settings.php:1038 libs/blockcountry-settings.php:1086
504
+ #: libs/blockcountry-settings.php:1133 libs/blockcountry-settings.php:1277
505
+ #: libs/blockcountry-settings.php:1407 libs/blockcountry-settings.php:1659
506
  msgid "Save Changes"
507
  msgstr ""
508
 
509
+ #: libs/blockcountry-settings.php:949
510
  msgid "Select which categories are blocked."
511
  msgstr ""
512
 
513
+ #: libs/blockcountry-settings.php:956
514
  msgid "Do you want to block individual categories:"
515
  msgstr ""
516
 
517
+ #: libs/blockcountry-settings.php:957 libs/blockcountry-settings.php:1011
518
  msgid "If you do not select this option all blog articles will be blocked."
519
  msgstr ""
520
 
521
+ #: libs/blockcountry-settings.php:962
522
  msgid "Do you want to block the homepage:"
523
  msgstr ""
524
 
525
+ #: libs/blockcountry-settings.php:963
526
  msgid ""
527
  "If you do not select this option visitors will not be blocked from your "
528
  "homepage regardless of the categories you select."
529
  msgstr ""
530
 
531
+ #: libs/blockcountry-settings.php:968
532
  msgid "Select categories you want to block:"
533
  msgstr ""
534
 
535
+ #: libs/blockcountry-settings.php:1003
536
  msgid "Select which tags are blocked."
537
  msgstr ""
538
 
539
+ #: libs/blockcountry-settings.php:1010
540
  msgid "Do you want to block individual tags:"
541
  msgstr ""
542
 
543
+ #: libs/blockcountry-settings.php:1016
544
  msgid "Select tags you want to block:"
545
  msgstr ""
546
 
547
+ #: libs/blockcountry-settings.php:1052
548
  msgid "Select which post types are blocked."
549
  msgstr ""
550
 
551
+ #: libs/blockcountry-settings.php:1059
552
  msgid "Do you want to block individual post types:"
553
  msgstr ""
554
 
555
+ #: libs/blockcountry-settings.php:1064
556
  msgid "Select post types you want to block:"
557
  msgstr ""
558
 
559
+ #: libs/blockcountry-settings.php:1101
560
  msgid "Select which services are allowed."
561
  msgstr ""
562
 
563
+ #: libs/blockcountry-settings.php:1108
564
  msgid "Select which services you want to allow:"
565
  msgstr ""
566
 
567
+ #: libs/blockcountry-settings.php:1109
568
  msgid ""
569
  "This will allow a service like for instance a search engine to your site "
570
  "despite if you blocked the country."
571
  msgstr ""
572
 
573
+ #: libs/blockcountry-settings.php:1110
574
  msgid "Please note the \"Search Engine Visibility\" should not be selected in "
575
  msgstr ""
576
 
577
+ #: libs/blockcountry-settings.php:1110
578
  msgid "reading settings."
579
  msgstr ""
580
 
581
+ #: libs/blockcountry-settings.php:1148
582
  msgid "Frontend options"
583
  msgstr ""
584
 
585
+ #: libs/blockcountry-settings.php:1175
586
  msgid "Block visitors from visiting the frontend of your website:"
587
  msgstr ""
588
 
589
+ #: libs/blockcountry-settings.php:1181
590
  msgid ""
591
  "Do not block visitors that are logged in from visiting frontend website:"
592
  msgstr ""
593
 
594
+ #: libs/blockcountry-settings.php:1187
595
  msgid "Block visitors from using the search function of your website:"
596
  msgstr ""
597
 
598
+ #: libs/blockcountry-settings.php:1193 libs/blockcountry-settings.php:1340
599
  msgid "Block countries selected below:"
600
  msgstr ""
601
 
602
+ #: libs/blockcountry-settings.php:1194 libs/blockcountry-settings.php:1341
603
  msgid "Block all countries except those selected below"
604
  msgstr ""
605
 
606
+ #: libs/blockcountry-settings.php:1201 libs/blockcountry-settings.php:1348
607
  msgid "Select the countries:"
608
  msgstr ""
609
 
610
+ #: libs/blockcountry-settings.php:1202 libs/blockcountry-settings.php:1349
611
  msgid "Use the CTRL key to select multiple countries"
612
  msgstr ""
613
 
614
+ #: libs/blockcountry-settings.php:1244
615
  msgid "Block tag pages:"
616
  msgstr ""
617
 
618
+ #: libs/blockcountry-settings.php:1245
619
  msgid "If you select this option tag pages will be blocked."
620
  msgstr ""
621
 
622
+ #: libs/blockcountry-settings.php:1251
623
  msgid "Block feed:"
624
  msgstr ""
625
 
626
+ #: libs/blockcountry-settings.php:1252
627
  msgid "If you select this option feed pages will be blocked."
628
  msgstr ""
629
 
630
+ #: libs/blockcountry-settings.php:1260
631
  msgid "Frontend whitelist IPv4 and/or IPv6 addresses:"
632
  msgstr ""
633
 
634
+ #: libs/blockcountry-settings.php:1260 libs/blockcountry-settings.php:1268
635
+ #: libs/blockcountry-settings.php:1390 libs/blockcountry-settings.php:1398
636
  msgid "Use a semicolon (;) to separate IP addresses"
637
  msgstr ""
638
 
639
+ #: libs/blockcountry-settings.php:1260 libs/blockcountry-settings.php:1268
640
+ #: libs/blockcountry-settings.php:1390 libs/blockcountry-settings.php:1398
641
  msgid ""
642
  "This field accepts single IP addresses as well as ranges in CIDR format."
643
  msgstr ""
644
 
645
+ #: libs/blockcountry-settings.php:1268
646
  msgid "Frontend blacklist IPv4 and/or IPv6 addresses:"
647
  msgstr ""
648
 
649
+ #: libs/blockcountry-settings.php:1297
650
  msgid "Backend Options"
651
  msgstr ""
652
 
653
+ #: libs/blockcountry-settings.php:1325
654
  msgid ""
655
  "Block visitors from visiting the backend (administrator) of your website:"
656
  msgstr ""
657
 
658
+ #: libs/blockcountry-settings.php:1333
659
  msgid "Your IP address is"
660
  msgstr ""
661
 
662
+ #: libs/blockcountry-settings.php:1333
663
  msgid "The country that is listed for this IP address is"
664
  msgstr ""
665
 
666
+ #: libs/blockcountry-settings.php:1334
667
  msgid ""
668
  "Do <strong>NOT</strong> set the 'Block visitors from visiting the backend "
669
  "(administrator) of your website' and also select"
670
  msgstr ""
671
 
672
+ #: libs/blockcountry-settings.php:1334
673
  msgid "below."
674
  msgstr ""
675
 
676
+ #: libs/blockcountry-settings.php:1335
677
  msgid ""
678
  "You will NOT be able to login the next time if you DO block your own country "
679
  "from visiting the backend."
680
  msgstr ""
681
 
682
+ #: libs/blockcountry-settings.php:1390
683
  msgid "Backend whitelist IPv4 and/or IPv6 addresses:"
684
  msgstr ""
685
 
686
+ #: libs/blockcountry-settings.php:1398
687
  msgid "Backend blacklist IPv4 and/or IPv6 addresses:"
688
  msgstr ""
689
 
690
+ #: libs/blockcountry-settings.php:1440
691
  msgid "Overall statistics since start"
692
  msgstr ""
693
 
694
+ #: libs/blockcountry-settings.php:1443
695
  msgid "visitors blocked from the backend."
696
  msgstr ""
697
 
698
+ #: libs/blockcountry-settings.php:1445
699
  msgid "visitors blocked from the frontend."
700
  msgstr ""
701
 
702
+ #: libs/blockcountry-settings.php:1462
703
  msgid "Block type"
704
  msgstr ""
705
 
706
+ #: libs/blockcountry-settings.php:1464
707
  msgid ""
708
  "You should choose one of the 3 block options below. This wil either show a "
709
  "block message, redirect to an internal page or redirect to an external page."
710
  msgstr ""
711
 
712
+ #: libs/blockcountry-settings.php:1469
713
  msgid "Message to display when people are blocked:"
714
  msgstr ""
715
 
716
+ #: libs/blockcountry-settings.php:1480
717
  msgid "Page to redirect to:"
718
  msgstr ""
719
 
720
+ #: libs/blockcountry-settings.php:1481
721
  msgid ""
722
  "If you select a page here blocked visitors will be redirected to this page "
723
  "instead of displaying above block message."
724
  msgstr ""
725
 
726
+ #: libs/blockcountry-settings.php:1487
727
  msgid "Choose a page..."
728
  msgstr ""
729
 
730
+ #: libs/blockcountry-settings.php:1502
731
  msgid "URL to redirect to:"
732
  msgstr ""
733
 
734
+ #: libs/blockcountry-settings.php:1503
735
  msgid ""
736
  "If you enter a URL here blocked visitors will be redirected to this URL "
737
  "instead of displaying above block message or redirected to a local page."
738
  msgstr ""
739
 
740
+ #: libs/blockcountry-settings.php:1510
741
  msgid "General settings"
742
  msgstr ""
743
 
744
+ #: libs/blockcountry-settings.php:1514
745
  msgid "Send headers when user is blocked:"
746
  msgstr ""
747
 
748
+ #: libs/blockcountry-settings.php:1515
749
  msgid ""
750
  "Under normal circumstances you should keep this selected! Only if you have "
751
  "\"Cannot modify header information - headers already sent\" errors or if you "
752
  "know what you are doing uncheck this."
753
  msgstr ""
754
 
755
+ #: libs/blockcountry-settings.php:1521
756
  msgid "Buffer output?:"
757
  msgstr ""
758
 
759
+ #: libs/blockcountry-settings.php:1522
760
  msgid ""
761
  "You can use this option to buffer all output. This can be helpful in case "
762
  "you have \"headers already sent\" issues."
763
  msgstr ""
764
 
765
+ #: libs/blockcountry-settings.php:1528
766
  msgid "Do not log IP addresses:"
767
  msgstr ""
768
 
769
+ #: libs/blockcountry-settings.php:1529
770
  msgid ""
771
  "Check this box if the laws in your country do not permit you to log IP "
772
  "addresses or if you do not want to log the ip addresses."
773
  msgstr ""
774
 
775
+ #: libs/blockcountry-settings.php:1535
776
  msgid "Do not block admin-ajax.php:"
777
  msgstr ""
778
 
779
+ #: libs/blockcountry-settings.php:1536
780
  msgid "Check this box if you use a plugin that uses admin-ajax.php."
781
  msgstr ""
782
 
783
+ #: libs/blockcountry-settings.php:1545
784
  msgid "Number of rows on logging tab:"
785
  msgstr ""
786
 
787
+ #: libs/blockcountry-settings.php:1546
788
  msgid "How many rows do you want to display on each column on the logging tab."
789
  msgstr ""
790
 
791
+ #: libs/blockcountry-settings.php:1561
792
  msgid "Number of days to keep logging:"
793
  msgstr ""
794
 
795
+ #: libs/blockcountry-settings.php:1562
796
  msgid "How many days do you want to keep the logging used for the logging tab."
797
  msgstr ""
798
 
799
+ #: libs/blockcountry-settings.php:1577
800
  msgid "Do not lookup hosts on the logging tab:"
801
  msgstr ""
802
 
803
+ #: libs/blockcountry-settings.php:1578
804
  msgid ""
805
  "On some hosting environments looking up hosts may slow down the logging tab."
806
  msgstr ""
807
 
808
+ #: libs/blockcountry-settings.php:1584
809
  msgid "Allow tracking:"
810
  msgstr ""
811
 
812
+ #: libs/blockcountry-settings.php:1585
813
  msgid ""
814
  "This sends only the IP address and the number of attempts this ip address "
815
  "tried to login to your backend and was blocked doing so to a central server. "
817
  "countries."
818
  msgstr ""
819
 
820
+ #: libs/blockcountry-settings.php:1591
821
  msgid "GeoIP API Key:"
822
  msgstr ""
823
 
824
+ #: libs/blockcountry-settings.php:1592
825
  msgid ""
826
  "If for some reason you cannot or do not want to download the MaxMind GeoIP "
827
  "databases you will need an API key for the GeoIP api.<br />You can get an "
828
  "API key from: "
829
  msgstr ""
830
 
831
+ #: libs/blockcountry-settings.php:1600
832
  msgid "GeoIP API Key Server Location:"
833
  msgstr ""
834
 
835
+ #: libs/blockcountry-settings.php:1601
836
  msgid "Choose a location closest to your own location."
837
  msgstr ""
838
 
839
+ #: libs/blockcountry-settings.php:1614
840
  msgid "Admin block API Key:"
841
  msgstr ""
842
 
843
+ #: libs/blockcountry-settings.php:1615
844
  msgid ""
845
  "For additional security you can protect your backend from known IP addresses "
846
  "who have made hack attempts at other WordPress sites.<br />You can get more "
847
  "information and an API key from: "
848
  msgstr ""
849
 
850
+ #: libs/blockcountry-settings.php:1623
851
  msgid "Accessibility options:"
852
  msgstr ""
853
 
854
+ #: libs/blockcountry-settings.php:1624
855
  msgid "Set this option if you cannot use the default country selection box."
856
  msgstr ""
857
 
858
+ #: libs/blockcountry-settings.php:1630
859
  msgid "Override IP information:"
860
  msgstr ""
861
 
862
+ #: libs/blockcountry-settings.php:1631
863
  msgid ""
864
  "This option allows you to override how iQ Block Country gets the real IP of "
865
  "your visitors."
866
  msgstr ""
867
 
868
+ #: libs/blockcountry-settings.php:1650
869
  msgid "Log all visits:"
870
  msgstr ""
871
 
872
+ #: libs/blockcountry-settings.php:1651
873
  msgid ""
874
  "This logs all visits despite if they are blocked or not. This is only for "
875
  "debugging purposes."
876
  msgstr ""
877
 
878
+ #: libs/blockcountry-settings.php:1677
879
  msgid "Last blocked visits"
880
  msgstr ""
881
 
882
+ #: libs/blockcountry-settings.php:1692
883
  msgid "Date / Time"
884
  msgstr ""
885
 
886
+ #: libs/blockcountry-settings.php:1692 libs/blockcountry-settings.php:1742
887
  msgid "IP Address"
888
  msgstr ""
889
 
890
+ #: libs/blockcountry-settings.php:1692 libs/blockcountry-settings.php:1742
891
  msgid "Hostname"
892
  msgstr ""
893
 
894
+ #: libs/blockcountry-settings.php:1692 libs/blockcountry-settings.php:1729
895
  msgid "Country"
896
  msgstr ""
897
 
898
+ #: libs/blockcountry-settings.php:1692
899
  msgid "Frontend/Backend"
900
  msgstr ""
901
 
902
+ #: libs/blockcountry-settings.php:1720 libs/blockcountry-settings.php:1830
903
  msgid "Frontend"
904
  msgstr ""
905
 
906
+ #: libs/blockcountry-settings.php:1720
907
  msgid "Backend banlist"
908
  msgstr ""
909
 
910
+ #: libs/blockcountry-settings.php:1720
911
  msgid "Backend & Backend banlist"
912
  msgstr ""
913
 
914
+ #: libs/blockcountry-settings.php:1720 libs/blockcountry-settings.php:1831
915
  msgid "Backend"
916
  msgstr ""
917
 
918
+ #: libs/blockcountry-settings.php:1727
919
  msgid "Top countries that are blocked"
920
  msgstr ""
921
 
922
+ #: libs/blockcountry-settings.php:1729 libs/blockcountry-settings.php:1742
923
+ #: libs/blockcountry-settings.php:1763
924
  msgid "# of blocked attempts"
925
  msgstr ""
926
 
927
+ #: libs/blockcountry-settings.php:1740
928
  msgid "Top hosts that are blocked"
929
  msgstr ""
930
 
931
+ #: libs/blockcountry-settings.php:1761
932
  msgid "Top URLs that are blocked"
933
  msgstr ""
934
 
935
+ #: libs/blockcountry-settings.php:1777
936
  msgid "Clear database"
937
  msgstr ""
938
 
939
+ #: libs/blockcountry-settings.php:1800
940
  msgid "Download as CSV file"
941
  msgstr ""
942
 
943
+ #: libs/blockcountry-settings.php:1807
944
  msgid ""
945
  "You are not logging any information. Please uncheck the option 'Do not log "
946
  "IP addresses' if this is not what you want."
947
  msgstr ""
948
 
949
+ #: libs/blockcountry-settings.php:1829
950
  msgid "Home"
951
  msgstr ""
952
 
953
+ #: libs/blockcountry-settings.php:1832
954
  msgid "Pages"
955
  msgstr ""
956
 
957
+ #: libs/blockcountry-settings.php:1833
958
  msgid "Categories"
959
  msgstr ""
960
 
961
+ #: libs/blockcountry-settings.php:1834
962
  msgid "Tags"
963
  msgstr ""
964
 
965
+ #: libs/blockcountry-settings.php:1834
966
  msgid "Post types"
967
  msgstr ""
968
 
969
+ #: libs/blockcountry-settings.php:1835
970
  msgid "Services"
971
  msgstr ""
972
 
973
+ #: libs/blockcountry-settings.php:1836
974
  msgid "Tools"
975
  msgstr ""
976
 
977
+ #: libs/blockcountry-settings.php:1837
978
  msgid "Logging"
979
  msgstr ""
980
 
981
+ #: libs/blockcountry-settings.php:1838
982
  msgid "Import/Export"
983
  msgstr ""
984
 
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: 2019-05-20 16:32+0200\n"
5
- "PO-Revision-Date: 2019-05-20 16:33+0200\n"
6
  "Last-Translator: Pascal <pascal@webence.nl>\n"
7
  "Language-Team: iQ Block Country <support@webence.nl>\n"
8
  "Language: nl\n"
@@ -26,12 +26,18 @@ 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: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: "
@@ -39,12 +45,12 @@ 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."
@@ -53,7 +59,7 @@ 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: "
@@ -61,12 +67,12 @@ 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,11 +82,11 @@ msgstr ""
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: "
@@ -90,350 +96,354 @@ msgstr ""
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:306
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:311
104
  msgid "IP Address to check:"
105
  msgstr "IP adres om te controleren:"
106
 
107
- #: libs/blockcountry-settings.php:329
108
  msgid "No country for"
109
  msgstr "Geen land voor"
110
 
111
- #: libs/blockcountry-settings.php:329
112
  msgid "could be found. Or"
113
  msgstr "gevonden. Of"
114
 
115
- #: libs/blockcountry-settings.php:329
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:334
120
  msgid "IP Adress"
121
  msgstr "IP Adres"
122
 
123
- #: libs/blockcountry-settings.php:334
124
  msgid "belongs to"
125
  msgstr "behoort tot"
126
 
127
- #: libs/blockcountry-settings.php:340 libs/blockcountry-settings.php:345
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:354 libs/blockcountry-settings.php:361
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:367
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:373
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:378
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:383
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:388
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:395
158
  msgid "Check IP address"
159
  msgstr "Controleer IP adres"
160
 
161
- #: libs/blockcountry-settings.php:403
162
  msgid "Database information"
163
  msgstr "Database informatie"
164
 
165
- #: libs/blockcountry-settings.php:414
166
  msgid "IPv4 database exists. File date: "
167
  msgstr "IPv4 database bestaat. Bestands datum:"
168
 
169
- #: libs/blockcountry-settings.php:421 libs/blockcountry-settings.php:457
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:426
176
  msgid "IPv4 database does not exist."
177
  msgstr "IPv4 database bestaat niet."
178
 
179
- #: libs/blockcountry-settings.php:432
180
  msgid "IPv6 database exists. File date: "
181
  msgstr "IPv6 database bestaat. Bestands datum:"
182
 
183
- #: libs/blockcountry-settings.php:439
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:444
190
  msgid "IPv6 database does not exist."
191
  msgstr "IPv6 database bestaat niet."
192
 
193
- #: libs/blockcountry-settings.php:450
194
  msgid "GeoIP2 database exists. File date: "
195
  msgstr "GeoIP2 database bestaat. Bestands datum:"
196
 
197
- #: libs/blockcountry-settings.php:462
198
  msgid "GeoIP2 database does not exist."
199
  msgstr "GeoIP2 database bestaat niet."
200
 
201
- #: libs/blockcountry-settings.php:469
202
  msgid "Your GeoIP API key is valid till: "
203
  msgstr "Uw GeoIP API key is geldig tot:"
204
 
205
- #: libs/blockcountry-settings.php:478
206
  msgid "Active plugins"
207
  msgstr "Actieve plugins"
208
 
209
- #: libs/blockcountry-settings.php:485
210
  msgid "Plugin name"
211
  msgstr "Plugin naam"
212
 
213
- #: libs/blockcountry-settings.php:485
214
  msgid "Version"
215
  msgstr "Versie"
216
 
217
- #: libs/blockcountry-settings.php:485 libs/blockcountry-settings.php:1689
218
- #: libs/blockcountry-settings.php:1748
219
  msgid "URL"
220
  msgstr "URL"
221
 
222
- #: libs/blockcountry-settings.php:504
223
  msgid "none"
224
  msgstr "Geen"
225
 
226
- #: libs/blockcountry-settings.php:510 libs/blockcountry-settings.php:511
227
  msgid "unavailable"
228
  msgstr "niet beschikbaar"
229
 
230
- #: libs/blockcountry-settings.php:515
231
  msgid "File System Information"
232
  msgstr "File systeem informatie"
233
 
234
- #: libs/blockcountry-settings.php:518
235
  msgid "Website Root Folder"
236
  msgstr "Website root directory"
237
 
238
- #: libs/blockcountry-settings.php:519 libs/blockcountry-settings.php:713
239
  msgid "Document Root Path"
240
  msgstr "Document root pad"
241
 
242
- #: libs/blockcountry-settings.php:523
243
  msgid "Database Information"
244
  msgstr "Database informatie"
245
 
246
- #: libs/blockcountry-settings.php:525
247
  msgid "MySQL Database Version"
248
  msgstr "MySQL Database versie"
249
 
250
- #: libs/blockcountry-settings.php:526
251
  msgid "MySQL Client Version"
252
  msgstr "MySQL Client versie"
253
 
254
- #: libs/blockcountry-settings.php:527
255
  msgid "Database Host"
256
  msgstr "Database Host"
257
 
258
- #: libs/blockcountry-settings.php:533
259
  msgid "Not Set"
260
  msgstr "Niet gezet"
261
 
262
- #: libs/blockcountry-settings.php:535 libs/blockcountry-settings.php:615
263
- #: libs/blockcountry-settings.php:623 libs/blockcountry-settings.php:631
264
- #: libs/blockcountry-settings.php:639 libs/blockcountry-settings.php:648
265
- #: libs/blockcountry-settings.php:665
266
  msgid "Off"
267
  msgstr "Uit"
268
 
269
- #: libs/blockcountry-settings.php:538
270
  msgid "SQL Mode"
271
  msgstr "SQL Mode"
272
 
273
- #: libs/blockcountry-settings.php:542
274
  msgid "Server Information"
275
  msgstr "Server informatie"
276
 
277
- #: libs/blockcountry-settings.php:547
278
  msgid "Server IP Address"
279
  msgstr "Server IP Adres"
280
 
281
- #: libs/blockcountry-settings.php:549
282
  msgid "Server Type"
283
  msgstr "Server Type"
284
 
285
- #: libs/blockcountry-settings.php:550
286
  msgid "Operating System"
287
  msgstr "Operating System"
288
 
289
- #: libs/blockcountry-settings.php:551
290
  msgid "Browser Compression Supported"
291
  msgstr "Browser Compressie ondersteund"
292
 
293
- #: libs/blockcountry-settings.php:567
294
  msgid "undefined"
295
  msgstr "Ongedefinieerd"
296
 
297
- #: libs/blockcountry-settings.php:574
298
  msgid "PHP Process User (UID:GID)"
299
  msgstr "PHP Process User (UID:GID)"
300
 
301
- #: libs/blockcountry-settings.php:579
302
  msgid "PHP Information"
303
  msgstr "PHP Informatie"
304
 
305
- #: libs/blockcountry-settings.php:584
306
  msgid "PHP Version"
307
  msgstr "PHP versie"
308
 
309
- #: libs/blockcountry-settings.php:585
310
  msgid "PHP Memory Usage"
311
  msgstr "PHP Memory Usage"
312
 
313
- #: libs/blockcountry-settings.php:585
314
  msgid " MB"
315
  msgstr " MB"
316
 
317
- #: libs/blockcountry-settings.php:591 libs/blockcountry-settings.php:599
318
- #: libs/blockcountry-settings.php:607 libs/blockcountry-settings.php:656
319
  msgid "N/A"
320
  msgstr "N/A"
321
 
322
- #: libs/blockcountry-settings.php:594
323
  msgid "PHP Memory Limit"
324
  msgstr "PHP Memory Limit"
325
 
326
- #: libs/blockcountry-settings.php:602
327
  msgid "PHP Max Upload Size"
328
  msgstr "PHP Max Upload Size"
329
 
330
- #: libs/blockcountry-settings.php:610
331
  msgid "PHP Max Post Size"
332
  msgstr "PHP Max Post Size"
333
 
334
- #: libs/blockcountry-settings.php:613 libs/blockcountry-settings.php:621
335
- #: libs/blockcountry-settings.php:629 libs/blockcountry-settings.php:637
336
- #: libs/blockcountry-settings.php:646 libs/blockcountry-settings.php:663
337
  msgid "On"
338
  msgstr "Aan"
339
 
340
- #: libs/blockcountry-settings.php:618
341
  msgid "PHP Allow URL fopen"
342
  msgstr "PHP Allow URL fopen"
343
 
344
- #: libs/blockcountry-settings.php:626
345
  msgid "PHP Allow URL Include"
346
  msgstr "PHP Allow URL Include"
347
 
348
- #: libs/blockcountry-settings.php:634
349
  msgid "PHP Display Errors"
350
  msgstr "PHP Display Errors"
351
 
352
- #: libs/blockcountry-settings.php:642
353
  msgid "PHP Display Startup Errors"
354
  msgstr "PHP Display Startup Errors"
355
 
356
- #: libs/blockcountry-settings.php:651
357
  msgid "PHP Expose PHP"
358
  msgstr "PHP Expose PHP"
359
 
360
- #: libs/blockcountry-settings.php:659
361
  msgid "PHP Max Script Execution Time"
362
  msgstr "PHP Max Script Execution Time"
363
 
364
- #: libs/blockcountry-settings.php:660
365
  msgid "Seconds"
366
  msgstr "Seconden"
367
 
368
- #: libs/blockcountry-settings.php:668
369
  msgid "PHP open_basedir"
370
  msgstr "PHP open_basedir"
371
 
372
- #: libs/blockcountry-settings.php:671 libs/blockcountry-settings.php:679
373
  msgid "Yes"
374
  msgstr "Ja"
375
 
376
- #: libs/blockcountry-settings.php:673 libs/blockcountry-settings.php:681
377
  msgid "No"
378
  msgstr "Nee"
379
 
380
- #: libs/blockcountry-settings.php:676
381
  msgid "PHP XML Support"
382
  msgstr "PHP XML Support"
383
 
384
- #: libs/blockcountry-settings.php:684
385
  msgid "PHP IPTC Support"
386
  msgstr "PHP IPTC Support"
387
 
388
- #: libs/blockcountry-settings.php:686
389
  msgid "Disabled PHP Functions"
390
  msgstr "Disabled PHP Functions"
391
 
392
- #: libs/blockcountry-settings.php:693
393
  msgid "Wordpress info"
394
  msgstr "Wordpress Informatie"
395
 
396
- #: libs/blockcountry-settings.php:698
397
  msgid "is enabled"
398
  msgstr "is aangezet"
399
 
400
- #: libs/blockcountry-settings.php:700
401
  msgid "is disabled"
402
  msgstr "Is uitgezet"
403
 
404
- #: libs/blockcountry-settings.php:703
405
  msgid " Multisite"
406
  msgstr "Multisite"
407
 
408
- #: libs/blockcountry-settings.php:706
409
  msgid "are enabled"
410
  msgstr "is aangezet"
411
 
412
- #: libs/blockcountry-settings.php:708
413
  msgid "are disabled"
414
  msgstr "Is uitgezet"
415
 
416
- #: libs/blockcountry-settings.php:711
417
  msgid "Permalinks"
418
  msgstr "Permalinks"
419
 
420
- #: libs/blockcountry-settings.php:718
421
  msgid "IP Address information"
422
  msgstr "IP adres informatie"
423
 
424
- #: libs/blockcountry-settings.php:725 libs/blockcountry-settings.php:730
425
- #: libs/blockcountry-settings.php:735 libs/blockcountry-settings.php:740
426
- #: libs/blockcountry-settings.php:745 libs/blockcountry-settings.php:750
427
- #: libs/blockcountry-settings.php:755 libs/blockcountry-settings.php:760
428
- #: libs/blockcountry-settings.php:765
429
  msgid "Not set"
430
  msgstr "Geen waarde"
431
 
432
- #: libs/blockcountry-settings.php:781
433
  msgid "Export"
434
  msgstr "Exporteren"
435
 
436
- #: libs/blockcountry-settings.php:782
437
  msgid ""
438
  "When you click on <tt>Backup all settings</tt> button a backup of the iQ "
439
  "Block Country configuration will be created."
@@ -441,7 +451,7 @@ msgstr ""
441
  "Wanneer je klikt op de <tt>Backup alle instellingen</tt> knop zal een backup "
442
  "van alle iQ Block Country instellingen worden gecreerd."
443
 
444
- #: libs/blockcountry-settings.php:783
445
  msgid ""
446
  "After exporting, you can either use the backup file to restore your settings "
447
  "on this site again or copy the settings to another WordPress site."
@@ -450,104 +460,105 @@ msgstr ""
450
  "te herstellen of je kunt het bestand gebruiken om je instellingen naar een "
451
  "andere WordPress site te exporteren."
452
 
453
- #: libs/blockcountry-settings.php:787
454
  msgid "Backup all settings"
455
  msgstr "Backup alle instellingen"
456
 
457
- #: libs/blockcountry-settings.php:794
458
  msgid "Import"
459
  msgstr "Importeer"
460
 
461
- #: libs/blockcountry-settings.php:795
462
  msgid "Click the browse button and choose a zip file that you exported before."
463
  msgstr ""
464
  "Klik op de Browse button and selecteer een zip file welke je eerder hebt "
465
  "geexporteerd."
466
 
467
- #: libs/blockcountry-settings.php:796
468
  msgid "Press Restore settings button, and let WordPress do the magic for you."
469
  msgstr ""
470
  "Druk op de herstel instellingen knop en laat WordPress haar magie voor je "
471
  "doen."
472
 
473
- #: libs/blockcountry-settings.php:801
474
  msgid "Restore settings"
475
  msgstr "Herstel instellingen"
476
 
477
- #: libs/blockcountry-settings.php:824 libs/blockcountry-settings.php:827
478
- #: libs/blockcountry-settings.php:836
479
  msgid "Something went wrong exporting this file"
480
  msgstr "Er is iets verkeerd gegaan met het exporteren van het bestand."
481
 
482
- #: libs/blockcountry-settings.php:839
483
  msgid "Exporting settings..."
484
  msgstr "Exporteer instellingen"
485
 
486
- #: libs/blockcountry-settings.php:854
487
  msgid "Something went wrong importing this file"
488
  msgstr "Er is iets verkeerd gegaan met het importeren van dit bestand"
489
 
490
- #: libs/blockcountry-settings.php:871
491
  msgid "All options are restored successfully."
492
  msgstr "Alle opties zijn succesvol hersteld"
493
 
494
- #: libs/blockcountry-settings.php:874
495
  msgid "Invalid file."
496
  msgstr "Ongeldig bestand"
497
 
498
- #: libs/blockcountry-settings.php:879
499
  msgid "No correct import or export option given."
500
  msgstr "Geen correcte importeer of exporteer optie gegeven."
501
 
502
- #: libs/blockcountry-settings.php:888
503
  msgid "Select which pages are blocked."
504
  msgstr "Selecteer welke pagina's geblokkeerd worden."
505
 
506
- #: libs/blockcountry-settings.php:895
507
  msgid "Do you want to block individual pages:"
508
  msgstr "Wil je individuele pagina's blokkeren:"
509
 
510
- #: libs/blockcountry-settings.php:896
511
  msgid "If you do not select this option all pages will be blocked."
512
  msgstr "Indien je deze optie niet selecteert worden alle pagina's geblokkeerd."
513
 
514
- #: libs/blockcountry-settings.php:903
515
  msgid "Block pages selected below:"
516
- msgstr ""
517
 
518
- #: libs/blockcountry-settings.php:904
519
  msgid "Block all pages except those selected below"
520
  msgstr ""
 
521
 
522
- #: libs/blockcountry-settings.php:911
523
  msgid "Select pages you want to block:"
524
  msgstr "Selecteer welke pagina's je wil blokkeren."
525
 
526
- #: libs/blockcountry-settings.php:933 libs/blockcountry-settings.php:987
527
- #: libs/blockcountry-settings.php:1035 libs/blockcountry-settings.php:1083
528
- #: libs/blockcountry-settings.php:1130 libs/blockcountry-settings.php:1274
529
- #: libs/blockcountry-settings.php:1404 libs/blockcountry-settings.php:1656
530
  msgid "Save Changes"
531
  msgstr "Bewaar wijzigingen"
532
 
533
- #: libs/blockcountry-settings.php:946
534
  msgid "Select which categories are blocked."
535
  msgstr "Selecteer welke categorieen geblokkeerd worden."
536
 
537
- #: libs/blockcountry-settings.php:953
538
  msgid "Do you want to block individual categories:"
539
  msgstr "Wil je individuele categorieen blokkeren:"
540
 
541
- #: libs/blockcountry-settings.php:954 libs/blockcountry-settings.php:1008
542
  msgid "If you do not select this option all blog articles will be blocked."
543
  msgstr ""
544
  "Indien je deze optie niet selecteert worden alle blog artikelen geblokkeerd."
545
 
546
- #: libs/blockcountry-settings.php:959
547
  msgid "Do you want to block the homepage:"
548
  msgstr "Wil je je homepage blokkeren:"
549
 
550
- #: libs/blockcountry-settings.php:960
551
  msgid ""
552
  "If you do not select this option visitors will not be blocked from your "
553
  "homepage regardless of the categories you select."
@@ -556,43 +567,43 @@ msgstr ""
556
  "geblokkeerd van het bezoeken van je homepagina ongeacht welke categorieen je "
557
  "selecteert."
558
 
559
- #: libs/blockcountry-settings.php:965
560
  msgid "Select categories you want to block:"
561
  msgstr "Selecteer welke categorieen je wil blokkeren."
562
 
563
- #: libs/blockcountry-settings.php:1000
564
  msgid "Select which tags are blocked."
565
  msgstr "Selecteer welke tags geblokkeerd moeten worden."
566
 
567
- #: libs/blockcountry-settings.php:1007
568
  msgid "Do you want to block individual tags:"
569
  msgstr "Wil je individuele tags blokkeren?:"
570
 
571
- #: libs/blockcountry-settings.php:1013
572
  msgid "Select tags you want to block:"
573
  msgstr "Selecteer welke tags geblokkeerd moeten worden."
574
 
575
- #: libs/blockcountry-settings.php:1049
576
  msgid "Select which post types are blocked."
577
  msgstr "Selecteer welke post types geblokkeerd worden."
578
 
579
- #: libs/blockcountry-settings.php:1056
580
  msgid "Do you want to block individual post types:"
581
  msgstr "Wil je individuele post types blokkeren:"
582
 
583
- #: libs/blockcountry-settings.php:1061
584
  msgid "Select post types you want to block:"
585
  msgstr "Selecteer welke post types je wil blokkeren."
586
 
587
- #: libs/blockcountry-settings.php:1098
588
  msgid "Select which services are allowed."
589
  msgstr "Selecteer welke diensten je wilt toestaan."
590
 
591
- #: libs/blockcountry-settings.php:1105
592
  msgid "Select which services you want to allow:"
593
  msgstr "Selecteer welke diensten je wilt toestaan:"
594
 
595
- #: libs/blockcountry-settings.php:1106
596
  msgid ""
597
  "This will allow a service like for instance a search engine to your site "
598
  "despite if you blocked the country."
@@ -600,108 +611,109 @@ msgstr ""
600
  "Dit staat een dienst toe zoals bijvoorbeeld een zoek machine ongeacht of je "
601
  "het land van de zoekmachine hebt geblokkeerd."
602
 
603
- #: libs/blockcountry-settings.php:1107
604
  msgid "Please note the \"Search Engine Visibility\" should not be selected in "
605
  msgstr ""
606
  "Let op: \"Zoekmachine zichtbaarheid\" dient niet geselecteer te staan op "
607
 
608
- #: libs/blockcountry-settings.php:1107
609
  msgid "reading settings."
610
  msgstr "lezen instellingen"
611
 
612
- #: libs/blockcountry-settings.php:1145
613
  msgid "Frontend options"
614
  msgstr "Voorkant opties"
615
 
616
- #: libs/blockcountry-settings.php:1172
617
  msgid "Block visitors from visiting the frontend of your website:"
618
  msgstr "Blokkeer bezoekers van het bezoeken van de voorkant van je website:"
619
 
620
- #: libs/blockcountry-settings.php:1178
621
  msgid ""
622
  "Do not block visitors that are logged in from visiting frontend website:"
623
  msgstr ""
624
  "Blokkeer geen bezoekers welke ingelogd zijn van het bezoeken van de voorkant:"
625
 
626
- #: libs/blockcountry-settings.php:1184
627
  msgid "Block visitors from using the search function of your website:"
628
  msgstr ""
629
  "Blokkeer bezoekers van het bezoeken van de zoek functie van je website:"
630
 
631
- #: libs/blockcountry-settings.php:1190 libs/blockcountry-settings.php:1337
632
  msgid "Block countries selected below:"
633
- msgstr ""
634
 
635
- #: libs/blockcountry-settings.php:1191 libs/blockcountry-settings.php:1338
636
  msgid "Block all countries except those selected below"
637
  msgstr ""
 
638
 
639
- #: libs/blockcountry-settings.php:1198 libs/blockcountry-settings.php:1345
640
  msgid "Select the countries:"
641
- msgstr ""
642
 
643
- #: libs/blockcountry-settings.php:1199 libs/blockcountry-settings.php:1346
644
  msgid "Use the CTRL key to select multiple countries"
645
  msgstr "Gebruik de CTRL toets om meerdere landen te selecteren"
646
 
647
- #: libs/blockcountry-settings.php:1241
648
  msgid "Block tag pages:"
649
  msgstr "Blokkeer tag pagina's"
650
 
651
- #: libs/blockcountry-settings.php:1242
652
  msgid "If you select this option tag pages will be blocked."
653
  msgstr "Indien je deze optie selecteert worden tag pagina's geblokkeerd."
654
 
655
- #: libs/blockcountry-settings.php:1248
656
  msgid "Block feed:"
657
  msgstr "Blokkeer feed"
658
 
659
- #: libs/blockcountry-settings.php:1249
660
  msgid "If you select this option feed pages will be blocked."
661
  msgstr "Indien je deze optie selecteert worden feed pagina's geblokkeerd."
662
 
663
- #: libs/blockcountry-settings.php:1257
664
  msgid "Frontend whitelist IPv4 and/or IPv6 addresses:"
665
  msgstr ""
666
  "Whitelist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
667
 
668
- #: libs/blockcountry-settings.php:1257 libs/blockcountry-settings.php:1265
669
- #: libs/blockcountry-settings.php:1387 libs/blockcountry-settings.php:1395
670
  msgid "Use a semicolon (;) to separate IP addresses"
671
  msgstr "Gebruik een puntkomma (;) om adressen van elkaar te scheiden"
672
 
673
- #: libs/blockcountry-settings.php:1257 libs/blockcountry-settings.php:1265
674
- #: libs/blockcountry-settings.php:1387 libs/blockcountry-settings.php:1395
675
  msgid ""
676
  "This field accepts single IP addresses as well as ranges in CIDR format."
677
  msgstr ""
678
  "Dit veld accepteert zowel enkele IP adressen als IP reeksen in CIDR formaat."
679
 
680
- #: libs/blockcountry-settings.php:1265
681
  msgid "Frontend blacklist IPv4 and/or IPv6 addresses:"
682
  msgstr ""
683
  "Blacklist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
684
 
685
- #: libs/blockcountry-settings.php:1294
686
  msgid "Backend Options"
687
  msgstr "Achterkant opties"
688
 
689
- #: libs/blockcountry-settings.php:1322
690
  msgid ""
691
  "Block visitors from visiting the backend (administrator) of your website:"
692
  msgstr ""
693
  "Blokkeer bezoekers van het bezoeken van de achterkant (administratie "
694
  "gedeelte) van je website:"
695
 
696
- #: libs/blockcountry-settings.php:1330
697
  msgid "Your IP address is"
698
  msgstr "Je IP adres is"
699
 
700
- #: libs/blockcountry-settings.php:1330
701
  msgid "The country that is listed for this IP address is"
702
  msgstr "Het land waar dit adres toe behoort is"
703
 
704
- #: libs/blockcountry-settings.php:1331
705
  msgid ""
706
  "Do <strong>NOT</strong> set the 'Block visitors from visiting the backend "
707
  "(administrator) of your website' and also select"
@@ -709,11 +721,11 @@ msgstr ""
709
  "Selecteer <strong>NIET</strong> \"Blokkeer bezoekers van het bezoeken van de "
710
  "achterkant (administratie gedeelte) van je website\" en"
711
 
712
- #: libs/blockcountry-settings.php:1331
713
  msgid "below."
714
  msgstr "hier beneden."
715
 
716
- #: libs/blockcountry-settings.php:1332
717
  msgid ""
718
  "You will NOT be able to login the next time if you DO block your own country "
719
  "from visiting the backend."
@@ -721,33 +733,33 @@ msgstr ""
721
  "Het zal daarna niet meer mogelijk zijn om nog in te loggen als je je eigen "
722
  "land blokkeert van het bezoeken van de achterkant van je website."
723
 
724
- #: libs/blockcountry-settings.php:1387
725
  msgid "Backend whitelist IPv4 and/or IPv6 addresses:"
726
  msgstr ""
727
  "Whitelist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
728
 
729
- #: libs/blockcountry-settings.php:1395
730
  msgid "Backend blacklist IPv4 and/or IPv6 addresses:"
731
  msgstr ""
732
  "Blacklist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
733
 
734
- #: libs/blockcountry-settings.php:1437
735
  msgid "Overall statistics since start"
736
  msgstr "Statistieken sinds het begin"
737
 
738
- #: libs/blockcountry-settings.php:1440
739
  msgid "visitors blocked from the backend."
740
  msgstr "bezoekers geblokkeerd op de achterkant."
741
 
742
- #: libs/blockcountry-settings.php:1442
743
  msgid "visitors blocked from the frontend."
744
  msgstr "bezoekers geblokkeerd op de voorkant."
745
 
746
- #: libs/blockcountry-settings.php:1459
747
  msgid "Block type"
748
  msgstr "Blokkeer type"
749
 
750
- #: libs/blockcountry-settings.php:1461
751
  msgid ""
752
  "You should choose one of the 3 block options below. This wil either show a "
753
  "block message, redirect to an internal page or redirect to an external page."
@@ -756,15 +768,15 @@ msgstr ""
756
  "bericht, stuurt de bezoeker door naar een interne pagina of stuurt de "
757
  "bezoeker door naar een externe pagina."
758
 
759
- #: libs/blockcountry-settings.php:1466
760
  msgid "Message to display when people are blocked:"
761
  msgstr "Welk bericht wil je tonen aan bezoekers welke geblokkeerd worden:"
762
 
763
- #: libs/blockcountry-settings.php:1477
764
  msgid "Page to redirect to:"
765
  msgstr "Naar welke pagina wilt u bezoekers toesturen:"
766
 
767
- #: libs/blockcountry-settings.php:1478
768
  msgid ""
769
  "If you select a page here blocked visitors will be redirected to this page "
770
  "instead of displaying above block message."
@@ -773,15 +785,15 @@ msgstr ""
773
  "doorgestuurd naar deze pagina anders wordt bovestaande tekst getoond aan "
774
  "bezoekers."
775
 
776
- #: libs/blockcountry-settings.php:1484
777
  msgid "Choose a page..."
778
  msgstr "Kies een pagina..."
779
 
780
- #: libs/blockcountry-settings.php:1499
781
  msgid "URL to redirect to:"
782
  msgstr "Naar welke URL wilt u geblokkerde bezoekers verwijzen:"
783
 
784
- #: libs/blockcountry-settings.php:1500
785
  msgid ""
786
  "If you enter a URL here blocked visitors will be redirected to this URL "
787
  "instead of displaying above block message or redirected to a local page."
@@ -790,15 +802,15 @@ msgstr ""
790
  "naar deze url anders wordt bovestaande blokkeer tekst getoond aan bezoekers "
791
  "of worden bezoekers doorverwezen naar de geselecteerde pagina."
792
 
793
- #: libs/blockcountry-settings.php:1507
794
  msgid "General settings"
795
  msgstr "Algemene instellingen"
796
 
797
- #: libs/blockcountry-settings.php:1511
798
  msgid "Send headers when user is blocked:"
799
  msgstr "Stuur headers wanneer een gebruiker is geblokkeerd:"
800
 
801
- #: libs/blockcountry-settings.php:1512
802
  msgid ""
803
  "Under normal circumstances you should keep this selected! Only if you have "
804
  "\"Cannot modify header information - headers already sent\" errors or if you "
@@ -808,11 +820,11 @@ msgstr ""
808
  "deze alleen indien je \"Cannot modify header information - headers already "
809
  "sent\" foutmeldingen krijgt of indien je weet wat je doet."
810
 
811
- #: libs/blockcountry-settings.php:1518
812
  msgid "Buffer output?:"
813
  msgstr "Buffer output?"
814
 
815
- #: libs/blockcountry-settings.php:1519
816
  msgid ""
817
  "You can use this option to buffer all output. This can be helpful in case "
818
  "you have \"headers already sent\" issues."
@@ -820,11 +832,11 @@ msgstr ""
820
  "Je kunt deze optie gebruiken om alle output te bufferen. Dit kan helpen "
821
  "indien je \"headers already sent\" problemen hebt."
822
 
823
- #: libs/blockcountry-settings.php:1525
824
  msgid "Do not log IP addresses:"
825
  msgstr "Log geen IP adressen"
826
 
827
- #: libs/blockcountry-settings.php:1526
828
  msgid ""
829
  "Check this box if the laws in your country do not permit you to log IP "
830
  "addresses or if you do not want to log the ip addresses."
@@ -833,50 +845,50 @@ msgstr ""
833
  "adressen vast te leggen of indien je zelf deze informatie niet wilt "
834
  "vastleggen."
835
 
836
- #: libs/blockcountry-settings.php:1532
837
  msgid "Do not block admin-ajax.php:"
838
  msgstr "Blokkeer admin-ajax.php niet:"
839
 
840
- #: libs/blockcountry-settings.php:1533
841
  msgid "Check this box if you use a plugin that uses admin-ajax.php."
842
  msgstr ""
843
  "Selecteer deze optie indien je een plugin gebruikt welke gebruik maakt van "
844
  "admin-ajax.php."
845
 
846
- #: libs/blockcountry-settings.php:1542
847
  msgid "Number of rows on logging tab:"
848
  msgstr "Aantal regels op het statistieken tabblad:"
849
 
850
- #: libs/blockcountry-settings.php:1543
851
  msgid "How many rows do you want to display on each column on the logging tab."
852
  msgstr "Hoeveel regels wil je tonen in elke kolom op de statistieken tabblad."
853
 
854
- #: libs/blockcountry-settings.php:1558
855
  msgid "Number of days to keep logging:"
856
  msgstr "Aantal dagen dat je logs wilt bewaren:"
857
 
858
- #: libs/blockcountry-settings.php:1559
859
  msgid "How many days do you want to keep the logging used for the logging tab."
860
  msgstr ""
861
  "Hoeveel dagen wil je de logs bewaren welke gebruikt wordt op het "
862
  "statistieken tabblad."
863
 
864
- #: libs/blockcountry-settings.php:1574
865
  msgid "Do not lookup hosts on the logging tab:"
866
  msgstr "Zoek niet de hostnaam op op het statistieken tabblad."
867
 
868
- #: libs/blockcountry-settings.php:1575
869
  msgid ""
870
  "On some hosting environments looking up hosts may slow down the logging tab."
871
  msgstr ""
872
  "Op sommige hosting omgevingen zal het opzoeken van hostnamen zorgen voor "
873
  "vertraging op het statistieken tabblad."
874
 
875
- #: libs/blockcountry-settings.php:1581
876
  msgid "Allow tracking:"
877
  msgstr "Sta traceren toe:"
878
 
879
- #: libs/blockcountry-settings.php:1582
880
  msgid ""
881
  "This sends only the IP address and the number of attempts this ip address "
882
  "tried to login to your backend and was blocked doing so to a central server. "
@@ -889,11 +901,11 @@ msgstr ""
889
  "ons om beter inzicht te krijgen in de landen waarvandaan een hoop hack "
890
  "pogingen worden gedaan. "
891
 
892
- #: libs/blockcountry-settings.php:1588
893
  msgid "GeoIP API Key:"
894
  msgstr "GeoIP API sleutel:"
895
 
896
- #: libs/blockcountry-settings.php:1589
897
  msgid ""
898
  "If for some reason you cannot or do not want to download the MaxMind GeoIP "
899
  "databases you will need an API key for the GeoIP api.<br />You can get an "
@@ -903,19 +915,19 @@ msgstr ""
903
  "Maxmind GeoIP heb je een API sleutelnodig voor de GeoIP api.<br />Je kunt "
904
  "een API sleutel verkrijgen op:"
905
 
906
- #: libs/blockcountry-settings.php:1597
907
  msgid "GeoIP API Key Server Location:"
908
  msgstr "GeoIP API sleutel server locatie:"
909
 
910
- #: libs/blockcountry-settings.php:1598
911
  msgid "Choose a location closest to your own location."
912
  msgstr "Kies een land welke het dichtsbij is bij je eigen land."
913
 
914
- #: libs/blockcountry-settings.php:1611
915
  msgid "Admin block API Key:"
916
  msgstr "Admin block API Sleutel:"
917
 
918
- #: libs/blockcountry-settings.php:1612
919
  msgid ""
920
  "For additional security you can protect your backend from known IP addresses "
921
  "who have made hack attempts at other WordPress sites.<br />You can get more "
@@ -926,31 +938,31 @@ msgstr ""
926
  "tegen andere WordPress sites.<br />Je kunt meer informatie hierover vinden "
927
  "en een API key verkrijgen op:"
928
 
929
- #: libs/blockcountry-settings.php:1620
930
  msgid "Accessibility options:"
931
  msgstr "Toegankelijkheids opties:"
932
 
933
- #: libs/blockcountry-settings.php:1621
934
  msgid "Set this option if you cannot use the default country selection box."
935
  msgstr ""
936
  "Selecteer deze optie indien je de landen standaard selectie methode niet "
937
  "kunt gebruiken. "
938
 
939
- #: libs/blockcountry-settings.php:1627
940
  msgid "Override IP information:"
941
  msgstr "Overschrijf IP informatie:"
942
 
943
- #: libs/blockcountry-settings.php:1628
944
  msgid ""
945
  "This option allows you to override how iQ Block Country gets the real IP of "
946
  "your visitors."
947
  msgstr ""
948
 
949
- #: libs/blockcountry-settings.php:1647
950
  msgid "Log all visits:"
951
  msgstr "Log alle bezoekers:"
952
 
953
- #: libs/blockcountry-settings.php:1648
954
  msgid ""
955
  "This logs all visits despite if they are blocked or not. This is only for "
956
  "debugging purposes."
@@ -958,72 +970,72 @@ msgstr ""
958
  "Dit logt alle bezoekers ondanks of ze geblokkeerd zijn of niet. Dit is "
959
  "alleen voor debugging."
960
 
961
- #: libs/blockcountry-settings.php:1674
962
  msgid "Last blocked visits"
963
  msgstr "Laatste geblokkeerde bezoekers"
964
 
965
- #: libs/blockcountry-settings.php:1689
966
  msgid "Date / Time"
967
  msgstr "Datum / Tijd"
968
 
969
- #: libs/blockcountry-settings.php:1689 libs/blockcountry-settings.php:1727
970
  msgid "IP Address"
971
  msgstr "IP adres"
972
 
973
- #: libs/blockcountry-settings.php:1689 libs/blockcountry-settings.php:1727
974
  msgid "Hostname"
975
  msgstr "Hostnaam"
976
 
977
- #: libs/blockcountry-settings.php:1689 libs/blockcountry-settings.php:1714
978
  msgid "Country"
979
  msgstr "Land"
980
 
981
- #: libs/blockcountry-settings.php:1689
982
  msgid "Frontend/Backend"
983
  msgstr "Voorkant/Achterkant"
984
 
985
- #: libs/blockcountry-settings.php:1705 libs/blockcountry-settings.php:1815
986
  msgid "Frontend"
987
  msgstr "Voorkant"
988
 
989
- #: libs/blockcountry-settings.php:1705
990
  msgid "Backend banlist"
991
  msgstr "Achterkant banlist"
992
 
993
- #: libs/blockcountry-settings.php:1705
994
  msgid "Backend & Backend banlist"
995
  msgstr "Achterkant & Achterkant banlist"
996
 
997
- #: libs/blockcountry-settings.php:1705 libs/blockcountry-settings.php:1816
998
  msgid "Backend"
999
  msgstr "Achterkant"
1000
 
1001
- #: libs/blockcountry-settings.php:1712
1002
  msgid "Top countries that are blocked"
1003
  msgstr "Top landen welke zijn geblokkeerd"
1004
 
1005
- #: libs/blockcountry-settings.php:1714 libs/blockcountry-settings.php:1727
1006
- #: libs/blockcountry-settings.php:1748
1007
  msgid "# of blocked attempts"
1008
  msgstr "# of geblokkeerde pogingen"
1009
 
1010
- #: libs/blockcountry-settings.php:1725
1011
  msgid "Top hosts that are blocked"
1012
  msgstr "Top hosts welke geblokkeerd zijn"
1013
 
1014
- #: libs/blockcountry-settings.php:1746
1015
  msgid "Top URLs that are blocked"
1016
  msgstr "Top URLs welke geblokkeerd zijn"
1017
 
1018
- #: libs/blockcountry-settings.php:1762
1019
  msgid "Clear database"
1020
  msgstr "Leeg database"
1021
 
1022
- #: libs/blockcountry-settings.php:1785
1023
  msgid "Download as CSV file"
1024
  msgstr "Download als een csv bestand."
1025
 
1026
- #: libs/blockcountry-settings.php:1792
1027
  msgid ""
1028
  "You are not logging any information. Please uncheck the option 'Do not log "
1029
  "IP addresses' if this is not what you want."
@@ -1031,39 +1043,39 @@ msgstr ""
1031
  "Je logt geen informatie. Deselecteer alstublieft de optie 'Log geen IP "
1032
  "adressen' indien dit niet is wat je wilt."
1033
 
1034
- #: libs/blockcountry-settings.php:1814
1035
  msgid "Home"
1036
  msgstr "Home"
1037
 
1038
- #: libs/blockcountry-settings.php:1817
1039
  msgid "Pages"
1040
  msgstr "Pagina's"
1041
 
1042
- #: libs/blockcountry-settings.php:1818
1043
  msgid "Categories"
1044
  msgstr "Categorieen"
1045
 
1046
- #: libs/blockcountry-settings.php:1819
1047
  msgid "Tags"
1048
  msgstr "Tags"
1049
 
1050
- #: libs/blockcountry-settings.php:1819
1051
  msgid "Post types"
1052
  msgstr "Post types"
1053
 
1054
- #: libs/blockcountry-settings.php:1820
1055
  msgid "Services"
1056
  msgstr "Diensten"
1057
 
1058
- #: libs/blockcountry-settings.php:1821
1059
  msgid "Tools"
1060
  msgstr "Gereedschap"
1061
 
1062
- #: libs/blockcountry-settings.php:1822
1063
  msgid "Logging"
1064
  msgstr "Statistieken"
1065
 
1066
- #: libs/blockcountry-settings.php:1823
1067
  msgid "Import/Export"
1068
  msgstr "Importeren/Exporteren"
1069
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: iQ Block Country\n"
4
+ "POT-Creation-Date: 2020-01-04 19:12+0100\n"
5
+ "PO-Revision-Date: 2020-01-04 19:14+0100\n"
6
  "Last-Translator: Pascal <pascal@webence.nl>\n"
7
  "Language-Team: iQ Block Country <support@webence.nl>\n"
8
  "Language: nl\n"
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:92
30
+ msgid "Please download the database (GeoLite2-Country.tar.gz) from: "
31
+ msgstr "Download de database (GeoLite2-Country.tar.gz) vanaf:"
 
32
 
33
+ #: libs/blockcountry-settings.php:68 libs/blockcountry-settings.php:93
34
+ #: libs/blockcountry-settings.php:133
35
+ msgid ""
36
+ "If you do not have an account at Maxmind yet for the Geolite2 database sign "
37
+ "up for a free account at:"
38
+ msgstr ""
39
+
40
+ #: libs/blockcountry-settings.php:70 libs/blockcountry-settings.php:95
41
  msgid ""
42
  "unzip the file and afterwards upload the GeoLite2-Country.mmdb file to the "
43
  "following location: "
45
  "pak het bestand uit en upload het GeoLite2-Country.mmdb bestand naar de "
46
  "volgende locatie:"
47
 
48
+ #: libs/blockcountry-settings.php:73 libs/blockcountry-settings.php:98
49
+ #: libs/blockcountry-settings.php:138
50
  msgid "For more detailed instructions take a look at the documentation.."
51
  msgstr "Voor gedetaileerde instructies bekijk de documentatie."
52
 
53
+ #: libs/blockcountry-settings.php:90
54
  msgid ""
55
  "Please upgrade your old GeoIP database. This database is no longer "
56
  "maintained by MaxMind and everyone should upgrade to the GeoIP2 database."
59
  "Upgrade uw oude GeoIP database. Deze database wordt niet langer bijgewerkt "
60
  "door MaxMind en iedereen zou moeten upgraden naar de GeoIP2 database.<br />"
61
 
62
+ #: libs/blockcountry-settings.php:91
63
  msgid ""
64
  "The MaxMind GeoIP2 database does not exist yet . Please download this file "
65
  "manually or if you wish to use the GeoIP API get an API key from: "
67
  "De MaxMind GeoIP2 database bestaat nog niet. Download dit bestand handmatig "
68
  "of indien je dit wenst kun je ook een GeoIP API key verkrijgen op: "
69
 
70
+ #: libs/blockcountry-settings.php:114
71
  msgid "A caching plugin appears to be active on your WordPress installation."
72
  msgstr ""
73
  "Een caching plugin is waarschijnlijk actief in je WordPress installatie."
74
 
75
+ #: libs/blockcountry-settings.php:115
76
  msgid ""
77
  "Caching plugins do not always cooperate nicely together with the iQ Block "
78
  "Country plugin which may lead to non blocked visitors getting a cached "
82
  "wat kan leiden dat bezoekers welke niet geblokkeerd zijn de pagina dat ze "
83
  "geblokkeerd zijn getoond wordt vanuit de cache."
84
 
85
+ #: libs/blockcountry-settings.php:116
86
  msgid "For more information visit the following page:"
87
  msgstr "Voor meer informatie bezoek de volgende pagina:"
88
 
89
+ #: libs/blockcountry-settings.php:131
90
  msgid ""
91
  "The MaxMind GeoIP database is older than 3 months. Please update this file "
92
  "manually or if you wish to use the GeoIP API get an API key from: "
96
  "sleutel verkrijgen van:"
97
 
98
  #: libs/blockcountry-settings.php:132
99
+ msgid "Please download the database (GeoLite2-Country.tar.gz) from MaxMind. "
100
+ msgstr "Download de database (GeoLite2-Country.tar.gz) vanaf:"
101
+
102
+ #: libs/blockcountry-settings.php:135
103
  msgid "unzip the file and afterwards upload it to the following location: "
104
  msgstr "pak het bestand uit en upload dit bestand naar de volgende locatie:"
105
 
106
+ #: libs/blockcountry-settings.php:309
107
  msgid ""
108
  "Check which country belongs to an IP Address according to the current "
109
  "database."
110
  msgstr ""
111
  "Controleer welk land behoort tot een IP adres volgens de huidige database."
112
 
113
+ #: libs/blockcountry-settings.php:314
114
  msgid "IP Address to check:"
115
  msgstr "IP adres om te controleren:"
116
 
117
+ #: libs/blockcountry-settings.php:332
118
  msgid "No country for"
119
  msgstr "Geen land voor"
120
 
121
+ #: libs/blockcountry-settings.php:332
122
  msgid "could be found. Or"
123
  msgstr "gevonden. Of"
124
 
125
+ #: libs/blockcountry-settings.php:332
126
  msgid "is not a valid IPv4 or IPv6 IP address"
127
  msgstr "is geen valide IPv4 of IPv6 ip adres."
128
 
129
+ #: libs/blockcountry-settings.php:337
130
  msgid "IP Adress"
131
  msgstr "IP Adres"
132
 
133
+ #: libs/blockcountry-settings.php:337
134
  msgid "belongs to"
135
  msgstr "behoort tot"
136
 
137
+ #: libs/blockcountry-settings.php:343 libs/blockcountry-settings.php:348
138
  msgid "This country is not permitted to visit the frontend of this website."
139
  msgstr ""
140
  "Dit land wordt niet toegestaan om de voorkant van deze website te bezoeken."
141
 
142
+ #: libs/blockcountry-settings.php:357 libs/blockcountry-settings.php:364
143
  msgid "This country is not permitted to visit the backend of this website."
144
  msgstr ""
145
  "Dit land wordt niet toegestaan om de achterkant van deze website te bezoeken."
146
 
147
+ #: libs/blockcountry-settings.php:370
148
  msgid "This IP address is present in the blacklist."
149
  msgstr "Dit IP adres staat op de zwarte lijst."
150
 
151
+ #: libs/blockcountry-settings.php:376
152
  msgid "This IP address is present in the frontend blacklist."
153
  msgstr "Dit IP adres staat op de zwarte lijst voor de voorkant."
154
 
155
+ #: libs/blockcountry-settings.php:381
156
  msgid "This IP address is present in the frontend whitelist."
157
  msgstr "Dit IP adres staat op de witte lijst voor de voorkant."
158
 
159
+ #: libs/blockcountry-settings.php:386
160
  msgid "This IP address is present in the backend blacklist."
161
  msgstr "Dit IP adres staat op de zwarte lijst voor de achterkant."
162
 
163
+ #: libs/blockcountry-settings.php:391
164
  msgid "This IP address is present in the backend whitelist."
165
  msgstr "Dit IP adres staat op de witte lijst voor de achterkant."
166
 
167
+ #: libs/blockcountry-settings.php:398
168
  msgid "Check IP address"
169
  msgstr "Controleer IP adres"
170
 
171
+ #: libs/blockcountry-settings.php:406
172
  msgid "Database information"
173
  msgstr "Database informatie"
174
 
175
+ #: libs/blockcountry-settings.php:417
176
  msgid "IPv4 database exists. File date: "
177
  msgstr "IPv4 database bestaat. Bestands datum:"
178
 
179
+ #: libs/blockcountry-settings.php:424 libs/blockcountry-settings.php:460
180
  msgid "Database is older than 3 months... Please update..."
181
  msgstr ""
182
  "Uw MaxMind GeoIP database is ouder dan 3 maanden. Update je database "
183
  "alstublieft."
184
 
185
+ #: libs/blockcountry-settings.php:429
186
  msgid "IPv4 database does not exist."
187
  msgstr "IPv4 database bestaat niet."
188
 
189
+ #: libs/blockcountry-settings.php:435
190
  msgid "IPv6 database exists. File date: "
191
  msgstr "IPv6 database bestaat. Bestands datum:"
192
 
193
+ #: libs/blockcountry-settings.php:442
194
  msgid "Database is older than 3 months... Please update..."
195
  msgstr ""
196
  "Uw MaxMind GeoIP database is ouder dan 3 maanden. Update je database "
197
  "alstublieft."
198
 
199
+ #: libs/blockcountry-settings.php:447
200
  msgid "IPv6 database does not exist."
201
  msgstr "IPv6 database bestaat niet."
202
 
203
+ #: libs/blockcountry-settings.php:453
204
  msgid "GeoIP2 database exists. File date: "
205
  msgstr "GeoIP2 database bestaat. Bestands datum:"
206
 
207
+ #: libs/blockcountry-settings.php:465
208
  msgid "GeoIP2 database does not exist."
209
  msgstr "GeoIP2 database bestaat niet."
210
 
211
+ #: libs/blockcountry-settings.php:472
212
  msgid "Your GeoIP API key is valid till: "
213
  msgstr "Uw GeoIP API key is geldig tot:"
214
 
215
+ #: libs/blockcountry-settings.php:481
216
  msgid "Active plugins"
217
  msgstr "Actieve plugins"
218
 
219
+ #: libs/blockcountry-settings.php:488
220
  msgid "Plugin name"
221
  msgstr "Plugin naam"
222
 
223
+ #: libs/blockcountry-settings.php:488
224
  msgid "Version"
225
  msgstr "Versie"
226
 
227
+ #: libs/blockcountry-settings.php:488 libs/blockcountry-settings.php:1692
228
+ #: libs/blockcountry-settings.php:1763
229
  msgid "URL"
230
  msgstr "URL"
231
 
232
+ #: libs/blockcountry-settings.php:507
233
  msgid "none"
234
  msgstr "Geen"
235
 
236
+ #: libs/blockcountry-settings.php:513 libs/blockcountry-settings.php:514
237
  msgid "unavailable"
238
  msgstr "niet beschikbaar"
239
 
240
+ #: libs/blockcountry-settings.php:518
241
  msgid "File System Information"
242
  msgstr "File systeem informatie"
243
 
244
+ #: libs/blockcountry-settings.php:521
245
  msgid "Website Root Folder"
246
  msgstr "Website root directory"
247
 
248
+ #: libs/blockcountry-settings.php:522 libs/blockcountry-settings.php:716
249
  msgid "Document Root Path"
250
  msgstr "Document root pad"
251
 
252
+ #: libs/blockcountry-settings.php:526
253
  msgid "Database Information"
254
  msgstr "Database informatie"
255
 
256
+ #: libs/blockcountry-settings.php:528
257
  msgid "MySQL Database Version"
258
  msgstr "MySQL Database versie"
259
 
260
+ #: libs/blockcountry-settings.php:529
261
  msgid "MySQL Client Version"
262
  msgstr "MySQL Client versie"
263
 
264
+ #: libs/blockcountry-settings.php:530
265
  msgid "Database Host"
266
  msgstr "Database Host"
267
 
268
+ #: libs/blockcountry-settings.php:536
269
  msgid "Not Set"
270
  msgstr "Niet gezet"
271
 
272
+ #: libs/blockcountry-settings.php:538 libs/blockcountry-settings.php:618
273
+ #: libs/blockcountry-settings.php:626 libs/blockcountry-settings.php:634
274
+ #: libs/blockcountry-settings.php:642 libs/blockcountry-settings.php:651
275
+ #: libs/blockcountry-settings.php:668
276
  msgid "Off"
277
  msgstr "Uit"
278
 
279
+ #: libs/blockcountry-settings.php:541
280
  msgid "SQL Mode"
281
  msgstr "SQL Mode"
282
 
283
+ #: libs/blockcountry-settings.php:545
284
  msgid "Server Information"
285
  msgstr "Server informatie"
286
 
287
+ #: libs/blockcountry-settings.php:550
288
  msgid "Server IP Address"
289
  msgstr "Server IP Adres"
290
 
291
+ #: libs/blockcountry-settings.php:552
292
  msgid "Server Type"
293
  msgstr "Server Type"
294
 
295
+ #: libs/blockcountry-settings.php:553
296
  msgid "Operating System"
297
  msgstr "Operating System"
298
 
299
+ #: libs/blockcountry-settings.php:554
300
  msgid "Browser Compression Supported"
301
  msgstr "Browser Compressie ondersteund"
302
 
303
+ #: libs/blockcountry-settings.php:570
304
  msgid "undefined"
305
  msgstr "Ongedefinieerd"
306
 
307
+ #: libs/blockcountry-settings.php:577
308
  msgid "PHP Process User (UID:GID)"
309
  msgstr "PHP Process User (UID:GID)"
310
 
311
+ #: libs/blockcountry-settings.php:582
312
  msgid "PHP Information"
313
  msgstr "PHP Informatie"
314
 
315
+ #: libs/blockcountry-settings.php:587
316
  msgid "PHP Version"
317
  msgstr "PHP versie"
318
 
319
+ #: libs/blockcountry-settings.php:588
320
  msgid "PHP Memory Usage"
321
  msgstr "PHP Memory Usage"
322
 
323
+ #: libs/blockcountry-settings.php:588
324
  msgid " MB"
325
  msgstr " MB"
326
 
327
+ #: libs/blockcountry-settings.php:594 libs/blockcountry-settings.php:602
328
+ #: libs/blockcountry-settings.php:610 libs/blockcountry-settings.php:659
329
  msgid "N/A"
330
  msgstr "N/A"
331
 
332
+ #: libs/blockcountry-settings.php:597
333
  msgid "PHP Memory Limit"
334
  msgstr "PHP Memory Limit"
335
 
336
+ #: libs/blockcountry-settings.php:605
337
  msgid "PHP Max Upload Size"
338
  msgstr "PHP Max Upload Size"
339
 
340
+ #: libs/blockcountry-settings.php:613
341
  msgid "PHP Max Post Size"
342
  msgstr "PHP Max Post Size"
343
 
344
+ #: libs/blockcountry-settings.php:616 libs/blockcountry-settings.php:624
345
+ #: libs/blockcountry-settings.php:632 libs/blockcountry-settings.php:640
346
+ #: libs/blockcountry-settings.php:649 libs/blockcountry-settings.php:666
347
  msgid "On"
348
  msgstr "Aan"
349
 
350
+ #: libs/blockcountry-settings.php:621
351
  msgid "PHP Allow URL fopen"
352
  msgstr "PHP Allow URL fopen"
353
 
354
+ #: libs/blockcountry-settings.php:629
355
  msgid "PHP Allow URL Include"
356
  msgstr "PHP Allow URL Include"
357
 
358
+ #: libs/blockcountry-settings.php:637
359
  msgid "PHP Display Errors"
360
  msgstr "PHP Display Errors"
361
 
362
+ #: libs/blockcountry-settings.php:645
363
  msgid "PHP Display Startup Errors"
364
  msgstr "PHP Display Startup Errors"
365
 
366
+ #: libs/blockcountry-settings.php:654
367
  msgid "PHP Expose PHP"
368
  msgstr "PHP Expose PHP"
369
 
370
+ #: libs/blockcountry-settings.php:662
371
  msgid "PHP Max Script Execution Time"
372
  msgstr "PHP Max Script Execution Time"
373
 
374
+ #: libs/blockcountry-settings.php:663
375
  msgid "Seconds"
376
  msgstr "Seconden"
377
 
378
+ #: libs/blockcountry-settings.php:671
379
  msgid "PHP open_basedir"
380
  msgstr "PHP open_basedir"
381
 
382
+ #: libs/blockcountry-settings.php:674 libs/blockcountry-settings.php:682
383
  msgid "Yes"
384
  msgstr "Ja"
385
 
386
+ #: libs/blockcountry-settings.php:676 libs/blockcountry-settings.php:684
387
  msgid "No"
388
  msgstr "Nee"
389
 
390
+ #: libs/blockcountry-settings.php:679
391
  msgid "PHP XML Support"
392
  msgstr "PHP XML Support"
393
 
394
+ #: libs/blockcountry-settings.php:687
395
  msgid "PHP IPTC Support"
396
  msgstr "PHP IPTC Support"
397
 
398
+ #: libs/blockcountry-settings.php:689
399
  msgid "Disabled PHP Functions"
400
  msgstr "Disabled PHP Functions"
401
 
402
+ #: libs/blockcountry-settings.php:696
403
  msgid "Wordpress info"
404
  msgstr "Wordpress Informatie"
405
 
406
+ #: libs/blockcountry-settings.php:701
407
  msgid "is enabled"
408
  msgstr "is aangezet"
409
 
410
+ #: libs/blockcountry-settings.php:703
411
  msgid "is disabled"
412
  msgstr "Is uitgezet"
413
 
414
+ #: libs/blockcountry-settings.php:706
415
  msgid " Multisite"
416
  msgstr "Multisite"
417
 
418
+ #: libs/blockcountry-settings.php:709
419
  msgid "are enabled"
420
  msgstr "is aangezet"
421
 
422
+ #: libs/blockcountry-settings.php:711
423
  msgid "are disabled"
424
  msgstr "Is uitgezet"
425
 
426
+ #: libs/blockcountry-settings.php:714
427
  msgid "Permalinks"
428
  msgstr "Permalinks"
429
 
430
+ #: libs/blockcountry-settings.php:721
431
  msgid "IP Address information"
432
  msgstr "IP adres informatie"
433
 
434
+ #: libs/blockcountry-settings.php:728 libs/blockcountry-settings.php:733
435
+ #: libs/blockcountry-settings.php:738 libs/blockcountry-settings.php:743
436
+ #: libs/blockcountry-settings.php:748 libs/blockcountry-settings.php:753
437
+ #: libs/blockcountry-settings.php:758 libs/blockcountry-settings.php:763
438
+ #: libs/blockcountry-settings.php:768
439
  msgid "Not set"
440
  msgstr "Geen waarde"
441
 
442
+ #: libs/blockcountry-settings.php:784
443
  msgid "Export"
444
  msgstr "Exporteren"
445
 
446
+ #: libs/blockcountry-settings.php:785
447
  msgid ""
448
  "When you click on <tt>Backup all settings</tt> button a backup of the iQ "
449
  "Block Country configuration will be created."
451
  "Wanneer je klikt op de <tt>Backup alle instellingen</tt> knop zal een backup "
452
  "van alle iQ Block Country instellingen worden gecreerd."
453
 
454
+ #: libs/blockcountry-settings.php:786
455
  msgid ""
456
  "After exporting, you can either use the backup file to restore your settings "
457
  "on this site again or copy the settings to another WordPress site."
460
  "te herstellen of je kunt het bestand gebruiken om je instellingen naar een "
461
  "andere WordPress site te exporteren."
462
 
463
+ #: libs/blockcountry-settings.php:790
464
  msgid "Backup all settings"
465
  msgstr "Backup alle instellingen"
466
 
467
+ #: libs/blockcountry-settings.php:797
468
  msgid "Import"
469
  msgstr "Importeer"
470
 
471
+ #: libs/blockcountry-settings.php:798
472
  msgid "Click the browse button and choose a zip file that you exported before."
473
  msgstr ""
474
  "Klik op de Browse button and selecteer een zip file welke je eerder hebt "
475
  "geexporteerd."
476
 
477
+ #: libs/blockcountry-settings.php:799
478
  msgid "Press Restore settings button, and let WordPress do the magic for you."
479
  msgstr ""
480
  "Druk op de herstel instellingen knop en laat WordPress haar magie voor je "
481
  "doen."
482
 
483
+ #: libs/blockcountry-settings.php:804
484
  msgid "Restore settings"
485
  msgstr "Herstel instellingen"
486
 
487
+ #: libs/blockcountry-settings.php:827 libs/blockcountry-settings.php:830
488
+ #: libs/blockcountry-settings.php:839
489
  msgid "Something went wrong exporting this file"
490
  msgstr "Er is iets verkeerd gegaan met het exporteren van het bestand."
491
 
492
+ #: libs/blockcountry-settings.php:842
493
  msgid "Exporting settings..."
494
  msgstr "Exporteer instellingen"
495
 
496
+ #: libs/blockcountry-settings.php:857
497
  msgid "Something went wrong importing this file"
498
  msgstr "Er is iets verkeerd gegaan met het importeren van dit bestand"
499
 
500
+ #: libs/blockcountry-settings.php:874
501
  msgid "All options are restored successfully."
502
  msgstr "Alle opties zijn succesvol hersteld"
503
 
504
+ #: libs/blockcountry-settings.php:877
505
  msgid "Invalid file."
506
  msgstr "Ongeldig bestand"
507
 
508
+ #: libs/blockcountry-settings.php:882
509
  msgid "No correct import or export option given."
510
  msgstr "Geen correcte importeer of exporteer optie gegeven."
511
 
512
+ #: libs/blockcountry-settings.php:891
513
  msgid "Select which pages are blocked."
514
  msgstr "Selecteer welke pagina's geblokkeerd worden."
515
 
516
+ #: libs/blockcountry-settings.php:898
517
  msgid "Do you want to block individual pages:"
518
  msgstr "Wil je individuele pagina's blokkeren:"
519
 
520
+ #: libs/blockcountry-settings.php:899
521
  msgid "If you do not select this option all pages will be blocked."
522
  msgstr "Indien je deze optie niet selecteert worden alle pagina's geblokkeerd."
523
 
524
+ #: libs/blockcountry-settings.php:906
525
  msgid "Block pages selected below:"
526
+ msgstr "Blokkeer pagina's hier beneden geselecteerd:"
527
 
528
+ #: libs/blockcountry-settings.php:907
529
  msgid "Block all pages except those selected below"
530
  msgstr ""
531
+ "Blokkeer alle pagina's behalve diegene die hier beneden zijn geselecteerd:"
532
 
533
+ #: libs/blockcountry-settings.php:914
534
  msgid "Select pages you want to block:"
535
  msgstr "Selecteer welke pagina's je wil blokkeren."
536
 
537
+ #: libs/blockcountry-settings.php:936 libs/blockcountry-settings.php:990
538
+ #: libs/blockcountry-settings.php:1038 libs/blockcountry-settings.php:1086
539
+ #: libs/blockcountry-settings.php:1133 libs/blockcountry-settings.php:1277
540
+ #: libs/blockcountry-settings.php:1407 libs/blockcountry-settings.php:1659
541
  msgid "Save Changes"
542
  msgstr "Bewaar wijzigingen"
543
 
544
+ #: libs/blockcountry-settings.php:949
545
  msgid "Select which categories are blocked."
546
  msgstr "Selecteer welke categorieen geblokkeerd worden."
547
 
548
+ #: libs/blockcountry-settings.php:956
549
  msgid "Do you want to block individual categories:"
550
  msgstr "Wil je individuele categorieen blokkeren:"
551
 
552
+ #: libs/blockcountry-settings.php:957 libs/blockcountry-settings.php:1011
553
  msgid "If you do not select this option all blog articles will be blocked."
554
  msgstr ""
555
  "Indien je deze optie niet selecteert worden alle blog artikelen geblokkeerd."
556
 
557
+ #: libs/blockcountry-settings.php:962
558
  msgid "Do you want to block the homepage:"
559
  msgstr "Wil je je homepage blokkeren:"
560
 
561
+ #: libs/blockcountry-settings.php:963
562
  msgid ""
563
  "If you do not select this option visitors will not be blocked from your "
564
  "homepage regardless of the categories you select."
567
  "geblokkeerd van het bezoeken van je homepagina ongeacht welke categorieen je "
568
  "selecteert."
569
 
570
+ #: libs/blockcountry-settings.php:968
571
  msgid "Select categories you want to block:"
572
  msgstr "Selecteer welke categorieen je wil blokkeren."
573
 
574
+ #: libs/blockcountry-settings.php:1003
575
  msgid "Select which tags are blocked."
576
  msgstr "Selecteer welke tags geblokkeerd moeten worden."
577
 
578
+ #: libs/blockcountry-settings.php:1010
579
  msgid "Do you want to block individual tags:"
580
  msgstr "Wil je individuele tags blokkeren?:"
581
 
582
+ #: libs/blockcountry-settings.php:1016
583
  msgid "Select tags you want to block:"
584
  msgstr "Selecteer welke tags geblokkeerd moeten worden."
585
 
586
+ #: libs/blockcountry-settings.php:1052
587
  msgid "Select which post types are blocked."
588
  msgstr "Selecteer welke post types geblokkeerd worden."
589
 
590
+ #: libs/blockcountry-settings.php:1059
591
  msgid "Do you want to block individual post types:"
592
  msgstr "Wil je individuele post types blokkeren:"
593
 
594
+ #: libs/blockcountry-settings.php:1064
595
  msgid "Select post types you want to block:"
596
  msgstr "Selecteer welke post types je wil blokkeren."
597
 
598
+ #: libs/blockcountry-settings.php:1101
599
  msgid "Select which services are allowed."
600
  msgstr "Selecteer welke diensten je wilt toestaan."
601
 
602
+ #: libs/blockcountry-settings.php:1108
603
  msgid "Select which services you want to allow:"
604
  msgstr "Selecteer welke diensten je wilt toestaan:"
605
 
606
+ #: libs/blockcountry-settings.php:1109
607
  msgid ""
608
  "This will allow a service like for instance a search engine to your site "
609
  "despite if you blocked the country."
611
  "Dit staat een dienst toe zoals bijvoorbeeld een zoek machine ongeacht of je "
612
  "het land van de zoekmachine hebt geblokkeerd."
613
 
614
+ #: libs/blockcountry-settings.php:1110
615
  msgid "Please note the \"Search Engine Visibility\" should not be selected in "
616
  msgstr ""
617
  "Let op: \"Zoekmachine zichtbaarheid\" dient niet geselecteer te staan op "
618
 
619
+ #: libs/blockcountry-settings.php:1110
620
  msgid "reading settings."
621
  msgstr "lezen instellingen"
622
 
623
+ #: libs/blockcountry-settings.php:1148
624
  msgid "Frontend options"
625
  msgstr "Voorkant opties"
626
 
627
+ #: libs/blockcountry-settings.php:1175
628
  msgid "Block visitors from visiting the frontend of your website:"
629
  msgstr "Blokkeer bezoekers van het bezoeken van de voorkant van je website:"
630
 
631
+ #: libs/blockcountry-settings.php:1181
632
  msgid ""
633
  "Do not block visitors that are logged in from visiting frontend website:"
634
  msgstr ""
635
  "Blokkeer geen bezoekers welke ingelogd zijn van het bezoeken van de voorkant:"
636
 
637
+ #: libs/blockcountry-settings.php:1187
638
  msgid "Block visitors from using the search function of your website:"
639
  msgstr ""
640
  "Blokkeer bezoekers van het bezoeken van de zoek functie van je website:"
641
 
642
+ #: libs/blockcountry-settings.php:1193 libs/blockcountry-settings.php:1340
643
  msgid "Block countries selected below:"
644
+ msgstr "Blokkeer landen zoals geselecteerd hierbeneden:"
645
 
646
+ #: libs/blockcountry-settings.php:1194 libs/blockcountry-settings.php:1341
647
  msgid "Block all countries except those selected below"
648
  msgstr ""
649
+ "Blokkeer alle landen behalve de landen die hier beneden zijn geslecteerd:"
650
 
651
+ #: libs/blockcountry-settings.php:1201 libs/blockcountry-settings.php:1348
652
  msgid "Select the countries:"
653
+ msgstr "Selecteer de landen:"
654
 
655
+ #: libs/blockcountry-settings.php:1202 libs/blockcountry-settings.php:1349
656
  msgid "Use the CTRL key to select multiple countries"
657
  msgstr "Gebruik de CTRL toets om meerdere landen te selecteren"
658
 
659
+ #: libs/blockcountry-settings.php:1244
660
  msgid "Block tag pages:"
661
  msgstr "Blokkeer tag pagina's"
662
 
663
+ #: libs/blockcountry-settings.php:1245
664
  msgid "If you select this option tag pages will be blocked."
665
  msgstr "Indien je deze optie selecteert worden tag pagina's geblokkeerd."
666
 
667
+ #: libs/blockcountry-settings.php:1251
668
  msgid "Block feed:"
669
  msgstr "Blokkeer feed"
670
 
671
+ #: libs/blockcountry-settings.php:1252
672
  msgid "If you select this option feed pages will be blocked."
673
  msgstr "Indien je deze optie selecteert worden feed pagina's geblokkeerd."
674
 
675
+ #: libs/blockcountry-settings.php:1260
676
  msgid "Frontend whitelist IPv4 and/or IPv6 addresses:"
677
  msgstr ""
678
  "Whitelist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
679
 
680
+ #: libs/blockcountry-settings.php:1260 libs/blockcountry-settings.php:1268
681
+ #: libs/blockcountry-settings.php:1390 libs/blockcountry-settings.php:1398
682
  msgid "Use a semicolon (;) to separate IP addresses"
683
  msgstr "Gebruik een puntkomma (;) om adressen van elkaar te scheiden"
684
 
685
+ #: libs/blockcountry-settings.php:1260 libs/blockcountry-settings.php:1268
686
+ #: libs/blockcountry-settings.php:1390 libs/blockcountry-settings.php:1398
687
  msgid ""
688
  "This field accepts single IP addresses as well as ranges in CIDR format."
689
  msgstr ""
690
  "Dit veld accepteert zowel enkele IP adressen als IP reeksen in CIDR formaat."
691
 
692
+ #: libs/blockcountry-settings.php:1268
693
  msgid "Frontend blacklist IPv4 and/or IPv6 addresses:"
694
  msgstr ""
695
  "Blacklist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
696
 
697
+ #: libs/blockcountry-settings.php:1297
698
  msgid "Backend Options"
699
  msgstr "Achterkant opties"
700
 
701
+ #: libs/blockcountry-settings.php:1325
702
  msgid ""
703
  "Block visitors from visiting the backend (administrator) of your website:"
704
  msgstr ""
705
  "Blokkeer bezoekers van het bezoeken van de achterkant (administratie "
706
  "gedeelte) van je website:"
707
 
708
+ #: libs/blockcountry-settings.php:1333
709
  msgid "Your IP address is"
710
  msgstr "Je IP adres is"
711
 
712
+ #: libs/blockcountry-settings.php:1333
713
  msgid "The country that is listed for this IP address is"
714
  msgstr "Het land waar dit adres toe behoort is"
715
 
716
+ #: libs/blockcountry-settings.php:1334
717
  msgid ""
718
  "Do <strong>NOT</strong> set the 'Block visitors from visiting the backend "
719
  "(administrator) of your website' and also select"
721
  "Selecteer <strong>NIET</strong> \"Blokkeer bezoekers van het bezoeken van de "
722
  "achterkant (administratie gedeelte) van je website\" en"
723
 
724
+ #: libs/blockcountry-settings.php:1334
725
  msgid "below."
726
  msgstr "hier beneden."
727
 
728
+ #: libs/blockcountry-settings.php:1335
729
  msgid ""
730
  "You will NOT be able to login the next time if you DO block your own country "
731
  "from visiting the backend."
733
  "Het zal daarna niet meer mogelijk zijn om nog in te loggen als je je eigen "
734
  "land blokkeert van het bezoeken van de achterkant van je website."
735
 
736
+ #: libs/blockcountry-settings.php:1390
737
  msgid "Backend whitelist IPv4 and/or IPv6 addresses:"
738
  msgstr ""
739
  "Whitelist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
740
 
741
+ #: libs/blockcountry-settings.php:1398
742
  msgid "Backend blacklist IPv4 and/or IPv6 addresses:"
743
  msgstr ""
744
  "Blacklist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
745
 
746
+ #: libs/blockcountry-settings.php:1440
747
  msgid "Overall statistics since start"
748
  msgstr "Statistieken sinds het begin"
749
 
750
+ #: libs/blockcountry-settings.php:1443
751
  msgid "visitors blocked from the backend."
752
  msgstr "bezoekers geblokkeerd op de achterkant."
753
 
754
+ #: libs/blockcountry-settings.php:1445
755
  msgid "visitors blocked from the frontend."
756
  msgstr "bezoekers geblokkeerd op de voorkant."
757
 
758
+ #: libs/blockcountry-settings.php:1462
759
  msgid "Block type"
760
  msgstr "Blokkeer type"
761
 
762
+ #: libs/blockcountry-settings.php:1464
763
  msgid ""
764
  "You should choose one of the 3 block options below. This wil either show a "
765
  "block message, redirect to an internal page or redirect to an external page."
768
  "bericht, stuurt de bezoeker door naar een interne pagina of stuurt de "
769
  "bezoeker door naar een externe pagina."
770
 
771
+ #: libs/blockcountry-settings.php:1469
772
  msgid "Message to display when people are blocked:"
773
  msgstr "Welk bericht wil je tonen aan bezoekers welke geblokkeerd worden:"
774
 
775
+ #: libs/blockcountry-settings.php:1480
776
  msgid "Page to redirect to:"
777
  msgstr "Naar welke pagina wilt u bezoekers toesturen:"
778
 
779
+ #: libs/blockcountry-settings.php:1481
780
  msgid ""
781
  "If you select a page here blocked visitors will be redirected to this page "
782
  "instead of displaying above block message."
785
  "doorgestuurd naar deze pagina anders wordt bovestaande tekst getoond aan "
786
  "bezoekers."
787
 
788
+ #: libs/blockcountry-settings.php:1487
789
  msgid "Choose a page..."
790
  msgstr "Kies een pagina..."
791
 
792
+ #: libs/blockcountry-settings.php:1502
793
  msgid "URL to redirect to:"
794
  msgstr "Naar welke URL wilt u geblokkerde bezoekers verwijzen:"
795
 
796
+ #: libs/blockcountry-settings.php:1503
797
  msgid ""
798
  "If you enter a URL here blocked visitors will be redirected to this URL "
799
  "instead of displaying above block message or redirected to a local page."
802
  "naar deze url anders wordt bovestaande blokkeer tekst getoond aan bezoekers "
803
  "of worden bezoekers doorverwezen naar de geselecteerde pagina."
804
 
805
+ #: libs/blockcountry-settings.php:1510
806
  msgid "General settings"
807
  msgstr "Algemene instellingen"
808
 
809
+ #: libs/blockcountry-settings.php:1514
810
  msgid "Send headers when user is blocked:"
811
  msgstr "Stuur headers wanneer een gebruiker is geblokkeerd:"
812
 
813
+ #: libs/blockcountry-settings.php:1515
814
  msgid ""
815
  "Under normal circumstances you should keep this selected! Only if you have "
816
  "\"Cannot modify header information - headers already sent\" errors or if you "
820
  "deze alleen indien je \"Cannot modify header information - headers already "
821
  "sent\" foutmeldingen krijgt of indien je weet wat je doet."
822
 
823
+ #: libs/blockcountry-settings.php:1521
824
  msgid "Buffer output?:"
825
  msgstr "Buffer output?"
826
 
827
+ #: libs/blockcountry-settings.php:1522
828
  msgid ""
829
  "You can use this option to buffer all output. This can be helpful in case "
830
  "you have \"headers already sent\" issues."
832
  "Je kunt deze optie gebruiken om alle output te bufferen. Dit kan helpen "
833
  "indien je \"headers already sent\" problemen hebt."
834
 
835
+ #: libs/blockcountry-settings.php:1528
836
  msgid "Do not log IP addresses:"
837
  msgstr "Log geen IP adressen"
838
 
839
+ #: libs/blockcountry-settings.php:1529
840
  msgid ""
841
  "Check this box if the laws in your country do not permit you to log IP "
842
  "addresses or if you do not want to log the ip addresses."
845
  "adressen vast te leggen of indien je zelf deze informatie niet wilt "
846
  "vastleggen."
847
 
848
+ #: libs/blockcountry-settings.php:1535
849
  msgid "Do not block admin-ajax.php:"
850
  msgstr "Blokkeer admin-ajax.php niet:"
851
 
852
+ #: libs/blockcountry-settings.php:1536
853
  msgid "Check this box if you use a plugin that uses admin-ajax.php."
854
  msgstr ""
855
  "Selecteer deze optie indien je een plugin gebruikt welke gebruik maakt van "
856
  "admin-ajax.php."
857
 
858
+ #: libs/blockcountry-settings.php:1545
859
  msgid "Number of rows on logging tab:"
860
  msgstr "Aantal regels op het statistieken tabblad:"
861
 
862
+ #: libs/blockcountry-settings.php:1546
863
  msgid "How many rows do you want to display on each column on the logging tab."
864
  msgstr "Hoeveel regels wil je tonen in elke kolom op de statistieken tabblad."
865
 
866
+ #: libs/blockcountry-settings.php:1561
867
  msgid "Number of days to keep logging:"
868
  msgstr "Aantal dagen dat je logs wilt bewaren:"
869
 
870
+ #: libs/blockcountry-settings.php:1562
871
  msgid "How many days do you want to keep the logging used for the logging tab."
872
  msgstr ""
873
  "Hoeveel dagen wil je de logs bewaren welke gebruikt wordt op het "
874
  "statistieken tabblad."
875
 
876
+ #: libs/blockcountry-settings.php:1577
877
  msgid "Do not lookup hosts on the logging tab:"
878
  msgstr "Zoek niet de hostnaam op op het statistieken tabblad."
879
 
880
+ #: libs/blockcountry-settings.php:1578
881
  msgid ""
882
  "On some hosting environments looking up hosts may slow down the logging tab."
883
  msgstr ""
884
  "Op sommige hosting omgevingen zal het opzoeken van hostnamen zorgen voor "
885
  "vertraging op het statistieken tabblad."
886
 
887
+ #: libs/blockcountry-settings.php:1584
888
  msgid "Allow tracking:"
889
  msgstr "Sta traceren toe:"
890
 
891
+ #: libs/blockcountry-settings.php:1585
892
  msgid ""
893
  "This sends only the IP address and the number of attempts this ip address "
894
  "tried to login to your backend and was blocked doing so to a central server. "
901
  "ons om beter inzicht te krijgen in de landen waarvandaan een hoop hack "
902
  "pogingen worden gedaan. "
903
 
904
+ #: libs/blockcountry-settings.php:1591
905
  msgid "GeoIP API Key:"
906
  msgstr "GeoIP API sleutel:"
907
 
908
+ #: libs/blockcountry-settings.php:1592
909
  msgid ""
910
  "If for some reason you cannot or do not want to download the MaxMind GeoIP "
911
  "databases you will need an API key for the GeoIP api.<br />You can get an "
915
  "Maxmind GeoIP heb je een API sleutelnodig voor de GeoIP api.<br />Je kunt "
916
  "een API sleutel verkrijgen op:"
917
 
918
+ #: libs/blockcountry-settings.php:1600
919
  msgid "GeoIP API Key Server Location:"
920
  msgstr "GeoIP API sleutel server locatie:"
921
 
922
+ #: libs/blockcountry-settings.php:1601
923
  msgid "Choose a location closest to your own location."
924
  msgstr "Kies een land welke het dichtsbij is bij je eigen land."
925
 
926
+ #: libs/blockcountry-settings.php:1614
927
  msgid "Admin block API Key:"
928
  msgstr "Admin block API Sleutel:"
929
 
930
+ #: libs/blockcountry-settings.php:1615
931
  msgid ""
932
  "For additional security you can protect your backend from known IP addresses "
933
  "who have made hack attempts at other WordPress sites.<br />You can get more "
938
  "tegen andere WordPress sites.<br />Je kunt meer informatie hierover vinden "
939
  "en een API key verkrijgen op:"
940
 
941
+ #: libs/blockcountry-settings.php:1623
942
  msgid "Accessibility options:"
943
  msgstr "Toegankelijkheids opties:"
944
 
945
+ #: libs/blockcountry-settings.php:1624
946
  msgid "Set this option if you cannot use the default country selection box."
947
  msgstr ""
948
  "Selecteer deze optie indien je de landen standaard selectie methode niet "
949
  "kunt gebruiken. "
950
 
951
+ #: libs/blockcountry-settings.php:1630
952
  msgid "Override IP information:"
953
  msgstr "Overschrijf IP informatie:"
954
 
955
+ #: libs/blockcountry-settings.php:1631
956
  msgid ""
957
  "This option allows you to override how iQ Block Country gets the real IP of "
958
  "your visitors."
959
  msgstr ""
960
 
961
+ #: libs/blockcountry-settings.php:1650
962
  msgid "Log all visits:"
963
  msgstr "Log alle bezoekers:"
964
 
965
+ #: libs/blockcountry-settings.php:1651
966
  msgid ""
967
  "This logs all visits despite if they are blocked or not. This is only for "
968
  "debugging purposes."
970
  "Dit logt alle bezoekers ondanks of ze geblokkeerd zijn of niet. Dit is "
971
  "alleen voor debugging."
972
 
973
+ #: libs/blockcountry-settings.php:1677
974
  msgid "Last blocked visits"
975
  msgstr "Laatste geblokkeerde bezoekers"
976
 
977
+ #: libs/blockcountry-settings.php:1692
978
  msgid "Date / Time"
979
  msgstr "Datum / Tijd"
980
 
981
+ #: libs/blockcountry-settings.php:1692 libs/blockcountry-settings.php:1742
982
  msgid "IP Address"
983
  msgstr "IP adres"
984
 
985
+ #: libs/blockcountry-settings.php:1692 libs/blockcountry-settings.php:1742
986
  msgid "Hostname"
987
  msgstr "Hostnaam"
988
 
989
+ #: libs/blockcountry-settings.php:1692 libs/blockcountry-settings.php:1729
990
  msgid "Country"
991
  msgstr "Land"
992
 
993
+ #: libs/blockcountry-settings.php:1692
994
  msgid "Frontend/Backend"
995
  msgstr "Voorkant/Achterkant"
996
 
997
+ #: libs/blockcountry-settings.php:1720 libs/blockcountry-settings.php:1830
998
  msgid "Frontend"
999
  msgstr "Voorkant"
1000
 
1001
+ #: libs/blockcountry-settings.php:1720
1002
  msgid "Backend banlist"
1003
  msgstr "Achterkant banlist"
1004
 
1005
+ #: libs/blockcountry-settings.php:1720
1006
  msgid "Backend & Backend banlist"
1007
  msgstr "Achterkant & Achterkant banlist"
1008
 
1009
+ #: libs/blockcountry-settings.php:1720 libs/blockcountry-settings.php:1831
1010
  msgid "Backend"
1011
  msgstr "Achterkant"
1012
 
1013
+ #: libs/blockcountry-settings.php:1727
1014
  msgid "Top countries that are blocked"
1015
  msgstr "Top landen welke zijn geblokkeerd"
1016
 
1017
+ #: libs/blockcountry-settings.php:1729 libs/blockcountry-settings.php:1742
1018
+ #: libs/blockcountry-settings.php:1763
1019
  msgid "# of blocked attempts"
1020
  msgstr "# of geblokkeerde pogingen"
1021
 
1022
+ #: libs/blockcountry-settings.php:1740
1023
  msgid "Top hosts that are blocked"
1024
  msgstr "Top hosts welke geblokkeerd zijn"
1025
 
1026
+ #: libs/blockcountry-settings.php:1761
1027
  msgid "Top URLs that are blocked"
1028
  msgstr "Top URLs welke geblokkeerd zijn"
1029
 
1030
+ #: libs/blockcountry-settings.php:1777
1031
  msgid "Clear database"
1032
  msgstr "Leeg database"
1033
 
1034
+ #: libs/blockcountry-settings.php:1800
1035
  msgid "Download as CSV file"
1036
  msgstr "Download als een csv bestand."
1037
 
1038
+ #: libs/blockcountry-settings.php:1807
1039
  msgid ""
1040
  "You are not logging any information. Please uncheck the option 'Do not log "
1041
  "IP addresses' if this is not what you want."
1043
  "Je logt geen informatie. Deselecteer alstublieft de optie 'Log geen IP "
1044
  "adressen' indien dit niet is wat je wilt."
1045
 
1046
+ #: libs/blockcountry-settings.php:1829
1047
  msgid "Home"
1048
  msgstr "Home"
1049
 
1050
+ #: libs/blockcountry-settings.php:1832
1051
  msgid "Pages"
1052
  msgstr "Pagina's"
1053
 
1054
+ #: libs/blockcountry-settings.php:1833
1055
  msgid "Categories"
1056
  msgstr "Categorieen"
1057
 
1058
+ #: libs/blockcountry-settings.php:1834
1059
  msgid "Tags"
1060
  msgstr "Tags"
1061
 
1062
+ #: libs/blockcountry-settings.php:1834
1063
  msgid "Post types"
1064
  msgstr "Post types"
1065
 
1066
+ #: libs/blockcountry-settings.php:1835
1067
  msgid "Services"
1068
  msgstr "Diensten"
1069
 
1070
+ #: libs/blockcountry-settings.php:1836
1071
  msgid "Tools"
1072
  msgstr "Gereedschap"
1073
 
1074
+ #: libs/blockcountry-settings.php:1837
1075
  msgid "Logging"
1076
  msgstr "Statistieken"
1077
 
1078
+ #: libs/blockcountry-settings.php:1838
1079
  msgid "Import/Export"
1080
  msgstr "Importeren/Exporteren"
1081
 
libs/blockcountry-checks.php CHANGED
@@ -59,6 +59,10 @@ function iqblockcountry_check_ipaddress($ip_address)
59
  }
60
  else { $country = "Unknown"; }
61
 
 
 
 
 
62
 
63
  return $country;
64
  }
@@ -92,6 +96,10 @@ function iqblockcountry_retrieve_geoipapi($ipaddress)
92
  {
93
  $url = GEOIPAPIURLEU3;
94
  }
 
 
 
 
95
  if (get_option('blockcountry_geoapilocation') == "ASIA")
96
  {
97
  $url = GEOIPAPIURLASIA;
59
  }
60
  else { $country = "Unknown"; }
61
 
62
+ if (empty($country) || $country == null )
63
+ {
64
+ $country = "Unknown";
65
+ }
66
 
67
  return $country;
68
  }
96
  {
97
  $url = GEOIPAPIURLEU3;
98
  }
99
+ if (get_option('blockcountry_geoapilocation') == "EU4")
100
+ {
101
+ $url = GEOIPAPIURLEU4;
102
+ }
103
  if (get_option('blockcountry_geoapilocation') == "ASIA")
104
  {
105
  $url = GEOIPAPIURLASIA;
libs/blockcountry-settings.php CHANGED
@@ -64,8 +64,9 @@ function iq_missing_db_notice()
64
  <div class="notice notice-error">
65
  <h3>iQ Block Country</h3>
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
 
@@ -88,8 +89,9 @@ function iq_missing_dbgeoip2_notice()
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
 
@@ -127,8 +129,9 @@ function iq_old_db_notice()
127
  <div class="notice notice-warning">
128
  <h3>iQ Block Country</h3>
129
  <p><?php _e('The MaxMind GeoIP database is older than 3 months. Please update 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>
130
- <p><?php _e("Please download the database from: " , 'iq-block-country'); ?>
131
- <?php echo "<a href=\"" . GEOIP2DB . "\" target=\"_blank\">" . GEOIP2DB . "</a> "; ?>
 
132
  <?php _e("unzip the file and afterwards upload it to the following location: " , 'iq-block-country'); ?>
133
  <b><?php echo GEOIP2DBFILE; ?></b></p>
134
 
@@ -1600,10 +1603,10 @@ if (is_file ( GEOIP2DBFILE ) && (!get_option('blockcountry_geoapikey'))) {
1600
  <td width="70%">
1601
 
1602
  <input type="radio" name="blockcountry_geoapilocation" value="EU" <?php checked('EU', get_option('blockcountry_geoapilocation'), true); ?>> Europe (Netherlands)<br />
1603
- <input type="radio" name="blockcountry_geoapilocation" value="EU2" <?php checked('EU2', get_option('blockcountry_geoapilocation'), true); ?>> Europe (United Kingdom)<br />
1604
  <input type="radio" name="blockcountry_geoapilocation" value="EU3" <?php checked('EU3', get_option('blockcountry_geoapilocation'), true); ?>> Europe (Germany)<br />
 
1605
  <input type="radio" name="blockcountry_geoapilocation" value="US" <?php checked('US', get_option('blockcountry_geoapilocation'), true); ?>> United States - New York<br />
1606
- <input type="radio" name="blockcountry_geoapilocation" value="US2" <?php checked('US2', get_option('blockcountry_geoapilocation'), true); ?>> United States - San Fransico<br />
1607
  <input type="radio" name="blockcountry_geoapilocation" value="US3" <?php checked('US3', get_option('blockcountry_geoapilocation'), true); ?>> United States - Miami<br />
1608
 
1609
  </td></tr>
@@ -1958,11 +1961,11 @@ function iqblockcountry_find_geoip_location()
1958
 
1959
  $curl = curl_init();
1960
  curl_setopt_array($curl, array(
1961
- CURLOPT_URL => 'https://eu2.geoip.webence.nl/test',
1962
- CURLOPT_USERAGENT => 'iQ Block Country EU2 location test/' . get_bloginfo('wpurl')
1963
  ));
1964
  $resp = curl_exec($curl);
1965
- $infoeu2 = curl_getinfo($curl);
1966
  curl_close($curl);
1967
 
1968
  $curl = curl_init();
@@ -1975,7 +1978,7 @@ function iqblockcountry_find_geoip_location()
1975
  curl_close($curl);
1976
 
1977
 
1978
- $fastestsite = min($infoeu['total_time'],$infoeu2['total_time'],$infoeu3['total_time'],$infous['total_time'],$infous2['total_time'],$infous3['total_time']);
1979
 
1980
  if ($infous['total_time'] == $fastestsite)
1981
  {
@@ -1993,9 +1996,9 @@ function iqblockcountry_find_geoip_location()
1993
  // {
1994
  // update_option('blockcountry_geoapilocation','ASIA');
1995
  // }
1996
- elseif ($infoeu2['total_time'] == $fastestsite)
1997
  {
1998
- update_option('blockcountry_geoapilocation','EU2');
1999
  }
2000
  elseif ($infoeu3['total_time'] == $fastestsite)
2001
  {
64
  <div class="notice notice-error">
65
  <h3>iQ Block Country</h3>
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 (GeoLite2-Country.tar.gz) from: " , 'iq-block-country'); ?>
68
+ <?php _e("If you do not have an account at Maxmind yet for the Geolite2 database sign up for a free account at:", 'iq-block-country'); ?>
69
+ <?php echo "<a href=\"" . MAXMINDURL . "\" target=\"_blank\">" . MAXMINDURL . "</a> "; ?>
70
  <?php _e("unzip the file and afterwards upload the GeoLite2-Country.mmdb file to the following location: " , 'iq-block-country'); ?>
71
  <b><?php echo GEOIP2DBFILE; ?></b></p>
72
 
89
  <h3>iQ Block Country</h3>
90
  <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');
91
  _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>
92
+ <p><?php _e("Please download the database (GeoLite2-Country.tar.gz) from: " , 'iq-block-country'); ?>
93
+ <?php _e("If you do not have an account at Maxmind yet for the Geolite2 database sign up for a free account at:", 'iq-block-country'); ?>
94
+ <?php echo "<a href=\"" . MAXMINDURL . "\" target=\"_blank\">" . MAXMINDURL . "</a> "; ?>
95
  <?php _e("unzip the file and afterwards upload the GeoLite2-Country.mmdb file to the following location: " , 'iq-block-country'); ?>
96
  <b><?php echo GEOIP2DBFILE; ?></b></p>
97
 
129
  <div class="notice notice-warning">
130
  <h3>iQ Block Country</h3>
131
  <p><?php _e('The MaxMind GeoIP database is older than 3 months. Please update 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>
132
+ <p><?php _e("Please download the database (GeoLite2-Country.tar.gz) from MaxMind. " , 'iq-block-country'); ?>
133
+ <?php _e("If you do not have an account at Maxmind yet for the Geolite2 database sign up for a free account at:", 'iq-block-country'); ?>
134
+ <?php echo "<a href=\"" . MAXMINDURL . "\" target=\"_blank\">" . MAXMINDURL . "</a> "; ?>
135
  <?php _e("unzip the file and afterwards upload it to the following location: " , 'iq-block-country'); ?>
136
  <b><?php echo GEOIP2DBFILE; ?></b></p>
137
 
1603
  <td width="70%">
1604
 
1605
  <input type="radio" name="blockcountry_geoapilocation" value="EU" <?php checked('EU', get_option('blockcountry_geoapilocation'), true); ?>> Europe (Netherlands)<br />
 
1606
  <input type="radio" name="blockcountry_geoapilocation" value="EU3" <?php checked('EU3', get_option('blockcountry_geoapilocation'), true); ?>> Europe (Germany)<br />
1607
+ <input type="radio" name="blockcountry_geoapilocation" value="EU4" <?php checked('EU4', get_option('blockcountry_geoapilocation'), true); ?>> Europe (France)<br />
1608
  <input type="radio" name="blockcountry_geoapilocation" value="US" <?php checked('US', get_option('blockcountry_geoapilocation'), true); ?>> United States - New York<br />
1609
+ <input type="radio" name="blockcountry_geoapilocation" value="US2" <?php checked('US2', get_option('blockcountry_geoapilocation'), true); ?>> United States - San Francisco<br />
1610
  <input type="radio" name="blockcountry_geoapilocation" value="US3" <?php checked('US3', get_option('blockcountry_geoapilocation'), true); ?>> United States - Miami<br />
1611
 
1612
  </td></tr>
1961
 
1962
  $curl = curl_init();
1963
  curl_setopt_array($curl, array(
1964
+ CURLOPT_URL => 'https://eu4.geoip.webence.nl/test',
1965
+ CURLOPT_USERAGENT => 'iQ Block Country EU4 location test/' . get_bloginfo('wpurl')
1966
  ));
1967
  $resp = curl_exec($curl);
1968
+ $infoeu4 = curl_getinfo($curl);
1969
  curl_close($curl);
1970
 
1971
  $curl = curl_init();
1978
  curl_close($curl);
1979
 
1980
 
1981
+ $fastestsite = min($infoeu['total_time'],$infoeu4['total_time'],$infoeu3['total_time'],$infous['total_time'],$infous2['total_time'],$infous3['total_time']);
1982
 
1983
  if ($infous['total_time'] == $fastestsite)
1984
  {
1996
  // {
1997
  // update_option('blockcountry_geoapilocation','ASIA');
1998
  // }
1999
+ elseif ($infoeu4['total_time'] == $fastestsite)
2000
  {
2001
+ update_option('blockcountry_geoapilocation','EU4');
2002
  }
2003
  elseif ($infoeu3['total_time'] == $fastestsite)
2004
  {
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: 5.2.2
7
- Stable tag: 1.2.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
  Requires PHP: 5.6
@@ -37,6 +37,8 @@ The Wordpress license does not allow this plugin to download the MaxMind Geo dat
37
 
38
  Do you need help with this plugin? Please email support@webence.nl.
39
 
 
 
40
  = GDPR Information =
41
 
42
  This plugin stores data about your visitors in your local WordPress database. The number of days this data is stores can be configured on the settings page. You can also disable logging any data.
@@ -66,11 +68,13 @@ Plugins that do NOT work: W3 Total Cache, Hyper cache, WPRocket
66
  == Installation ==
67
 
68
  1. Unzip the archive and put the `iq-block-country` folder into your plugins folder (/wp-content/plugins/).
69
- 2. Download the GeoIP2 Country database from: http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.tar.gz
70
- 3. Unzip the GeoIP2 database and upload the GeoLite2-Country.mmdb file to your upload dir usually /wp-content/uploads/GeoLite2-Country.mmdb
71
- 4. If you do not want to or cannot download the MaxMind GeoIP database you can use the GeoIP API.
72
- 5. Activate the plugin through the 'Plugins' menu in WordPress
73
- 6. Go to the settings page and choose which countries you want to ban. Use the ctrl key to select multiple countries
 
 
74
 
75
  == Frequently Asked Questions ==
76
 
@@ -166,7 +170,9 @@ If you just want to allow some countries you can also use the 'Block all countri
166
 
167
  You can download the database(s) directly from MaxMind and upload them to your website.
168
 
169
- 1. Download the GeoIP2 Country database from: http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.tar.gz
 
 
170
  2. Unzip the GeoIP2 database and upload the GeoLite2-Country.mmdb file to your upload dir usually /wp-content/uploads/GeoLite2-Country.mmdb
171
 
172
  Maxmind updates the GeoLite database every month.
@@ -233,6 +239,13 @@ be used.
233
 
234
  == Changelog ==
235
 
 
 
 
 
 
 
 
236
  = 1.2.6 =
237
 
238
  * Change: Added better support to detect if mbstring is available for usage.
@@ -471,4 +484,4 @@ be used.
471
 
472
  = 1.1.19 =
473
 
474
- This plugin no longer downloads the MaxMind database. You have to download manually or use the GeoIP API.
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.4.1
7
+ Stable tag: 1.2.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
  Requires PHP: 5.6
37
 
38
  Do you need help with this plugin? Please email support@webence.nl.
39
 
40
+ [](http://coderisk.com/wp/plugin/iq-block-country/RIPS-gqj4iaDvG_)
41
+
42
  = GDPR Information =
43
 
44
  This plugin stores data about your visitors in your local WordPress database. The number of days this data is stores can be configured on the settings page. You can also disable logging any data.
68
  == Installation ==
69
 
70
  1. Unzip the archive and put the `iq-block-country` folder into your plugins folder (/wp-content/plugins/).
71
+ 2. Create an account at https://www.maxmind.com/en/geolite2/signup
72
+ 3. Login to your account.
73
+ 4. Download the GeoIP2 Country database (name is GeoLite2-Country.tar.gz) from your account.
74
+ 5. Unzip the GeoIP2 database and upload the GeoLite2-Country.mmdb file to your upload dir usually /wp-content/uploads/GeoLite2-Country.mmdb
75
+ 6. If you do not want to or cannot download the MaxMind GeoIP database you can use the GeoIP API.
76
+ 7. Activate the plugin through the 'Plugins' menu in WordPress
77
+ 8. Go to the settings page and choose which countries you want to ban. Use the ctrl key to select multiple countries
78
 
79
  == Frequently Asked Questions ==
80
 
170
 
171
  You can download the database(s) directly from MaxMind and upload them to your website.
172
 
173
+ 1. Create an account at https://www.maxmind.com/en/geolite2/signup
174
+ 2. Login to your account.
175
+ 1. Download the GeoIP2 Country database (name is GeoLite2-Country.tar.gz) from your account.
176
  2. Unzip the GeoIP2 database and upload the GeoLite2-Country.mmdb file to your upload dir usually /wp-content/uploads/GeoLite2-Country.mmdb
177
 
178
  Maxmind updates the GeoLite database every month.
239
 
240
  == Changelog ==
241
 
242
+ = 1.2.7 =
243
+
244
+ * Change: Typo in San Francisco (Thanks to Shizart)
245
+ * New: Added France as GeoIP location
246
+ * Change: Update to text description due to MaxMind update to Geo2Lite database policy
247
+ * Bugfix: No empty location anymore (Thanks to Stonehenge Creations)
248
+
249
  = 1.2.6 =
250
 
251
  * Change: Added better support to detect if mbstring is available for usage.
484
 
485
  = 1.1.19 =
486
 
487
+ This plugin no longer downloads the MaxMind database. You have to download manually or use the GeoIP API.