Version Description
- Bugfix: Added extra aiwop checking due to a notice error.
- Change: Renamed Search Engines tab to Services tab as more non-search engines are added to the list.
- New: Added Feedly to services.
- New: Added Google Feed to services.
- New: Changes are made for supporting the new GeoIP2 database format of MaxMind.
Download this release
Release Info
Developer | iqpascal |
Plugin | iQ Block Country |
Version | 1.1.46 |
Comparing to | |
See all releases |
Code changes from version 1.1.45 to 1.1.46
- iq-block-country.php +5 -2
- lang/en_EN.mo +0 -0
- lang/en_EN.po +1 -1
- lang/iqblockcountry-nl_NL.mo +0 -0
- lang/iqblockcountry-nl_NL.po +350 -272
- libs/blockcountry-checks.php +16 -3
- libs/blockcountry-geoip.php +262 -0
- libs/blockcountry-search-engines.php +2 -0
- libs/blockcountry-settings.php +38 -21
- readme.txt +11 -3
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.1.
|
6 |
Author: Pascal
|
7 |
Author URI: https://www.webence.nl/
|
8 |
Description: Block visitors from visiting your website and backend website based on which country their IP address is from. The Maxmind GeoIP lite database is used for looking up from which country an ip address is from.
|
@@ -237,8 +237,10 @@ define("CHOSENCSS", plugins_url('/chosen.css', __FILE__));
|
|
237 |
define("CHOSENCUSTOM",plugins_url('/js/chosen.custom.js', __FILE__));
|
238 |
define("IPV6DB","http://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz"); // Used to display download location.
|
239 |
define("IPV4DB","http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz"); // Used to display download location.
|
|
|
240 |
define("IPV4DBFILE",$upload_dir['basedir'] . "/GeoIP.dat");
|
241 |
define("IPV6DBFILE",$upload_dir['basedir'] . "/GeoIPv6.dat");
|
|
|
242 |
define("TRACKINGURL","https://tracking.webence.nl/iq-block-country-tracking.php");
|
243 |
define("BANLISTRETRIEVEURL","https://eu.adminblock.webence.nl/iq-block-country-retrieve.php");
|
244 |
define("GEOIPAPIURL","https://eu.geoip.webence.nl/geoipapi.php");
|
@@ -248,7 +250,7 @@ define("GEOIPAPIURLASIA","https://us2.geoip.webence.nl/geoipapi.php");
|
|
248 |
define("GEOIPAPICHECKURL","https://eu.geoip.webence.nl/geoipapi-keycheck.php");
|
249 |
define("ADMINAPICHECKURL","https://tracking.webence.nl/adminapi-keycheck.php");
|
250 |
define("IPLOOKUPURL",'https://geoip.webence.nl/iplookup/iplookup.php');
|
251 |
-
define("VERSION","1.1.
|
252 |
define("DBVERSION","122");
|
253 |
define("PLUGINPATH",plugin_dir_path( __FILE__ ));
|
254 |
|
@@ -257,6 +259,7 @@ define("PLUGINPATH",plugin_dir_path( __FILE__ ));
|
|
257 |
/*
|
258 |
* Include libraries
|
259 |
*/
|
|
|
260 |
require_once('libs/blockcountry-checks.php');
|
261 |
require_once('libs/blockcountry-settings.php');
|
262 |
require_once('libs/blockcountry-validation.php');
|
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.1.46
|
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.
|
237 |
define("CHOSENCUSTOM",plugins_url('/js/chosen.custom.js', __FILE__));
|
238 |
define("IPV6DB","http://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz"); // Used to display download location.
|
239 |
define("IPV4DB","http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz"); // Used to display download location.
|
240 |
+
define("GEOIP2DB","http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.tar.gz"); // Used to display download location.
|
241 |
define("IPV4DBFILE",$upload_dir['basedir'] . "/GeoIP.dat");
|
242 |
define("IPV6DBFILE",$upload_dir['basedir'] . "/GeoIPv6.dat");
|
243 |
+
define("GEOIP2DBFILE",$upload_dir['basedir'] . "/GeoLite2-Country.mmdb");
|
244 |
define("TRACKINGURL","https://tracking.webence.nl/iq-block-country-tracking.php");
|
245 |
define("BANLISTRETRIEVEURL","https://eu.adminblock.webence.nl/iq-block-country-retrieve.php");
|
246 |
define("GEOIPAPIURL","https://eu.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.1.46");
|
254 |
define("DBVERSION","122");
|
255 |
define("PLUGINPATH",plugin_dir_path( __FILE__ ));
|
256 |
|
259 |
/*
|
260 |
* Include libraries
|
261 |
*/
|
262 |
+
require_once('libs/blockcountry-geoip.php');
|
263 |
require_once('libs/blockcountry-checks.php');
|
264 |
require_once('libs/blockcountry-settings.php');
|
265 |
require_once('libs/blockcountry-validation.php');
|
lang/en_EN.mo
CHANGED
Binary file
|
lang/en_EN.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: iQ Block Country\n"
|
4 |
"POT-Creation-Date: 2016-08-02 20:45+0100\n"
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: Pascal <pascal@webence.nl>\n"
|
7 |
"Language-Team: iQ Block Country <info@redeo.nl>\n"
|
8 |
"Language: en\n"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: iQ Block Country\n"
|
4 |
"POT-Creation-Date: 2016-08-02 20:45+0100\n"
|
5 |
+
"PO-Revision-Date: 2018-02-16 10:10+0100\n"
|
6 |
"Last-Translator: Pascal <pascal@webence.nl>\n"
|
7 |
"Language-Team: iQ Block Country <info@redeo.nl>\n"
|
8 |
"Language: en\n"
|
lang/iqblockcountry-nl_NL.mo
CHANGED
Binary file
|
lang/iqblockcountry-nl_NL.po
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: iQ Block Country\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: Pascal <pascal@webence.nl>\n"
|
7 |
-
"Language-Team: iQ Block Country <
|
8 |
"Language: nl\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -14,18 +14,9 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SearchPath-0: libs\n"
|
16 |
"X-Poedit-SearchPath-1: .\n"
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
msgstr "De GeoIP API sleutel is incorrect. Corrigeer a.u.b. de sleutel."
|
21 |
-
|
22 |
-
#: libs/blockcountry-validation.php:104 libs/blockcountry-validation.php:151
|
23 |
-
msgid "Setting saved."
|
24 |
-
msgstr "Instellingen opgeslagen."
|
25 |
-
|
26 |
-
#: libs/blockcountry-validation.php:145
|
27 |
-
msgid "The Admin Block API key is incorrect. Please update the key."
|
28 |
-
msgstr "De Admin Block API sleutel is incorrect. Corrigeer a.u.b. de sleutel."
|
29 |
|
30 |
#: libs/blockcountry-settings.php:59
|
31 |
msgid ""
|
@@ -81,318 +72,319 @@ msgstr ""
|
|
81 |
"handmatig of indien je gebruik wilt maken van de GeoIP API kun je een API "
|
82 |
"sleutel verkrijgen van:"
|
83 |
|
84 |
-
#: libs/blockcountry-settings.php:
|
85 |
msgid ""
|
86 |
"Check which country belongs to an IP Address according to the current "
|
87 |
"database."
|
88 |
msgstr ""
|
89 |
"Controleer welk land behoort tot een IP adres volgens de huidige database."
|
90 |
|
91 |
-
#: libs/blockcountry-settings.php:
|
92 |
msgid "IP Address to check:"
|
93 |
msgstr "IP adres om te controleren:"
|
94 |
|
95 |
-
#: libs/blockcountry-settings.php:
|
96 |
msgid "No country for"
|
97 |
msgstr "Geen land voor"
|
98 |
|
99 |
-
#: libs/blockcountry-settings.php:
|
100 |
msgid "could be found. Or"
|
101 |
msgstr "gevonden. Of"
|
102 |
|
103 |
-
#: libs/blockcountry-settings.php:
|
104 |
msgid "is not a valid IPv4 or IPv6 IP address"
|
105 |
msgstr "is geen valide IPv4 of IPv6 ip adres."
|
106 |
|
107 |
-
#: libs/blockcountry-settings.php:
|
108 |
msgid "IP Adress"
|
109 |
msgstr "IP Adres"
|
110 |
|
111 |
-
#: libs/blockcountry-settings.php:
|
112 |
msgid "belongs to"
|
113 |
msgstr "behoort tot"
|
114 |
|
115 |
-
#: libs/blockcountry-settings.php:
|
116 |
msgid "This country is not permitted to visit the frontend of this website."
|
117 |
msgstr ""
|
118 |
"Dit land wordt niet toegestaan om de voorkant van deze website te bezoeken."
|
119 |
|
120 |
-
#: libs/blockcountry-settings.php:
|
121 |
msgid "This country is not permitted to visit the backend of this website."
|
122 |
msgstr ""
|
123 |
"Dit land wordt niet toegestaan om de achterkant van deze website te bezoeken."
|
124 |
|
125 |
-
#: libs/blockcountry-settings.php:
|
126 |
msgid "This ip is present in the blacklist."
|
127 |
msgstr "Dit ip adres staat op de zwarte lijst"
|
128 |
|
129 |
-
#: libs/blockcountry-settings.php:
|
130 |
msgid "Check IP address"
|
131 |
msgstr "Controleer IP adres"
|
132 |
|
133 |
-
#: libs/blockcountry-settings.php:
|
134 |
msgid "Database information"
|
135 |
msgstr "Database informatie"
|
136 |
|
137 |
-
#: libs/blockcountry-settings.php:
|
138 |
msgid "IPv4 database exists. File date: "
|
139 |
msgstr "IPv4 database bestaat. Bestands datum:"
|
140 |
|
141 |
-
#: libs/blockcountry-settings.php:
|
142 |
-
#, fuzzy
|
143 |
msgid "Database is older than 3 months... Please update..."
|
144 |
msgstr ""
|
145 |
"Uw MaxMind GeoIP database is ouder dan 3 maanden. Update je database "
|
146 |
"alstublieft."
|
147 |
|
148 |
-
#: libs/blockcountry-settings.php:
|
149 |
msgid "IPv4 database does not exist."
|
150 |
msgstr "IPv4 database bestaat niet."
|
151 |
|
152 |
-
#: libs/blockcountry-settings.php:
|
153 |
msgid "IPv6 database exists. File date: "
|
154 |
msgstr "IPv6 database bestaat. Bestands datum:"
|
155 |
|
156 |
-
#: libs/blockcountry-settings.php:
|
157 |
-
#, fuzzy
|
158 |
msgid "Database is older than 3 months... Please update..."
|
159 |
msgstr ""
|
160 |
"Uw MaxMind GeoIP database is ouder dan 3 maanden. Update je database "
|
161 |
"alstublieft."
|
162 |
|
163 |
-
#: libs/blockcountry-settings.php:
|
164 |
msgid "IPv6 database does not exist."
|
165 |
msgstr "IPv6 database bestaat niet."
|
166 |
|
167 |
-
#: libs/blockcountry-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
168 |
msgid "Your GeoIP API key is valid till: "
|
169 |
msgstr "Uw GeoIP API key is geldig tot:"
|
170 |
|
171 |
-
#: libs/blockcountry-settings.php:
|
172 |
msgid "Active plugins"
|
173 |
msgstr "Actieve plugins"
|
174 |
|
175 |
-
#: libs/blockcountry-settings.php:
|
176 |
msgid "Plugin name"
|
177 |
msgstr "Plugin naam"
|
178 |
|
179 |
-
#: libs/blockcountry-settings.php:
|
180 |
msgid "Version"
|
181 |
msgstr "Versie"
|
182 |
|
183 |
-
#: libs/blockcountry-settings.php:
|
184 |
-
#: libs/blockcountry-settings.php:
|
185 |
msgid "URL"
|
186 |
msgstr "URL"
|
187 |
|
188 |
-
#: libs/blockcountry-settings.php:
|
189 |
msgid "none"
|
190 |
msgstr "Geen"
|
191 |
|
192 |
-
#: libs/blockcountry-settings.php:
|
193 |
msgid "unavailable"
|
194 |
msgstr "niet beschikbaar"
|
195 |
|
196 |
-
#: libs/blockcountry-settings.php:
|
197 |
msgid "File System Information"
|
198 |
msgstr "File systeem informatie"
|
199 |
|
200 |
-
#: libs/blockcountry-settings.php:
|
201 |
msgid "Website Root Folder"
|
202 |
msgstr "Website root directory"
|
203 |
|
204 |
-
#: libs/blockcountry-settings.php:
|
205 |
msgid "Document Root Path"
|
206 |
msgstr "Document root pad"
|
207 |
|
208 |
-
#: libs/blockcountry-settings.php:
|
209 |
msgid "Database Information"
|
210 |
msgstr "Database informatie"
|
211 |
|
212 |
-
#: libs/blockcountry-settings.php:
|
213 |
msgid "MySQL Database Version"
|
214 |
msgstr "MySQL Database versie"
|
215 |
|
216 |
-
#: libs/blockcountry-settings.php:
|
217 |
msgid "MySQL Client Version"
|
218 |
msgstr "MySQL Client versie"
|
219 |
|
220 |
-
#: libs/blockcountry-settings.php:
|
221 |
msgid "Database Host"
|
222 |
msgstr "Database Host"
|
223 |
|
224 |
-
#: libs/blockcountry-settings.php:
|
225 |
msgid "Not Set"
|
226 |
msgstr "Niet gezet"
|
227 |
|
228 |
-
#: libs/blockcountry-settings.php:
|
229 |
-
#: libs/blockcountry-settings.php:
|
230 |
-
#: libs/blockcountry-settings.php:
|
231 |
-
#: libs/blockcountry-settings.php:
|
232 |
msgid "Off"
|
233 |
msgstr "Uit"
|
234 |
|
235 |
-
#: libs/blockcountry-settings.php:
|
236 |
msgid "SQL Mode"
|
237 |
msgstr "SQL Mode"
|
238 |
|
239 |
-
#: libs/blockcountry-settings.php:
|
240 |
msgid "Server Information"
|
241 |
msgstr "Server informatie"
|
242 |
|
243 |
-
#: libs/blockcountry-settings.php:
|
244 |
msgid "Server IP Address"
|
245 |
msgstr "Server IP Adres"
|
246 |
|
247 |
-
#: libs/blockcountry-settings.php:
|
248 |
msgid "Server Type"
|
249 |
msgstr "Server Type"
|
250 |
|
251 |
-
#: libs/blockcountry-settings.php:
|
252 |
msgid "Operating System"
|
253 |
msgstr "Operating System"
|
254 |
|
255 |
-
#: libs/blockcountry-settings.php:
|
256 |
msgid "Browser Compression Supported"
|
257 |
msgstr "Browser Compressie ondersteund"
|
258 |
|
259 |
-
#: libs/blockcountry-settings.php:
|
260 |
msgid "undefined"
|
261 |
msgstr "Ongedefinieerd"
|
262 |
|
263 |
-
#: libs/blockcountry-settings.php:
|
264 |
msgid "PHP Process User (UID:GID)"
|
265 |
msgstr "PHP Process User (UID:GID)"
|
266 |
|
267 |
-
#: libs/blockcountry-settings.php:
|
268 |
msgid "PHP Information"
|
269 |
msgstr "PHP Informatie"
|
270 |
|
271 |
-
#: libs/blockcountry-settings.php:
|
272 |
msgid "PHP Version"
|
273 |
msgstr "PHP versie"
|
274 |
|
275 |
-
#: libs/blockcountry-settings.php:
|
276 |
msgid "PHP Memory Usage"
|
277 |
msgstr "PHP Memory Usage"
|
278 |
|
279 |
-
#: libs/blockcountry-settings.php:
|
280 |
msgid " MB"
|
281 |
msgstr " MB"
|
282 |
|
283 |
-
#: libs/blockcountry-settings.php:
|
284 |
-
#: libs/blockcountry-settings.php:
|
285 |
msgid "N/A"
|
286 |
msgstr "N/A"
|
287 |
|
288 |
-
#: libs/blockcountry-settings.php:
|
289 |
msgid "PHP Memory Limit"
|
290 |
msgstr "PHP Memory Limit"
|
291 |
|
292 |
-
#: libs/blockcountry-settings.php:
|
293 |
msgid "PHP Max Upload Size"
|
294 |
msgstr "PHP Max Upload Size"
|
295 |
|
296 |
-
#: libs/blockcountry-settings.php:
|
297 |
msgid "PHP Max Post Size"
|
298 |
msgstr "PHP Max Post Size"
|
299 |
|
300 |
-
#: libs/blockcountry-settings.php:
|
301 |
-
#: libs/blockcountry-settings.php:
|
302 |
-
#: libs/blockcountry-settings.php:
|
303 |
-
#: libs/blockcountry-settings.php:577
|
304 |
msgid "On"
|
305 |
msgstr "Aan"
|
306 |
|
307 |
-
#: libs/blockcountry-settings.php:
|
308 |
-
msgid "PHP Safe Mode"
|
309 |
-
msgstr "PHP Safe Mode"
|
310 |
-
|
311 |
-
#: libs/blockcountry-settings.php:532
|
312 |
msgid "PHP Allow URL fopen"
|
313 |
msgstr "PHP Allow URL fopen"
|
314 |
|
315 |
-
#: libs/blockcountry-settings.php:
|
316 |
msgid "PHP Allow URL Include"
|
317 |
msgstr "PHP Allow URL Include"
|
318 |
|
319 |
-
#: libs/blockcountry-settings.php:
|
320 |
msgid "PHP Display Errors"
|
321 |
msgstr "PHP Display Errors"
|
322 |
|
323 |
-
#: libs/blockcountry-settings.php:
|
324 |
msgid "PHP Display Startup Errors"
|
325 |
msgstr "PHP Display Startup Errors"
|
326 |
|
327 |
-
#: libs/blockcountry-settings.php:
|
328 |
msgid "PHP Expose PHP"
|
329 |
msgstr "PHP Expose PHP"
|
330 |
|
331 |
-
#: libs/blockcountry-settings.php:
|
332 |
msgid "PHP Max Script Execution Time"
|
333 |
msgstr "PHP Max Script Execution Time"
|
334 |
|
335 |
-
#: libs/blockcountry-settings.php:
|
336 |
msgid "Seconds"
|
337 |
msgstr "Seconden"
|
338 |
|
339 |
-
#: libs/blockcountry-settings.php:
|
340 |
msgid "PHP open_basedir"
|
341 |
msgstr "PHP open_basedir"
|
342 |
|
343 |
-
#: libs/blockcountry-settings.php:
|
344 |
msgid "Yes"
|
345 |
msgstr "Ja"
|
346 |
|
347 |
-
#: libs/blockcountry-settings.php:
|
348 |
msgid "No"
|
349 |
msgstr "Nee"
|
350 |
|
351 |
-
#: libs/blockcountry-settings.php:
|
352 |
msgid "PHP XML Support"
|
353 |
msgstr "PHP XML Support"
|
354 |
|
355 |
-
#: libs/blockcountry-settings.php:
|
356 |
msgid "PHP IPTC Support"
|
357 |
msgstr "PHP IPTC Support"
|
358 |
|
359 |
-
#: libs/blockcountry-settings.php:
|
360 |
msgid "Disabled PHP Functions"
|
361 |
msgstr "Disabled PHP Functions"
|
362 |
|
363 |
-
#: libs/blockcountry-settings.php:
|
364 |
msgid "Wordpress info"
|
365 |
msgstr "Wordpress Informatie"
|
366 |
|
367 |
-
#: libs/blockcountry-settings.php:
|
368 |
msgid "is enabled"
|
369 |
msgstr "is aangezet"
|
370 |
|
371 |
-
#: libs/blockcountry-settings.php:
|
372 |
msgid "is disabled"
|
373 |
msgstr "Is uitgezet"
|
374 |
|
375 |
-
#: libs/blockcountry-settings.php:
|
376 |
msgid " Multisite"
|
377 |
msgstr "Multisite"
|
378 |
|
379 |
-
#: libs/blockcountry-settings.php:
|
380 |
msgid "are enabled"
|
381 |
msgstr "is aangezet"
|
382 |
|
383 |
-
#: libs/blockcountry-settings.php:
|
384 |
msgid "are disabled"
|
385 |
msgstr "Is uitgezet"
|
386 |
|
387 |
-
#: libs/blockcountry-settings.php:
|
388 |
msgid "Permalinks"
|
389 |
msgstr "Permalinks"
|
390 |
|
391 |
-
#: libs/blockcountry-settings.php:
|
392 |
msgid "Export"
|
393 |
msgstr "Exporteren"
|
394 |
|
395 |
-
#: libs/blockcountry-settings.php:
|
396 |
msgid ""
|
397 |
"When you click on <tt>Backup all settings</tt> button a backup of the iQ "
|
398 |
"Block Country configuration will be created."
|
@@ -400,7 +392,7 @@ msgstr ""
|
|
400 |
"Wanneer je klikt op de <tt>Backup alle instellingen</tt> knop zal een backup "
|
401 |
"van alle iQ Block Country instellingen worden gecreerd."
|
402 |
|
403 |
-
#: libs/blockcountry-settings.php:
|
404 |
msgid ""
|
405 |
"After exporting, you can either use the backup file to restore your settings "
|
406 |
"on this site again or copy the settings to another WordPress site."
|
@@ -409,96 +401,96 @@ msgstr ""
|
|
409 |
"te herstellen of je kunt het bestand gebruiken om je instellingen naar een "
|
410 |
"andere WordPress site te exporteren."
|
411 |
|
412 |
-
#: libs/blockcountry-settings.php:
|
413 |
msgid "Backup all settings"
|
414 |
msgstr "Backup alle instellingen"
|
415 |
|
416 |
-
#: libs/blockcountry-settings.php:
|
417 |
msgid "Import"
|
418 |
msgstr "Importeer"
|
419 |
|
420 |
-
#: libs/blockcountry-settings.php:
|
421 |
msgid "Click the browse button and choose a zip file that you exported before."
|
422 |
msgstr ""
|
423 |
"Klik op de Browse button and selecteer een zip file welke je eerder hebt "
|
424 |
"geexporteerd."
|
425 |
|
426 |
-
#: libs/blockcountry-settings.php:
|
427 |
msgid "Press Restore settings button, and let WordPress do the magic for you."
|
428 |
msgstr ""
|
429 |
"Druk op de herstel instellingen knop en laat WordPress haar magie voor je "
|
430 |
"doen."
|
431 |
|
432 |
-
#: libs/blockcountry-settings.php:
|
433 |
msgid "Restore settings"
|
434 |
msgstr "Herstel instellingen"
|
435 |
|
436 |
-
#: libs/blockcountry-settings.php:
|
437 |
-
#: libs/blockcountry-settings.php:
|
438 |
msgid "Something went wrong exporting this file"
|
439 |
msgstr "Er is iets verkeerd gegaan met het exporteren van het bestand."
|
440 |
|
441 |
-
#: libs/blockcountry-settings.php:
|
442 |
msgid "Exporting settings..."
|
443 |
msgstr "Exporteer instellingen"
|
444 |
|
445 |
-
#: libs/blockcountry-settings.php:
|
446 |
msgid "Something went wrong importing this file"
|
447 |
msgstr "Er is iets verkeerd gegaan met het importeren van dit bestand"
|
448 |
|
449 |
-
#: libs/blockcountry-settings.php:
|
450 |
msgid "All options are restored successfully."
|
451 |
msgstr "Alle opties zijn succesvol hersteld"
|
452 |
|
453 |
-
#: libs/blockcountry-settings.php:
|
454 |
msgid "Invalid file."
|
455 |
msgstr "Ongeldig bestand"
|
456 |
|
457 |
-
#: libs/blockcountry-settings.php:
|
458 |
msgid "No correct import or export option given."
|
459 |
msgstr "Geen correcte importeer of exporteer optie gegeven."
|
460 |
|
461 |
-
#: libs/blockcountry-settings.php:
|
462 |
msgid "Select which pages are blocked."
|
463 |
msgstr "Selecteer welke pagina's geblokkeerd worden."
|
464 |
|
465 |
-
#: libs/blockcountry-settings.php:
|
466 |
msgid "Do you want to block individual pages:"
|
467 |
msgstr "Wil je individuele pagina's blokkeren:"
|
468 |
|
469 |
-
#: libs/blockcountry-settings.php:
|
470 |
msgid "If you do not select this option all pages will be blocked."
|
471 |
msgstr "Indien je deze optie niet selecteert worden alle pagina's geblokkeerd."
|
472 |
|
473 |
-
#: libs/blockcountry-settings.php:
|
474 |
msgid "Select pages you want to block:"
|
475 |
msgstr "Selecteer welke pagina's je wil blokkeren."
|
476 |
|
477 |
-
#: libs/blockcountry-settings.php:
|
478 |
-
#: libs/blockcountry-settings.php:
|
479 |
-
#: libs/blockcountry-settings.php:
|
480 |
-
#: libs/blockcountry-settings.php:
|
481 |
msgid "Save Changes"
|
482 |
msgstr "Bewaar wijzigingen"
|
483 |
|
484 |
-
#: libs/blockcountry-settings.php:
|
485 |
msgid "Select which categories are blocked."
|
486 |
msgstr "Selecteer welke categorieen geblokkeerd worden."
|
487 |
|
488 |
-
#: libs/blockcountry-settings.php:
|
489 |
msgid "Do you want to block individual categories:"
|
490 |
msgstr "Wil je individuele categorieen blokkeren:"
|
491 |
|
492 |
-
#: libs/blockcountry-settings.php:
|
493 |
msgid "If you do not select this option all blog articles will be blocked."
|
494 |
msgstr ""
|
495 |
"Indien je deze optie niet selecteert worden alle blog artikelen geblokkeerd."
|
496 |
|
497 |
-
#: libs/blockcountry-settings.php:
|
498 |
msgid "Do you want to block the homepage:"
|
499 |
msgstr "Wil je je homepage blokkeren:"
|
500 |
|
501 |
-
#: libs/blockcountry-settings.php:
|
502 |
msgid ""
|
503 |
"If you do not select this option visitors will not be blocked from your "
|
504 |
"homepage regardless of the categories you select."
|
@@ -507,73 +499,94 @@ msgstr ""
|
|
507 |
"geblokkeerd van het bezoeken van je homepagina ongeacht welke categorieen je "
|
508 |
"selecteert."
|
509 |
|
510 |
-
#: libs/blockcountry-settings.php:
|
511 |
msgid "Select categories you want to block:"
|
512 |
msgstr "Selecteer welke categorieen je wil blokkeren."
|
513 |
|
514 |
-
#: libs/blockcountry-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
515 |
msgid "Select which post types are blocked."
|
516 |
msgstr "Selecteer welke post types geblokkeerd worden."
|
517 |
|
518 |
-
#: libs/blockcountry-settings.php:
|
519 |
msgid "Do you want to block individual post types:"
|
520 |
msgstr "Wil je individuele post types blokkeren:"
|
521 |
|
522 |
-
#: libs/blockcountry-settings.php:
|
523 |
msgid "Select post types you want to block:"
|
524 |
msgstr "Selecteer welke post types je wil blokkeren."
|
525 |
|
526 |
-
#: libs/blockcountry-settings.php:
|
527 |
-
msgid "Select which
|
528 |
-
msgstr "Selecteer welke
|
529 |
|
530 |
-
#: libs/blockcountry-settings.php:
|
531 |
-
msgid "Select which
|
532 |
-
msgstr "Selecteer welke
|
533 |
|
534 |
-
#: libs/blockcountry-settings.php:
|
535 |
msgid ""
|
536 |
-
"This will allow a search engine to your site
|
537 |
-
"country."
|
538 |
msgstr ""
|
539 |
-
"
|
540 |
-
"
|
541 |
|
542 |
-
#: libs/blockcountry-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
543 |
msgid "Frontend options"
|
544 |
msgstr "Voorkant opties"
|
545 |
|
546 |
-
#: libs/blockcountry-settings.php:
|
547 |
msgid ""
|
548 |
"Do not block visitors that are logged in from visiting frontend website:"
|
549 |
msgstr ""
|
550 |
"Blokkeer geen bezoekers welke ingelogd zijn van het bezoeken van de voorkant:"
|
551 |
|
552 |
-
#: libs/blockcountry-settings.php:
|
553 |
msgid "Block visitors from visiting the frontend of your website:"
|
554 |
msgstr "Blokkeer bezoekers van het bezoeken van de voorkant van je website:"
|
555 |
|
556 |
-
#: libs/blockcountry-settings.php:
|
557 |
msgid "Block visitors from using the search function of your website:"
|
558 |
msgstr ""
|
559 |
"Blokkeer bezoekers van het bezoeken van de zoek functie van je website:"
|
560 |
|
561 |
-
#: libs/blockcountry-settings.php:
|
562 |
msgid ""
|
563 |
"Select the countries that should be blocked from visiting your frontend:"
|
564 |
msgstr ""
|
565 |
"Selecteer de landen welke geblokkeerd moeten worden voor het bezoeken van de "
|
566 |
"voorkant van je website:"
|
567 |
|
568 |
-
#: libs/blockcountry-settings.php:
|
569 |
msgid "Use the CTRL key to select multiple countries"
|
570 |
msgstr "Gebruik de CTRL toets om meerdere landen te selecteren"
|
571 |
|
572 |
-
#: libs/blockcountry-settings.php:
|
573 |
msgid "Inverse the selection above:"
|
574 |
msgstr "Keer bovenstaande selectie om:"
|
575 |
|
576 |
-
#: libs/blockcountry-settings.php:
|
577 |
msgid ""
|
578 |
"If you select this option only the countries that are selected are "
|
579 |
"<em>allowed</em>."
|
@@ -581,49 +594,49 @@ msgstr ""
|
|
581 |
"Indien je deze optie selecteert de zijn de landen die hierboven geselecteerd "
|
582 |
"<em>toegestaan</em>."
|
583 |
|
584 |
-
#: libs/blockcountry-settings.php:
|
585 |
msgid "Block tag pages:"
|
586 |
msgstr "Blokkeer tag pagina's"
|
587 |
|
588 |
-
#: libs/blockcountry-settings.php:
|
589 |
msgid "If you select this option tag pages will be blocked."
|
590 |
msgstr "Indien je deze optie selecteert worden tag pagina's geblokkeerd."
|
591 |
|
592 |
-
#: libs/blockcountry-settings.php:
|
593 |
msgid "Frontend whitelist IPv4 and/or IPv6 addresses:"
|
594 |
msgstr ""
|
595 |
"Whitelist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
|
596 |
|
597 |
-
#: libs/blockcountry-settings.php:
|
598 |
-
#: libs/blockcountry-settings.php:
|
599 |
msgid "Use a semicolon (;) to separate IP addresses"
|
600 |
msgstr "Gebruik een puntkomma (;) om adressen van elkaar te scheiden"
|
601 |
|
602 |
-
#: libs/blockcountry-settings.php:
|
603 |
msgid "Frontend blacklist IPv4 and/or IPv6 addresses:"
|
604 |
msgstr ""
|
605 |
"Blacklist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
|
606 |
|
607 |
-
#: libs/blockcountry-settings.php:
|
608 |
msgid "Backend Options"
|
609 |
msgstr "Achterkant opties"
|
610 |
|
611 |
-
#: libs/blockcountry-settings.php:
|
612 |
msgid ""
|
613 |
"Block visitors from visiting the backend (administrator) of your website:"
|
614 |
msgstr ""
|
615 |
"Blokkeer bezoekers van het bezoeken van de achterkant (administratie "
|
616 |
"gedeelte) van je website:"
|
617 |
|
618 |
-
#: libs/blockcountry-settings.php:
|
619 |
msgid "Your IP address is"
|
620 |
msgstr "Je IP adres is"
|
621 |
|
622 |
-
#: libs/blockcountry-settings.php:
|
623 |
msgid "The country that is listed for this IP address is"
|
624 |
msgstr "Het land waar dit adres toe behoort is"
|
625 |
|
626 |
-
#: libs/blockcountry-settings.php:
|
627 |
msgid ""
|
628 |
"Do <strong>NOT</strong> set the 'Block visitors from visiting the backend "
|
629 |
"(administrator) of your website' and also select"
|
@@ -631,11 +644,11 @@ msgstr ""
|
|
631 |
"Selecteer <strong>NIET</strong> \"Blokkeer bezoekers van het bezoeken van de "
|
632 |
"achterkant (administratie gedeelte) van je website\" en"
|
633 |
|
634 |
-
#: libs/blockcountry-settings.php:
|
635 |
msgid "below."
|
636 |
msgstr "hier beneden."
|
637 |
|
638 |
-
#: libs/blockcountry-settings.php:
|
639 |
msgid ""
|
640 |
"You will NOT be able to login the next time if you DO block your own country "
|
641 |
"from visiting the backend."
|
@@ -643,44 +656,44 @@ msgstr ""
|
|
643 |
"Het zal daarna niet meer mogelijk zijn om nog in te loggen als je je eigen "
|
644 |
"land blokkeert van het bezoeken van de achterkant van je website."
|
645 |
|
646 |
-
#: libs/blockcountry-settings.php:
|
647 |
msgid "Select the countries that should be blocked from visiting your backend:"
|
648 |
msgstr ""
|
649 |
"Selecteer de landen welke geblokkeerd moeten worden voor het bezoeken van de "
|
650 |
"achterkant (administratie gedeelte) van je website:"
|
651 |
|
652 |
-
#: libs/blockcountry-settings.php:
|
653 |
msgid "Use the x behind the country to remove a country from this blocklist."
|
654 |
msgstr ""
|
655 |
"Gebruik de x achter een land om het land te verwijderen uit deze lijst."
|
656 |
|
657 |
-
#: libs/blockcountry-settings.php:
|
658 |
msgid "Backend whitelist IPv4 and/or IPv6 addresses:"
|
659 |
msgstr ""
|
660 |
"Whitelist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
|
661 |
|
662 |
-
#: libs/blockcountry-settings.php:
|
663 |
msgid "Backend blacklist IPv4 and/or IPv6 addresses:"
|
664 |
msgstr ""
|
665 |
"Blacklist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
|
666 |
|
667 |
-
#: libs/blockcountry-settings.php:
|
668 |
msgid "Overall statistics since start"
|
669 |
msgstr "Statistieken sinds het begin"
|
670 |
|
671 |
-
#: libs/blockcountry-settings.php:
|
672 |
msgid "visitors blocked from the backend."
|
673 |
msgstr "bezoekers geblokkeerd op de achterkant."
|
674 |
|
675 |
-
#: libs/blockcountry-settings.php:
|
676 |
msgid "visitors blocked from the frontend."
|
677 |
msgstr "bezoekers geblokkeerd op de voorkant."
|
678 |
|
679 |
-
#: libs/blockcountry-settings.php:
|
680 |
msgid "Block type"
|
681 |
msgstr "Blokkeer type"
|
682 |
|
683 |
-
#: libs/blockcountry-settings.php:
|
684 |
msgid ""
|
685 |
"You should choose one of the 3 block options below. This wil either show a "
|
686 |
"block message, redirect to an internal page or redirect to an external page."
|
@@ -689,15 +702,15 @@ msgstr ""
|
|
689 |
"bericht, stuurt de bezoeker door naar een interne pagina of stuurt de "
|
690 |
"bezoeker door naar een externe pagina."
|
691 |
|
692 |
-
#: libs/blockcountry-settings.php:
|
693 |
msgid "Message to display when people are blocked:"
|
694 |
msgstr "Welk bericht wil je tonen aan bezoekers welke geblokkeerd worden:"
|
695 |
|
696 |
-
#: libs/blockcountry-settings.php:
|
697 |
msgid "Page to redirect to:"
|
698 |
msgstr "Naar welke pagina wilt u bezoekers toesturen:"
|
699 |
|
700 |
-
#: libs/blockcountry-settings.php:
|
701 |
msgid ""
|
702 |
"If you select a page here blocked visitors will be redirected to this page "
|
703 |
"instead of displaying above block message."
|
@@ -706,15 +719,15 @@ msgstr ""
|
|
706 |
"doorgestuurd naar deze pagina anders wordt bovestaande tekst getoond aan "
|
707 |
"bezoekers."
|
708 |
|
709 |
-
#: libs/blockcountry-settings.php:
|
710 |
msgid "Choose a page..."
|
711 |
msgstr "Kies een pagina..."
|
712 |
|
713 |
-
#: libs/blockcountry-settings.php:
|
714 |
msgid "URL to redirect to:"
|
715 |
msgstr "Naar welke URL wilt u geblokkerde bezoekers verwijzen:"
|
716 |
|
717 |
-
#: libs/blockcountry-settings.php:
|
718 |
msgid ""
|
719 |
"If you enter a URL here blocked visitors will be redirected to this URL "
|
720 |
"instead of displaying above block message or redirected to a local page."
|
@@ -723,15 +736,15 @@ msgstr ""
|
|
723 |
"naar deze url anders wordt bovestaande blokkeer tekst getoond aan bezoekers "
|
724 |
"of worden bezoekers doorverwezen naar de geselecteerde pagina."
|
725 |
|
726 |
-
#: libs/blockcountry-settings.php:
|
727 |
msgid "General settings"
|
728 |
msgstr "Algemene instellingen"
|
729 |
|
730 |
-
#: libs/blockcountry-settings.php:
|
731 |
msgid "Send headers when user is blocked:"
|
732 |
msgstr "Stuur headers wanneer een gebruiker is geblokkeerd:"
|
733 |
|
734 |
-
#: libs/blockcountry-settings.php:
|
735 |
msgid ""
|
736 |
"Under normal circumstances you should keep this selected! Only if you have "
|
737 |
"\"Cannot modify header information - headers already sent\" errors or if you "
|
@@ -741,11 +754,11 @@ msgstr ""
|
|
741 |
"deze alleen indien je \"Cannot modify header information - headers already "
|
742 |
"sent\" foutmeldingen krijgt of indien je weet wat je doet."
|
743 |
|
744 |
-
#: libs/blockcountry-settings.php:
|
745 |
msgid "Buffer output?:"
|
746 |
msgstr "Buffer output?"
|
747 |
|
748 |
-
#: libs/blockcountry-settings.php:
|
749 |
msgid ""
|
750 |
"You can use this option to buffer all output. This can be helpful in case "
|
751 |
"you have \"headers already sent\" issues."
|
@@ -753,11 +766,11 @@ msgstr ""
|
|
753 |
"Je kunt deze optie gebruiken om alle output te bufferen. Dit kan helpen "
|
754 |
"indien je \"headers already sent\" problemen hebt."
|
755 |
|
756 |
-
#: libs/blockcountry-settings.php:
|
757 |
msgid "Do not log IP addresses:"
|
758 |
msgstr "Log geen IP adressen"
|
759 |
|
760 |
-
#: libs/blockcountry-settings.php:
|
761 |
msgid ""
|
762 |
"Check this box if the laws in your country do not permit you to log IP "
|
763 |
"addresses or if you do not want to log the ip addresses."
|
@@ -766,29 +779,50 @@ msgstr ""
|
|
766 |
"adressen vast te leggen of indien je zelf deze informatie niet wilt "
|
767 |
"vastleggen."
|
768 |
|
769 |
-
#: libs/blockcountry-settings.php:
|
770 |
msgid "Do not block admin-ajax.php:"
|
771 |
msgstr "Blokkeer admin-ajax.php niet:"
|
772 |
|
773 |
-
#: libs/blockcountry-settings.php:
|
774 |
msgid "Check this box if you use a plugin that uses admin-ajax.php."
|
775 |
msgstr ""
|
776 |
"Selecteer deze optie indien je een plugin gebruikt welke gebruik maakt van "
|
777 |
"admin-ajax.php."
|
778 |
|
779 |
-
#: libs/blockcountry-settings.php:
|
780 |
-
msgid "Number of rows on
|
781 |
-
msgstr "Aantal regels op
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
782 |
|
783 |
-
#: libs/blockcountry-settings.php:
|
784 |
-
msgid "How many
|
785 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
786 |
|
787 |
-
#: libs/blockcountry-settings.php:
|
788 |
msgid "Allow tracking:"
|
789 |
msgstr "Sta traceren toe:"
|
790 |
|
791 |
-
#: libs/blockcountry-settings.php:
|
792 |
msgid ""
|
793 |
"This sends only the IP address and the number of attempts this ip address "
|
794 |
"tried to login to your backend and was blocked doing so to a central server. "
|
@@ -801,11 +835,11 @@ msgstr ""
|
|
801 |
"ons om beter inzicht te krijgen in de landen waarvandaan een hoop hack "
|
802 |
"pogingen worden gedaan. "
|
803 |
|
804 |
-
#: libs/blockcountry-settings.php:
|
805 |
msgid "GeoIP API Key:"
|
806 |
msgstr "GeoIP API sleutel:"
|
807 |
|
808 |
-
#: libs/blockcountry-settings.php:
|
809 |
msgid ""
|
810 |
"If for some reason you cannot or do not want to download the MaxMind GeoIP "
|
811 |
"databases you will need an API key for the GeoIP api.<br />You can get an "
|
@@ -815,41 +849,44 @@ msgstr ""
|
|
815 |
"Maxmind GeoIP heb je een API sleutelnodig voor de GeoIP api.<br />Je kunt "
|
816 |
"een API sleutel verkrijgen op:"
|
817 |
|
818 |
-
#: libs/blockcountry-settings.php:
|
819 |
msgid "GeoIP API Key Server Location:"
|
820 |
msgstr "GeoIP API sleutel server locatie:"
|
821 |
|
822 |
-
#: libs/blockcountry-settings.php:
|
823 |
msgid "Choose a location closest to your own location."
|
824 |
msgstr "Kies een land welke het dichtsbij is bij je eigen land."
|
825 |
|
826 |
-
#: libs/blockcountry-settings.php:
|
827 |
msgid "Admin block API Key:"
|
828 |
msgstr "Admin block API Sleutel:"
|
829 |
|
830 |
-
#: libs/blockcountry-settings.php:
|
831 |
msgid ""
|
832 |
-
"
|
833 |
-
"
|
|
|
834 |
msgstr ""
|
835 |
-
"
|
836 |
-
"
|
|
|
|
|
837 |
|
838 |
-
#: libs/blockcountry-settings.php:
|
839 |
msgid "Accessibility options:"
|
840 |
msgstr "Toegankelijkheids opties:"
|
841 |
|
842 |
-
#: libs/blockcountry-settings.php:
|
843 |
msgid "Set this option if you cannot use the default country selection box."
|
844 |
msgstr ""
|
845 |
"Selecteer deze optie indien je de landen standaard selectie methode niet "
|
846 |
"kunt gebruiken. "
|
847 |
|
848 |
-
#: libs/blockcountry-settings.php:
|
849 |
msgid "Log all visits:"
|
850 |
msgstr "Log alle bezoekers:"
|
851 |
|
852 |
-
#: libs/blockcountry-settings.php:
|
853 |
msgid ""
|
854 |
"This logs all visits despite if they are blocked or not. This is only for "
|
855 |
"debugging purposes."
|
@@ -857,72 +894,72 @@ msgstr ""
|
|
857 |
"Dit logt alle bezoekers ondanks of ze geblokkeerd zijn of niet. Dit is "
|
858 |
"alleen voor debugging."
|
859 |
|
860 |
-
#: libs/blockcountry-settings.php:
|
861 |
msgid "Last blocked visits"
|
862 |
msgstr "Laatste geblokkeerde bezoekers"
|
863 |
|
864 |
-
#: libs/blockcountry-settings.php:
|
865 |
msgid "Date / Time"
|
866 |
msgstr "Datum / Tijd"
|
867 |
|
868 |
-
#: libs/blockcountry-settings.php:
|
869 |
msgid "IP Address"
|
870 |
msgstr "IP adres"
|
871 |
|
872 |
-
#: libs/blockcountry-settings.php:
|
873 |
msgid "Hostname"
|
874 |
msgstr "Hostnaam"
|
875 |
|
876 |
-
#: libs/blockcountry-settings.php:
|
877 |
msgid "Country"
|
878 |
msgstr "Land"
|
879 |
|
880 |
-
#: libs/blockcountry-settings.php:
|
881 |
msgid "Frontend/Backend"
|
882 |
msgstr "Voorkant/Achterkant"
|
883 |
|
884 |
-
#: libs/blockcountry-settings.php:
|
885 |
msgid "Frontend"
|
886 |
msgstr "Voorkant"
|
887 |
|
888 |
-
#: libs/blockcountry-settings.php:
|
889 |
msgid "Backend banlist"
|
890 |
msgstr "Achterkant banlist"
|
891 |
|
892 |
-
#: libs/blockcountry-settings.php:
|
893 |
msgid "Backend & Backend banlist"
|
894 |
msgstr "Achterkant & Achterkant banlist"
|
895 |
|
896 |
-
#: libs/blockcountry-settings.php:
|
897 |
msgid "Backend"
|
898 |
msgstr "Achterkant"
|
899 |
|
900 |
-
#: libs/blockcountry-settings.php:
|
901 |
msgid "Top countries that are blocked"
|
902 |
msgstr "Top landen welke zijn geblokkeerd"
|
903 |
|
904 |
-
#: libs/blockcountry-settings.php:
|
905 |
-
#: libs/blockcountry-settings.php:
|
906 |
msgid "# of blocked attempts"
|
907 |
msgstr "# of geblokkeerde pogingen"
|
908 |
|
909 |
-
#: libs/blockcountry-settings.php:
|
910 |
msgid "Top hosts that are blocked"
|
911 |
msgstr "Top hosts welke geblokkeerd zijn"
|
912 |
|
913 |
-
#: libs/blockcountry-settings.php:
|
914 |
msgid "Top URLs that are blocked"
|
915 |
msgstr "Top URLs welke geblokkeerd zijn"
|
916 |
|
917 |
-
#: libs/blockcountry-settings.php:
|
918 |
msgid "Clear database"
|
919 |
msgstr "Leeg database"
|
920 |
|
921 |
-
#: libs/blockcountry-settings.php:
|
922 |
msgid "Download as CSV file"
|
923 |
msgstr "Download als een csv bestand."
|
924 |
|
925 |
-
#: libs/blockcountry-settings.php:
|
926 |
msgid ""
|
927 |
"You are not logging any information. Please uncheck the option 'Do not log "
|
928 |
"IP addresses' if this is not what you want."
|
@@ -930,78 +967,119 @@ msgstr ""
|
|
930 |
"Je logt geen informatie. Deselecteer alstublieft de optie 'Log geen IP "
|
931 |
"adressen' indien dit niet is wat je wilt."
|
932 |
|
933 |
-
#: libs/blockcountry-settings.php:
|
934 |
msgid "Home"
|
935 |
msgstr "Home"
|
936 |
|
937 |
-
#: libs/blockcountry-settings.php:
|
938 |
msgid "Pages"
|
939 |
msgstr "Pagina's"
|
940 |
|
941 |
-
#: libs/blockcountry-settings.php:
|
942 |
msgid "Categories"
|
943 |
msgstr "Categorieen"
|
944 |
|
945 |
-
#: libs/blockcountry-settings.php:
|
|
|
|
|
|
|
|
|
946 |
msgid "Post types"
|
947 |
msgstr "Post types"
|
948 |
|
949 |
-
#: libs/blockcountry-settings.php:
|
950 |
-
msgid "
|
951 |
-
msgstr "
|
952 |
|
953 |
-
#: libs/blockcountry-settings.php:
|
954 |
msgid "Tools"
|
955 |
msgstr "Gereedschap"
|
956 |
|
957 |
-
#: libs/blockcountry-settings.php:
|
958 |
msgid "Logging"
|
959 |
msgstr "Statistieken"
|
960 |
|
961 |
-
#: libs/blockcountry-settings.php:
|
962 |
msgid "Import/Export"
|
963 |
msgstr "Importeren/Exporteren"
|
964 |
|
965 |
-
#: libs/blockcountry-
|
966 |
-
|
967 |
-
|
968 |
-
msgstr "Uh oh: Kon de GeoIP database niet downloaden van"
|
969 |
|
970 |
-
#: libs/blockcountry-
|
971 |
-
msgid ""
|
972 |
-
"
|
973 |
-
"again in 24 hours or download this file from your own PC"
|
974 |
-
msgstr ""
|
975 |
-
"MaxMind heeft alle verzoeken vanaf dit IP adres voor 24 uur geblokkeerd. "
|
976 |
-
"Controleer nogmaals na 24 uur of download dit bestand via je eigen pc"
|
977 |
|
978 |
-
#: libs/blockcountry-
|
979 |
-
msgid "
|
980 |
-
msgstr "
|
981 |
|
982 |
-
|
983 |
-
|
984 |
-
"Please download this file from your own PC unzip this file and upload it "
|
985 |
-
"(via FTP for instance) to:"
|
986 |
-
msgstr ""
|
987 |
-
"Download dit bestand alsjeblieft naar je eigen PC. Pak het bestand daar uit "
|
988 |
-
"en upload deze (bijvoorbeeld via FTP) naar:"
|
989 |
|
990 |
-
|
991 |
-
|
992 |
-
msgstr "Klaar met downloaden"
|
993 |
|
994 |
-
|
995 |
-
|
996 |
-
msgstr "Fatale fout: GeoIP"
|
997 |
|
998 |
-
|
999 |
-
|
1000 |
-
"
|
1001 |
-
|
1002 |
-
|
1003 |
-
"
|
1004 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1005 |
|
1006 |
#~ msgid "Basic Options"
|
1007 |
#~ msgstr "Standaard opties"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: iQ Block Country\n"
|
4 |
+
"POT-Creation-Date: 2018-02-16 10:16+0100\n"
|
5 |
+
"PO-Revision-Date: 2018-02-16 10:22+0100\n"
|
6 |
"Last-Translator: Pascal <pascal@webence.nl>\n"
|
7 |
+
"Language-Team: iQ Block Country <support@webence.nl>\n"
|
8 |
"Language: nl\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SearchPath-0: libs\n"
|
16 |
"X-Poedit-SearchPath-1: .\n"
|
17 |
+
"X-Poedit-SearchPathExcluded-0: server\n"
|
18 |
+
"X-Poedit-SearchPathExcluded-1: old\n"
|
19 |
+
"X-Poedit-SearchPathExcluded-2: admin\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
#: libs/blockcountry-settings.php:59
|
22 |
msgid ""
|
72 |
"handmatig of indien je gebruik wilt maken van de GeoIP API kun je een API "
|
73 |
"sleutel verkrijgen van:"
|
74 |
|
75 |
+
#: libs/blockcountry-settings.php:271
|
76 |
msgid ""
|
77 |
"Check which country belongs to an IP Address according to the current "
|
78 |
"database."
|
79 |
msgstr ""
|
80 |
"Controleer welk land behoort tot een IP adres volgens de huidige database."
|
81 |
|
82 |
+
#: libs/blockcountry-settings.php:276
|
83 |
msgid "IP Address to check:"
|
84 |
msgstr "IP adres om te controleren:"
|
85 |
|
86 |
+
#: libs/blockcountry-settings.php:293
|
87 |
msgid "No country for"
|
88 |
msgstr "Geen land voor"
|
89 |
|
90 |
+
#: libs/blockcountry-settings.php:293
|
91 |
msgid "could be found. Or"
|
92 |
msgstr "gevonden. Of"
|
93 |
|
94 |
+
#: libs/blockcountry-settings.php:293
|
95 |
msgid "is not a valid IPv4 or IPv6 IP address"
|
96 |
msgstr "is geen valide IPv4 of IPv6 ip adres."
|
97 |
|
98 |
+
#: libs/blockcountry-settings.php:298
|
99 |
msgid "IP Adress"
|
100 |
msgstr "IP Adres"
|
101 |
|
102 |
+
#: libs/blockcountry-settings.php:298
|
103 |
msgid "belongs to"
|
104 |
msgstr "behoort tot"
|
105 |
|
106 |
+
#: libs/blockcountry-settings.php:304 libs/blockcountry-settings.php:309
|
107 |
msgid "This country is not permitted to visit the frontend of this website."
|
108 |
msgstr ""
|
109 |
"Dit land wordt niet toegestaan om de voorkant van deze website te bezoeken."
|
110 |
|
111 |
+
#: libs/blockcountry-settings.php:318 libs/blockcountry-settings.php:325
|
112 |
msgid "This country is not permitted to visit the backend of this website."
|
113 |
msgstr ""
|
114 |
"Dit land wordt niet toegestaan om de achterkant van deze website te bezoeken."
|
115 |
|
116 |
+
#: libs/blockcountry-settings.php:331
|
117 |
msgid "This ip is present in the blacklist."
|
118 |
msgstr "Dit ip adres staat op de zwarte lijst"
|
119 |
|
120 |
+
#: libs/blockcountry-settings.php:337
|
121 |
msgid "Check IP address"
|
122 |
msgstr "Controleer IP adres"
|
123 |
|
124 |
+
#: libs/blockcountry-settings.php:344
|
125 |
msgid "Database information"
|
126 |
msgstr "Database informatie"
|
127 |
|
128 |
+
#: libs/blockcountry-settings.php:351
|
129 |
msgid "IPv4 database exists. File date: "
|
130 |
msgstr "IPv4 database bestaat. Bestands datum:"
|
131 |
|
132 |
+
#: libs/blockcountry-settings.php:358 libs/blockcountry-settings.php:393
|
|
|
133 |
msgid "Database is older than 3 months... Please update..."
|
134 |
msgstr ""
|
135 |
"Uw MaxMind GeoIP database is ouder dan 3 maanden. Update je database "
|
136 |
"alstublieft."
|
137 |
|
138 |
+
#: libs/blockcountry-settings.php:363
|
139 |
msgid "IPv4 database does not exist."
|
140 |
msgstr "IPv4 database bestaat niet."
|
141 |
|
142 |
+
#: libs/blockcountry-settings.php:369
|
143 |
msgid "IPv6 database exists. File date: "
|
144 |
msgstr "IPv6 database bestaat. Bestands datum:"
|
145 |
|
146 |
+
#: libs/blockcountry-settings.php:376
|
|
|
147 |
msgid "Database is older than 3 months... Please update..."
|
148 |
msgstr ""
|
149 |
"Uw MaxMind GeoIP database is ouder dan 3 maanden. Update je database "
|
150 |
"alstublieft."
|
151 |
|
152 |
+
#: libs/blockcountry-settings.php:381
|
153 |
msgid "IPv6 database does not exist."
|
154 |
msgstr "IPv6 database bestaat niet."
|
155 |
|
156 |
+
#: libs/blockcountry-settings.php:386
|
157 |
+
msgid "GeoIP2 database exists. File date: "
|
158 |
+
msgstr "GeoIP2 database bestaat. Bestands datum:"
|
159 |
+
|
160 |
+
#: libs/blockcountry-settings.php:398
|
161 |
+
msgid "GeoIP2 database does not exist."
|
162 |
+
msgstr "GeoIP2 database bestaat niet."
|
163 |
+
|
164 |
+
#: libs/blockcountry-settings.php:405
|
165 |
msgid "Your GeoIP API key is valid till: "
|
166 |
msgstr "Uw GeoIP API key is geldig tot:"
|
167 |
|
168 |
+
#: libs/blockcountry-settings.php:412
|
169 |
msgid "Active plugins"
|
170 |
msgstr "Actieve plugins"
|
171 |
|
172 |
+
#: libs/blockcountry-settings.php:419
|
173 |
msgid "Plugin name"
|
174 |
msgstr "Plugin naam"
|
175 |
|
176 |
+
#: libs/blockcountry-settings.php:419
|
177 |
msgid "Version"
|
178 |
msgstr "Versie"
|
179 |
|
180 |
+
#: libs/blockcountry-settings.php:419 libs/blockcountry-settings.php:1523
|
181 |
+
#: libs/blockcountry-settings.php:1583
|
182 |
msgid "URL"
|
183 |
msgstr "URL"
|
184 |
|
185 |
+
#: libs/blockcountry-settings.php:438
|
186 |
msgid "none"
|
187 |
msgstr "Geen"
|
188 |
|
189 |
+
#: libs/blockcountry-settings.php:444 libs/blockcountry-settings.php:445
|
190 |
msgid "unavailable"
|
191 |
msgstr "niet beschikbaar"
|
192 |
|
193 |
+
#: libs/blockcountry-settings.php:449
|
194 |
msgid "File System Information"
|
195 |
msgstr "File systeem informatie"
|
196 |
|
197 |
+
#: libs/blockcountry-settings.php:452
|
198 |
msgid "Website Root Folder"
|
199 |
msgstr "Website root directory"
|
200 |
|
201 |
+
#: libs/blockcountry-settings.php:453 libs/blockcountry-settings.php:647
|
202 |
msgid "Document Root Path"
|
203 |
msgstr "Document root pad"
|
204 |
|
205 |
+
#: libs/blockcountry-settings.php:457
|
206 |
msgid "Database Information"
|
207 |
msgstr "Database informatie"
|
208 |
|
209 |
+
#: libs/blockcountry-settings.php:459
|
210 |
msgid "MySQL Database Version"
|
211 |
msgstr "MySQL Database versie"
|
212 |
|
213 |
+
#: libs/blockcountry-settings.php:460
|
214 |
msgid "MySQL Client Version"
|
215 |
msgstr "MySQL Client versie"
|
216 |
|
217 |
+
#: libs/blockcountry-settings.php:461
|
218 |
msgid "Database Host"
|
219 |
msgstr "Database Host"
|
220 |
|
221 |
+
#: libs/blockcountry-settings.php:467
|
222 |
msgid "Not Set"
|
223 |
msgstr "Niet gezet"
|
224 |
|
225 |
+
#: libs/blockcountry-settings.php:469 libs/blockcountry-settings.php:549
|
226 |
+
#: libs/blockcountry-settings.php:557 libs/blockcountry-settings.php:565
|
227 |
+
#: libs/blockcountry-settings.php:573 libs/blockcountry-settings.php:582
|
228 |
+
#: libs/blockcountry-settings.php:599
|
229 |
msgid "Off"
|
230 |
msgstr "Uit"
|
231 |
|
232 |
+
#: libs/blockcountry-settings.php:472
|
233 |
msgid "SQL Mode"
|
234 |
msgstr "SQL Mode"
|
235 |
|
236 |
+
#: libs/blockcountry-settings.php:476
|
237 |
msgid "Server Information"
|
238 |
msgstr "Server informatie"
|
239 |
|
240 |
+
#: libs/blockcountry-settings.php:481
|
241 |
msgid "Server IP Address"
|
242 |
msgstr "Server IP Adres"
|
243 |
|
244 |
+
#: libs/blockcountry-settings.php:483
|
245 |
msgid "Server Type"
|
246 |
msgstr "Server Type"
|
247 |
|
248 |
+
#: libs/blockcountry-settings.php:484
|
249 |
msgid "Operating System"
|
250 |
msgstr "Operating System"
|
251 |
|
252 |
+
#: libs/blockcountry-settings.php:485
|
253 |
msgid "Browser Compression Supported"
|
254 |
msgstr "Browser Compressie ondersteund"
|
255 |
|
256 |
+
#: libs/blockcountry-settings.php:501
|
257 |
msgid "undefined"
|
258 |
msgstr "Ongedefinieerd"
|
259 |
|
260 |
+
#: libs/blockcountry-settings.php:508
|
261 |
msgid "PHP Process User (UID:GID)"
|
262 |
msgstr "PHP Process User (UID:GID)"
|
263 |
|
264 |
+
#: libs/blockcountry-settings.php:513
|
265 |
msgid "PHP Information"
|
266 |
msgstr "PHP Informatie"
|
267 |
|
268 |
+
#: libs/blockcountry-settings.php:518
|
269 |
msgid "PHP Version"
|
270 |
msgstr "PHP versie"
|
271 |
|
272 |
+
#: libs/blockcountry-settings.php:519
|
273 |
msgid "PHP Memory Usage"
|
274 |
msgstr "PHP Memory Usage"
|
275 |
|
276 |
+
#: libs/blockcountry-settings.php:519
|
277 |
msgid " MB"
|
278 |
msgstr " MB"
|
279 |
|
280 |
+
#: libs/blockcountry-settings.php:525 libs/blockcountry-settings.php:533
|
281 |
+
#: libs/blockcountry-settings.php:541 libs/blockcountry-settings.php:590
|
282 |
msgid "N/A"
|
283 |
msgstr "N/A"
|
284 |
|
285 |
+
#: libs/blockcountry-settings.php:528
|
286 |
msgid "PHP Memory Limit"
|
287 |
msgstr "PHP Memory Limit"
|
288 |
|
289 |
+
#: libs/blockcountry-settings.php:536
|
290 |
msgid "PHP Max Upload Size"
|
291 |
msgstr "PHP Max Upload Size"
|
292 |
|
293 |
+
#: libs/blockcountry-settings.php:544
|
294 |
msgid "PHP Max Post Size"
|
295 |
msgstr "PHP Max Post Size"
|
296 |
|
297 |
+
#: libs/blockcountry-settings.php:547 libs/blockcountry-settings.php:555
|
298 |
+
#: libs/blockcountry-settings.php:563 libs/blockcountry-settings.php:571
|
299 |
+
#: libs/blockcountry-settings.php:580 libs/blockcountry-settings.php:597
|
|
|
300 |
msgid "On"
|
301 |
msgstr "Aan"
|
302 |
|
303 |
+
#: libs/blockcountry-settings.php:552
|
|
|
|
|
|
|
|
|
304 |
msgid "PHP Allow URL fopen"
|
305 |
msgstr "PHP Allow URL fopen"
|
306 |
|
307 |
+
#: libs/blockcountry-settings.php:560
|
308 |
msgid "PHP Allow URL Include"
|
309 |
msgstr "PHP Allow URL Include"
|
310 |
|
311 |
+
#: libs/blockcountry-settings.php:568
|
312 |
msgid "PHP Display Errors"
|
313 |
msgstr "PHP Display Errors"
|
314 |
|
315 |
+
#: libs/blockcountry-settings.php:576
|
316 |
msgid "PHP Display Startup Errors"
|
317 |
msgstr "PHP Display Startup Errors"
|
318 |
|
319 |
+
#: libs/blockcountry-settings.php:585
|
320 |
msgid "PHP Expose PHP"
|
321 |
msgstr "PHP Expose PHP"
|
322 |
|
323 |
+
#: libs/blockcountry-settings.php:593
|
324 |
msgid "PHP Max Script Execution Time"
|
325 |
msgstr "PHP Max Script Execution Time"
|
326 |
|
327 |
+
#: libs/blockcountry-settings.php:594
|
328 |
msgid "Seconds"
|
329 |
msgstr "Seconden"
|
330 |
|
331 |
+
#: libs/blockcountry-settings.php:602
|
332 |
msgid "PHP open_basedir"
|
333 |
msgstr "PHP open_basedir"
|
334 |
|
335 |
+
#: libs/blockcountry-settings.php:605 libs/blockcountry-settings.php:613
|
336 |
msgid "Yes"
|
337 |
msgstr "Ja"
|
338 |
|
339 |
+
#: libs/blockcountry-settings.php:607 libs/blockcountry-settings.php:615
|
340 |
msgid "No"
|
341 |
msgstr "Nee"
|
342 |
|
343 |
+
#: libs/blockcountry-settings.php:610
|
344 |
msgid "PHP XML Support"
|
345 |
msgstr "PHP XML Support"
|
346 |
|
347 |
+
#: libs/blockcountry-settings.php:618
|
348 |
msgid "PHP IPTC Support"
|
349 |
msgstr "PHP IPTC Support"
|
350 |
|
351 |
+
#: libs/blockcountry-settings.php:620
|
352 |
msgid "Disabled PHP Functions"
|
353 |
msgstr "Disabled PHP Functions"
|
354 |
|
355 |
+
#: libs/blockcountry-settings.php:627
|
356 |
msgid "Wordpress info"
|
357 |
msgstr "Wordpress Informatie"
|
358 |
|
359 |
+
#: libs/blockcountry-settings.php:632
|
360 |
msgid "is enabled"
|
361 |
msgstr "is aangezet"
|
362 |
|
363 |
+
#: libs/blockcountry-settings.php:634
|
364 |
msgid "is disabled"
|
365 |
msgstr "Is uitgezet"
|
366 |
|
367 |
+
#: libs/blockcountry-settings.php:637
|
368 |
msgid " Multisite"
|
369 |
msgstr "Multisite"
|
370 |
|
371 |
+
#: libs/blockcountry-settings.php:640
|
372 |
msgid "are enabled"
|
373 |
msgstr "is aangezet"
|
374 |
|
375 |
+
#: libs/blockcountry-settings.php:642
|
376 |
msgid "are disabled"
|
377 |
msgstr "Is uitgezet"
|
378 |
|
379 |
+
#: libs/blockcountry-settings.php:645
|
380 |
msgid "Permalinks"
|
381 |
msgstr "Permalinks"
|
382 |
|
383 |
+
#: libs/blockcountry-settings.php:662
|
384 |
msgid "Export"
|
385 |
msgstr "Exporteren"
|
386 |
|
387 |
+
#: libs/blockcountry-settings.php:663
|
388 |
msgid ""
|
389 |
"When you click on <tt>Backup all settings</tt> button a backup of the iQ "
|
390 |
"Block Country configuration will be created."
|
392 |
"Wanneer je klikt op de <tt>Backup alle instellingen</tt> knop zal een backup "
|
393 |
"van alle iQ Block Country instellingen worden gecreerd."
|
394 |
|
395 |
+
#: libs/blockcountry-settings.php:664
|
396 |
msgid ""
|
397 |
"After exporting, you can either use the backup file to restore your settings "
|
398 |
"on this site again or copy the settings to another WordPress site."
|
401 |
"te herstellen of je kunt het bestand gebruiken om je instellingen naar een "
|
402 |
"andere WordPress site te exporteren."
|
403 |
|
404 |
+
#: libs/blockcountry-settings.php:668
|
405 |
msgid "Backup all settings"
|
406 |
msgstr "Backup alle instellingen"
|
407 |
|
408 |
+
#: libs/blockcountry-settings.php:675
|
409 |
msgid "Import"
|
410 |
msgstr "Importeer"
|
411 |
|
412 |
+
#: libs/blockcountry-settings.php:676
|
413 |
msgid "Click the browse button and choose a zip file that you exported before."
|
414 |
msgstr ""
|
415 |
"Klik op de Browse button and selecteer een zip file welke je eerder hebt "
|
416 |
"geexporteerd."
|
417 |
|
418 |
+
#: libs/blockcountry-settings.php:677
|
419 |
msgid "Press Restore settings button, and let WordPress do the magic for you."
|
420 |
msgstr ""
|
421 |
"Druk op de herstel instellingen knop en laat WordPress haar magie voor je "
|
422 |
"doen."
|
423 |
|
424 |
+
#: libs/blockcountry-settings.php:682
|
425 |
msgid "Restore settings"
|
426 |
msgstr "Herstel instellingen"
|
427 |
|
428 |
+
#: libs/blockcountry-settings.php:705 libs/blockcountry-settings.php:708
|
429 |
+
#: libs/blockcountry-settings.php:717
|
430 |
msgid "Something went wrong exporting this file"
|
431 |
msgstr "Er is iets verkeerd gegaan met het exporteren van het bestand."
|
432 |
|
433 |
+
#: libs/blockcountry-settings.php:720
|
434 |
msgid "Exporting settings..."
|
435 |
msgstr "Exporteer instellingen"
|
436 |
|
437 |
+
#: libs/blockcountry-settings.php:735
|
438 |
msgid "Something went wrong importing this file"
|
439 |
msgstr "Er is iets verkeerd gegaan met het importeren van dit bestand"
|
440 |
|
441 |
+
#: libs/blockcountry-settings.php:752
|
442 |
msgid "All options are restored successfully."
|
443 |
msgstr "Alle opties zijn succesvol hersteld"
|
444 |
|
445 |
+
#: libs/blockcountry-settings.php:755
|
446 |
msgid "Invalid file."
|
447 |
msgstr "Ongeldig bestand"
|
448 |
|
449 |
+
#: libs/blockcountry-settings.php:760
|
450 |
msgid "No correct import or export option given."
|
451 |
msgstr "Geen correcte importeer of exporteer optie gegeven."
|
452 |
|
453 |
+
#: libs/blockcountry-settings.php:769
|
454 |
msgid "Select which pages are blocked."
|
455 |
msgstr "Selecteer welke pagina's geblokkeerd worden."
|
456 |
|
457 |
+
#: libs/blockcountry-settings.php:776
|
458 |
msgid "Do you want to block individual pages:"
|
459 |
msgstr "Wil je individuele pagina's blokkeren:"
|
460 |
|
461 |
+
#: libs/blockcountry-settings.php:777
|
462 |
msgid "If you do not select this option all pages will be blocked."
|
463 |
msgstr "Indien je deze optie niet selecteert worden alle pagina's geblokkeerd."
|
464 |
|
465 |
+
#: libs/blockcountry-settings.php:782
|
466 |
msgid "Select pages you want to block:"
|
467 |
msgstr "Selecteer welke pagina's je wil blokkeren."
|
468 |
|
469 |
+
#: libs/blockcountry-settings.php:804 libs/blockcountry-settings.php:858
|
470 |
+
#: libs/blockcountry-settings.php:906 libs/blockcountry-settings.php:954
|
471 |
+
#: libs/blockcountry-settings.php:1001 libs/blockcountry-settings.php:1133
|
472 |
+
#: libs/blockcountry-settings.php:1262 libs/blockcountry-settings.php:1490
|
473 |
msgid "Save Changes"
|
474 |
msgstr "Bewaar wijzigingen"
|
475 |
|
476 |
+
#: libs/blockcountry-settings.php:817
|
477 |
msgid "Select which categories are blocked."
|
478 |
msgstr "Selecteer welke categorieen geblokkeerd worden."
|
479 |
|
480 |
+
#: libs/blockcountry-settings.php:824
|
481 |
msgid "Do you want to block individual categories:"
|
482 |
msgstr "Wil je individuele categorieen blokkeren:"
|
483 |
|
484 |
+
#: libs/blockcountry-settings.php:825 libs/blockcountry-settings.php:879
|
485 |
msgid "If you do not select this option all blog articles will be blocked."
|
486 |
msgstr ""
|
487 |
"Indien je deze optie niet selecteert worden alle blog artikelen geblokkeerd."
|
488 |
|
489 |
+
#: libs/blockcountry-settings.php:830
|
490 |
msgid "Do you want to block the homepage:"
|
491 |
msgstr "Wil je je homepage blokkeren:"
|
492 |
|
493 |
+
#: libs/blockcountry-settings.php:831
|
494 |
msgid ""
|
495 |
"If you do not select this option visitors will not be blocked from your "
|
496 |
"homepage regardless of the categories you select."
|
499 |
"geblokkeerd van het bezoeken van je homepagina ongeacht welke categorieen je "
|
500 |
"selecteert."
|
501 |
|
502 |
+
#: libs/blockcountry-settings.php:836
|
503 |
msgid "Select categories you want to block:"
|
504 |
msgstr "Selecteer welke categorieen je wil blokkeren."
|
505 |
|
506 |
+
#: libs/blockcountry-settings.php:871
|
507 |
+
msgid "Select which tags are blocked."
|
508 |
+
msgstr "Selecteer welke tags geblokkeerd moeten worden."
|
509 |
+
|
510 |
+
#: libs/blockcountry-settings.php:878
|
511 |
+
msgid "Do you want to block individual tags:"
|
512 |
+
msgstr "Wil je individuele tags blokkeren?:"
|
513 |
+
|
514 |
+
#: libs/blockcountry-settings.php:884
|
515 |
+
msgid "Select tags you want to block:"
|
516 |
+
msgstr "Selecteer welke tags geblokkeerd moeten worden."
|
517 |
+
|
518 |
+
#: libs/blockcountry-settings.php:920
|
519 |
msgid "Select which post types are blocked."
|
520 |
msgstr "Selecteer welke post types geblokkeerd worden."
|
521 |
|
522 |
+
#: libs/blockcountry-settings.php:927
|
523 |
msgid "Do you want to block individual post types:"
|
524 |
msgstr "Wil je individuele post types blokkeren:"
|
525 |
|
526 |
+
#: libs/blockcountry-settings.php:932
|
527 |
msgid "Select post types you want to block:"
|
528 |
msgstr "Selecteer welke post types je wil blokkeren."
|
529 |
|
530 |
+
#: libs/blockcountry-settings.php:969
|
531 |
+
msgid "Select which services are allowed."
|
532 |
+
msgstr "Selecteer welke diensten je wilt toestaan."
|
533 |
|
534 |
+
#: libs/blockcountry-settings.php:976
|
535 |
+
msgid "Select which services you want to allow:"
|
536 |
+
msgstr "Selecteer welke diensten je wilt toestaan:"
|
537 |
|
538 |
+
#: libs/blockcountry-settings.php:977
|
539 |
msgid ""
|
540 |
+
"This will allow a service like for instance a search engine to your site "
|
541 |
+
"despite if you blocked the country."
|
542 |
msgstr ""
|
543 |
+
"Dit staat een dienst toe zoals bijvoorbeeld een zoek machine ongeacht of je "
|
544 |
+
"het land van de zoekmachine hebt geblokkeerd."
|
545 |
|
546 |
+
#: libs/blockcountry-settings.php:978
|
547 |
+
msgid "Please note the \"Search Engine Visibility\" should not be selected in "
|
548 |
+
msgstr ""
|
549 |
+
"Let op: \"Zoekmachine zichtbaarheid\" dient niet geselecteer te staan op "
|
550 |
+
|
551 |
+
#: libs/blockcountry-settings.php:978
|
552 |
+
msgid "reading settings."
|
553 |
+
msgstr "lezen instellingen"
|
554 |
+
|
555 |
+
#: libs/blockcountry-settings.php:1016
|
556 |
msgid "Frontend options"
|
557 |
msgstr "Voorkant opties"
|
558 |
|
559 |
+
#: libs/blockcountry-settings.php:1043
|
560 |
msgid ""
|
561 |
"Do not block visitors that are logged in from visiting frontend website:"
|
562 |
msgstr ""
|
563 |
"Blokkeer geen bezoekers welke ingelogd zijn van het bezoeken van de voorkant:"
|
564 |
|
565 |
+
#: libs/blockcountry-settings.php:1049
|
566 |
msgid "Block visitors from visiting the frontend of your website:"
|
567 |
msgstr "Blokkeer bezoekers van het bezoeken van de voorkant van je website:"
|
568 |
|
569 |
+
#: libs/blockcountry-settings.php:1055
|
570 |
msgid "Block visitors from using the search function of your website:"
|
571 |
msgstr ""
|
572 |
"Blokkeer bezoekers van het bezoeken van de zoek functie van je website:"
|
573 |
|
574 |
+
#: libs/blockcountry-settings.php:1061
|
575 |
msgid ""
|
576 |
"Select the countries that should be blocked from visiting your frontend:"
|
577 |
msgstr ""
|
578 |
"Selecteer de landen welke geblokkeerd moeten worden voor het bezoeken van de "
|
579 |
"voorkant van je website:"
|
580 |
|
581 |
+
#: libs/blockcountry-settings.php:1062
|
582 |
msgid "Use the CTRL key to select multiple countries"
|
583 |
msgstr "Gebruik de CTRL toets om meerdere landen te selecteren"
|
584 |
|
585 |
+
#: libs/blockcountry-settings.php:1104 libs/blockcountry-settings.php:1238
|
586 |
msgid "Inverse the selection above:"
|
587 |
msgstr "Keer bovenstaande selectie om:"
|
588 |
|
589 |
+
#: libs/blockcountry-settings.php:1105 libs/blockcountry-settings.php:1239
|
590 |
msgid ""
|
591 |
"If you select this option only the countries that are selected are "
|
592 |
"<em>allowed</em>."
|
594 |
"Indien je deze optie selecteert de zijn de landen die hierboven geselecteerd "
|
595 |
"<em>toegestaan</em>."
|
596 |
|
597 |
+
#: libs/blockcountry-settings.php:1110
|
598 |
msgid "Block tag pages:"
|
599 |
msgstr "Blokkeer tag pagina's"
|
600 |
|
601 |
+
#: libs/blockcountry-settings.php:1111
|
602 |
msgid "If you select this option tag pages will be blocked."
|
603 |
msgstr "Indien je deze optie selecteert worden tag pagina's geblokkeerd."
|
604 |
|
605 |
+
#: libs/blockcountry-settings.php:1116
|
606 |
msgid "Frontend whitelist IPv4 and/or IPv6 addresses:"
|
607 |
msgstr ""
|
608 |
"Whitelist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
|
609 |
|
610 |
+
#: libs/blockcountry-settings.php:1116 libs/blockcountry-settings.php:1124
|
611 |
+
#: libs/blockcountry-settings.php:1245 libs/blockcountry-settings.php:1253
|
612 |
msgid "Use a semicolon (;) to separate IP addresses"
|
613 |
msgstr "Gebruik een puntkomma (;) om adressen van elkaar te scheiden"
|
614 |
|
615 |
+
#: libs/blockcountry-settings.php:1124
|
616 |
msgid "Frontend blacklist IPv4 and/or IPv6 addresses:"
|
617 |
msgstr ""
|
618 |
"Blacklist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
|
619 |
|
620 |
+
#: libs/blockcountry-settings.php:1153
|
621 |
msgid "Backend Options"
|
622 |
msgstr "Achterkant opties"
|
623 |
|
624 |
+
#: libs/blockcountry-settings.php:1181
|
625 |
msgid ""
|
626 |
"Block visitors from visiting the backend (administrator) of your website:"
|
627 |
msgstr ""
|
628 |
"Blokkeer bezoekers van het bezoeken van de achterkant (administratie "
|
629 |
"gedeelte) van je website:"
|
630 |
|
631 |
+
#: libs/blockcountry-settings.php:1189
|
632 |
msgid "Your IP address is"
|
633 |
msgstr "Je IP adres is"
|
634 |
|
635 |
+
#: libs/blockcountry-settings.php:1189
|
636 |
msgid "The country that is listed for this IP address is"
|
637 |
msgstr "Het land waar dit adres toe behoort is"
|
638 |
|
639 |
+
#: libs/blockcountry-settings.php:1190
|
640 |
msgid ""
|
641 |
"Do <strong>NOT</strong> set the 'Block visitors from visiting the backend "
|
642 |
"(administrator) of your website' and also select"
|
644 |
"Selecteer <strong>NIET</strong> \"Blokkeer bezoekers van het bezoeken van de "
|
645 |
"achterkant (administratie gedeelte) van je website\" en"
|
646 |
|
647 |
+
#: libs/blockcountry-settings.php:1190
|
648 |
msgid "below."
|
649 |
msgstr "hier beneden."
|
650 |
|
651 |
+
#: libs/blockcountry-settings.php:1191
|
652 |
msgid ""
|
653 |
"You will NOT be able to login the next time if you DO block your own country "
|
654 |
"from visiting the backend."
|
656 |
"Het zal daarna niet meer mogelijk zijn om nog in te loggen als je je eigen "
|
657 |
"land blokkeert van het bezoeken van de achterkant van je website."
|
658 |
|
659 |
+
#: libs/blockcountry-settings.php:1196
|
660 |
msgid "Select the countries that should be blocked from visiting your backend:"
|
661 |
msgstr ""
|
662 |
"Selecteer de landen welke geblokkeerd moeten worden voor het bezoeken van de "
|
663 |
"achterkant (administratie gedeelte) van je website:"
|
664 |
|
665 |
+
#: libs/blockcountry-settings.php:1197
|
666 |
msgid "Use the x behind the country to remove a country from this blocklist."
|
667 |
msgstr ""
|
668 |
"Gebruik de x achter een land om het land te verwijderen uit deze lijst."
|
669 |
|
670 |
+
#: libs/blockcountry-settings.php:1245
|
671 |
msgid "Backend whitelist IPv4 and/or IPv6 addresses:"
|
672 |
msgstr ""
|
673 |
"Whitelist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
|
674 |
|
675 |
+
#: libs/blockcountry-settings.php:1253
|
676 |
msgid "Backend blacklist IPv4 and/or IPv6 addresses:"
|
677 |
msgstr ""
|
678 |
"Blacklist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
|
679 |
|
680 |
+
#: libs/blockcountry-settings.php:1295
|
681 |
msgid "Overall statistics since start"
|
682 |
msgstr "Statistieken sinds het begin"
|
683 |
|
684 |
+
#: libs/blockcountry-settings.php:1298
|
685 |
msgid "visitors blocked from the backend."
|
686 |
msgstr "bezoekers geblokkeerd op de achterkant."
|
687 |
|
688 |
+
#: libs/blockcountry-settings.php:1300
|
689 |
msgid "visitors blocked from the frontend."
|
690 |
msgstr "bezoekers geblokkeerd op de voorkant."
|
691 |
|
692 |
+
#: libs/blockcountry-settings.php:1317
|
693 |
msgid "Block type"
|
694 |
msgstr "Blokkeer type"
|
695 |
|
696 |
+
#: libs/blockcountry-settings.php:1319
|
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."
|
702 |
"bericht, stuurt de bezoeker door naar een interne pagina of stuurt de "
|
703 |
"bezoeker door naar een externe pagina."
|
704 |
|
705 |
+
#: libs/blockcountry-settings.php:1324
|
706 |
msgid "Message to display when people are blocked:"
|
707 |
msgstr "Welk bericht wil je tonen aan bezoekers welke geblokkeerd worden:"
|
708 |
|
709 |
+
#: libs/blockcountry-settings.php:1335
|
710 |
msgid "Page to redirect to:"
|
711 |
msgstr "Naar welke pagina wilt u bezoekers toesturen:"
|
712 |
|
713 |
+
#: libs/blockcountry-settings.php:1336
|
714 |
msgid ""
|
715 |
"If you select a page here blocked visitors will be redirected to this page "
|
716 |
"instead of displaying above block message."
|
719 |
"doorgestuurd naar deze pagina anders wordt bovestaande tekst getoond aan "
|
720 |
"bezoekers."
|
721 |
|
722 |
+
#: libs/blockcountry-settings.php:1342
|
723 |
msgid "Choose a page..."
|
724 |
msgstr "Kies een pagina..."
|
725 |
|
726 |
+
#: libs/blockcountry-settings.php:1357
|
727 |
msgid "URL to redirect to:"
|
728 |
msgstr "Naar welke URL wilt u geblokkerde bezoekers verwijzen:"
|
729 |
|
730 |
+
#: libs/blockcountry-settings.php:1358
|
731 |
msgid ""
|
732 |
"If you enter a URL here blocked visitors will be redirected to this URL "
|
733 |
"instead of displaying above block message or redirected to a local page."
|
736 |
"naar deze url anders wordt bovestaande blokkeer tekst getoond aan bezoekers "
|
737 |
"of worden bezoekers doorverwezen naar de geselecteerde pagina."
|
738 |
|
739 |
+
#: libs/blockcountry-settings.php:1365
|
740 |
msgid "General settings"
|
741 |
msgstr "Algemene instellingen"
|
742 |
|
743 |
+
#: libs/blockcountry-settings.php:1369
|
744 |
msgid "Send headers when user is blocked:"
|
745 |
msgstr "Stuur headers wanneer een gebruiker is geblokkeerd:"
|
746 |
|
747 |
+
#: libs/blockcountry-settings.php:1370
|
748 |
msgid ""
|
749 |
"Under normal circumstances you should keep this selected! Only if you have "
|
750 |
"\"Cannot modify header information - headers already sent\" errors or if you "
|
754 |
"deze alleen indien je \"Cannot modify header information - headers already "
|
755 |
"sent\" foutmeldingen krijgt of indien je weet wat je doet."
|
756 |
|
757 |
+
#: libs/blockcountry-settings.php:1376
|
758 |
msgid "Buffer output?:"
|
759 |
msgstr "Buffer output?"
|
760 |
|
761 |
+
#: libs/blockcountry-settings.php:1377
|
762 |
msgid ""
|
763 |
"You can use this option to buffer all output. This can be helpful in case "
|
764 |
"you have \"headers already sent\" issues."
|
766 |
"Je kunt deze optie gebruiken om alle output te bufferen. Dit kan helpen "
|
767 |
"indien je \"headers already sent\" problemen hebt."
|
768 |
|
769 |
+
#: libs/blockcountry-settings.php:1383
|
770 |
msgid "Do not log IP addresses:"
|
771 |
msgstr "Log geen IP adressen"
|
772 |
|
773 |
+
#: libs/blockcountry-settings.php:1384
|
774 |
msgid ""
|
775 |
"Check this box if the laws in your country do not permit you to log IP "
|
776 |
"addresses or if you do not want to log the ip addresses."
|
779 |
"adressen vast te leggen of indien je zelf deze informatie niet wilt "
|
780 |
"vastleggen."
|
781 |
|
782 |
+
#: libs/blockcountry-settings.php:1390
|
783 |
msgid "Do not block admin-ajax.php:"
|
784 |
msgstr "Blokkeer admin-ajax.php niet:"
|
785 |
|
786 |
+
#: libs/blockcountry-settings.php:1391
|
787 |
msgid "Check this box if you use a plugin that uses admin-ajax.php."
|
788 |
msgstr ""
|
789 |
"Selecteer deze optie indien je een plugin gebruikt welke gebruik maakt van "
|
790 |
"admin-ajax.php."
|
791 |
|
792 |
+
#: libs/blockcountry-settings.php:1400
|
793 |
+
msgid "Number of rows on logging tab:"
|
794 |
+
msgstr "Aantal regels op het statistieken tabblad:"
|
795 |
+
|
796 |
+
#: libs/blockcountry-settings.php:1401
|
797 |
+
msgid "How many rows do you want to display on each column on the logging tab."
|
798 |
+
msgstr "Hoeveel regels wil je tonen in elke kolom op de statistieken tabblad."
|
799 |
+
|
800 |
+
#: libs/blockcountry-settings.php:1416
|
801 |
+
msgid "Number of days to keep logging:"
|
802 |
+
msgstr "Aantal dagen dat je logs wilt bewaren:"
|
803 |
|
804 |
+
#: libs/blockcountry-settings.php:1417
|
805 |
+
msgid "How many days do you want to keep the logging used for the logging tab."
|
806 |
+
msgstr ""
|
807 |
+
"Hoeveel dagen wil je de logs bewaren welke gebruikt wordt op het "
|
808 |
+
"statistieken tabblad."
|
809 |
+
|
810 |
+
#: libs/blockcountry-settings.php:1432
|
811 |
+
msgid "Do not lookup hosts on the logging tab:"
|
812 |
+
msgstr "Zoek niet de hostnaam op op het statistieken tabblad."
|
813 |
+
|
814 |
+
#: libs/blockcountry-settings.php:1433
|
815 |
+
msgid ""
|
816 |
+
"On some hosting environments looking up hosts may slow down the logging tab."
|
817 |
+
msgstr ""
|
818 |
+
"Op sommige hosting omgevingen zal het opzoeken van hostnamen zorgen voor "
|
819 |
+
"vertraging op het statistieken tabblad."
|
820 |
|
821 |
+
#: libs/blockcountry-settings.php:1439
|
822 |
msgid "Allow tracking:"
|
823 |
msgstr "Sta traceren toe:"
|
824 |
|
825 |
+
#: libs/blockcountry-settings.php:1440
|
826 |
msgid ""
|
827 |
"This sends only the IP address and the number of attempts this ip address "
|
828 |
"tried to login to your backend and was blocked doing so to a central server. "
|
835 |
"ons om beter inzicht te krijgen in de landen waarvandaan een hoop hack "
|
836 |
"pogingen worden gedaan. "
|
837 |
|
838 |
+
#: libs/blockcountry-settings.php:1446
|
839 |
msgid "GeoIP API Key:"
|
840 |
msgstr "GeoIP API sleutel:"
|
841 |
|
842 |
+
#: libs/blockcountry-settings.php:1447
|
843 |
msgid ""
|
844 |
"If for some reason you cannot or do not want to download the MaxMind GeoIP "
|
845 |
"databases you will need an API key for the GeoIP api.<br />You can get an "
|
849 |
"Maxmind GeoIP heb je een API sleutelnodig voor de GeoIP api.<br />Je kunt "
|
850 |
"een API sleutel verkrijgen op:"
|
851 |
|
852 |
+
#: libs/blockcountry-settings.php:1455
|
853 |
msgid "GeoIP API Key Server Location:"
|
854 |
msgstr "GeoIP API sleutel server locatie:"
|
855 |
|
856 |
+
#: libs/blockcountry-settings.php:1456
|
857 |
msgid "Choose a location closest to your own location."
|
858 |
msgstr "Kies een land welke het dichtsbij is bij je eigen land."
|
859 |
|
860 |
+
#: libs/blockcountry-settings.php:1465
|
861 |
msgid "Admin block API Key:"
|
862 |
msgstr "Admin block API Sleutel:"
|
863 |
|
864 |
+
#: libs/blockcountry-settings.php:1466
|
865 |
msgid ""
|
866 |
+
"For additional security you can protect your backend from known IP addresses "
|
867 |
+
"who have made hack attempts at other WordPress sites.<br />You can get more "
|
868 |
+
"information and an API key from: "
|
869 |
msgstr ""
|
870 |
+
"Voor additionele beveilgiging kun je de achterkant van je website beschermen "
|
871 |
+
"tegen bekende ip adressen welke al eerdere hack pogingen hebben ondernomen "
|
872 |
+
"tegen andere WordPress sites.<br />Je kunt meer informatie hierover vinden "
|
873 |
+
"en een API key verkrijgen op:"
|
874 |
|
875 |
+
#: libs/blockcountry-settings.php:1474
|
876 |
msgid "Accessibility options:"
|
877 |
msgstr "Toegankelijkheids opties:"
|
878 |
|
879 |
+
#: libs/blockcountry-settings.php:1475
|
880 |
msgid "Set this option if you cannot use the default country selection box."
|
881 |
msgstr ""
|
882 |
"Selecteer deze optie indien je de landen standaard selectie methode niet "
|
883 |
"kunt gebruiken. "
|
884 |
|
885 |
+
#: libs/blockcountry-settings.php:1481
|
886 |
msgid "Log all visits:"
|
887 |
msgstr "Log alle bezoekers:"
|
888 |
|
889 |
+
#: libs/blockcountry-settings.php:1482
|
890 |
msgid ""
|
891 |
"This logs all visits despite if they are blocked or not. This is only for "
|
892 |
"debugging purposes."
|
894 |
"Dit logt alle bezoekers ondanks of ze geblokkeerd zijn of niet. Dit is "
|
895 |
"alleen voor debugging."
|
896 |
|
897 |
+
#: libs/blockcountry-settings.php:1508
|
898 |
msgid "Last blocked visits"
|
899 |
msgstr "Laatste geblokkeerde bezoekers"
|
900 |
|
901 |
+
#: libs/blockcountry-settings.php:1523
|
902 |
msgid "Date / Time"
|
903 |
msgstr "Datum / Tijd"
|
904 |
|
905 |
+
#: libs/blockcountry-settings.php:1523 libs/blockcountry-settings.php:1562
|
906 |
msgid "IP Address"
|
907 |
msgstr "IP adres"
|
908 |
|
909 |
+
#: libs/blockcountry-settings.php:1523 libs/blockcountry-settings.php:1562
|
910 |
msgid "Hostname"
|
911 |
msgstr "Hostnaam"
|
912 |
|
913 |
+
#: libs/blockcountry-settings.php:1523 libs/blockcountry-settings.php:1549
|
914 |
msgid "Country"
|
915 |
msgstr "Land"
|
916 |
|
917 |
+
#: libs/blockcountry-settings.php:1523
|
918 |
msgid "Frontend/Backend"
|
919 |
msgstr "Voorkant/Achterkant"
|
920 |
|
921 |
+
#: libs/blockcountry-settings.php:1540 libs/blockcountry-settings.php:1650
|
922 |
msgid "Frontend"
|
923 |
msgstr "Voorkant"
|
924 |
|
925 |
+
#: libs/blockcountry-settings.php:1540
|
926 |
msgid "Backend banlist"
|
927 |
msgstr "Achterkant banlist"
|
928 |
|
929 |
+
#: libs/blockcountry-settings.php:1540
|
930 |
msgid "Backend & Backend banlist"
|
931 |
msgstr "Achterkant & Achterkant banlist"
|
932 |
|
933 |
+
#: libs/blockcountry-settings.php:1540 libs/blockcountry-settings.php:1651
|
934 |
msgid "Backend"
|
935 |
msgstr "Achterkant"
|
936 |
|
937 |
+
#: libs/blockcountry-settings.php:1547
|
938 |
msgid "Top countries that are blocked"
|
939 |
msgstr "Top landen welke zijn geblokkeerd"
|
940 |
|
941 |
+
#: libs/blockcountry-settings.php:1549 libs/blockcountry-settings.php:1562
|
942 |
+
#: libs/blockcountry-settings.php:1583
|
943 |
msgid "# of blocked attempts"
|
944 |
msgstr "# of geblokkeerde pogingen"
|
945 |
|
946 |
+
#: libs/blockcountry-settings.php:1560
|
947 |
msgid "Top hosts that are blocked"
|
948 |
msgstr "Top hosts welke geblokkeerd zijn"
|
949 |
|
950 |
+
#: libs/blockcountry-settings.php:1581
|
951 |
msgid "Top URLs that are blocked"
|
952 |
msgstr "Top URLs welke geblokkeerd zijn"
|
953 |
|
954 |
+
#: libs/blockcountry-settings.php:1597
|
955 |
msgid "Clear database"
|
956 |
msgstr "Leeg database"
|
957 |
|
958 |
+
#: libs/blockcountry-settings.php:1620
|
959 |
msgid "Download as CSV file"
|
960 |
msgstr "Download als een csv bestand."
|
961 |
|
962 |
+
#: libs/blockcountry-settings.php:1627
|
963 |
msgid ""
|
964 |
"You are not logging any information. Please uncheck the option 'Do not log "
|
965 |
"IP addresses' if this is not what you want."
|
967 |
"Je logt geen informatie. Deselecteer alstublieft de optie 'Log geen IP "
|
968 |
"adressen' indien dit niet is wat je wilt."
|
969 |
|
970 |
+
#: libs/blockcountry-settings.php:1649
|
971 |
msgid "Home"
|
972 |
msgstr "Home"
|
973 |
|
974 |
+
#: libs/blockcountry-settings.php:1652
|
975 |
msgid "Pages"
|
976 |
msgstr "Pagina's"
|
977 |
|
978 |
+
#: libs/blockcountry-settings.php:1653
|
979 |
msgid "Categories"
|
980 |
msgstr "Categorieen"
|
981 |
|
982 |
+
#: libs/blockcountry-settings.php:1654
|
983 |
+
msgid "Tags"
|
984 |
+
msgstr "Tags"
|
985 |
+
|
986 |
+
#: libs/blockcountry-settings.php:1654
|
987 |
msgid "Post types"
|
988 |
msgstr "Post types"
|
989 |
|
990 |
+
#: libs/blockcountry-settings.php:1655
|
991 |
+
msgid "Services"
|
992 |
+
msgstr "Diensten"
|
993 |
|
994 |
+
#: libs/blockcountry-settings.php:1656
|
995 |
msgid "Tools"
|
996 |
msgstr "Gereedschap"
|
997 |
|
998 |
+
#: libs/blockcountry-settings.php:1657
|
999 |
msgid "Logging"
|
1000 |
msgstr "Statistieken"
|
1001 |
|
1002 |
+
#: libs/blockcountry-settings.php:1658
|
1003 |
msgid "Import/Export"
|
1004 |
msgstr "Importeren/Exporteren"
|
1005 |
|
1006 |
+
#: libs/blockcountry-validation.php:102
|
1007 |
+
msgid "The GeoIP API key is incorrect. Please update the key."
|
1008 |
+
msgstr "De GeoIP API sleutel is incorrect. Corrigeer a.u.b. de sleutel."
|
|
|
1009 |
|
1010 |
+
#: libs/blockcountry-validation.php:108 libs/blockcountry-validation.php:158
|
1011 |
+
msgid "Setting saved."
|
1012 |
+
msgstr "Instellingen opgeslagen."
|
|
|
|
|
|
|
|
|
1013 |
|
1014 |
+
#: libs/blockcountry-validation.php:152
|
1015 |
+
msgid "The Admin Block API key is incorrect. Please update the key."
|
1016 |
+
msgstr "De Admin Block API sleutel is incorrect. Corrigeer a.u.b. de sleutel."
|
1017 |
|
1018 |
+
#~ msgid "PHP Safe Mode"
|
1019 |
+
#~ msgstr "PHP Safe Mode"
|
|
|
|
|
|
|
|
|
|
|
1020 |
|
1021 |
+
#~ msgid "Select which search engines are allowed."
|
1022 |
+
#~ msgstr "Selecteer welke zoek machines je wilt toestaan."
|
|
|
1023 |
|
1024 |
+
#~ msgid "Select which search engines you want to allow:"
|
1025 |
+
#~ msgstr "Selecteer welke zoek machines je wilt toestaan:"
|
|
|
1026 |
|
1027 |
+
#~ msgid ""
|
1028 |
+
#~ "This will allow a search engine to your site despite if you blocked the "
|
1029 |
+
#~ "country."
|
1030 |
+
#~ msgstr ""
|
1031 |
+
#~ "Deze optie staat het toe dat zoekmachines je site bezoeken ondanks dat ze "
|
1032 |
+
#~ "uit een land komen welk geblokkeerd is."
|
1033 |
+
|
1034 |
+
#~ msgid "Number of rows on statistics page:"
|
1035 |
+
#~ msgstr "Aantal regels op de statistieken pagina:"
|
1036 |
+
|
1037 |
+
#~ msgid ""
|
1038 |
+
#~ "How many rows do you want to display on each tab the statistics page."
|
1039 |
+
#~ msgstr "Hoeveel regels wil je tonen op de statistieken pagina."
|
1040 |
+
|
1041 |
+
#~ msgid ""
|
1042 |
+
#~ "This is an experimantal feature. You do not need an API key for this "
|
1043 |
+
#~ "plugin to work."
|
1044 |
+
#~ msgstr ""
|
1045 |
+
#~ "Dit is een experimentele optie. Je hebt geen API key nodig om deze plugin "
|
1046 |
+
#~ "te laten werken."
|
1047 |
+
|
1048 |
+
#~ msgid "Search Engines"
|
1049 |
+
#~ msgstr "Zoek machines"
|
1050 |
+
|
1051 |
+
#~ msgid "Error occured: Could not download the GeoIP database from"
|
1052 |
+
#~ msgstr "Uh oh: Kon de GeoIP database niet downloaden van"
|
1053 |
+
|
1054 |
+
#~ msgid ""
|
1055 |
+
#~ "MaxMind has blocked requests from your IP address for 24 hours. Please "
|
1056 |
+
#~ "check again in 24 hours or download this file from your own PC"
|
1057 |
+
#~ msgstr ""
|
1058 |
+
#~ "MaxMind heeft alle verzoeken vanaf dit IP adres voor 24 uur geblokkeerd. "
|
1059 |
+
#~ "Controleer nogmaals na 24 uur of download dit bestand via je eigen pc"
|
1060 |
+
|
1061 |
+
#~ msgid "Unzip this file and upload it (via FTP for instance) to:"
|
1062 |
+
#~ msgstr "Pak dit bestand uit en upload deze (via FTP bijvoorbeeld) naar:"
|
1063 |
+
|
1064 |
+
#~ msgid ""
|
1065 |
+
#~ "Please download this file from your own PC unzip this file and upload it "
|
1066 |
+
#~ "(via FTP for instance) to:"
|
1067 |
+
#~ msgstr ""
|
1068 |
+
#~ "Download dit bestand alsjeblieft naar je eigen PC. Pak het bestand daar "
|
1069 |
+
#~ "uit en upload deze (bijvoorbeeld via FTP) naar:"
|
1070 |
+
|
1071 |
+
#~ msgid "Finished downloading"
|
1072 |
+
#~ msgstr "Klaar met downloaden"
|
1073 |
+
|
1074 |
+
#~ msgid "Fatal error: GeoIP"
|
1075 |
+
#~ msgstr "Fatale fout: GeoIP"
|
1076 |
+
|
1077 |
+
#~ msgid ""
|
1078 |
+
#~ "database does not exists. This plugin will not work until the database "
|
1079 |
+
#~ "file is present."
|
1080 |
+
#~ msgstr ""
|
1081 |
+
#~ "database bestaat niet. Deze plugin kan niet werken totdat deze database "
|
1082 |
+
#~ "beschikbaar is."
|
1083 |
|
1084 |
#~ msgid "Basic Options"
|
1085 |
#~ msgstr "Standaard opties"
|
libs/blockcountry-checks.php
CHANGED
@@ -295,6 +295,19 @@ function iqblockcountry_check($country,$badcountries,$ip_address)
|
|
295 |
{
|
296 |
$blocked = FALSE;
|
297 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
298 |
|
299 |
if (is_home() && (get_option('blockcountry_blockhome')) == FALSE && $blockedcategory == "on")
|
300 |
{
|
@@ -333,7 +346,7 @@ function iqblockcountry_CheckCountryBackEnd() {
|
|
333 |
$banlist = get_option( 'blockcountry_backendbanlist' );
|
334 |
if (!is_array($banlist)) { $banlist = array(); }
|
335 |
if (get_option( 'blockcountry_backendbanlist_inverse' ) == 'on') {
|
336 |
-
$all_countries = array_keys(
|
337 |
$badcountries = array_diff($all_countries, $banlist);
|
338 |
} else {
|
339 |
$badcountries = $banlist;
|
@@ -437,7 +450,7 @@ function iqblockcountry_CheckCountryFrontEnd() {
|
|
437 |
$banlist = get_option( 'blockcountry_banlist' );
|
438 |
if (!is_array($banlist)) { $banlist = array(); }
|
439 |
if (get_option( 'blockcountry_banlist_inverse' ) == 'on') {
|
440 |
-
$all_countries = array_keys(
|
441 |
$badcountries = array_diff($all_countries, $banlist);
|
442 |
} else {
|
443 |
$badcountries = $banlist;
|
@@ -542,7 +555,7 @@ function iqblockcountry_is_login_page() {
|
|
542 |
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
543 |
if ( is_plugin_active( 'all-in-one-wp-security-and-firewall/wp-security.php' ) ) {
|
544 |
$aio = get_option('aio_wp_security_configs');
|
545 |
-
if (!empty($aio)) {
|
546 |
$pos2 = strpos( $_SERVER['REQUEST_URI'], $aio['aiowps_login_page_slug'] ); }
|
547 |
}
|
548 |
|
295 |
{
|
296 |
$blocked = FALSE;
|
297 |
}
|
298 |
+
|
299 |
+
if (is_feed())
|
300 |
+
{
|
301 |
+
$flagged = FALSE;
|
302 |
+
if ((is_array ( $badcountries ) && in_array ( $country, $badcountries ) || (is_array ( $frontendblacklistip ) && in_array ( $ip_address, $frontendblacklistip))))
|
303 |
+
{
|
304 |
+
$flagged = TRUE;
|
305 |
+
}
|
306 |
+
if (is_array ( $frontendwhitelistip ) && in_array ( $ip_address, $frontendwhitelistip)) {
|
307 |
+
$flagged = FALSE;
|
308 |
+
}
|
309 |
+
if ($flagged) { $blocked = TRUE; } else { $blocked = FALSE; }
|
310 |
+
}
|
311 |
|
312 |
if (is_home() && (get_option('blockcountry_blockhome')) == FALSE && $blockedcategory == "on")
|
313 |
{
|
346 |
$banlist = get_option( 'blockcountry_backendbanlist' );
|
347 |
if (!is_array($banlist)) { $banlist = array(); }
|
348 |
if (get_option( 'blockcountry_backendbanlist_inverse' ) == 'on') {
|
349 |
+
$all_countries = array_keys(iqblockcountry_get_isocountries());
|
350 |
$badcountries = array_diff($all_countries, $banlist);
|
351 |
} else {
|
352 |
$badcountries = $banlist;
|
450 |
$banlist = get_option( 'blockcountry_banlist' );
|
451 |
if (!is_array($banlist)) { $banlist = array(); }
|
452 |
if (get_option( 'blockcountry_banlist_inverse' ) == 'on') {
|
453 |
+
$all_countries = array_keys(iqblockcountry_get_isocountries());
|
454 |
$badcountries = array_diff($all_countries, $banlist);
|
455 |
} else {
|
456 |
$badcountries = $banlist;
|
555 |
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
556 |
if ( is_plugin_active( 'all-in-one-wp-security-and-firewall/wp-security.php' ) ) {
|
557 |
$aio = get_option('aio_wp_security_configs');
|
558 |
+
if (!empty($aio) && !(empty($aio['aiowps_login_page_slug']))) {
|
559 |
$pos2 = strpos( $_SERVER['REQUEST_URI'], $aio['aiowps_login_page_slug'] ); }
|
560 |
}
|
561 |
|
libs/blockcountry-geoip.php
ADDED
@@ -0,0 +1,262 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
function iqblockcountry_get_isocountries()
|
4 |
+
{
|
5 |
+
|
6 |
+
$iqcountrylist = array(
|
7 |
+
'AF' => 'Afghanistan',
|
8 |
+
'AX' => 'Aland Islands',
|
9 |
+
'AL' => 'Albania',
|
10 |
+
'DZ' => 'Algeria',
|
11 |
+
'AS' => 'American Samoa',
|
12 |
+
'AD' => 'Andorra',
|
13 |
+
'AO' => 'Angola',
|
14 |
+
'AI' => 'Anguilla',
|
15 |
+
'AQ' => 'Antarctica',
|
16 |
+
'AG' => 'Antigua and Barbuda',
|
17 |
+
'AR' => 'Argentina',
|
18 |
+
'AM' => 'Armenia',
|
19 |
+
'AW' => 'Aruba',
|
20 |
+
'AU' => 'Australia',
|
21 |
+
'AT' => 'Austria',
|
22 |
+
'AZ' => 'Azerbaijan',
|
23 |
+
'BS' => 'Bahamas',
|
24 |
+
'BH' => 'Bahrain',
|
25 |
+
'BD' => 'Bangladesh',
|
26 |
+
'BB' => 'Barbados',
|
27 |
+
'BY' => 'Belarus',
|
28 |
+
'BE' => 'Belgium',
|
29 |
+
'BZ' => 'Belize',
|
30 |
+
'BJ' => 'Benin',
|
31 |
+
'BM' => 'Bermuda',
|
32 |
+
'BT' => 'Bhutan',
|
33 |
+
'BO' => 'Bolivia',
|
34 |
+
'BQ' => 'Bonaire, Saint Eustatius and Saba',
|
35 |
+
'BA' => 'Bosnia and Herzegovina',
|
36 |
+
'BW' => 'Botswana',
|
37 |
+
'BV' => 'Bouvet Island',
|
38 |
+
'BR' => 'Brazil',
|
39 |
+
'IO' => 'British Indian Ocean Territory',
|
40 |
+
'VG' => 'British Virgin Islands',
|
41 |
+
'BN' => 'Brunei',
|
42 |
+
'BG' => 'Bulgaria',
|
43 |
+
'BF' => 'Burkina Faso',
|
44 |
+
'BI' => 'Burundi',
|
45 |
+
'KH' => 'Cambodia',
|
46 |
+
'CM' => 'Cameroon',
|
47 |
+
'CA' => 'Canada',
|
48 |
+
'CV' => 'Cape Verde',
|
49 |
+
'KY' => 'Cayman Islands',
|
50 |
+
'CF' => 'Central African Republic',
|
51 |
+
'TD' => 'Chad',
|
52 |
+
'CL' => 'Chile',
|
53 |
+
'CN' => 'China',
|
54 |
+
'CX' => 'Christmas Island',
|
55 |
+
'CC' => 'Cocos Islands',
|
56 |
+
'CO' => 'Colombia',
|
57 |
+
'KM' => 'Comoros',
|
58 |
+
'CK' => 'Cook Islands',
|
59 |
+
'CR' => 'Costa Rica',
|
60 |
+
'HR' => 'Croatia',
|
61 |
+
'CU' => 'Cuba',
|
62 |
+
'CW' => 'Curacao',
|
63 |
+
'CY' => 'Cyprus',
|
64 |
+
'CZ' => 'Czech Republic',
|
65 |
+
'CD' => 'Democratic Republic of the Congo',
|
66 |
+
'DK' => 'Denmark',
|
67 |
+
'DJ' => 'Djibouti',
|
68 |
+
'DM' => 'Dominica',
|
69 |
+
'DO' => 'Dominican Republic',
|
70 |
+
'TL' => 'East Timor',
|
71 |
+
'EC' => 'Ecuador',
|
72 |
+
'EG' => 'Egypt',
|
73 |
+
'SV' => 'El Salvador',
|
74 |
+
'GQ' => 'Equatorial Guinea',
|
75 |
+
'ER' => 'Eritrea',
|
76 |
+
'EE' => 'Estonia',
|
77 |
+
'ET' => 'Ethiopia',
|
78 |
+
'FK' => 'Falkland Islands',
|
79 |
+
'FO' => 'Faroe Islands',
|
80 |
+
'FJ' => 'Fiji',
|
81 |
+
'FI' => 'Finland',
|
82 |
+
'FR' => 'France',
|
83 |
+
'GF' => 'French Guiana',
|
84 |
+
'PF' => 'French Polynesia',
|
85 |
+
'TF' => 'French Southern Territories',
|
86 |
+
'GA' => 'Gabon',
|
87 |
+
'GM' => 'Gambia',
|
88 |
+
'GE' => 'Georgia',
|
89 |
+
'DE' => 'Germany',
|
90 |
+
'GH' => 'Ghana',
|
91 |
+
'GI' => 'Gibraltar',
|
92 |
+
'GR' => 'Greece',
|
93 |
+
'GL' => 'Greenland',
|
94 |
+
'GD' => 'Grenada',
|
95 |
+
'GP' => 'Guadeloupe',
|
96 |
+
'GU' => 'Guam',
|
97 |
+
'GT' => 'Guatemala',
|
98 |
+
'GG' => 'Guernsey',
|
99 |
+
'GN' => 'Guinea',
|
100 |
+
'GW' => 'Guinea-Bissau',
|
101 |
+
'GY' => 'Guyana',
|
102 |
+
'HT' => 'Haiti',
|
103 |
+
'HM' => 'Heard Island and McDonald Islands',
|
104 |
+
'HN' => 'Honduras',
|
105 |
+
'HK' => 'Hong Kong',
|
106 |
+
'HU' => 'Hungary',
|
107 |
+
'IS' => 'Iceland',
|
108 |
+
'IN' => 'India',
|
109 |
+
'ID' => 'Indonesia',
|
110 |
+
'IR' => 'Iran',
|
111 |
+
'IQ' => 'Iraq',
|
112 |
+
'IE' => 'Ireland',
|
113 |
+
'IM' => 'Isle of Man',
|
114 |
+
'IL' => 'Israel',
|
115 |
+
'IT' => 'Italy',
|
116 |
+
'CI' => 'Ivory Coast',
|
117 |
+
'JM' => 'Jamaica',
|
118 |
+
'JP' => 'Japan',
|
119 |
+
'JE' => 'Jersey',
|
120 |
+
'JO' => 'Jordan',
|
121 |
+
'KZ' => 'Kazakhstan',
|
122 |
+
'KE' => 'Kenya',
|
123 |
+
'KI' => 'Kiribati',
|
124 |
+
'XK' => 'Kosovo',
|
125 |
+
'KW' => 'Kuwait',
|
126 |
+
'KG' => 'Kyrgyzstan',
|
127 |
+
'LA' => 'Laos',
|
128 |
+
'LV' => 'Latvia',
|
129 |
+
'LB' => 'Lebanon',
|
130 |
+
'LS' => 'Lesotho',
|
131 |
+
'LR' => 'Liberia',
|
132 |
+
'LY' => 'Libya',
|
133 |
+
'LI' => 'Liechtenstein',
|
134 |
+
'LT' => 'Lithuania',
|
135 |
+
'LU' => 'Luxembourg',
|
136 |
+
'MO' => 'Macao',
|
137 |
+
'MK' => 'Macedonia',
|
138 |
+
'MG' => 'Madagascar',
|
139 |
+
'MW' => 'Malawi',
|
140 |
+
'MY' => 'Malaysia',
|
141 |
+
'MV' => 'Maldives',
|
142 |
+
'ML' => 'Mali',
|
143 |
+
'MT' => 'Malta',
|
144 |
+
'MH' => 'Marshall Islands',
|
145 |
+
'MQ' => 'Martinique',
|
146 |
+
'MR' => 'Mauritania',
|
147 |
+
'MU' => 'Mauritius',
|
148 |
+
'YT' => 'Mayotte',
|
149 |
+
'MX' => 'Mexico',
|
150 |
+
'FM' => 'Micronesia',
|
151 |
+
'MD' => 'Moldova',
|
152 |
+
'MC' => 'Monaco',
|
153 |
+
'MN' => 'Mongolia',
|
154 |
+
'ME' => 'Montenegro',
|
155 |
+
'MS' => 'Montserrat',
|
156 |
+
'MA' => 'Morocco',
|
157 |
+
'MZ' => 'Mozambique',
|
158 |
+
'MM' => 'Myanmar',
|
159 |
+
'NA' => 'Namibia',
|
160 |
+
'NR' => 'Nauru',
|
161 |
+
'NP' => 'Nepal',
|
162 |
+
'NL' => 'Netherlands',
|
163 |
+
'NC' => 'New Caledonia',
|
164 |
+
'NZ' => 'New Zealand',
|
165 |
+
'NI' => 'Nicaragua',
|
166 |
+
'NE' => 'Niger',
|
167 |
+
'NG' => 'Nigeria',
|
168 |
+
'NU' => 'Niue',
|
169 |
+
'NF' => 'Norfolk Island',
|
170 |
+
'KP' => 'North Korea',
|
171 |
+
'MP' => 'Northern Mariana Islands',
|
172 |
+
'NO' => 'Norway',
|
173 |
+
'OM' => 'Oman',
|
174 |
+
'PK' => 'Pakistan',
|
175 |
+
'PW' => 'Palau',
|
176 |
+
'PS' => 'Palestinian Territory',
|
177 |
+
'PA' => 'Panama',
|
178 |
+
'PG' => 'Papua New Guinea',
|
179 |
+
'PY' => 'Paraguay',
|
180 |
+
'PE' => 'Peru',
|
181 |
+
'PH' => 'Philippines',
|
182 |
+
'PN' => 'Pitcairn',
|
183 |
+
'PL' => 'Poland',
|
184 |
+
'PT' => 'Portugal',
|
185 |
+
'PR' => 'Puerto Rico',
|
186 |
+
'QA' => 'Qatar',
|
187 |
+
'CG' => 'Republic of the Congo',
|
188 |
+
'RE' => 'Reunion',
|
189 |
+
'RO' => 'Romania',
|
190 |
+
'RU' => 'Russia',
|
191 |
+
'RW' => 'Rwanda',
|
192 |
+
'BL' => 'Saint Barthelemy',
|
193 |
+
'SH' => 'Saint Helena',
|
194 |
+
'KN' => 'Saint Kitts and Nevis',
|
195 |
+
'LC' => 'Saint Lucia',
|
196 |
+
'MF' => 'Saint Martin',
|
197 |
+
'PM' => 'Saint Pierre and Miquelon',
|
198 |
+
'VC' => 'Saint Vincent and the Grenadines',
|
199 |
+
'WS' => 'Samoa',
|
200 |
+
'SM' => 'San Marino',
|
201 |
+
'ST' => 'Sao Tome and Principe',
|
202 |
+
'SA' => 'Saudi Arabia',
|
203 |
+
'SN' => 'Senegal',
|
204 |
+
'RS' => 'Serbia',
|
205 |
+
'SC' => 'Seychelles',
|
206 |
+
'SL' => 'Sierra Leone',
|
207 |
+
'SG' => 'Singapore',
|
208 |
+
'SX' => 'Sint Maarten',
|
209 |
+
'SK' => 'Slovakia',
|
210 |
+
'SI' => 'Slovenia',
|
211 |
+
'SB' => 'Solomon Islands',
|
212 |
+
'SO' => 'Somalia',
|
213 |
+
'ZA' => 'South Africa',
|
214 |
+
'GS' => 'South Georgia and the South Sandwich Islands',
|
215 |
+
'KR' => 'South Korea',
|
216 |
+
'SS' => 'South Sudan',
|
217 |
+
'ES' => 'Spain',
|
218 |
+
'LK' => 'Sri Lanka',
|
219 |
+
'SD' => 'Sudan',
|
220 |
+
'SR' => 'Suriname',
|
221 |
+
'SJ' => 'Svalbard and Jan Mayen',
|
222 |
+
'SZ' => 'Swaziland',
|
223 |
+
'SE' => 'Sweden',
|
224 |
+
'CH' => 'Switzerland',
|
225 |
+
'SY' => 'Syria',
|
226 |
+
'TW' => 'Taiwan',
|
227 |
+
'TJ' => 'Tajikistan',
|
228 |
+
'TZ' => 'Tanzania',
|
229 |
+
'TH' => 'Thailand',
|
230 |
+
'TG' => 'Togo',
|
231 |
+
'TK' => 'Tokelau',
|
232 |
+
'TO' => 'Tonga',
|
233 |
+
'TT' => 'Trinidad and Tobago',
|
234 |
+
'TN' => 'Tunisia',
|
235 |
+
'TR' => 'Turkey',
|
236 |
+
'TM' => 'Turkmenistan',
|
237 |
+
'TC' => 'Turks and Caicos Islands',
|
238 |
+
'TV' => 'Tuvalu',
|
239 |
+
'VI' => 'U.S. Virgin Islands',
|
240 |
+
'UG' => 'Uganda',
|
241 |
+
'UA' => 'Ukraine',
|
242 |
+
'AE' => 'United Arab Emirates',
|
243 |
+
'GB' => 'United Kingdom',
|
244 |
+
'US' => 'United States',
|
245 |
+
'UM' => 'United States Minor Outlying Islands',
|
246 |
+
'UY' => 'Uruguay',
|
247 |
+
'UZ' => 'Uzbekistan',
|
248 |
+
'VU' => 'Vanuatu',
|
249 |
+
'VA' => 'Vatican',
|
250 |
+
'VE' => 'Venezuela',
|
251 |
+
'VN' => 'Vietnam',
|
252 |
+
'WF' => 'Wallis and Futuna',
|
253 |
+
'EH' => 'Western Sahara',
|
254 |
+
'YE' => 'Yemen',
|
255 |
+
'ZM' => 'Zambia',
|
256 |
+
'ZW' => 'Zimbabwe',
|
257 |
+
);
|
258 |
+
|
259 |
+
return $iqcountrylist;
|
260 |
+
}
|
261 |
+
|
262 |
+
?>
|
libs/blockcountry-search-engines.php
CHANGED
@@ -8,9 +8,11 @@ $searchengines = array(
|
|
8 |
"Bitly" => "bitlybot",
|
9 |
"Cliqz" => "cliqzbot",
|
10 |
"Duck Duck Go" => "duckduckbot",
|
|
|
11 |
"Facebook" => "facebookexternalhit",
|
12 |
"Google" => "googlebot",
|
13 |
"Google Ads" => "AdsBot-Google",
|
|
|
14 |
"Google Page Speed Insight" => "Google Page Speed Insight",
|
15 |
"Google Search Console" => "Google Search Console",
|
16 |
"Google Site Verification" => "Google-Site-Verification",
|
8 |
"Bitly" => "bitlybot",
|
9 |
"Cliqz" => "cliqzbot",
|
10 |
"Duck Duck Go" => "duckduckbot",
|
11 |
+
"Feedly" => "Feedly",
|
12 |
"Facebook" => "facebookexternalhit",
|
13 |
"Google" => "googlebot",
|
14 |
"Google Ads" => "AdsBot-Google",
|
15 |
+
"Google Feed" => "Feedfetcher-Google",
|
16 |
"Google Page Speed Insight" => "Google Page Speed Insight",
|
17 |
"Google Search Console" => "Google Search Console",
|
18 |
"Google Site Verification" => "Google-Site-Verification",
|
libs/blockcountry-settings.php
CHANGED
@@ -196,7 +196,7 @@ function iqblockcountry_get_options_arr() {
|
|
196 |
function iqblockcountry_set_defaults()
|
197 |
{
|
198 |
update_option('blockcountry_version',VERSION);
|
199 |
-
$countrylist =
|
200 |
$ip_address = iqblockcountry_get_ipaddress();
|
201 |
$usercountry = iqblockcountry_check_ipaddress($ip_address);
|
202 |
$server_addr = array_key_exists( 'SERVER_ADDR', $_SERVER ) ? $_SERVER['SERVER_ADDR'] : $_SERVER['LOCAL_ADDR'];
|
@@ -286,7 +286,7 @@ function iqblockcountry_settings_tools() {
|
|
286 |
if (iqblockcountry_is_valid_ipv4($ip_address) || iqblockcountry_is_valid_ipv6($ip_address))
|
287 |
{
|
288 |
$country = iqblockcountry_check_ipaddress($ip_address);
|
289 |
-
$countrylist =
|
290 |
if ($country == "Unknown" || $country == "ipv6" || $country == "" || $country == "FALSE")
|
291 |
{
|
292 |
echo "<p>" . __('No country for', 'iq-block-country') . ' ' . $ip_address . ' ' . __('could be found. Or', 'iq-block-country') . ' ' . $ip_address . ' ' . __('is not a valid IPv4 or IPv6 IP address', 'iq-block-country');
|
@@ -347,44 +347,61 @@ function iqblockcountry_settings_tools() {
|
|
347 |
/* Check if the Geo Database exists */
|
348 |
if (is_file ( IPV4DBFILE )) {
|
349 |
|
350 |
-
_e("IPv4 database exists. File date: ");
|
351 |
$iqfiledate = filemtime(IPV4DBFILE);
|
352 |
echo date ($format,$iqfiledate);
|
353 |
echo " ";
|
354 |
$iq3months = time() - 3 * 31 * 86400;
|
355 |
if ($iqfiledate < $iq3months)
|
356 |
{
|
357 |
-
_e("Database is older than 3 months... Please update...");
|
358 |
}
|
359 |
}
|
360 |
else
|
361 |
{
|
362 |
-
_e("IPv4 database does not exist.");
|
363 |
}
|
364 |
echo "<br />";
|
365 |
|
366 |
if (is_file ( IPV6DBFILE )) {
|
367 |
|
368 |
-
_e("IPv6 database exists. File date: ");
|
369 |
$iqfiledate = filemtime(IPV6DBFILE);
|
370 |
echo date ($format,$iqfiledate);
|
371 |
echo " ";
|
372 |
$iq3months = time() - 3 * 31 * 86400;
|
373 |
if ($iqfiledate < $iq3months)
|
374 |
{
|
375 |
-
_e("Database is older than 3 months... Please update...");
|
376 |
}
|
377 |
}
|
378 |
else
|
379 |
{
|
380 |
-
_e("IPv6 database does not exist.");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
381 |
}
|
382 |
echo "<br />";
|
383 |
|
384 |
if (get_option('blockcountry_geoapikey'))
|
385 |
{
|
386 |
$licensedate = strtotime(iqblockcountry_get_licensedate_geoapikey(get_option('blockcountry_geoapikey')));
|
387 |
-
_e("Your GeoIP API key is valid till: ");
|
388 |
echo date($format,$licensedate);
|
389 |
echo "<br />";
|
390 |
}
|
@@ -944,19 +961,19 @@ function iqblockcountry_settings_posttypes() {
|
|
944 |
|
945 |
|
946 |
/*
|
947 |
-
* Function:
|
948 |
*/
|
949 |
-
function
|
950 |
?>
|
951 |
-
<h3><?php _e('Select which
|
952 |
<form method="post" action="options.php">
|
953 |
<?php
|
954 |
settings_fields ( 'iqblockcountry-settings-group-se' );
|
955 |
?>
|
956 |
<table class="form-table" cellspacing="2" cellpadding="5" width="100%">
|
957 |
<tr valign="top">
|
958 |
-
<th width="30%"><?php _e('Select which
|
959 |
-
<?php _e('This will allow a search engine to your site despite if you blocked the country.', 'iq-block-country'); ?><br />
|
960 |
<?php _e('Please note the "Search Engine Visibility" should not be selected in ', 'iq-block-country'); ?><a href="/wp-admin/options-reading.php"><?php _e('reading settings.', 'iq-block-country'); ?></a>
|
961 |
</th>
|
962 |
<td width="70%">
|
@@ -1006,7 +1023,7 @@ function iqblockcountry_settings_frontend()
|
|
1006 |
}
|
1007 |
if (class_exists('GeoIP'))
|
1008 |
{
|
1009 |
-
$countrylist =
|
1010 |
|
1011 |
$ip_address = iqblockcountry_get_ipaddress();
|
1012 |
$country = iqblockcountry_check_ipaddress($ip_address);
|
@@ -1144,7 +1161,7 @@ function iqblockcountry_settings_backend()
|
|
1144 |
if (class_exists('GeoIP'))
|
1145 |
{
|
1146 |
|
1147 |
-
$countrylist =
|
1148 |
|
1149 |
$ip_address = iqblockcountry_get_ipaddress();
|
1150 |
$country = iqblockcountry_check_ipaddress($ip_address);
|
@@ -1290,7 +1307,7 @@ if (is_file ( IPV4DBFILE ) && (!get_option('blockcountry_geoapikey'))) {
|
|
1290 |
}
|
1291 |
if (class_exists('GeoIP'))
|
1292 |
{
|
1293 |
-
$countrylist =
|
1294 |
?>
|
1295 |
|
1296 |
<link rel="stylesheet" href=<?php echo "\"" . CHOSENCSS . "\""?> type="text/css" />
|
@@ -1500,7 +1517,7 @@ function iqblockcountry_settings_logging()
|
|
1500 |
$nrrows = get_option('blockcountry_nrstatistics');
|
1501 |
$lookupstats = get_option('blockcountry_lookupstatistics');
|
1502 |
if ($nrrows == "") { $nrrows = 15;};
|
1503 |
-
$countrylist =
|
1504 |
echo '<table class="widefat">';
|
1505 |
echo '<thead><tr><th>' . __('Date / Time', 'iq-block-country') . '</th><th>' . __('IP Address', 'iq-block-country') . '</th><th>' . __('Hostname', 'iq-block-country') . '</th><th>' . __('URL', 'iq-block-country') . '</th><th>' . __('Country', 'iq-block-country') . '</th><th>' . __('Frontend/Backend', 'iq-block-country') . '</th></tr></thead>';
|
1506 |
|
@@ -1634,7 +1651,7 @@ function iqblockcountry_settings_page() {
|
|
1634 |
<a href="?page=iq-block-country/libs/blockcountry-settings.php&tab=pages" class="nav-tab <?php echo $active_tab == 'pages' ? 'nav-tab-active' : ''; ?>"><?php _e('Pages', 'iq-block-country'); ?></a>
|
1635 |
<a href="?page=iq-block-country/libs/blockcountry-settings.php&tab=categories" class="nav-tab <?php echo $active_tab == 'categories' ? 'nav-tab-active' : ''; ?>"><?php _e('Categories', 'iq-block-country'); ?></a>
|
1636 |
<a href="?page=iq-block-country/libs/blockcountry-settings.php&tab=tags" class="nav-tab <?php echo $active_tab == 'categories' ? 'nav-tab-active' : ''; ?>"><?php _e('Tags', 'iq-block-country'); ?></a> <a href="?page=iq-block-country/libs/blockcountry-settings.php&tab=posttypes" class="nav-tab <?php echo $active_tab == 'posttypes' ? 'nav-tab-active' : ''; ?>"><?php _e('Post types', 'iq-block-country'); ?></a>
|
1637 |
-
<a href="?page=iq-block-country/libs/blockcountry-settings.php&tab=
|
1638 |
<a href="?page=iq-block-country/libs/blockcountry-settings.php&tab=tools" class="nav-tab <?php echo $active_tab == 'tools' ? 'nav-tab-active' : ''; ?>"><?php _e('Tools', 'iq-block-country'); ?></a>
|
1639 |
<a href="?page=iq-block-country/libs/blockcountry-settings.php&tab=logging" class="nav-tab <?php echo $active_tab == 'logging' ? 'nav-tab-active' : ''; ?>"><?php _e('Logging', 'iq-block-country'); ?></a>
|
1640 |
<a href="?page=iq-block-country/libs/blockcountry-settings.php&tab=export" class="nav-tab <?php echo $active_tab == 'export' ? 'nav-tab-active' : ''; ?>"><?php _e('Import/Export', 'iq-block-country'); ?></a>
|
@@ -1678,9 +1695,9 @@ function iqblockcountry_settings_page() {
|
|
1678 |
{
|
1679 |
iqblockcountry_settings_posttypes();
|
1680 |
}
|
1681 |
-
elseif ($active_tab == "
|
1682 |
{
|
1683 |
-
|
1684 |
}
|
1685 |
elseif ($active_tab == "export")
|
1686 |
{
|
196 |
function iqblockcountry_set_defaults()
|
197 |
{
|
198 |
update_option('blockcountry_version',VERSION);
|
199 |
+
$countrylist = iqblockcountry_get_isocountries();
|
200 |
$ip_address = iqblockcountry_get_ipaddress();
|
201 |
$usercountry = iqblockcountry_check_ipaddress($ip_address);
|
202 |
$server_addr = array_key_exists( 'SERVER_ADDR', $_SERVER ) ? $_SERVER['SERVER_ADDR'] : $_SERVER['LOCAL_ADDR'];
|
286 |
if (iqblockcountry_is_valid_ipv4($ip_address) || iqblockcountry_is_valid_ipv6($ip_address))
|
287 |
{
|
288 |
$country = iqblockcountry_check_ipaddress($ip_address);
|
289 |
+
$countrylist = iqblockcountry_get_isocountries();
|
290 |
if ($country == "Unknown" || $country == "ipv6" || $country == "" || $country == "FALSE")
|
291 |
{
|
292 |
echo "<p>" . __('No country for', 'iq-block-country') . ' ' . $ip_address . ' ' . __('could be found. Or', 'iq-block-country') . ' ' . $ip_address . ' ' . __('is not a valid IPv4 or IPv6 IP address', 'iq-block-country');
|
347 |
/* Check if the Geo Database exists */
|
348 |
if (is_file ( IPV4DBFILE )) {
|
349 |
|
350 |
+
_e("IPv4 database exists. File date: ", 'iq-block-country');
|
351 |
$iqfiledate = filemtime(IPV4DBFILE);
|
352 |
echo date ($format,$iqfiledate);
|
353 |
echo " ";
|
354 |
$iq3months = time() - 3 * 31 * 86400;
|
355 |
if ($iqfiledate < $iq3months)
|
356 |
{
|
357 |
+
_e("Database is older than 3 months... Please update...", 'iq-block-country');
|
358 |
}
|
359 |
}
|
360 |
else
|
361 |
{
|
362 |
+
_e("IPv4 database does not exist.", 'iq-block-country');
|
363 |
}
|
364 |
echo "<br />";
|
365 |
|
366 |
if (is_file ( IPV6DBFILE )) {
|
367 |
|
368 |
+
_e("IPv6 database exists. File date: ", 'iq-block-country');
|
369 |
$iqfiledate = filemtime(IPV6DBFILE);
|
370 |
echo date ($format,$iqfiledate);
|
371 |
echo " ";
|
372 |
$iq3months = time() - 3 * 31 * 86400;
|
373 |
if ($iqfiledate < $iq3months)
|
374 |
{
|
375 |
+
_e("Database is older than 3 months... Please update...", 'iq-block-country');
|
376 |
}
|
377 |
}
|
378 |
else
|
379 |
{
|
380 |
+
_e("IPv6 database does not exist.", 'iq-block-country');
|
381 |
+
}
|
382 |
+
echo "<br />";
|
383 |
+
if (is_file ( GEOIP2DBFILE )) {
|
384 |
+
|
385 |
+
_e("GeoIP2 database exists. File date: ", 'iq-block-country');
|
386 |
+
$iqfiledate = filemtime(GEOIP2DBFILE);
|
387 |
+
echo date ($format,$iqfiledate);
|
388 |
+
echo " ";
|
389 |
+
$iq3months = time() - 3 * 31 * 86400;
|
390 |
+
if ($iqfiledate < $iq3months)
|
391 |
+
{
|
392 |
+
_e("Database is older than 3 months... Please update...", 'iq-block-country');
|
393 |
+
}
|
394 |
+
}
|
395 |
+
else
|
396 |
+
{
|
397 |
+
_e("GeoIP2 database does not exist.", 'iq-block-country');
|
398 |
}
|
399 |
echo "<br />";
|
400 |
|
401 |
if (get_option('blockcountry_geoapikey'))
|
402 |
{
|
403 |
$licensedate = strtotime(iqblockcountry_get_licensedate_geoapikey(get_option('blockcountry_geoapikey')));
|
404 |
+
_e("Your GeoIP API key is valid till: ", 'iq-block-country');
|
405 |
echo date($format,$licensedate);
|
406 |
echo "<br />";
|
407 |
}
|
961 |
|
962 |
|
963 |
/*
|
964 |
+
* Function: Services settings
|
965 |
*/
|
966 |
+
function iqblockcountry_settings_services() {
|
967 |
?>
|
968 |
+
<h3><?php _e('Select which services are allowed.', 'iq-block-country'); ?></h3>
|
969 |
<form method="post" action="options.php">
|
970 |
<?php
|
971 |
settings_fields ( 'iqblockcountry-settings-group-se' );
|
972 |
?>
|
973 |
<table class="form-table" cellspacing="2" cellpadding="5" width="100%">
|
974 |
<tr valign="top">
|
975 |
+
<th width="30%"><?php _e('Select which services you want to allow:', 'iq-block-country'); ?><br />
|
976 |
+
<?php _e('This will allow a service like for instance a search engine to your site despite if you blocked the country.', 'iq-block-country'); ?><br />
|
977 |
<?php _e('Please note the "Search Engine Visibility" should not be selected in ', 'iq-block-country'); ?><a href="/wp-admin/options-reading.php"><?php _e('reading settings.', 'iq-block-country'); ?></a>
|
978 |
</th>
|
979 |
<td width="70%">
|
1023 |
}
|
1024 |
if (class_exists('GeoIP'))
|
1025 |
{
|
1026 |
+
$countrylist = iqblockcountry_get_isocountries();
|
1027 |
|
1028 |
$ip_address = iqblockcountry_get_ipaddress();
|
1029 |
$country = iqblockcountry_check_ipaddress($ip_address);
|
1161 |
if (class_exists('GeoIP'))
|
1162 |
{
|
1163 |
|
1164 |
+
$countrylist = iqblockcountry_get_isocountries();
|
1165 |
|
1166 |
$ip_address = iqblockcountry_get_ipaddress();
|
1167 |
$country = iqblockcountry_check_ipaddress($ip_address);
|
1307 |
}
|
1308 |
if (class_exists('GeoIP'))
|
1309 |
{
|
1310 |
+
$countrylist = iqblockcountry_get_isocountries();
|
1311 |
?>
|
1312 |
|
1313 |
<link rel="stylesheet" href=<?php echo "\"" . CHOSENCSS . "\""?> type="text/css" />
|
1517 |
$nrrows = get_option('blockcountry_nrstatistics');
|
1518 |
$lookupstats = get_option('blockcountry_lookupstatistics');
|
1519 |
if ($nrrows == "") { $nrrows = 15;};
|
1520 |
+
$countrylist = iqblockcountry_get_isocountries();
|
1521 |
echo '<table class="widefat">';
|
1522 |
echo '<thead><tr><th>' . __('Date / Time', 'iq-block-country') . '</th><th>' . __('IP Address', 'iq-block-country') . '</th><th>' . __('Hostname', 'iq-block-country') . '</th><th>' . __('URL', 'iq-block-country') . '</th><th>' . __('Country', 'iq-block-country') . '</th><th>' . __('Frontend/Backend', 'iq-block-country') . '</th></tr></thead>';
|
1523 |
|
1651 |
<a href="?page=iq-block-country/libs/blockcountry-settings.php&tab=pages" class="nav-tab <?php echo $active_tab == 'pages' ? 'nav-tab-active' : ''; ?>"><?php _e('Pages', 'iq-block-country'); ?></a>
|
1652 |
<a href="?page=iq-block-country/libs/blockcountry-settings.php&tab=categories" class="nav-tab <?php echo $active_tab == 'categories' ? 'nav-tab-active' : ''; ?>"><?php _e('Categories', 'iq-block-country'); ?></a>
|
1653 |
<a href="?page=iq-block-country/libs/blockcountry-settings.php&tab=tags" class="nav-tab <?php echo $active_tab == 'categories' ? 'nav-tab-active' : ''; ?>"><?php _e('Tags', 'iq-block-country'); ?></a> <a href="?page=iq-block-country/libs/blockcountry-settings.php&tab=posttypes" class="nav-tab <?php echo $active_tab == 'posttypes' ? 'nav-tab-active' : ''; ?>"><?php _e('Post types', 'iq-block-country'); ?></a>
|
1654 |
+
<a href="?page=iq-block-country/libs/blockcountry-settings.php&tab=services" class="nav-tab <?php echo $active_tab == 'services' ? 'nav-tab-active' : ''; ?>"><?php _e('Services', 'iq-block-country'); ?></a>
|
1655 |
<a href="?page=iq-block-country/libs/blockcountry-settings.php&tab=tools" class="nav-tab <?php echo $active_tab == 'tools' ? 'nav-tab-active' : ''; ?>"><?php _e('Tools', 'iq-block-country'); ?></a>
|
1656 |
<a href="?page=iq-block-country/libs/blockcountry-settings.php&tab=logging" class="nav-tab <?php echo $active_tab == 'logging' ? 'nav-tab-active' : ''; ?>"><?php _e('Logging', 'iq-block-country'); ?></a>
|
1657 |
<a href="?page=iq-block-country/libs/blockcountry-settings.php&tab=export" class="nav-tab <?php echo $active_tab == 'export' ? 'nav-tab-active' : ''; ?>"><?php _e('Import/Export', 'iq-block-country'); ?></a>
|
1695 |
{
|
1696 |
iqblockcountry_settings_posttypes();
|
1697 |
}
|
1698 |
+
elseif ($active_tab == "services")
|
1699 |
{
|
1700 |
+
iqblockcountry_settings_services();
|
1701 |
}
|
1702 |
elseif ($active_tab == "export")
|
1703 |
{
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: iqpascal
|
|
3 |
Donate link: https://www.webence.nl/plugins/donate
|
4 |
Tags: spam, block, country, comments, ban, geo, geo blocking, geo ip, block country, block countries, ban countries, ban country, blacklist, whitelist, security
|
5 |
Requires at least: 3.5.2
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -191,7 +191,7 @@ Please note that your wp_options table may be called differently depending on yo
|
|
191 |
|
192 |
Jetpack uses xmlrpc.php to communicate with your site. xmlrpc.php is considered as a backend url and therefore blocked if needed.
|
193 |
|
194 |
-
You can allow Jetpack by selecting "Jetpack by wordpress.com" as a search engine on the
|
195 |
|
196 |
= I only want to block certain posts with a specific tag =
|
197 |
|
@@ -206,6 +206,14 @@ As the basic rule is to block all and every post you have to configure this in a
|
|
206 |
|
207 |
== Changelog ==
|
208 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
= 1.1.45 =
|
210 |
|
211 |
* Bugfix: (un)blocking individual pages and categories did not work anymore.
|
3 |
Donate link: https://www.webence.nl/plugins/donate
|
4 |
Tags: spam, block, country, comments, ban, geo, geo blocking, geo ip, block country, block countries, ban countries, ban country, blacklist, whitelist, security
|
5 |
Requires at least: 3.5.2
|
6 |
+
Tested up to: 4.9.4
|
7 |
+
Stable tag: 1.1.46
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
191 |
|
192 |
Jetpack uses xmlrpc.php to communicate with your site. xmlrpc.php is considered as a backend url and therefore blocked if needed.
|
193 |
|
194 |
+
You can allow Jetpack by selecting "Jetpack by wordpress.com" as a search engine on the services tab.
|
195 |
|
196 |
= I only want to block certain posts with a specific tag =
|
197 |
|
206 |
|
207 |
== Changelog ==
|
208 |
|
209 |
+
= 1.1.46 =
|
210 |
+
|
211 |
+
* Bugfix: Added extra aiwop checking due to a notice error.
|
212 |
+
* Change: Renamed Search Engines tab to Services tab as more non-search engines are added to the list.
|
213 |
+
* New: Added Feedly to services.
|
214 |
+
* New: Added Google Feed to services.
|
215 |
+
* New: Changes are made for supporting the new GeoIP2 database format of MaxMind.
|
216 |
+
|
217 |
= 1.1.45 =
|
218 |
|
219 |
* Bugfix: (un)blocking individual pages and categories did not work anymore.
|