Version Description
- Minor improvements
- Added check to detect closest location for GeoIP API users
- Fixed an error if you lookup an ip on the tools tab while using the inverse function it sometimes would not display correctly if a country was blocked or not.
- Added support for All in one WP Security Change Login URL. If you changed your login URL iQ Block Country will detect this setting and use it with your backend block settings.
Download this release
Release Info
Developer | iqpascal |
Plugin | iQ Block Country |
Version | 1.1.21 |
Comparing to | |
See all releases |
Code changes from version 1.1.20 to 1.1.21
- iq-block-country.php +16 -6
- lang/en_EN.mo +0 -0
- lang/en_EN.po +187 -126
- lang/iqblockcountry-nl_NL.mo +0 -0
- lang/iqblockcountry-nl_NL.po +196 -126
- libs/blockcountry-checks.php +49 -38
- libs/blockcountry-settings.php +41 -0
- libs/blockcountry-validation.php +1 -1
- readme.txt +19 -2
iq-block-country.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: iQ Block Country
|
4 |
Plugin URI: http://www.redeo.nl/2013/12/iq-block-country-wordpress-plugin-blocks-countries/
|
5 |
-
Version: 1.1.
|
6 |
Author: Pascal
|
7 |
Author URI: http://www.redeo.nl/
|
8 |
Description: Block visitors from visiting your website and backend website based on which country their IP address is from. The Maxmind GeoIP lite database is used for looking up from which country an ip address is from.
|
@@ -137,8 +137,14 @@ function iqblockcountry_upgrade()
|
|
137 |
/* Check if update is necessary */
|
138 |
$dbversion = get_option( 'blockcountry_version' );
|
139 |
update_option('blockcountry_version',VERSION);
|
140 |
-
|
141 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
{
|
143 |
update_option('blockcountry_blocksearch','on');
|
144 |
}
|
@@ -200,10 +206,12 @@ define("GEOIPAPIURL","http://geoip.webence.nl/geoipapi.php");
|
|
200 |
define("GEOIPAPIURLUS","http://us.geoip.webence.nl/geoipapi.php");
|
201 |
define("GEOIPAPICHECKURL","http://geoip.webence.nl/geoipapi-keycheck.php");
|
202 |
define("ADMINAPICHECKURL","http://tracking.webence.nl/adminapi-keycheck.php");
|
203 |
-
define("VERSION","1.1.
|
204 |
define("DBVERSION","121");
|
205 |
define("PLUGINPATH",plugin_dir_path( __FILE__ ));
|
206 |
|
|
|
|
|
207 |
/*
|
208 |
* Include libraries
|
209 |
*/
|
@@ -218,6 +226,7 @@ require_once('libs/blockcountry-search-engines.php');
|
|
218 |
global $apiblacklist;
|
219 |
$apiblacklist = FALSE;
|
220 |
$backendblacklistcheck = FALSE;
|
|
|
221 |
|
222 |
register_activation_hook(__file__, 'iqblockcountry_this_plugin_first');
|
223 |
register_activation_hook(__file__, 'iqblockcountry_set_defaults');
|
@@ -229,10 +238,11 @@ register_uninstall_hook(__file__, 'iqblockcountry_uninstall');
|
|
229 |
/* Clean logging database */
|
230 |
iqblockcountry_clean_db();
|
231 |
|
232 |
-
|
|
|
233 |
* Check first if users want to block the backend.
|
234 |
*/
|
235 |
-
if ((
|
236 |
{
|
237 |
add_action ( 'login_head', 'iqblockcountry_checkCountry', 1 );
|
238 |
}
|
2 |
/*
|
3 |
Plugin Name: iQ Block Country
|
4 |
Plugin URI: http://www.redeo.nl/2013/12/iq-block-country-wordpress-plugin-blocks-countries/
|
5 |
+
Version: 1.1.21
|
6 |
Author: Pascal
|
7 |
Author URI: http://www.redeo.nl/
|
8 |
Description: Block visitors from visiting your website and backend website based on which country their IP address is from. The Maxmind GeoIP lite database is used for looking up from which country an ip address is from.
|
137 |
/* Check if update is necessary */
|
138 |
$dbversion = get_option( 'blockcountry_version' );
|
139 |
update_option('blockcountry_version',VERSION);
|
140 |
+
if ($dbversion != "" && version_compare($dbversion, "1.1.21", '<') )
|
141 |
+
{
|
142 |
+
if (!get_option('blockcountry_geoapilocation'))
|
143 |
+
{
|
144 |
+
iqblockcountry_find_geoip_location();
|
145 |
+
}
|
146 |
+
}
|
147 |
+
elseif ($dbversion != "" && version_compare($dbversion, "1.1.19", '<') )
|
148 |
{
|
149 |
update_option('blockcountry_blocksearch','on');
|
150 |
}
|
206 |
define("GEOIPAPIURLUS","http://us.geoip.webence.nl/geoipapi.php");
|
207 |
define("GEOIPAPICHECKURL","http://geoip.webence.nl/geoipapi-keycheck.php");
|
208 |
define("ADMINAPICHECKURL","http://tracking.webence.nl/adminapi-keycheck.php");
|
209 |
+
define("VERSION","1.1.21");
|
210 |
define("DBVERSION","121");
|
211 |
define("PLUGINPATH",plugin_dir_path( __FILE__ ));
|
212 |
|
213 |
+
|
214 |
+
|
215 |
/*
|
216 |
* Include libraries
|
217 |
*/
|
226 |
global $apiblacklist;
|
227 |
$apiblacklist = FALSE;
|
228 |
$backendblacklistcheck = FALSE;
|
229 |
+
$blockcountry_is_login_page = iqblockcountry_is_login_page();
|
230 |
|
231 |
register_activation_hook(__file__, 'iqblockcountry_this_plugin_first');
|
232 |
register_activation_hook(__file__, 'iqblockcountry_set_defaults');
|
238 |
/* Clean logging database */
|
239 |
iqblockcountry_clean_db();
|
240 |
|
241 |
+
|
242 |
+
/*
|
243 |
* Check first if users want to block the backend.
|
244 |
*/
|
245 |
+
if (($blockcountry_is_login_page || is_admin()) && get_option('blockcountry_blockbackend'))
|
246 |
{
|
247 |
add_action ( 'login_head', 'iqblockcountry_checkCountry', 1 );
|
248 |
}
|
lang/en_EN.mo
CHANGED
Binary file
|
lang/en_EN.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: iQ Block Country\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: Pascal <pascal@redeo.nl>\n"
|
7 |
"Language-Team: iQ Block Country <info@redeo.nl>\n"
|
8 |
"Language: English\n"
|
@@ -15,14 +15,47 @@ msgstr ""
|
|
15 |
"X-Poedit-SearchPath-0: libs\n"
|
16 |
"X-Poedit-SearchPath-1: .\n"
|
17 |
|
18 |
-
#: libs/blockcountry-validation.php:
|
19 |
msgid "The GeoIP API key is incorrect. Please update the key."
|
20 |
msgstr ""
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
#: libs/blockcountry-validation.php:89
|
23 |
msgid "Setting saved."
|
24 |
msgstr ""
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
#: libs/blockcountry-settings.php:51
|
27 |
msgid ""
|
28 |
"The MaxMind GeoIP database does not exist. Please download this file "
|
@@ -45,371 +78,391 @@ msgstr ""
|
|
45 |
msgid "For more detailed instructions take a look at the documentation.."
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: libs/blockcountry-settings.php:
|
49 |
msgid ""
|
50 |
"Check which country belongs to an IP Address according to the current "
|
51 |
"database."
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: libs/blockcountry-settings.php:
|
55 |
msgid "IP Address to check:"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: libs/blockcountry-settings.php:
|
59 |
msgid "No country for"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: libs/blockcountry-settings.php:
|
63 |
msgid "could be found. Or"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: libs/blockcountry-settings.php:
|
67 |
msgid "is not a valid IPv4 or IPv6 IP address"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: libs/blockcountry-settings.php:
|
71 |
msgid "IP Adress"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: libs/blockcountry-settings.php:
|
75 |
msgid "belongs to"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: libs/blockcountry-settings.php:
|
79 |
msgid "This country is not permitted to visit the frontend of this website."
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: libs/blockcountry-settings.php:
|
83 |
msgid "This country is not permitted to visit the backend of this website."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: libs/blockcountry-settings.php:
|
87 |
msgid "This ip is present in the blacklist."
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: libs/blockcountry-settings.php:
|
91 |
msgid "Check IP address"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: libs/blockcountry-settings.php:
|
95 |
msgid "Active plugins"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: libs/blockcountry-settings.php:
|
99 |
msgid "Plugin name"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: libs/blockcountry-settings.php:
|
103 |
msgid "Version"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: libs/blockcountry-settings.php:
|
107 |
-
#: libs/blockcountry-settings.php:
|
108 |
msgid "URL"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: libs/blockcountry-settings.php:
|
112 |
msgid "Export"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: libs/blockcountry-settings.php:
|
116 |
msgid ""
|
117 |
"When you click on <tt>Backup all settings</tt> button a backup of the iQ "
|
118 |
"Block Country configuration will be created."
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: libs/blockcountry-settings.php:
|
122 |
msgid ""
|
123 |
"After exporting, you can either use the backup file to restore your settings "
|
124 |
"on this site again or copy the settings to another WordPress site."
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: libs/blockcountry-settings.php:
|
128 |
msgid "Backup all settings"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: libs/blockcountry-settings.php:
|
132 |
msgid "Import"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: libs/blockcountry-settings.php:
|
136 |
msgid "Click the browse button and choose a zip file that you exported before."
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: libs/blockcountry-settings.php:
|
140 |
msgid "Press Restore settings button, and let WordPress do the magic for you."
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: libs/blockcountry-settings.php:
|
144 |
msgid "Restore settings"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: libs/blockcountry-settings.php:
|
148 |
-
#: libs/blockcountry-settings.php:
|
149 |
msgid "Something went wrong exporting this file"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: libs/blockcountry-settings.php:
|
153 |
msgid "Exporting settings..."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: libs/blockcountry-settings.php:
|
157 |
msgid "Something went wrong importing this file"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: libs/blockcountry-settings.php:
|
161 |
msgid "All options are restored successfully."
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: libs/blockcountry-settings.php:
|
165 |
msgid "Invalid file."
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: libs/blockcountry-settings.php:
|
169 |
msgid "No correct import or export option given."
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: libs/blockcountry-settings.php:
|
173 |
msgid "Select which pages are blocked."
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: libs/blockcountry-settings.php:
|
177 |
msgid "Do you want to block individual pages:"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: libs/blockcountry-settings.php:
|
181 |
msgid "If you do not select this option all pages will be blocked."
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: libs/blockcountry-settings.php:
|
185 |
msgid "Select pages you want to block:"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: libs/blockcountry-settings.php:
|
189 |
-
#: libs/blockcountry-settings.php:
|
190 |
-
#: libs/blockcountry-settings.php:
|
191 |
-
#: libs/blockcountry-settings.php:
|
192 |
msgid "Save Changes"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: libs/blockcountry-settings.php:
|
196 |
msgid "Select which categories are blocked."
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: libs/blockcountry-settings.php:
|
200 |
msgid "Do you want to block individual categories:"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: libs/blockcountry-settings.php:
|
204 |
msgid "If you do not select this option all blog articles will be blocked."
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: libs/blockcountry-settings.php:
|
208 |
msgid "Do you want to block the homepage:"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: libs/blockcountry-settings.php:
|
212 |
msgid ""
|
213 |
"If you do not select this option visitors will not be blocked from your "
|
214 |
"homepage regardless of the categories you select."
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: libs/blockcountry-settings.php:
|
218 |
msgid "Select categories you want to block:"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: libs/blockcountry-settings.php:
|
222 |
msgid "Select which post types are blocked."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: libs/blockcountry-settings.php:
|
226 |
msgid "Do you want to block individual post types:"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: libs/blockcountry-settings.php:
|
230 |
msgid "Select post types you want to block:"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: libs/blockcountry-settings.php:
|
234 |
msgid "Select which search engines are allowed."
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: libs/blockcountry-settings.php:
|
238 |
msgid "Select which search engines you want to allow:"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: libs/blockcountry-settings.php:
|
242 |
msgid ""
|
243 |
"This will allow a search engine to your site despite if you blocked the "
|
244 |
"country."
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: libs/blockcountry-settings.php:
|
248 |
msgid "Frontend options"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: libs/blockcountry-settings.php:
|
252 |
msgid ""
|
253 |
"Do not block visitors that are logged in from visiting frontend website:"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: libs/blockcountry-settings.php:
|
257 |
msgid "Block visitors from visiting the frontend of your website:"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: libs/blockcountry-settings.php:
|
261 |
msgid "Block visitors from using the search function of your website:"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: libs/blockcountry-settings.php:
|
265 |
msgid ""
|
266 |
"Select the countries that should be blocked from visiting your frontend:"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: libs/blockcountry-settings.php:
|
270 |
msgid "Use the CTRL key to select multiple countries"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: libs/blockcountry-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
msgid "Frontend whitelist IPv4 and/or IPv6 addresses:"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: libs/blockcountry-settings.php:
|
278 |
-
#: libs/blockcountry-settings.php:
|
279 |
msgid "Use a semicolon (;) to separate IP addresses"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: libs/blockcountry-settings.php:
|
283 |
msgid "Frontend blacklist IPv4 and/or IPv6 addresses:"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: libs/blockcountry-settings.php:
|
287 |
msgid "Backend Options"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: libs/blockcountry-settings.php:
|
291 |
msgid ""
|
292 |
"Block visitors from visiting the backend (administrator) of your website:"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: libs/blockcountry-settings.php:
|
296 |
msgid "Your IP address is"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: libs/blockcountry-settings.php:
|
300 |
msgid "The country that is listed for this IP address is"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: libs/blockcountry-settings.php:
|
304 |
msgid ""
|
305 |
"Do <strong>NOT</strong> set the 'Block visitors from visiting the backend "
|
306 |
"(administrator) of your website' and also select"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: libs/blockcountry-settings.php:
|
310 |
msgid "below."
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: libs/blockcountry-settings.php:
|
314 |
msgid ""
|
315 |
"You will NOT be able to login the next time if you DO block your own country "
|
316 |
"from visiting the backend."
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: libs/blockcountry-settings.php:
|
320 |
msgid "Select the countries that should be blocked from visiting your backend:"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: libs/blockcountry-settings.php:
|
324 |
msgid "Use the x behind the country to remove a country from this blocklist."
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: libs/blockcountry-settings.php:
|
328 |
msgid "Backend whitelist IPv4 and/or IPv6 addresses:"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: libs/blockcountry-settings.php:
|
332 |
msgid "Backend blacklist IPv4 and/or IPv6 addresses:"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: libs/blockcountry-settings.php:
|
336 |
msgid "Overall statistics since start"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: libs/blockcountry-settings.php:
|
340 |
msgid "visitors blocked from the backend."
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: libs/blockcountry-settings.php:
|
344 |
msgid "visitors blocked from the frontend."
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: libs/blockcountry-settings.php:
|
348 |
msgid "Basic Options"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: libs/blockcountry-settings.php:
|
352 |
msgid "Message to display when people are blocked:"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: libs/blockcountry-settings.php:
|
356 |
msgid "Page to redirect to:"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: libs/blockcountry-settings.php:
|
360 |
msgid ""
|
361 |
"If you select a page here blocked visitors will be redirected to this page "
|
362 |
"instead of displaying above block message."
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: libs/blockcountry-settings.php:
|
366 |
msgid "Choose a page..."
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: libs/blockcountry-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
370 |
msgid "Send headers when user is blocked:"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: libs/blockcountry-settings.php:
|
374 |
msgid ""
|
375 |
"Under normal circumstances you should keep this selected! Only if you have "
|
376 |
"\"Cannot modify header information - headers already sent\" errors or if you "
|
377 |
"know what you are doing uncheck this."
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: libs/blockcountry-settings.php:
|
381 |
msgid "Buffer output?:"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: libs/blockcountry-settings.php:
|
385 |
msgid ""
|
386 |
"You can use this option to buffer all output. This can be helpful in case "
|
387 |
"you have \"headers already sent\" issues."
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: libs/blockcountry-settings.php:
|
391 |
msgid "Do not log IP addresses:"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: libs/blockcountry-settings.php:
|
395 |
msgid ""
|
396 |
"Check this box if the laws in your country do not permit you to log IP "
|
397 |
"addresses or if you do not want to log the ip addresses."
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: libs/blockcountry-settings.php:
|
401 |
msgid "Number of rows on statistics page:"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: libs/blockcountry-settings.php:
|
405 |
msgid "How many rows do you want to display on each tab the statistics page."
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: libs/blockcountry-settings.php:
|
409 |
msgid "Allow tracking:"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: libs/blockcountry-settings.php:
|
413 |
msgid ""
|
414 |
"This sends only the IP address and the number of attempts this ip address "
|
415 |
"tried to login to your backend and was blocked doing so to a central server. "
|
@@ -417,141 +470,149 @@ msgid ""
|
|
417 |
"countries."
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: libs/blockcountry-settings.php:
|
421 |
msgid "GeoIP API Key:"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: libs/blockcountry-settings.php:
|
425 |
msgid ""
|
426 |
"If for some reason you cannot or do not want to download the MaxMind GeoIP "
|
427 |
"databases you will need an API key for the GeoIP api.<br />You can get an "
|
428 |
"API key from: "
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: libs/blockcountry-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
432 |
msgid "Admin block API Key:"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: libs/blockcountry-settings.php:
|
436 |
msgid ""
|
437 |
"This is an experimantal feature. You do not need an API key for this plugin "
|
438 |
"to work."
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: libs/blockcountry-settings.php:
|
442 |
msgid "Log all visits to the backend:"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: libs/blockcountry-settings.php:
|
446 |
msgid ""
|
447 |
"This logs all visits to the backend despite if they are blocked or not. This "
|
448 |
"is mainly for debugging purposes."
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: libs/blockcountry-settings.php:
|
452 |
msgid "Accessibility options:"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: libs/blockcountry-settings.php:
|
456 |
msgid "Set this option if you cannot use the default country selection box."
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: libs/blockcountry-settings.php:
|
460 |
msgid "Last blocked visits"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: libs/blockcountry-settings.php:
|
464 |
msgid "Date / Time"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: libs/blockcountry-settings.php:
|
468 |
msgid "IP Address"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: libs/blockcountry-settings.php:
|
472 |
msgid "Hostname"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: libs/blockcountry-settings.php:
|
476 |
msgid "Country"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: libs/blockcountry-settings.php:
|
480 |
msgid "Frontend/Backend"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: libs/blockcountry-settings.php:
|
484 |
msgid "Frontend"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: libs/blockcountry-settings.php:
|
488 |
msgid "Backend banlist"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: libs/blockcountry-settings.php:
|
492 |
msgid "Backend & Backend banlist"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: libs/blockcountry-settings.php:
|
496 |
msgid "Backend"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: libs/blockcountry-settings.php:
|
500 |
msgid "Top countries that are blocked"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: libs/blockcountry-settings.php:
|
504 |
-
#: libs/blockcountry-settings.php:
|
505 |
msgid "# of blocked attempts"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: libs/blockcountry-settings.php:
|
509 |
msgid "Top hosts that are blocked"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: libs/blockcountry-settings.php:
|
513 |
msgid "Top URLs that are blocked"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: libs/blockcountry-settings.php:
|
517 |
msgid "Clear database"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: libs/blockcountry-settings.php:
|
521 |
msgid ""
|
522 |
"You are not logging any information. Please uncheck the option 'Do not log "
|
523 |
"IP addresses' if this is not what you want."
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: libs/blockcountry-settings.php:
|
527 |
msgid "Home"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: libs/blockcountry-settings.php:
|
531 |
msgid "Pages"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: libs/blockcountry-settings.php:
|
535 |
msgid "Categories"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: libs/blockcountry-settings.php:
|
539 |
msgid "Post types"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: libs/blockcountry-settings.php:
|
543 |
msgid "Search Engines"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: libs/blockcountry-settings.php:
|
547 |
msgid "Tools"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: libs/blockcountry-settings.php:
|
551 |
msgid "Logging"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: libs/blockcountry-settings.php:
|
555 |
msgid "Import/Export"
|
556 |
msgstr ""
|
557 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: iQ Block Country\n"
|
4 |
+
"POT-Creation-Date: 2015-09-29 16:55+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-09-29 16:55+0100\n"
|
6 |
"Last-Translator: Pascal <pascal@redeo.nl>\n"
|
7 |
"Language-Team: iQ Block Country <info@redeo.nl>\n"
|
8 |
"Language: English\n"
|
15 |
"X-Poedit-SearchPath-0: libs\n"
|
16 |
"X-Poedit-SearchPath-1: .\n"
|
17 |
|
18 |
+
#: libs/blockcountry-validation.php:98
|
19 |
msgid "The GeoIP API key is incorrect. Please update the key."
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: libs/blockcountry-validation.php:104 libs/blockcountry-validation.php:151
|
23 |
+
msgid "Setting saved."
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: libs/blockcountry-validation.php:145
|
27 |
+
msgid "The Admin Block API key is incorrect. Please update the key."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: libs/blockcountry-retrieve-geodb.php:38
|
31 |
+
#: libs/blockcountry-retrieve-geodb.php:49
|
32 |
+
msgid "Error occured: Could not download the GeoIP database from"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
#: libs/blockcountry-validation.php:89
|
36 |
msgid "Setting saved."
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: libs/blockcountry-settings.php:51
|
40 |
+
msgid ""
|
41 |
+
"Please download this file from your own PC unzip this file and upload it "
|
42 |
+
"(via FTP for instance) to:"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: libs/blockcountry-retrieve-geodb.php:77
|
46 |
+
msgid "Finished downloading"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: libs/blockcountry-retrieve-geodb.php:85
|
50 |
+
msgid "Fatal error: GeoIP"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: libs/blockcountry-retrieve-geodb.php:85
|
54 |
+
msgid ""
|
55 |
+
"database does not exists. This plugin will not work until the database file "
|
56 |
+
"is present."
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
#: libs/blockcountry-settings.php:51
|
60 |
msgid ""
|
61 |
"The MaxMind GeoIP database does not exist. Please download this file "
|
78 |
msgid "For more detailed instructions take a look at the documentation.."
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: libs/blockcountry-settings.php:206
|
82 |
msgid ""
|
83 |
"Check which country belongs to an IP Address according to the current "
|
84 |
"database."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: libs/blockcountry-settings.php:211
|
88 |
msgid "IP Address to check:"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: libs/blockcountry-settings.php:227
|
92 |
msgid "No country for"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: libs/blockcountry-settings.php:227
|
96 |
msgid "could be found. Or"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: libs/blockcountry-settings.php:227
|
100 |
msgid "is not a valid IPv4 or IPv6 IP address"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: libs/blockcountry-settings.php:232
|
104 |
msgid "IP Adress"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: libs/blockcountry-settings.php:232
|
108 |
msgid "belongs to"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: libs/blockcountry-settings.php:238 libs/blockcountry-settings.php:243
|
112 |
msgid "This country is not permitted to visit the frontend of this website."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: libs/blockcountry-settings.php:252 libs/blockcountry-settings.php:259
|
116 |
msgid "This country is not permitted to visit the backend of this website."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: libs/blockcountry-settings.php:265
|
120 |
msgid "This ip is present in the blacklist."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: libs/blockcountry-settings.php:271
|
124 |
msgid "Check IP address"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: libs/blockcountry-settings.php:277
|
128 |
msgid "Active plugins"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: libs/blockcountry-settings.php:284
|
132 |
msgid "Plugin name"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: libs/blockcountry-settings.php:284
|
136 |
msgid "Version"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: libs/blockcountry-settings.php:284 libs/blockcountry-settings.php:1083
|
140 |
+
#: libs/blockcountry-settings.php:1126
|
141 |
msgid "URL"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: libs/blockcountry-settings.php:309
|
145 |
msgid "Export"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: libs/blockcountry-settings.php:310
|
149 |
msgid ""
|
150 |
"When you click on <tt>Backup all settings</tt> button a backup of the iQ "
|
151 |
"Block Country configuration will be created."
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: libs/blockcountry-settings.php:311
|
155 |
msgid ""
|
156 |
"After exporting, you can either use the backup file to restore your settings "
|
157 |
"on this site again or copy the settings to another WordPress site."
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: libs/blockcountry-settings.php:315
|
161 |
msgid "Backup all settings"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: libs/blockcountry-settings.php:322
|
165 |
msgid "Import"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: libs/blockcountry-settings.php:323
|
169 |
msgid "Click the browse button and choose a zip file that you exported before."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: libs/blockcountry-settings.php:324
|
173 |
msgid "Press Restore settings button, and let WordPress do the magic for you."
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: libs/blockcountry-settings.php:329
|
177 |
msgid "Restore settings"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: libs/blockcountry-settings.php:352 libs/blockcountry-settings.php:355
|
181 |
+
#: libs/blockcountry-settings.php:364
|
182 |
msgid "Something went wrong exporting this file"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: libs/blockcountry-settings.php:367
|
186 |
msgid "Exporting settings..."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: libs/blockcountry-settings.php:382
|
190 |
msgid "Something went wrong importing this file"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: libs/blockcountry-settings.php:399
|
194 |
msgid "All options are restored successfully."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: libs/blockcountry-settings.php:402
|
198 |
msgid "Invalid file."
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: libs/blockcountry-settings.php:407
|
202 |
msgid "No correct import or export option given."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: libs/blockcountry-settings.php:416
|
206 |
msgid "Select which pages are blocked."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: libs/blockcountry-settings.php:423
|
210 |
msgid "Do you want to block individual pages:"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: libs/blockcountry-settings.php:424
|
214 |
msgid "If you do not select this option all pages will be blocked."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: libs/blockcountry-settings.php:429
|
218 |
msgid "Select pages you want to block:"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: libs/blockcountry-settings.php:451 libs/blockcountry-settings.php:505
|
222 |
+
#: libs/blockcountry-settings.php:553 libs/blockcountry-settings.php:598
|
223 |
+
#: libs/blockcountry-settings.php:726 libs/blockcountry-settings.php:858
|
224 |
+
#: libs/blockcountry-settings.php:1051
|
225 |
msgid "Save Changes"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: libs/blockcountry-settings.php:464
|
229 |
msgid "Select which categories are blocked."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: libs/blockcountry-settings.php:471
|
233 |
msgid "Do you want to block individual categories:"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: libs/blockcountry-settings.php:472
|
237 |
msgid "If you do not select this option all blog articles will be blocked."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: libs/blockcountry-settings.php:477
|
241 |
msgid "Do you want to block the homepage:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: libs/blockcountry-settings.php:478
|
245 |
msgid ""
|
246 |
"If you do not select this option visitors will not be blocked from your "
|
247 |
"homepage regardless of the categories you select."
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: libs/blockcountry-settings.php:483
|
251 |
msgid "Select categories you want to block:"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: libs/blockcountry-settings.php:519
|
255 |
msgid "Select which post types are blocked."
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: libs/blockcountry-settings.php:526
|
259 |
msgid "Do you want to block individual post types:"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: libs/blockcountry-settings.php:531
|
263 |
msgid "Select post types you want to block:"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: libs/blockcountry-settings.php:568
|
267 |
msgid "Select which search engines are allowed."
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: libs/blockcountry-settings.php:575
|
271 |
msgid "Select which search engines you want to allow:"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: libs/blockcountry-settings.php:576
|
275 |
msgid ""
|
276 |
"This will allow a search engine to your site despite if you blocked the "
|
277 |
"country."
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: libs/blockcountry-settings.php:613
|
281 |
msgid "Frontend options"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: libs/blockcountry-settings.php:647
|
285 |
msgid ""
|
286 |
"Do not block visitors that are logged in from visiting frontend website:"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: libs/blockcountry-settings.php:653
|
290 |
msgid "Block visitors from visiting the frontend of your website:"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: libs/blockcountry-settings.php:659
|
294 |
msgid "Block visitors from using the search function of your website:"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: libs/blockcountry-settings.php:665
|
298 |
msgid ""
|
299 |
"Select the countries that should be blocked from visiting your frontend:"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: libs/blockcountry-settings.php:666
|
303 |
msgid "Use the CTRL key to select multiple countries"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: libs/blockcountry-settings.php:703 libs/blockcountry-settings.php:834
|
307 |
+
msgid "Inverse the selection above:"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: libs/blockcountry-settings.php:704 libs/blockcountry-settings.php:835
|
311 |
+
msgid ""
|
312 |
+
"If you select this option only the countries that are selected are "
|
313 |
+
"<em>allowed</em>."
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: libs/blockcountry-settings.php:709
|
317 |
msgid "Frontend whitelist IPv4 and/or IPv6 addresses:"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: libs/blockcountry-settings.php:709 libs/blockcountry-settings.php:717
|
321 |
+
#: libs/blockcountry-settings.php:841 libs/blockcountry-settings.php:849
|
322 |
msgid "Use a semicolon (;) to separate IP addresses"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: libs/blockcountry-settings.php:717
|
326 |
msgid "Frontend blacklist IPv4 and/or IPv6 addresses:"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: libs/blockcountry-settings.php:746
|
330 |
msgid "Backend Options"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: libs/blockcountry-settings.php:780
|
334 |
msgid ""
|
335 |
"Block visitors from visiting the backend (administrator) of your website:"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: libs/blockcountry-settings.php:788
|
339 |
msgid "Your IP address is"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: libs/blockcountry-settings.php:788
|
343 |
msgid "The country that is listed for this IP address is"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: libs/blockcountry-settings.php:789
|
347 |
msgid ""
|
348 |
"Do <strong>NOT</strong> set the 'Block visitors from visiting the backend "
|
349 |
"(administrator) of your website' and also select"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: libs/blockcountry-settings.php:789
|
353 |
msgid "below."
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: libs/blockcountry-settings.php:790
|
357 |
msgid ""
|
358 |
"You will NOT be able to login the next time if you DO block your own country "
|
359 |
"from visiting the backend."
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: libs/blockcountry-settings.php:795
|
363 |
msgid "Select the countries that should be blocked from visiting your backend:"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: libs/blockcountry-settings.php:796
|
367 |
msgid "Use the x behind the country to remove a country from this blocklist."
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: libs/blockcountry-settings.php:841
|
371 |
msgid "Backend whitelist IPv4 and/or IPv6 addresses:"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: libs/blockcountry-settings.php:849
|
375 |
msgid "Backend blacklist IPv4 and/or IPv6 addresses:"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: libs/blockcountry-settings.php:879
|
379 |
msgid "Overall statistics since start"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: libs/blockcountry-settings.php:882
|
383 |
msgid "visitors blocked from the backend."
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: libs/blockcountry-settings.php:884
|
387 |
msgid "visitors blocked from the frontend."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: libs/blockcountry-settings.php:888
|
391 |
msgid "Basic Options"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: libs/blockcountry-settings.php:923
|
395 |
msgid "Message to display when people are blocked:"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: libs/blockcountry-settings.php:934
|
399 |
msgid "Page to redirect to:"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: libs/blockcountry-settings.php:935
|
403 |
msgid ""
|
404 |
"If you select a page here blocked visitors will be redirected to this page "
|
405 |
"instead of displaying above block message."
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: libs/blockcountry-settings.php:941
|
409 |
msgid "Choose a page..."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: libs/blockcountry-settings.php:956
|
413 |
+
msgid "URL to redirect to:"
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: libs/blockcountry-settings.php:957
|
417 |
+
msgid ""
|
418 |
+
"If you enter a URL here blocked visitors will be redirected to this URL "
|
419 |
+
"instead of displaying above block message or redirected to a local page."
|
420 |
+
msgstr ""
|
421 |
+
|
422 |
+
#: libs/blockcountry-settings.php:964
|
423 |
msgid "Send headers when user is blocked:"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: libs/blockcountry-settings.php:965
|
427 |
msgid ""
|
428 |
"Under normal circumstances you should keep this selected! Only if you have "
|
429 |
"\"Cannot modify header information - headers already sent\" errors or if you "
|
430 |
"know what you are doing uncheck this."
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: libs/blockcountry-settings.php:971
|
434 |
msgid "Buffer output?:"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: libs/blockcountry-settings.php:972
|
438 |
msgid ""
|
439 |
"You can use this option to buffer all output. This can be helpful in case "
|
440 |
"you have \"headers already sent\" issues."
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: libs/blockcountry-settings.php:978
|
444 |
msgid "Do not log IP addresses:"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: libs/blockcountry-settings.php:979
|
448 |
msgid ""
|
449 |
"Check this box if the laws in your country do not permit you to log IP "
|
450 |
"addresses or if you do not want to log the ip addresses."
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: libs/blockcountry-settings.php:986
|
454 |
msgid "Number of rows on statistics page:"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: libs/blockcountry-settings.php:987
|
458 |
msgid "How many rows do you want to display on each tab the statistics page."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: libs/blockcountry-settings.php:1002
|
462 |
msgid "Allow tracking:"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: libs/blockcountry-settings.php:1003
|
466 |
msgid ""
|
467 |
"This sends only the IP address and the number of attempts this ip address "
|
468 |
"tried to login to your backend and was blocked doing so to a central server. "
|
470 |
"countries."
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: libs/blockcountry-settings.php:1009
|
474 |
msgid "GeoIP API Key:"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: libs/blockcountry-settings.php:1010
|
478 |
msgid ""
|
479 |
"If for some reason you cannot or do not want to download the MaxMind GeoIP "
|
480 |
"databases you will need an API key for the GeoIP api.<br />You can get an "
|
481 |
"API key from: "
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: libs/blockcountry-settings.php:1018
|
485 |
+
msgid "GeoIP API Key Server Location:"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: libs/blockcountry-settings.php:1019
|
489 |
+
msgid "Choose a location closest to your own location."
|
490 |
+
msgstr ""
|
491 |
+
|
492 |
+
#: libs/blockcountry-settings.php:1027
|
493 |
msgid "Admin block API Key:"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: libs/blockcountry-settings.php:1028
|
497 |
msgid ""
|
498 |
"This is an experimantal feature. You do not need an API key for this plugin "
|
499 |
"to work."
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: libs/blockcountry-settings.php:1035
|
503 |
msgid "Log all visits to the backend:"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: libs/blockcountry-settings.php:1036
|
507 |
msgid ""
|
508 |
"This logs all visits to the backend despite if they are blocked or not. This "
|
509 |
"is mainly for debugging purposes."
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: libs/blockcountry-settings.php:1043
|
513 |
msgid "Accessibility options:"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: libs/blockcountry-settings.php:1044
|
517 |
msgid "Set this option if you cannot use the default country selection box."
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: libs/blockcountry-settings.php:1069
|
521 |
msgid "Last blocked visits"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: libs/blockcountry-settings.php:1083
|
525 |
msgid "Date / Time"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: libs/blockcountry-settings.php:1083 libs/blockcountry-settings.php:1115
|
529 |
msgid "IP Address"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: libs/blockcountry-settings.php:1083 libs/blockcountry-settings.php:1115
|
533 |
msgid "Hostname"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: libs/blockcountry-settings.php:1083 libs/blockcountry-settings.php:1102
|
537 |
msgid "Country"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: libs/blockcountry-settings.php:1083
|
541 |
msgid "Frontend/Backend"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: libs/blockcountry-settings.php:1093 libs/blockcountry-settings.php:1177
|
545 |
msgid "Frontend"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: libs/blockcountry-settings.php:1093
|
549 |
msgid "Backend banlist"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: libs/blockcountry-settings.php:1093
|
553 |
msgid "Backend & Backend banlist"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: libs/blockcountry-settings.php:1093 libs/blockcountry-settings.php:1178
|
557 |
msgid "Backend"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: libs/blockcountry-settings.php:1100
|
561 |
msgid "Top countries that are blocked"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: libs/blockcountry-settings.php:1102 libs/blockcountry-settings.php:1115
|
565 |
+
#: libs/blockcountry-settings.php:1126
|
566 |
msgid "# of blocked attempts"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: libs/blockcountry-settings.php:1113
|
570 |
msgid "Top hosts that are blocked"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: libs/blockcountry-settings.php:1124
|
574 |
msgid "Top URLs that are blocked"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: libs/blockcountry-settings.php:1138
|
578 |
msgid "Clear database"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: libs/blockcountry-settings.php:1154
|
582 |
msgid ""
|
583 |
"You are not logging any information. Please uncheck the option 'Do not log "
|
584 |
"IP addresses' if this is not what you want."
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: libs/blockcountry-settings.php:1176
|
588 |
msgid "Home"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: libs/blockcountry-settings.php:1179
|
592 |
msgid "Pages"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: libs/blockcountry-settings.php:1180
|
596 |
msgid "Categories"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: libs/blockcountry-settings.php:1181
|
600 |
msgid "Post types"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: libs/blockcountry-settings.php:1182
|
604 |
msgid "Search Engines"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: libs/blockcountry-settings.php:1183
|
608 |
msgid "Tools"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: libs/blockcountry-settings.php:1184
|
612 |
msgid "Logging"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: libs/blockcountry-settings.php:1185
|
616 |
msgid "Import/Export"
|
617 |
msgstr ""
|
618 |
|
lang/iqblockcountry-nl_NL.mo
CHANGED
Binary file
|
lang/iqblockcountry-nl_NL.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: iQ Block Country\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: Pascal <pascal@redeo.nl>\n"
|
7 |
"Language-Team: iQ Block Country <info@redeo.nl>\n"
|
8 |
"Language: Dutch\n"
|
@@ -15,14 +15,51 @@ msgstr ""
|
|
15 |
"X-Poedit-SearchPath-0: libs\n"
|
16 |
"X-Poedit-SearchPath-1: .\n"
|
17 |
|
18 |
-
#: libs/blockcountry-validation.php:
|
19 |
msgid "The GeoIP API key is incorrect. Please update the key."
|
20 |
msgstr "De GeoIP API sleutel is incorrect. Corrigeer a.u.b. de sleutel."
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
#: libs/blockcountry-validation.php:89
|
23 |
msgid "Setting saved."
|
24 |
msgstr "Instellingen opgeslagen."
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
#: libs/blockcountry-settings.php:51
|
27 |
msgid ""
|
28 |
"The MaxMind GeoIP database does not exist. Please download this file "
|
@@ -48,77 +85,77 @@ msgstr "Indien je ook IPv6 gebruikt download dan a.u.b. ook de IPv6 database:"
|
|
48 |
msgid "For more detailed instructions take a look at the documentation.."
|
49 |
msgstr "Voor gedetaileerde instructies bekijk de documentatie."
|
50 |
|
51 |
-
#: libs/blockcountry-settings.php:
|
52 |
msgid ""
|
53 |
"Check which country belongs to an IP Address according to the current "
|
54 |
"database."
|
55 |
msgstr ""
|
56 |
"Controleer welk land behoort tot een IP adres volgens de huidige database."
|
57 |
|
58 |
-
#: libs/blockcountry-settings.php:
|
59 |
msgid "IP Address to check:"
|
60 |
msgstr "IP adres om te controleren:"
|
61 |
|
62 |
-
#: libs/blockcountry-settings.php:
|
63 |
msgid "No country for"
|
64 |
msgstr "Geen land voor"
|
65 |
|
66 |
-
#: libs/blockcountry-settings.php:
|
67 |
msgid "could be found. Or"
|
68 |
msgstr "gevonden. Of"
|
69 |
|
70 |
-
#: libs/blockcountry-settings.php:
|
71 |
msgid "is not a valid IPv4 or IPv6 IP address"
|
72 |
msgstr "is geen valide IPv4 of IPv6 ip adres."
|
73 |
|
74 |
-
#: libs/blockcountry-settings.php:
|
75 |
msgid "IP Adress"
|
76 |
msgstr "IP Adres"
|
77 |
|
78 |
-
#: libs/blockcountry-settings.php:
|
79 |
msgid "belongs to"
|
80 |
msgstr "behoort tot"
|
81 |
|
82 |
-
#: libs/blockcountry-settings.php:
|
83 |
msgid "This country is not permitted to visit the frontend of this website."
|
84 |
msgstr ""
|
85 |
"Dit land wordt niet toegestaan om de voorkant van deze website te bezoeken."
|
86 |
|
87 |
-
#: libs/blockcountry-settings.php:
|
88 |
msgid "This country is not permitted to visit the backend of this website."
|
89 |
msgstr ""
|
90 |
"Dit land wordt niet toegestaan om de achterkant van deze website te bezoeken."
|
91 |
|
92 |
-
#: libs/blockcountry-settings.php:
|
93 |
msgid "This ip is present in the blacklist."
|
94 |
msgstr "Dit ip adres staat op de zwarte lijst"
|
95 |
|
96 |
-
#: libs/blockcountry-settings.php:
|
97 |
msgid "Check IP address"
|
98 |
msgstr "Controleer IP adres"
|
99 |
|
100 |
-
#: libs/blockcountry-settings.php:
|
101 |
msgid "Active plugins"
|
102 |
msgstr "Actieve plugins"
|
103 |
|
104 |
-
#: libs/blockcountry-settings.php:
|
105 |
msgid "Plugin name"
|
106 |
msgstr "Plugin naam"
|
107 |
|
108 |
-
#: libs/blockcountry-settings.php:
|
109 |
msgid "Version"
|
110 |
msgstr "Versie"
|
111 |
|
112 |
-
#: libs/blockcountry-settings.php:
|
113 |
-
#: libs/blockcountry-settings.php:
|
114 |
msgid "URL"
|
115 |
msgstr "URL"
|
116 |
|
117 |
-
#: libs/blockcountry-settings.php:
|
118 |
msgid "Export"
|
119 |
msgstr "Exporteren"
|
120 |
|
121 |
-
#: libs/blockcountry-settings.php:
|
122 |
msgid ""
|
123 |
"When you click on <tt>Backup all settings</tt> button a backup of the iQ "
|
124 |
"Block Country configuration will be created."
|
@@ -126,7 +163,7 @@ msgstr ""
|
|
126 |
"Wanneer je klikt op de <tt>Backup alle instellingen</tt> knop zal een backup "
|
127 |
"van alle iQ Block Country instellingen worden gecreerd."
|
128 |
|
129 |
-
#: libs/blockcountry-settings.php:
|
130 |
msgid ""
|
131 |
"After exporting, you can either use the backup file to restore your settings "
|
132 |
"on this site again or copy the settings to another WordPress site."
|
@@ -135,96 +172,96 @@ msgstr ""
|
|
135 |
"te herstellen of je kunt het bestand gebruiken om je instellingen naar een "
|
136 |
"andere WordPress site te exporteren."
|
137 |
|
138 |
-
#: libs/blockcountry-settings.php:
|
139 |
msgid "Backup all settings"
|
140 |
msgstr "Backup alle instellingen"
|
141 |
|
142 |
-
#: libs/blockcountry-settings.php:
|
143 |
msgid "Import"
|
144 |
msgstr "Importeer"
|
145 |
|
146 |
-
#: libs/blockcountry-settings.php:
|
147 |
msgid "Click the browse button and choose a zip file that you exported before."
|
148 |
msgstr ""
|
149 |
"Klik op de Browse button and selecteer een zip file welke je eerder hebt "
|
150 |
"geexporteerd."
|
151 |
|
152 |
-
#: libs/blockcountry-settings.php:
|
153 |
msgid "Press Restore settings button, and let WordPress do the magic for you."
|
154 |
msgstr ""
|
155 |
"Druk op de herstel instellingen knop en laat WordPress haar magie voor je "
|
156 |
"doen."
|
157 |
|
158 |
-
#: libs/blockcountry-settings.php:
|
159 |
msgid "Restore settings"
|
160 |
msgstr "Herstel instellingen"
|
161 |
|
162 |
-
#: libs/blockcountry-settings.php:
|
163 |
-
#: libs/blockcountry-settings.php:
|
164 |
msgid "Something went wrong exporting this file"
|
165 |
msgstr "Er is iets verkeerd gegaan met het exporteren van het bestand."
|
166 |
|
167 |
-
#: libs/blockcountry-settings.php:
|
168 |
msgid "Exporting settings..."
|
169 |
msgstr "Exporteer instellingen"
|
170 |
|
171 |
-
#: libs/blockcountry-settings.php:
|
172 |
msgid "Something went wrong importing this file"
|
173 |
msgstr "Er is iets verkeerd gegaan met het importeren van dit bestand"
|
174 |
|
175 |
-
#: libs/blockcountry-settings.php:
|
176 |
msgid "All options are restored successfully."
|
177 |
msgstr "Alle opties zijn succesvol hersteld"
|
178 |
|
179 |
-
#: libs/blockcountry-settings.php:
|
180 |
msgid "Invalid file."
|
181 |
msgstr "Ongeldig bestand"
|
182 |
|
183 |
-
#: libs/blockcountry-settings.php:
|
184 |
msgid "No correct import or export option given."
|
185 |
msgstr "Geen correcte importeer of exporteer optie gegeven."
|
186 |
|
187 |
-
#: libs/blockcountry-settings.php:
|
188 |
msgid "Select which pages are blocked."
|
189 |
msgstr "Selecteer welke pagina's geblokkeerd worden."
|
190 |
|
191 |
-
#: libs/blockcountry-settings.php:
|
192 |
msgid "Do you want to block individual pages:"
|
193 |
msgstr "Wil je individuele pagina's blokkeren:"
|
194 |
|
195 |
-
#: libs/blockcountry-settings.php:
|
196 |
msgid "If you do not select this option all pages will be blocked."
|
197 |
msgstr "Indien je deze optie niet selecteert worden alle pagina's geblokkeerd."
|
198 |
|
199 |
-
#: libs/blockcountry-settings.php:
|
200 |
msgid "Select pages you want to block:"
|
201 |
msgstr "Selecteer welke pagina's je wil blokkeren."
|
202 |
|
203 |
-
#: libs/blockcountry-settings.php:
|
204 |
-
#: libs/blockcountry-settings.php:
|
205 |
-
#: libs/blockcountry-settings.php:
|
206 |
-
#: libs/blockcountry-settings.php:
|
207 |
msgid "Save Changes"
|
208 |
msgstr "Bewaar wijzigingen"
|
209 |
|
210 |
-
#: libs/blockcountry-settings.php:
|
211 |
msgid "Select which categories are blocked."
|
212 |
msgstr "Selecteer welke categorieen geblokkeerd worden."
|
213 |
|
214 |
-
#: libs/blockcountry-settings.php:
|
215 |
msgid "Do you want to block individual categories:"
|
216 |
msgstr "Wil je individuele categorieen blokkeren:"
|
217 |
|
218 |
-
#: libs/blockcountry-settings.php:
|
219 |
msgid "If you do not select this option all blog articles will be blocked."
|
220 |
msgstr ""
|
221 |
"Indien je deze optie niet selecteert worden alle blog artikelen geblokkeerd."
|
222 |
|
223 |
-
#: libs/blockcountry-settings.php:
|
224 |
msgid "Do you want to block the homepage:"
|
225 |
msgstr "Wil je je homepage blokkeren:"
|
226 |
|
227 |
-
#: libs/blockcountry-settings.php:
|
228 |
msgid ""
|
229 |
"If you do not select this option visitors will not be blocked from your "
|
230 |
"homepage regardless of the categories you select."
|
@@ -233,31 +270,31 @@ msgstr ""
|
|
233 |
"geblokkeerd van het bezoeken van je homepagina ongeacht welke categorieen je "
|
234 |
"selecteert."
|
235 |
|
236 |
-
#: libs/blockcountry-settings.php:
|
237 |
msgid "Select categories you want to block:"
|
238 |
msgstr "Selecteer welke categorieen je wil blokkeren."
|
239 |
|
240 |
-
#: libs/blockcountry-settings.php:
|
241 |
msgid "Select which post types are blocked."
|
242 |
msgstr "Selecteer welke post types geblokkeerd worden."
|
243 |
|
244 |
-
#: libs/blockcountry-settings.php:
|
245 |
msgid "Do you want to block individual post types:"
|
246 |
msgstr "Wil je individuele post types blokkeren:"
|
247 |
|
248 |
-
#: libs/blockcountry-settings.php:
|
249 |
msgid "Select post types you want to block:"
|
250 |
msgstr "Selecteer welke post types je wil blokkeren."
|
251 |
|
252 |
-
#: libs/blockcountry-settings.php:
|
253 |
msgid "Select which search engines are allowed."
|
254 |
msgstr "Selecteer welke zoek machines je wilt toestaan."
|
255 |
|
256 |
-
#: libs/blockcountry-settings.php:
|
257 |
msgid "Select which search engines you want to allow:"
|
258 |
msgstr "Selecteer welke zoek machines je wilt toestaan:"
|
259 |
|
260 |
-
#: libs/blockcountry-settings.php:
|
261 |
msgid ""
|
262 |
"This will allow a search engine to your site despite if you blocked the "
|
263 |
"country."
|
@@ -265,71 +302,83 @@ msgstr ""
|
|
265 |
"Deze optie staat het toe dat zoekmachines je site bezoeken ondanks dat ze "
|
266 |
"uit een land komen welk geblokkeerd is."
|
267 |
|
268 |
-
#: libs/blockcountry-settings.php:
|
269 |
msgid "Frontend options"
|
270 |
msgstr "Voorkant opties"
|
271 |
|
272 |
-
#: libs/blockcountry-settings.php:
|
273 |
msgid ""
|
274 |
"Do not block visitors that are logged in from visiting frontend website:"
|
275 |
msgstr ""
|
276 |
"Blokkeer geen bezoekers welke ingelogd zijn van het bezoeken van de voorkant:"
|
277 |
|
278 |
-
#: libs/blockcountry-settings.php:
|
279 |
msgid "Block visitors from visiting the frontend of your website:"
|
280 |
msgstr "Blokkeer bezoekers van het bezoeken van de voorkant van je website:"
|
281 |
|
282 |
-
#: libs/blockcountry-settings.php:
|
283 |
msgid "Block visitors from using the search function of your website:"
|
284 |
msgstr ""
|
285 |
"Blokkeer bezoekers van het bezoeken van de zoek functie van je website:"
|
286 |
|
287 |
-
#: libs/blockcountry-settings.php:
|
288 |
msgid ""
|
289 |
"Select the countries that should be blocked from visiting your frontend:"
|
290 |
msgstr ""
|
291 |
"Selecteer de landen welke geblokkeerd moeten worden voor het bezoeken van de "
|
292 |
"voorkant van je website:"
|
293 |
|
294 |
-
#: libs/blockcountry-settings.php:
|
295 |
msgid "Use the CTRL key to select multiple countries"
|
296 |
msgstr "Gebruik de CTRL toets om meerdere landen te selecteren"
|
297 |
|
298 |
-
#: libs/blockcountry-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
299 |
msgid "Frontend whitelist IPv4 and/or IPv6 addresses:"
|
300 |
msgstr ""
|
301 |
"Whitelist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
|
302 |
|
303 |
-
#: libs/blockcountry-settings.php:
|
304 |
-
#: libs/blockcountry-settings.php:
|
305 |
msgid "Use a semicolon (;) to separate IP addresses"
|
306 |
msgstr "Gebruik een puntkomma (;) om adressen van elkaar te scheiden"
|
307 |
|
308 |
-
#: libs/blockcountry-settings.php:
|
309 |
msgid "Frontend blacklist IPv4 and/or IPv6 addresses:"
|
310 |
msgstr ""
|
311 |
"Blacklist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
|
312 |
|
313 |
-
#: libs/blockcountry-settings.php:
|
314 |
msgid "Backend Options"
|
315 |
msgstr "Achterkant opties"
|
316 |
|
317 |
-
#: libs/blockcountry-settings.php:
|
318 |
msgid ""
|
319 |
"Block visitors from visiting the backend (administrator) of your website:"
|
320 |
msgstr ""
|
321 |
"Blokkeer bezoekers van het bezoeken van de achterkant (administratie "
|
322 |
"gedeelte) van je website:"
|
323 |
|
324 |
-
#: libs/blockcountry-settings.php:
|
325 |
msgid "Your IP address is"
|
326 |
msgstr "Je IP adres is"
|
327 |
|
328 |
-
#: libs/blockcountry-settings.php:
|
329 |
msgid "The country that is listed for this IP address is"
|
330 |
msgstr "Het land waar dit adres toe behoort is"
|
331 |
|
332 |
-
#: libs/blockcountry-settings.php:
|
333 |
msgid ""
|
334 |
"Do <strong>NOT</strong> set the 'Block visitors from visiting the backend "
|
335 |
"(administrator) of your website' and also select"
|
@@ -337,11 +386,11 @@ msgstr ""
|
|
337 |
"Selecteer <strong>NIET</strong> \"Blokkeer bezoekers van het bezoeken van de "
|
338 |
"achterkant (administratie gedeelte) van je website\" en"
|
339 |
|
340 |
-
#: libs/blockcountry-settings.php:
|
341 |
msgid "below."
|
342 |
msgstr "hier beneden."
|
343 |
|
344 |
-
#: libs/blockcountry-settings.php:
|
345 |
msgid ""
|
346 |
"You will NOT be able to login the next time if you DO block your own country "
|
347 |
"from visiting the backend."
|
@@ -349,52 +398,52 @@ msgstr ""
|
|
349 |
"Het zal daarna niet meer mogelijk zijn om nog in te loggen als je je eigen "
|
350 |
"land blokkeert van het bezoeken van de achterkant van je website."
|
351 |
|
352 |
-
#: libs/blockcountry-settings.php:
|
353 |
msgid "Select the countries that should be blocked from visiting your backend:"
|
354 |
msgstr ""
|
355 |
"Selecteer de landen welke geblokkeerd moeten worden voor het bezoeken van de "
|
356 |
"achterkant (administratie gedeelte) van je website:"
|
357 |
|
358 |
-
#: libs/blockcountry-settings.php:
|
359 |
msgid "Use the x behind the country to remove a country from this blocklist."
|
360 |
msgstr ""
|
361 |
"Gebruik de x achter een land om het land te verwijderen uit deze lijst."
|
362 |
|
363 |
-
#: libs/blockcountry-settings.php:
|
364 |
msgid "Backend whitelist IPv4 and/or IPv6 addresses:"
|
365 |
msgstr ""
|
366 |
"Whitelist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
|
367 |
|
368 |
-
#: libs/blockcountry-settings.php:
|
369 |
msgid "Backend blacklist IPv4 and/or IPv6 addresses:"
|
370 |
msgstr ""
|
371 |
"Blacklist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
|
372 |
|
373 |
-
#: libs/blockcountry-settings.php:
|
374 |
msgid "Overall statistics since start"
|
375 |
msgstr "Statistieken sinds het begin"
|
376 |
|
377 |
-
#: libs/blockcountry-settings.php:
|
378 |
msgid "visitors blocked from the backend."
|
379 |
msgstr "bezoekers geblokkeerd op de achterkant."
|
380 |
|
381 |
-
#: libs/blockcountry-settings.php:
|
382 |
msgid "visitors blocked from the frontend."
|
383 |
msgstr "bezoekers geblokkeerd op de voorkant."
|
384 |
|
385 |
-
#: libs/blockcountry-settings.php:
|
386 |
msgid "Basic Options"
|
387 |
msgstr "Standaard opties"
|
388 |
|
389 |
-
#: libs/blockcountry-settings.php:
|
390 |
msgid "Message to display when people are blocked:"
|
391 |
msgstr "Welk bericht wil je tonen aan bezoekers welke geblokkeerd worden:"
|
392 |
|
393 |
-
#: libs/blockcountry-settings.php:
|
394 |
msgid "Page to redirect to:"
|
395 |
msgstr "Naar welke pagina wilt u bezoekers toesturen:"
|
396 |
|
397 |
-
#: libs/blockcountry-settings.php:
|
398 |
msgid ""
|
399 |
"If you select a page here blocked visitors will be redirected to this page "
|
400 |
"instead of displaying above block message."
|
@@ -403,15 +452,28 @@ msgstr ""
|
|
403 |
"doorgestuurd naar deze pagina anders wordt bovestaande tekst getoond aan "
|
404 |
"bezoekers."
|
405 |
|
406 |
-
#: libs/blockcountry-settings.php:
|
407 |
msgid "Choose a page..."
|
408 |
msgstr "Kies een pagina..."
|
409 |
|
410 |
-
#: libs/blockcountry-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
411 |
msgid "Send headers when user is blocked:"
|
412 |
msgstr "Stuur headers wanneer een gebruiker is geblokkeerd:"
|
413 |
|
414 |
-
#: libs/blockcountry-settings.php:
|
415 |
msgid ""
|
416 |
"Under normal circumstances you should keep this selected! Only if you have "
|
417 |
"\"Cannot modify header information - headers already sent\" errors or if you "
|
@@ -421,11 +483,11 @@ msgstr ""
|
|
421 |
"deze alleen indien je \"Cannot modify header information - headers already "
|
422 |
"sent\" foutmeldingen krijgt of indien je weet wat je doet."
|
423 |
|
424 |
-
#: libs/blockcountry-settings.php:
|
425 |
msgid "Buffer output?:"
|
426 |
msgstr "Buffer output?"
|
427 |
|
428 |
-
#: libs/blockcountry-settings.php:
|
429 |
msgid ""
|
430 |
"You can use this option to buffer all output. This can be helpful in case "
|
431 |
"you have \"headers already sent\" issues."
|
@@ -433,11 +495,11 @@ msgstr ""
|
|
433 |
"Je kunt deze optie gebruiken om alle output te bufferen. Dit kan helpen "
|
434 |
"indien je \"headers already sent\" problemen hebt."
|
435 |
|
436 |
-
#: libs/blockcountry-settings.php:
|
437 |
msgid "Do not log IP addresses:"
|
438 |
msgstr "Log geen IP adressen"
|
439 |
|
440 |
-
#: libs/blockcountry-settings.php:
|
441 |
msgid ""
|
442 |
"Check this box if the laws in your country do not permit you to log IP "
|
443 |
"addresses or if you do not want to log the ip addresses."
|
@@ -446,19 +508,19 @@ msgstr ""
|
|
446 |
"adressen vast te leggen of indien je zelf deze informatie niet wilt "
|
447 |
"vastleggen."
|
448 |
|
449 |
-
#: libs/blockcountry-settings.php:
|
450 |
msgid "Number of rows on statistics page:"
|
451 |
msgstr "Aantal regels op de statistieken pagina:"
|
452 |
|
453 |
-
#: libs/blockcountry-settings.php:
|
454 |
msgid "How many rows do you want to display on each tab the statistics page."
|
455 |
msgstr "Hoeveel regels wil je tonen op de statistieken pagina."
|
456 |
|
457 |
-
#: libs/blockcountry-settings.php:
|
458 |
msgid "Allow tracking:"
|
459 |
msgstr "Sta traceren toe:"
|
460 |
|
461 |
-
#: libs/blockcountry-settings.php:
|
462 |
msgid ""
|
463 |
"This sends only the IP address and the number of attempts this ip address "
|
464 |
"tried to login to your backend and was blocked doing so to a central server. "
|
@@ -471,11 +533,11 @@ msgstr ""
|
|
471 |
"ons om beter inzicht te krijgen in de landen waarvandaan een hoop hack "
|
472 |
"pogingen worden gedaan. "
|
473 |
|
474 |
-
#: libs/blockcountry-settings.php:
|
475 |
msgid "GeoIP API Key:"
|
476 |
msgstr "GeoIP API sleutel:"
|
477 |
|
478 |
-
#: libs/blockcountry-settings.php:
|
479 |
msgid ""
|
480 |
"If for some reason you cannot or do not want to download the MaxMind GeoIP "
|
481 |
"databases you will need an API key for the GeoIP api.<br />You can get an "
|
@@ -485,11 +547,19 @@ msgstr ""
|
|
485 |
"Maxmind GeoIP heb je een API sleutelnodig voor de GeoIP api.<br />Je kunt "
|
486 |
"een API sleutel verkrijgen op:"
|
487 |
|
488 |
-
#: libs/blockcountry-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
489 |
msgid "Admin block API Key:"
|
490 |
msgstr "Admin block API Sleutel:"
|
491 |
|
492 |
-
#: libs/blockcountry-settings.php:
|
493 |
msgid ""
|
494 |
"This is an experimantal feature. You do not need an API key for this plugin "
|
495 |
"to work."
|
@@ -497,11 +567,11 @@ msgstr ""
|
|
497 |
"Dit is een experimentele optie. Je hebt geen API key nodig om deze plugin te "
|
498 |
"laten werken."
|
499 |
|
500 |
-
#: libs/blockcountry-settings.php:
|
501 |
msgid "Log all visits to the backend:"
|
502 |
msgstr "Log alle bezoekers op de achterkant:"
|
503 |
|
504 |
-
#: libs/blockcountry-settings.php:
|
505 |
msgid ""
|
506 |
"This logs all visits to the backend despite if they are blocked or not. This "
|
507 |
"is mainly for debugging purposes."
|
@@ -509,78 +579,78 @@ msgstr ""
|
|
509 |
"Dit logt alle bezoeken aan de achterkant ongeacht of de bezoeker werd "
|
510 |
"geblokkeerd of niet. Dit is voornamelijk bedoeld voor fout opsporing."
|
511 |
|
512 |
-
#: libs/blockcountry-settings.php:
|
513 |
msgid "Accessibility options:"
|
514 |
msgstr "Toegankelijkheids opties:"
|
515 |
|
516 |
-
#: libs/blockcountry-settings.php:
|
517 |
msgid "Set this option if you cannot use the default country selection box."
|
518 |
msgstr ""
|
519 |
"Selecteer deze optie indien je de landen standaard selectie methode niet "
|
520 |
"kunt gebruiken. "
|
521 |
|
522 |
-
#: libs/blockcountry-settings.php:
|
523 |
msgid "Last blocked visits"
|
524 |
msgstr "Laatste geblokkeerde bezoekers"
|
525 |
|
526 |
-
#: libs/blockcountry-settings.php:
|
527 |
msgid "Date / Time"
|
528 |
msgstr "Datum / Tijd"
|
529 |
|
530 |
-
#: libs/blockcountry-settings.php:
|
531 |
msgid "IP Address"
|
532 |
msgstr "IP adres"
|
533 |
|
534 |
-
#: libs/blockcountry-settings.php:
|
535 |
msgid "Hostname"
|
536 |
msgstr "Hostnaam"
|
537 |
|
538 |
-
#: libs/blockcountry-settings.php:
|
539 |
msgid "Country"
|
540 |
msgstr "Land"
|
541 |
|
542 |
-
#: libs/blockcountry-settings.php:
|
543 |
msgid "Frontend/Backend"
|
544 |
msgstr "Voorkant/Achterkant"
|
545 |
|
546 |
-
#: libs/blockcountry-settings.php:
|
547 |
msgid "Frontend"
|
548 |
msgstr "Voorkant"
|
549 |
|
550 |
-
#: libs/blockcountry-settings.php:
|
551 |
msgid "Backend banlist"
|
552 |
msgstr "Achterkant banlist"
|
553 |
|
554 |
-
#: libs/blockcountry-settings.php:
|
555 |
msgid "Backend & Backend banlist"
|
556 |
msgstr "Achterkant & Achterkant banlist"
|
557 |
|
558 |
-
#: libs/blockcountry-settings.php:
|
559 |
msgid "Backend"
|
560 |
msgstr "Achterkant"
|
561 |
|
562 |
-
#: libs/blockcountry-settings.php:
|
563 |
msgid "Top countries that are blocked"
|
564 |
msgstr "Top landen welke zijn geblokkeerd"
|
565 |
|
566 |
-
#: libs/blockcountry-settings.php:
|
567 |
-
#: libs/blockcountry-settings.php:
|
568 |
msgid "# of blocked attempts"
|
569 |
msgstr "# of geblokkeerde pogingen"
|
570 |
|
571 |
-
#: libs/blockcountry-settings.php:
|
572 |
msgid "Top hosts that are blocked"
|
573 |
msgstr "Top hosts welke geblokkeerd zijn"
|
574 |
|
575 |
-
#: libs/blockcountry-settings.php:
|
576 |
msgid "Top URLs that are blocked"
|
577 |
msgstr "Top URLs welke geblokkeerd zijn"
|
578 |
|
579 |
-
#: libs/blockcountry-settings.php:
|
580 |
msgid "Clear database"
|
581 |
msgstr "Leeg database"
|
582 |
|
583 |
-
#: libs/blockcountry-settings.php:
|
584 |
msgid ""
|
585 |
"You are not logging any information. Please uncheck the option 'Do not log "
|
586 |
"IP addresses' if this is not what you want."
|
@@ -588,35 +658,35 @@ msgstr ""
|
|
588 |
"Je logt geen informatie. Deselecteer alstublieft de optie 'Log geen IP "
|
589 |
"adressen' indien dit niet is wat je wilt."
|
590 |
|
591 |
-
#: libs/blockcountry-settings.php:
|
592 |
msgid "Home"
|
593 |
msgstr "Home"
|
594 |
|
595 |
-
#: libs/blockcountry-settings.php:
|
596 |
msgid "Pages"
|
597 |
msgstr "Pagina's"
|
598 |
|
599 |
-
#: libs/blockcountry-settings.php:
|
600 |
msgid "Categories"
|
601 |
msgstr "Categorieen"
|
602 |
|
603 |
-
#: libs/blockcountry-settings.php:
|
604 |
msgid "Post types"
|
605 |
msgstr "Post types"
|
606 |
|
607 |
-
#: libs/blockcountry-settings.php:
|
608 |
msgid "Search Engines"
|
609 |
msgstr "Zoek machines"
|
610 |
|
611 |
-
#: libs/blockcountry-settings.php:
|
612 |
msgid "Tools"
|
613 |
msgstr "Gereedschap"
|
614 |
|
615 |
-
#: libs/blockcountry-settings.php:
|
616 |
msgid "Logging"
|
617 |
msgstr "Statistieken"
|
618 |
|
619 |
-
#: libs/blockcountry-settings.php:
|
620 |
msgid "Import/Export"
|
621 |
msgstr "Importeren/Exporteren"
|
622 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: iQ Block Country\n"
|
4 |
+
"POT-Creation-Date: 2015-09-29 16:55+0100\n"
|
5 |
+
"PO-Revision-Date: 2015-09-29 16:58+0100\n"
|
6 |
"Last-Translator: Pascal <pascal@redeo.nl>\n"
|
7 |
"Language-Team: iQ Block Country <info@redeo.nl>\n"
|
8 |
"Language: Dutch\n"
|
15 |
"X-Poedit-SearchPath-0: libs\n"
|
16 |
"X-Poedit-SearchPath-1: .\n"
|
17 |
|
18 |
+
#: libs/blockcountry-validation.php:98
|
19 |
msgid "The GeoIP API key is incorrect. Please update the key."
|
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-retrieve-geodb.php:38
|
31 |
+
#: libs/blockcountry-retrieve-geodb.php:49
|
32 |
+
msgid "Error occured: Could not download the GeoIP database from"
|
33 |
+
msgstr "Uh oh: Kon de GeoIP database niet downloaden van"
|
34 |
+
|
35 |
#: libs/blockcountry-validation.php:89
|
36 |
msgid "Setting saved."
|
37 |
msgstr "Instellingen opgeslagen."
|
38 |
|
39 |
+
#: libs/blockcountry-settings.php:51
|
40 |
+
msgid ""
|
41 |
+
"Please download this file from your own PC unzip this file and upload it "
|
42 |
+
"(via FTP for instance) to:"
|
43 |
+
msgstr ""
|
44 |
+
"Download dit bestand alsjeblieft naar je eigen PC. Pak het bestand daar uit "
|
45 |
+
"en upload deze (bijvoorbeeld via FTP) naar:"
|
46 |
+
|
47 |
+
#: libs/blockcountry-retrieve-geodb.php:77
|
48 |
+
msgid "Finished downloading"
|
49 |
+
msgstr "Klaar met downloaden"
|
50 |
+
|
51 |
+
#: libs/blockcountry-retrieve-geodb.php:85
|
52 |
+
msgid "Fatal error: GeoIP"
|
53 |
+
msgstr "Fatale fout: GeoIP"
|
54 |
+
|
55 |
+
#: libs/blockcountry-retrieve-geodb.php:85
|
56 |
+
msgid ""
|
57 |
+
"database does not exists. This plugin will not work until the database file "
|
58 |
+
"is present."
|
59 |
+
msgstr ""
|
60 |
+
"database bestaat niet. Deze plugin kan niet werken totdat deze database "
|
61 |
+
"beschikbaar is."
|
62 |
+
|
63 |
#: libs/blockcountry-settings.php:51
|
64 |
msgid ""
|
65 |
"The MaxMind GeoIP database does not exist. Please download this file "
|
85 |
msgid "For more detailed instructions take a look at the documentation.."
|
86 |
msgstr "Voor gedetaileerde instructies bekijk de documentatie."
|
87 |
|
88 |
+
#: libs/blockcountry-settings.php:206
|
89 |
msgid ""
|
90 |
"Check which country belongs to an IP Address according to the current "
|
91 |
"database."
|
92 |
msgstr ""
|
93 |
"Controleer welk land behoort tot een IP adres volgens de huidige database."
|
94 |
|
95 |
+
#: libs/blockcountry-settings.php:211
|
96 |
msgid "IP Address to check:"
|
97 |
msgstr "IP adres om te controleren:"
|
98 |
|
99 |
+
#: libs/blockcountry-settings.php:227
|
100 |
msgid "No country for"
|
101 |
msgstr "Geen land voor"
|
102 |
|
103 |
+
#: libs/blockcountry-settings.php:227
|
104 |
msgid "could be found. Or"
|
105 |
msgstr "gevonden. Of"
|
106 |
|
107 |
+
#: libs/blockcountry-settings.php:227
|
108 |
msgid "is not a valid IPv4 or IPv6 IP address"
|
109 |
msgstr "is geen valide IPv4 of IPv6 ip adres."
|
110 |
|
111 |
+
#: libs/blockcountry-settings.php:232
|
112 |
msgid "IP Adress"
|
113 |
msgstr "IP Adres"
|
114 |
|
115 |
+
#: libs/blockcountry-settings.php:232
|
116 |
msgid "belongs to"
|
117 |
msgstr "behoort tot"
|
118 |
|
119 |
+
#: libs/blockcountry-settings.php:238 libs/blockcountry-settings.php:243
|
120 |
msgid "This country is not permitted to visit the frontend of this website."
|
121 |
msgstr ""
|
122 |
"Dit land wordt niet toegestaan om de voorkant van deze website te bezoeken."
|
123 |
|
124 |
+
#: libs/blockcountry-settings.php:252 libs/blockcountry-settings.php:259
|
125 |
msgid "This country is not permitted to visit the backend of this website."
|
126 |
msgstr ""
|
127 |
"Dit land wordt niet toegestaan om de achterkant van deze website te bezoeken."
|
128 |
|
129 |
+
#: libs/blockcountry-settings.php:265
|
130 |
msgid "This ip is present in the blacklist."
|
131 |
msgstr "Dit ip adres staat op de zwarte lijst"
|
132 |
|
133 |
+
#: libs/blockcountry-settings.php:271
|
134 |
msgid "Check IP address"
|
135 |
msgstr "Controleer IP adres"
|
136 |
|
137 |
+
#: libs/blockcountry-settings.php:277
|
138 |
msgid "Active plugins"
|
139 |
msgstr "Actieve plugins"
|
140 |
|
141 |
+
#: libs/blockcountry-settings.php:284
|
142 |
msgid "Plugin name"
|
143 |
msgstr "Plugin naam"
|
144 |
|
145 |
+
#: libs/blockcountry-settings.php:284
|
146 |
msgid "Version"
|
147 |
msgstr "Versie"
|
148 |
|
149 |
+
#: libs/blockcountry-settings.php:284 libs/blockcountry-settings.php:1083
|
150 |
+
#: libs/blockcountry-settings.php:1126
|
151 |
msgid "URL"
|
152 |
msgstr "URL"
|
153 |
|
154 |
+
#: libs/blockcountry-settings.php:309
|
155 |
msgid "Export"
|
156 |
msgstr "Exporteren"
|
157 |
|
158 |
+
#: libs/blockcountry-settings.php:310
|
159 |
msgid ""
|
160 |
"When you click on <tt>Backup all settings</tt> button a backup of the iQ "
|
161 |
"Block Country configuration will be created."
|
163 |
"Wanneer je klikt op de <tt>Backup alle instellingen</tt> knop zal een backup "
|
164 |
"van alle iQ Block Country instellingen worden gecreerd."
|
165 |
|
166 |
+
#: libs/blockcountry-settings.php:311
|
167 |
msgid ""
|
168 |
"After exporting, you can either use the backup file to restore your settings "
|
169 |
"on this site again or copy the settings to another WordPress site."
|
172 |
"te herstellen of je kunt het bestand gebruiken om je instellingen naar een "
|
173 |
"andere WordPress site te exporteren."
|
174 |
|
175 |
+
#: libs/blockcountry-settings.php:315
|
176 |
msgid "Backup all settings"
|
177 |
msgstr "Backup alle instellingen"
|
178 |
|
179 |
+
#: libs/blockcountry-settings.php:322
|
180 |
msgid "Import"
|
181 |
msgstr "Importeer"
|
182 |
|
183 |
+
#: libs/blockcountry-settings.php:323
|
184 |
msgid "Click the browse button and choose a zip file that you exported before."
|
185 |
msgstr ""
|
186 |
"Klik op de Browse button and selecteer een zip file welke je eerder hebt "
|
187 |
"geexporteerd."
|
188 |
|
189 |
+
#: libs/blockcountry-settings.php:324
|
190 |
msgid "Press Restore settings button, and let WordPress do the magic for you."
|
191 |
msgstr ""
|
192 |
"Druk op de herstel instellingen knop en laat WordPress haar magie voor je "
|
193 |
"doen."
|
194 |
|
195 |
+
#: libs/blockcountry-settings.php:329
|
196 |
msgid "Restore settings"
|
197 |
msgstr "Herstel instellingen"
|
198 |
|
199 |
+
#: libs/blockcountry-settings.php:352 libs/blockcountry-settings.php:355
|
200 |
+
#: libs/blockcountry-settings.php:364
|
201 |
msgid "Something went wrong exporting this file"
|
202 |
msgstr "Er is iets verkeerd gegaan met het exporteren van het bestand."
|
203 |
|
204 |
+
#: libs/blockcountry-settings.php:367
|
205 |
msgid "Exporting settings..."
|
206 |
msgstr "Exporteer instellingen"
|
207 |
|
208 |
+
#: libs/blockcountry-settings.php:382
|
209 |
msgid "Something went wrong importing this file"
|
210 |
msgstr "Er is iets verkeerd gegaan met het importeren van dit bestand"
|
211 |
|
212 |
+
#: libs/blockcountry-settings.php:399
|
213 |
msgid "All options are restored successfully."
|
214 |
msgstr "Alle opties zijn succesvol hersteld"
|
215 |
|
216 |
+
#: libs/blockcountry-settings.php:402
|
217 |
msgid "Invalid file."
|
218 |
msgstr "Ongeldig bestand"
|
219 |
|
220 |
+
#: libs/blockcountry-settings.php:407
|
221 |
msgid "No correct import or export option given."
|
222 |
msgstr "Geen correcte importeer of exporteer optie gegeven."
|
223 |
|
224 |
+
#: libs/blockcountry-settings.php:416
|
225 |
msgid "Select which pages are blocked."
|
226 |
msgstr "Selecteer welke pagina's geblokkeerd worden."
|
227 |
|
228 |
+
#: libs/blockcountry-settings.php:423
|
229 |
msgid "Do you want to block individual pages:"
|
230 |
msgstr "Wil je individuele pagina's blokkeren:"
|
231 |
|
232 |
+
#: libs/blockcountry-settings.php:424
|
233 |
msgid "If you do not select this option all pages will be blocked."
|
234 |
msgstr "Indien je deze optie niet selecteert worden alle pagina's geblokkeerd."
|
235 |
|
236 |
+
#: libs/blockcountry-settings.php:429
|
237 |
msgid "Select pages you want to block:"
|
238 |
msgstr "Selecteer welke pagina's je wil blokkeren."
|
239 |
|
240 |
+
#: libs/blockcountry-settings.php:451 libs/blockcountry-settings.php:505
|
241 |
+
#: libs/blockcountry-settings.php:553 libs/blockcountry-settings.php:598
|
242 |
+
#: libs/blockcountry-settings.php:726 libs/blockcountry-settings.php:858
|
243 |
+
#: libs/blockcountry-settings.php:1051
|
244 |
msgid "Save Changes"
|
245 |
msgstr "Bewaar wijzigingen"
|
246 |
|
247 |
+
#: libs/blockcountry-settings.php:464
|
248 |
msgid "Select which categories are blocked."
|
249 |
msgstr "Selecteer welke categorieen geblokkeerd worden."
|
250 |
|
251 |
+
#: libs/blockcountry-settings.php:471
|
252 |
msgid "Do you want to block individual categories:"
|
253 |
msgstr "Wil je individuele categorieen blokkeren:"
|
254 |
|
255 |
+
#: libs/blockcountry-settings.php:472
|
256 |
msgid "If you do not select this option all blog articles will be blocked."
|
257 |
msgstr ""
|
258 |
"Indien je deze optie niet selecteert worden alle blog artikelen geblokkeerd."
|
259 |
|
260 |
+
#: libs/blockcountry-settings.php:477
|
261 |
msgid "Do you want to block the homepage:"
|
262 |
msgstr "Wil je je homepage blokkeren:"
|
263 |
|
264 |
+
#: libs/blockcountry-settings.php:478
|
265 |
msgid ""
|
266 |
"If you do not select this option visitors will not be blocked from your "
|
267 |
"homepage regardless of the categories you select."
|
270 |
"geblokkeerd van het bezoeken van je homepagina ongeacht welke categorieen je "
|
271 |
"selecteert."
|
272 |
|
273 |
+
#: libs/blockcountry-settings.php:483
|
274 |
msgid "Select categories you want to block:"
|
275 |
msgstr "Selecteer welke categorieen je wil blokkeren."
|
276 |
|
277 |
+
#: libs/blockcountry-settings.php:519
|
278 |
msgid "Select which post types are blocked."
|
279 |
msgstr "Selecteer welke post types geblokkeerd worden."
|
280 |
|
281 |
+
#: libs/blockcountry-settings.php:526
|
282 |
msgid "Do you want to block individual post types:"
|
283 |
msgstr "Wil je individuele post types blokkeren:"
|
284 |
|
285 |
+
#: libs/blockcountry-settings.php:531
|
286 |
msgid "Select post types you want to block:"
|
287 |
msgstr "Selecteer welke post types je wil blokkeren."
|
288 |
|
289 |
+
#: libs/blockcountry-settings.php:568
|
290 |
msgid "Select which search engines are allowed."
|
291 |
msgstr "Selecteer welke zoek machines je wilt toestaan."
|
292 |
|
293 |
+
#: libs/blockcountry-settings.php:575
|
294 |
msgid "Select which search engines you want to allow:"
|
295 |
msgstr "Selecteer welke zoek machines je wilt toestaan:"
|
296 |
|
297 |
+
#: libs/blockcountry-settings.php:576
|
298 |
msgid ""
|
299 |
"This will allow a search engine to your site despite if you blocked the "
|
300 |
"country."
|
302 |
"Deze optie staat het toe dat zoekmachines je site bezoeken ondanks dat ze "
|
303 |
"uit een land komen welk geblokkeerd is."
|
304 |
|
305 |
+
#: libs/blockcountry-settings.php:613
|
306 |
msgid "Frontend options"
|
307 |
msgstr "Voorkant opties"
|
308 |
|
309 |
+
#: libs/blockcountry-settings.php:647
|
310 |
msgid ""
|
311 |
"Do not block visitors that are logged in from visiting frontend website:"
|
312 |
msgstr ""
|
313 |
"Blokkeer geen bezoekers welke ingelogd zijn van het bezoeken van de voorkant:"
|
314 |
|
315 |
+
#: libs/blockcountry-settings.php:653
|
316 |
msgid "Block visitors from visiting the frontend of your website:"
|
317 |
msgstr "Blokkeer bezoekers van het bezoeken van de voorkant van je website:"
|
318 |
|
319 |
+
#: libs/blockcountry-settings.php:659
|
320 |
msgid "Block visitors from using the search function of your website:"
|
321 |
msgstr ""
|
322 |
"Blokkeer bezoekers van het bezoeken van de zoek functie van je website:"
|
323 |
|
324 |
+
#: libs/blockcountry-settings.php:665
|
325 |
msgid ""
|
326 |
"Select the countries that should be blocked from visiting your frontend:"
|
327 |
msgstr ""
|
328 |
"Selecteer de landen welke geblokkeerd moeten worden voor het bezoeken van de "
|
329 |
"voorkant van je website:"
|
330 |
|
331 |
+
#: libs/blockcountry-settings.php:666
|
332 |
msgid "Use the CTRL key to select multiple countries"
|
333 |
msgstr "Gebruik de CTRL toets om meerdere landen te selecteren"
|
334 |
|
335 |
+
#: libs/blockcountry-settings.php:703 libs/blockcountry-settings.php:834
|
336 |
+
msgid "Inverse the selection above:"
|
337 |
+
msgstr "Keer bovenstaande selectie om:"
|
338 |
+
|
339 |
+
#: libs/blockcountry-settings.php:704 libs/blockcountry-settings.php:835
|
340 |
+
msgid ""
|
341 |
+
"If you select this option only the countries that are selected are "
|
342 |
+
"<em>allowed</em>."
|
343 |
+
msgstr ""
|
344 |
+
"Indien je deze optie selecteert de zijn de landen die hierboven geselecteerd "
|
345 |
+
"<em>toegestaan</em>."
|
346 |
+
|
347 |
+
#: libs/blockcountry-settings.php:709
|
348 |
msgid "Frontend whitelist IPv4 and/or IPv6 addresses:"
|
349 |
msgstr ""
|
350 |
"Whitelist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
|
351 |
|
352 |
+
#: libs/blockcountry-settings.php:709 libs/blockcountry-settings.php:717
|
353 |
+
#: libs/blockcountry-settings.php:841 libs/blockcountry-settings.php:849
|
354 |
msgid "Use a semicolon (;) to separate IP addresses"
|
355 |
msgstr "Gebruik een puntkomma (;) om adressen van elkaar te scheiden"
|
356 |
|
357 |
+
#: libs/blockcountry-settings.php:717
|
358 |
msgid "Frontend blacklist IPv4 and/or IPv6 addresses:"
|
359 |
msgstr ""
|
360 |
"Blacklist van IPv4 of IPv6 IP adressen voor de voorkant van je website:"
|
361 |
|
362 |
+
#: libs/blockcountry-settings.php:746
|
363 |
msgid "Backend Options"
|
364 |
msgstr "Achterkant opties"
|
365 |
|
366 |
+
#: libs/blockcountry-settings.php:780
|
367 |
msgid ""
|
368 |
"Block visitors from visiting the backend (administrator) of your website:"
|
369 |
msgstr ""
|
370 |
"Blokkeer bezoekers van het bezoeken van de achterkant (administratie "
|
371 |
"gedeelte) van je website:"
|
372 |
|
373 |
+
#: libs/blockcountry-settings.php:788
|
374 |
msgid "Your IP address is"
|
375 |
msgstr "Je IP adres is"
|
376 |
|
377 |
+
#: libs/blockcountry-settings.php:788
|
378 |
msgid "The country that is listed for this IP address is"
|
379 |
msgstr "Het land waar dit adres toe behoort is"
|
380 |
|
381 |
+
#: libs/blockcountry-settings.php:789
|
382 |
msgid ""
|
383 |
"Do <strong>NOT</strong> set the 'Block visitors from visiting the backend "
|
384 |
"(administrator) of your website' and also select"
|
386 |
"Selecteer <strong>NIET</strong> \"Blokkeer bezoekers van het bezoeken van de "
|
387 |
"achterkant (administratie gedeelte) van je website\" en"
|
388 |
|
389 |
+
#: libs/blockcountry-settings.php:789
|
390 |
msgid "below."
|
391 |
msgstr "hier beneden."
|
392 |
|
393 |
+
#: libs/blockcountry-settings.php:790
|
394 |
msgid ""
|
395 |
"You will NOT be able to login the next time if you DO block your own country "
|
396 |
"from visiting the backend."
|
398 |
"Het zal daarna niet meer mogelijk zijn om nog in te loggen als je je eigen "
|
399 |
"land blokkeert van het bezoeken van de achterkant van je website."
|
400 |
|
401 |
+
#: libs/blockcountry-settings.php:795
|
402 |
msgid "Select the countries that should be blocked from visiting your backend:"
|
403 |
msgstr ""
|
404 |
"Selecteer de landen welke geblokkeerd moeten worden voor het bezoeken van de "
|
405 |
"achterkant (administratie gedeelte) van je website:"
|
406 |
|
407 |
+
#: libs/blockcountry-settings.php:796
|
408 |
msgid "Use the x behind the country to remove a country from this blocklist."
|
409 |
msgstr ""
|
410 |
"Gebruik de x achter een land om het land te verwijderen uit deze lijst."
|
411 |
|
412 |
+
#: libs/blockcountry-settings.php:841
|
413 |
msgid "Backend whitelist IPv4 and/or IPv6 addresses:"
|
414 |
msgstr ""
|
415 |
"Whitelist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
|
416 |
|
417 |
+
#: libs/blockcountry-settings.php:849
|
418 |
msgid "Backend blacklist IPv4 and/or IPv6 addresses:"
|
419 |
msgstr ""
|
420 |
"Blacklist van IPv4 of IPv6 IP adressen voor de achterkant van je website:"
|
421 |
|
422 |
+
#: libs/blockcountry-settings.php:879
|
423 |
msgid "Overall statistics since start"
|
424 |
msgstr "Statistieken sinds het begin"
|
425 |
|
426 |
+
#: libs/blockcountry-settings.php:882
|
427 |
msgid "visitors blocked from the backend."
|
428 |
msgstr "bezoekers geblokkeerd op de achterkant."
|
429 |
|
430 |
+
#: libs/blockcountry-settings.php:884
|
431 |
msgid "visitors blocked from the frontend."
|
432 |
msgstr "bezoekers geblokkeerd op de voorkant."
|
433 |
|
434 |
+
#: libs/blockcountry-settings.php:888
|
435 |
msgid "Basic Options"
|
436 |
msgstr "Standaard opties"
|
437 |
|
438 |
+
#: libs/blockcountry-settings.php:923
|
439 |
msgid "Message to display when people are blocked:"
|
440 |
msgstr "Welk bericht wil je tonen aan bezoekers welke geblokkeerd worden:"
|
441 |
|
442 |
+
#: libs/blockcountry-settings.php:934
|
443 |
msgid "Page to redirect to:"
|
444 |
msgstr "Naar welke pagina wilt u bezoekers toesturen:"
|
445 |
|
446 |
+
#: libs/blockcountry-settings.php:935
|
447 |
msgid ""
|
448 |
"If you select a page here blocked visitors will be redirected to this page "
|
449 |
"instead of displaying above block message."
|
452 |
"doorgestuurd naar deze pagina anders wordt bovestaande tekst getoond aan "
|
453 |
"bezoekers."
|
454 |
|
455 |
+
#: libs/blockcountry-settings.php:941
|
456 |
msgid "Choose a page..."
|
457 |
msgstr "Kies een pagina..."
|
458 |
|
459 |
+
#: libs/blockcountry-settings.php:956
|
460 |
+
msgid "URL to redirect to:"
|
461 |
+
msgstr "Naar welke URL wilt u geblokkerde bezoekers verwijzen:"
|
462 |
+
|
463 |
+
#: libs/blockcountry-settings.php:957
|
464 |
+
msgid ""
|
465 |
+
"If you enter a URL here blocked visitors will be redirected to this URL "
|
466 |
+
"instead of displaying above block message or redirected to a local page."
|
467 |
+
msgstr ""
|
468 |
+
"Indien je hier een URL opgeeft worden geblokkeerde bezoekers doorgestuurd "
|
469 |
+
"naar deze url anders wordt bovestaande blokkeer tekst getoond aan bezoekers "
|
470 |
+
"of worden bezoekers doorverwezen naar de geselecteerde pagina."
|
471 |
+
|
472 |
+
#: libs/blockcountry-settings.php:964
|
473 |
msgid "Send headers when user is blocked:"
|
474 |
msgstr "Stuur headers wanneer een gebruiker is geblokkeerd:"
|
475 |
|
476 |
+
#: libs/blockcountry-settings.php:965
|
477 |
msgid ""
|
478 |
"Under normal circumstances you should keep this selected! Only if you have "
|
479 |
"\"Cannot modify header information - headers already sent\" errors or if you "
|
483 |
"deze alleen indien je \"Cannot modify header information - headers already "
|
484 |
"sent\" foutmeldingen krijgt of indien je weet wat je doet."
|
485 |
|
486 |
+
#: libs/blockcountry-settings.php:971
|
487 |
msgid "Buffer output?:"
|
488 |
msgstr "Buffer output?"
|
489 |
|
490 |
+
#: libs/blockcountry-settings.php:972
|
491 |
msgid ""
|
492 |
"You can use this option to buffer all output. This can be helpful in case "
|
493 |
"you have \"headers already sent\" issues."
|
495 |
"Je kunt deze optie gebruiken om alle output te bufferen. Dit kan helpen "
|
496 |
"indien je \"headers already sent\" problemen hebt."
|
497 |
|
498 |
+
#: libs/blockcountry-settings.php:978
|
499 |
msgid "Do not log IP addresses:"
|
500 |
msgstr "Log geen IP adressen"
|
501 |
|
502 |
+
#: libs/blockcountry-settings.php:979
|
503 |
msgid ""
|
504 |
"Check this box if the laws in your country do not permit you to log IP "
|
505 |
"addresses or if you do not want to log the ip addresses."
|
508 |
"adressen vast te leggen of indien je zelf deze informatie niet wilt "
|
509 |
"vastleggen."
|
510 |
|
511 |
+
#: libs/blockcountry-settings.php:986
|
512 |
msgid "Number of rows on statistics page:"
|
513 |
msgstr "Aantal regels op de statistieken pagina:"
|
514 |
|
515 |
+
#: libs/blockcountry-settings.php:987
|
516 |
msgid "How many rows do you want to display on each tab the statistics page."
|
517 |
msgstr "Hoeveel regels wil je tonen op de statistieken pagina."
|
518 |
|
519 |
+
#: libs/blockcountry-settings.php:1002
|
520 |
msgid "Allow tracking:"
|
521 |
msgstr "Sta traceren toe:"
|
522 |
|
523 |
+
#: libs/blockcountry-settings.php:1003
|
524 |
msgid ""
|
525 |
"This sends only the IP address and the number of attempts this ip address "
|
526 |
"tried to login to your backend and was blocked doing so to a central server. "
|
533 |
"ons om beter inzicht te krijgen in de landen waarvandaan een hoop hack "
|
534 |
"pogingen worden gedaan. "
|
535 |
|
536 |
+
#: libs/blockcountry-settings.php:1009
|
537 |
msgid "GeoIP API Key:"
|
538 |
msgstr "GeoIP API sleutel:"
|
539 |
|
540 |
+
#: libs/blockcountry-settings.php:1010
|
541 |
msgid ""
|
542 |
"If for some reason you cannot or do not want to download the MaxMind GeoIP "
|
543 |
"databases you will need an API key for the GeoIP api.<br />You can get an "
|
547 |
"Maxmind GeoIP heb je een API sleutelnodig voor de GeoIP api.<br />Je kunt "
|
548 |
"een API sleutel verkrijgen op:"
|
549 |
|
550 |
+
#: libs/blockcountry-settings.php:1018
|
551 |
+
msgid "GeoIP API Key Server Location:"
|
552 |
+
msgstr "GeoIP API sleutel server locatie:"
|
553 |
+
|
554 |
+
#: libs/blockcountry-settings.php:1019
|
555 |
+
msgid "Choose a location closest to your own location."
|
556 |
+
msgstr "Kies een land welke het dichtsbij is bij je eigen land."
|
557 |
+
|
558 |
+
#: libs/blockcountry-settings.php:1027
|
559 |
msgid "Admin block API Key:"
|
560 |
msgstr "Admin block API Sleutel:"
|
561 |
|
562 |
+
#: libs/blockcountry-settings.php:1028
|
563 |
msgid ""
|
564 |
"This is an experimantal feature. You do not need an API key for this plugin "
|
565 |
"to work."
|
567 |
"Dit is een experimentele optie. Je hebt geen API key nodig om deze plugin te "
|
568 |
"laten werken."
|
569 |
|
570 |
+
#: libs/blockcountry-settings.php:1035
|
571 |
msgid "Log all visits to the backend:"
|
572 |
msgstr "Log alle bezoekers op de achterkant:"
|
573 |
|
574 |
+
#: libs/blockcountry-settings.php:1036
|
575 |
msgid ""
|
576 |
"This logs all visits to the backend despite if they are blocked or not. This "
|
577 |
"is mainly for debugging purposes."
|
579 |
"Dit logt alle bezoeken aan de achterkant ongeacht of de bezoeker werd "
|
580 |
"geblokkeerd of niet. Dit is voornamelijk bedoeld voor fout opsporing."
|
581 |
|
582 |
+
#: libs/blockcountry-settings.php:1043
|
583 |
msgid "Accessibility options:"
|
584 |
msgstr "Toegankelijkheids opties:"
|
585 |
|
586 |
+
#: libs/blockcountry-settings.php:1044
|
587 |
msgid "Set this option if you cannot use the default country selection box."
|
588 |
msgstr ""
|
589 |
"Selecteer deze optie indien je de landen standaard selectie methode niet "
|
590 |
"kunt gebruiken. "
|
591 |
|
592 |
+
#: libs/blockcountry-settings.php:1069
|
593 |
msgid "Last blocked visits"
|
594 |
msgstr "Laatste geblokkeerde bezoekers"
|
595 |
|
596 |
+
#: libs/blockcountry-settings.php:1083
|
597 |
msgid "Date / Time"
|
598 |
msgstr "Datum / Tijd"
|
599 |
|
600 |
+
#: libs/blockcountry-settings.php:1083 libs/blockcountry-settings.php:1115
|
601 |
msgid "IP Address"
|
602 |
msgstr "IP adres"
|
603 |
|
604 |
+
#: libs/blockcountry-settings.php:1083 libs/blockcountry-settings.php:1115
|
605 |
msgid "Hostname"
|
606 |
msgstr "Hostnaam"
|
607 |
|
608 |
+
#: libs/blockcountry-settings.php:1083 libs/blockcountry-settings.php:1102
|
609 |
msgid "Country"
|
610 |
msgstr "Land"
|
611 |
|
612 |
+
#: libs/blockcountry-settings.php:1083
|
613 |
msgid "Frontend/Backend"
|
614 |
msgstr "Voorkant/Achterkant"
|
615 |
|
616 |
+
#: libs/blockcountry-settings.php:1093 libs/blockcountry-settings.php:1177
|
617 |
msgid "Frontend"
|
618 |
msgstr "Voorkant"
|
619 |
|
620 |
+
#: libs/blockcountry-settings.php:1093
|
621 |
msgid "Backend banlist"
|
622 |
msgstr "Achterkant banlist"
|
623 |
|
624 |
+
#: libs/blockcountry-settings.php:1093
|
625 |
msgid "Backend & Backend banlist"
|
626 |
msgstr "Achterkant & Achterkant banlist"
|
627 |
|
628 |
+
#: libs/blockcountry-settings.php:1093 libs/blockcountry-settings.php:1178
|
629 |
msgid "Backend"
|
630 |
msgstr "Achterkant"
|
631 |
|
632 |
+
#: libs/blockcountry-settings.php:1100
|
633 |
msgid "Top countries that are blocked"
|
634 |
msgstr "Top landen welke zijn geblokkeerd"
|
635 |
|
636 |
+
#: libs/blockcountry-settings.php:1102 libs/blockcountry-settings.php:1115
|
637 |
+
#: libs/blockcountry-settings.php:1126
|
638 |
msgid "# of blocked attempts"
|
639 |
msgstr "# of geblokkeerde pogingen"
|
640 |
|
641 |
+
#: libs/blockcountry-settings.php:1113
|
642 |
msgid "Top hosts that are blocked"
|
643 |
msgstr "Top hosts welke geblokkeerd zijn"
|
644 |
|
645 |
+
#: libs/blockcountry-settings.php:1124
|
646 |
msgid "Top URLs that are blocked"
|
647 |
msgstr "Top URLs welke geblokkeerd zijn"
|
648 |
|
649 |
+
#: libs/blockcountry-settings.php:1138
|
650 |
msgid "Clear database"
|
651 |
msgstr "Leeg database"
|
652 |
|
653 |
+
#: libs/blockcountry-settings.php:1154
|
654 |
msgid ""
|
655 |
"You are not logging any information. Please uncheck the option 'Do not log "
|
656 |
"IP addresses' if this is not what you want."
|
658 |
"Je logt geen informatie. Deselecteer alstublieft de optie 'Log geen IP "
|
659 |
"adressen' indien dit niet is wat je wilt."
|
660 |
|
661 |
+
#: libs/blockcountry-settings.php:1176
|
662 |
msgid "Home"
|
663 |
msgstr "Home"
|
664 |
|
665 |
+
#: libs/blockcountry-settings.php:1179
|
666 |
msgid "Pages"
|
667 |
msgstr "Pagina's"
|
668 |
|
669 |
+
#: libs/blockcountry-settings.php:1180
|
670 |
msgid "Categories"
|
671 |
msgstr "Categorieen"
|
672 |
|
673 |
+
#: libs/blockcountry-settings.php:1181
|
674 |
msgid "Post types"
|
675 |
msgstr "Post types"
|
676 |
|
677 |
+
#: libs/blockcountry-settings.php:1182
|
678 |
msgid "Search Engines"
|
679 |
msgstr "Zoek machines"
|
680 |
|
681 |
+
#: libs/blockcountry-settings.php:1183
|
682 |
msgid "Tools"
|
683 |
msgstr "Gereedschap"
|
684 |
|
685 |
+
#: libs/blockcountry-settings.php:1184
|
686 |
msgid "Logging"
|
687 |
msgstr "Statistieken"
|
688 |
|
689 |
+
#: libs/blockcountry-settings.php:1185
|
690 |
msgid "Import/Export"
|
691 |
msgstr "Importeren/Exporteren"
|
692 |
|
libs/blockcountry-checks.php
CHANGED
@@ -122,8 +122,10 @@ function iqblockcountry_check($country,$badcountries,$ip_address)
|
|
122 |
$backendblacklistcheck = TRUE;
|
123 |
}
|
124 |
|
|
|
|
|
125 |
/* Check if requested url is not login page. Else check against frontend whitelist/blacklist. */
|
126 |
-
if (
|
127 |
{
|
128 |
if (is_array ( $frontendblacklistip ) && in_array ( $ip_address, $frontendblacklistip)) {
|
129 |
$blocked = TRUE;
|
@@ -134,7 +136,7 @@ function iqblockcountry_check($country,$badcountries,$ip_address)
|
|
134 |
}
|
135 |
|
136 |
|
137 |
-
if (
|
138 |
{
|
139 |
if (is_array($backendbanlistip) && in_array($ip_address,$backendbanlistip))
|
140 |
{
|
@@ -226,7 +228,7 @@ function iqblockcountry_check($country,$badcountries,$ip_address)
|
|
226 |
}
|
227 |
|
228 |
$allowse = get_option('blockcountry_allowse');
|
229 |
-
if (
|
230 |
{
|
231 |
$blocked = FALSE;
|
232 |
}
|
@@ -249,8 +251,8 @@ function iqblockcountry_CheckCountry() {
|
|
249 |
|
250 |
$ip_address = iqblockcountry_get_ipaddress();
|
251 |
$country = iqblockcountry_check_ipaddress($ip_address);
|
252 |
-
|
253 |
-
if ((
|
254 |
{
|
255 |
$banlist = get_option( 'blockcountry_backendbanlist' );
|
256 |
if (!is_array($banlist)) { $banlist = array(); }
|
@@ -279,35 +281,7 @@ function iqblockcountry_CheckCountry() {
|
|
279 |
/* Check ip address against banlist, whitelist and blacklist */
|
280 |
if (iqblockcountry_check($country,$badcountries,$ip_address))
|
281 |
{
|
282 |
-
|
283 |
-
|
284 |
-
$blockmessage = get_option ( 'blockcountry_blockmessage' );
|
285 |
-
$blockredirect = get_option ( 'blockcountry_redirect');
|
286 |
-
$blockredirect_url = get_option ( 'blockcountry_redirect_url');
|
287 |
-
$header = get_option('blockcountry_header');
|
288 |
-
if (!empty($header) && ($header))
|
289 |
-
{
|
290 |
-
// Prevent as much as possible that this error message is cached:
|
291 |
-
header("Cache-Control: no-store, no-cache, must-revalidate");
|
292 |
-
header("Cache-Control: post-check=0, pre-check=0", false);
|
293 |
-
header("Pragma: no-cache");
|
294 |
-
header("Expires: Sat, 26 Jul 2012 05:00:00 GMT");
|
295 |
-
|
296 |
-
header ( 'HTTP/1.1 403 Forbidden' );
|
297 |
-
}
|
298 |
-
if (!empty($blockredirect_url))
|
299 |
-
{
|
300 |
-
header("Location: $blockredirect_url");
|
301 |
-
}
|
302 |
-
elseif (!empty($blockredirect) && $blockredirect != 0)
|
303 |
-
{
|
304 |
-
$redirecturl = get_permalink($blockredirect);
|
305 |
-
header("Location: $redirecturl");
|
306 |
-
}
|
307 |
-
// Display block message
|
308 |
-
print "$blockmessage";
|
309 |
-
|
310 |
-
if ((iqblockcountry_is_login_page() || is_admin()) && get_option('blockcountry_blockbackend'))
|
311 |
{
|
312 |
$blocked = get_option('blockcountry_backendnrblocks');
|
313 |
if (empty($blocked)) { $blocked = 0; }
|
@@ -342,6 +316,34 @@ function iqblockcountry_CheckCountry() {
|
|
342 |
iqblockcountry_logging($ip_address, $country, "F");
|
343 |
}
|
344 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
345 |
|
346 |
exit ();
|
347 |
}
|
@@ -353,9 +355,18 @@ function iqblockcountry_CheckCountry() {
|
|
353 |
* Check if page is the login page
|
354 |
*/
|
355 |
function iqblockcountry_is_login_page() {
|
356 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
357 |
$pos = strpos( $_SERVER['REQUEST_URI'], 'wp-login' );
|
358 |
-
if ($pos !== false)
|
359 |
-
{
|
360 |
-
|
|
|
361 |
}
|
122 |
$backendblacklistcheck = TRUE;
|
123 |
}
|
124 |
|
125 |
+
global $blockcountry_is_login_page;
|
126 |
+
|
127 |
/* Check if requested url is not login page. Else check against frontend whitelist/blacklist. */
|
128 |
+
if (!$blockcountry_is_login_page )
|
129 |
{
|
130 |
if (is_array ( $frontendblacklistip ) && in_array ( $ip_address, $frontendblacklistip)) {
|
131 |
$blocked = TRUE;
|
136 |
}
|
137 |
|
138 |
|
139 |
+
if ($blockcountry_is_login_page )
|
140 |
{
|
141 |
if (is_array($backendbanlistip) && in_array($ip_address,$backendbanlistip))
|
142 |
{
|
228 |
}
|
229 |
|
230 |
$allowse = get_option('blockcountry_allowse');
|
231 |
+
if (!$blockcountry_is_login_page && isset ($_SERVER['HTTP_USER_AGENT']) && iqblockcountry_check_searchengine($_SERVER['HTTP_USER_AGENT'], $allowse))
|
232 |
{
|
233 |
$blocked = FALSE;
|
234 |
}
|
251 |
|
252 |
$ip_address = iqblockcountry_get_ipaddress();
|
253 |
$country = iqblockcountry_check_ipaddress($ip_address);
|
254 |
+
global $blockcountry_is_login_page;
|
255 |
+
if (($blockcountry_is_login_page || is_admin()) && get_option('blockcountry_blockbackend'))
|
256 |
{
|
257 |
$banlist = get_option( 'blockcountry_backendbanlist' );
|
258 |
if (!is_array($banlist)) { $banlist = array(); }
|
281 |
/* Check ip address against banlist, whitelist and blacklist */
|
282 |
if (iqblockcountry_check($country,$badcountries,$ip_address))
|
283 |
{
|
284 |
+
if (($blockcountry_is_login_page || is_admin()) && get_option('blockcountry_blockbackend'))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
285 |
{
|
286 |
$blocked = get_option('blockcountry_backendnrblocks');
|
287 |
if (empty($blocked)) { $blocked = 0; }
|
316 |
iqblockcountry_logging($ip_address, $country, "F");
|
317 |
}
|
318 |
}
|
319 |
+
|
320 |
+
|
321 |
+
$blockmessage = get_option ( 'blockcountry_blockmessage' );
|
322 |
+
$blockredirect = get_option ( 'blockcountry_redirect');
|
323 |
+
$blockredirect_url = get_option ( 'blockcountry_redirect_url');
|
324 |
+
$header = get_option('blockcountry_header');
|
325 |
+
if (!empty($header) && ($header))
|
326 |
+
{
|
327 |
+
// Prevent as much as possible that this error message is cached:
|
328 |
+
header("Cache-Control: no-store, no-cache, must-revalidate");
|
329 |
+
header("Cache-Control: post-check=0, pre-check=0", false);
|
330 |
+
header("Pragma: no-cache");
|
331 |
+
header("Expires: Sat, 26 Jul 2012 05:00:00 GMT");
|
332 |
+
|
333 |
+
header ( 'HTTP/1.1 403 Forbidden' );
|
334 |
+
}
|
335 |
+
if (!empty($blockredirect_url))
|
336 |
+
{
|
337 |
+
header("Location: $blockredirect_url");
|
338 |
+
}
|
339 |
+
elseif (!empty($blockredirect) && $blockredirect != 0)
|
340 |
+
{
|
341 |
+
$redirecturl = get_permalink($blockredirect);
|
342 |
+
header("Location: $redirecturl");
|
343 |
+
}
|
344 |
+
// Display block message
|
345 |
+
print "$blockmessage";
|
346 |
+
|
347 |
|
348 |
exit ();
|
349 |
}
|
355 |
* Check if page is the login page
|
356 |
*/
|
357 |
function iqblockcountry_is_login_page() {
|
358 |
+
$found = FALSE;
|
359 |
+
$pos2 = FALSE;
|
360 |
+
|
361 |
+
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
362 |
+
if ( is_plugin_active( 'all-in-one-wp-security-and-firewall/wp-security.php' ) ) {
|
363 |
+
$aio = get_option('aio_wp_security_configs');
|
364 |
+
$pos2 = strpos( $_SERVER['REQUEST_URI'], $aio['aiowps_login_page_slug'] );
|
365 |
+
}
|
366 |
+
|
367 |
$pos = strpos( $_SERVER['REQUEST_URI'], 'wp-login' );
|
368 |
+
if ($pos !== false) { $found = TRUE; }
|
369 |
+
elseif ($pos2 !== false) { $found = TRUE; }
|
370 |
+
|
371 |
+
return $found;
|
372 |
}
|
libs/blockcountry-settings.php
CHANGED
@@ -231,6 +231,7 @@ function iqblockcountry_settings_tools() {
|
|
231 |
$displaycountry = $countrylist[$country];
|
232 |
echo "<p>" . __('IP Adress', 'iqblockcountry') . ' ' . $ip_address . ' ' . __('belongs to', 'iqblockcountry') . ' ' . $displaycountry . ".</p>";
|
233 |
$haystack = get_option('blockcountry_banlist');
|
|
|
234 |
$inverse = get_option( 'blockcountry_banlist_inverse');
|
235 |
if ($inverse) {
|
236 |
if (is_array($haystack) && !in_array ($country, $haystack )) {
|
@@ -244,6 +245,8 @@ function iqblockcountry_settings_tools() {
|
|
244 |
}
|
245 |
}
|
246 |
$inverse = get_option( 'blockcountry_backendbanlist_inverse');
|
|
|
|
|
247 |
if ($inverse) {
|
248 |
if (is_array($haystack) && !in_array ( $country, $haystack )) {
|
249 |
_e('This country is not permitted to visit the backend of this website.', 'iqblockcountry');
|
@@ -1236,3 +1239,41 @@ function iqblockcountry_settings_page() {
|
|
1236 |
|
1237 |
|
1238 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
$displaycountry = $countrylist[$country];
|
232 |
echo "<p>" . __('IP Adress', 'iqblockcountry') . ' ' . $ip_address . ' ' . __('belongs to', 'iqblockcountry') . ' ' . $displaycountry . ".</p>";
|
233 |
$haystack = get_option('blockcountry_banlist');
|
234 |
+
if (!is_array($haystack)) { $haystack = array(); }
|
235 |
$inverse = get_option( 'blockcountry_banlist_inverse');
|
236 |
if ($inverse) {
|
237 |
if (is_array($haystack) && !in_array ($country, $haystack )) {
|
245 |
}
|
246 |
}
|
247 |
$inverse = get_option( 'blockcountry_backendbanlist_inverse');
|
248 |
+
$haystack = get_option('blockcountry_backendbanlist');
|
249 |
+
if (!is_array($haystack)) { $haystack = array(); }
|
250 |
if ($inverse) {
|
251 |
if (is_array($haystack) && !in_array ( $country, $haystack )) {
|
252 |
_e('This country is not permitted to visit the backend of this website.', 'iqblockcountry');
|
1239 |
|
1240 |
|
1241 |
}
|
1242 |
+
|
1243 |
+
|
1244 |
+
/*
|
1245 |
+
* Check which GeoIP API location is cloest
|
1246 |
+
*/
|
1247 |
+
function iqblockcountry_find_geoip_location()
|
1248 |
+
{
|
1249 |
+
$curl = curl_init();
|
1250 |
+
curl_setopt_array($curl, array(
|
1251 |
+
CURLOPT_RETURNTRANSFER => 1,
|
1252 |
+
CURLOPT_URL => 'http://us.geoip.webence.nl/test',
|
1253 |
+
CURLOPT_USERAGENT => 'iQ Block Country location test'
|
1254 |
+
));
|
1255 |
+
$resp = curl_exec($curl);
|
1256 |
+
$infous = curl_getinfo($curl);
|
1257 |
+
curl_close($curl);
|
1258 |
+
|
1259 |
+
$curl = curl_init();
|
1260 |
+
curl_setopt_array($curl, array(
|
1261 |
+
CURLOPT_URL => 'http://geoip.webence.nl/test',
|
1262 |
+
CURLOPT_USERAGENT => 'iQ Block Country location test'
|
1263 |
+
));
|
1264 |
+
$resp = curl_exec($curl);
|
1265 |
+
$infoeu = curl_getinfo($curl);
|
1266 |
+
curl_close($curl);
|
1267 |
+
|
1268 |
+
if ($infoeu['total_time'] < $infous['total_time'])
|
1269 |
+
{
|
1270 |
+
update_option('blockcountry_geoapilocation','EU');
|
1271 |
+
}
|
1272 |
+
else
|
1273 |
+
{
|
1274 |
+
update_option('blockcountry_geoapilocation','US');
|
1275 |
+
}
|
1276 |
+
|
1277 |
+
|
1278 |
+
|
1279 |
+
}
|
libs/blockcountry-validation.php
CHANGED
@@ -25,7 +25,7 @@ function iqblockcountry_is_valid_ipv6($ipv6)
|
|
25 |
}
|
26 |
|
27 |
/*
|
28 |
-
* Check of
|
29 |
*/
|
30 |
function iqblockcountry_is_valid_url($input)
|
31 |
{
|
25 |
}
|
26 |
|
27 |
/*
|
28 |
+
* Check of given url is a valid url
|
29 |
*/
|
30 |
function iqblockcountry_is_valid_url($input)
|
31 |
{
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.redeo.nl/plugins/donate
|
|
4 |
Tags: spam, block, countries, country, comments, ban, geo, geo blocking, geo ip, block country, block countries, ban countries, ban country, blacklist, whitelist
|
5 |
Requires at least: 3.5.2
|
6 |
Tested up to: 4.3
|
7 |
-
Stable tag: 1.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -57,12 +57,20 @@ Wordpress could be held liable for any license issue. So that is why the auto do
|
|
57 |
= How come that I still see visitors from countries that I blocked in Statpress or other statistics software? =
|
58 |
|
59 |
It’s true that you might see hits from countries that you have blocked in your statistics software.
|
60 |
-
That is the way it works, certain plugins may be run before iQ Block Country is run so it may log visitors to pages.
|
61 |
|
62 |
This however does not mean this plugin does not work, it just means somebody tried to access a certain page or pages and that that fact is logged.
|
63 |
|
64 |
If you are worried this plugin does not work you could try to block your own country or your own ip address and afterwards visit your frontend website and see if it actually works. Also if you have access to the logfiles of the webserver that hosts your website you can see that these visitors are actually denied with a HTTP error 403.
|
65 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
= This plugin does not work, I blocked a country and still see visitors! =
|
67 |
|
68 |
Well, this plugin does in fact work but is limited to the data MaxMind provides. Also in your statistics software or logfiles you probably will see log entries from countries that you have blocked. See the "How come I still see visitors..." FAQ for that.
|
@@ -125,6 +133,8 @@ You can press the CTRL key and select several countries.
|
|
125 |
|
126 |
Perhaps also a handy function is that you can type in a part of the name of the country!
|
127 |
|
|
|
|
|
128 |
= How can I get a new version of the GeoIP database? =
|
129 |
|
130 |
You can download the database(s) directly from MaxMind and upload them to your website.
|
@@ -159,6 +169,13 @@ You can select the option on the home tab "Do not log IP addresses" to stop iQ B
|
|
159 |
|
160 |
== Changelog ==
|
161 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
= 1.1.20 =
|
163 |
|
164 |
* Added Google Ads to search engines
|
4 |
Tags: spam, block, countries, country, comments, ban, geo, geo blocking, geo ip, block country, block countries, ban countries, ban country, blacklist, whitelist
|
5 |
Requires at least: 3.5.2
|
6 |
Tested up to: 4.3
|
7 |
+
Stable tag: 1.1.21
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
57 |
= How come that I still see visitors from countries that I blocked in Statpress or other statistics software? =
|
58 |
|
59 |
It’s true that you might see hits from countries that you have blocked in your statistics software.
|
|
|
60 |
|
61 |
This however does not mean this plugin does not work, it just means somebody tried to access a certain page or pages and that that fact is logged.
|
62 |
|
63 |
If you are worried this plugin does not work you could try to block your own country or your own ip address and afterwards visit your frontend website and see if it actually works. Also if you have access to the logfiles of the webserver that hosts your website you can see that these visitors are actually denied with a HTTP error 403.
|
64 |
|
65 |
+
= How come I still see visitors being blocked from other security plugins? =
|
66 |
+
|
67 |
+
Other wordpress plugins handle the visitors also. They might run before iQ Block Country or they might run after iQ Block Country runs.
|
68 |
+
|
69 |
+
This however does not mean this plugin does not work, it just means somebody tried to access a certain page, post or your backend and another plugin also handled the request.
|
70 |
+
|
71 |
+
If you are worried this plugin does not work you could try to block your own country or your own ip address and afterwards visit your frontend website and see if it actually works. Also if you have access to the logfiles of the webserver that hosts your website you can see that these visitors are actually denied with a HTTP error 403.
|
72 |
+
|
73 |
+
|
74 |
= This plugin does not work, I blocked a country and still see visitors! =
|
75 |
|
76 |
Well, this plugin does in fact work but is limited to the data MaxMind provides. Also in your statistics software or logfiles you probably will see log entries from countries that you have blocked. See the "How come I still see visitors..." FAQ for that.
|
133 |
|
134 |
Perhaps also a handy function is that you can type in a part of the name of the country!
|
135 |
|
136 |
+
If you just want to allow some countries you can also use the invert function by selecting the countries you want to allow and select invert this selection.
|
137 |
+
|
138 |
= How can I get a new version of the GeoIP database? =
|
139 |
|
140 |
You can download the database(s) directly from MaxMind and upload them to your website.
|
169 |
|
170 |
== Changelog ==
|
171 |
|
172 |
+
= 1.1.21 =
|
173 |
+
|
174 |
+
* Minor improvements
|
175 |
+
* Added check to detect closest location for GeoIP API users
|
176 |
+
* Fixed an error if you lookup an ip on the tools tab while using the inverse function it sometimes would not display correctly if a country was blocked or not.
|
177 |
+
* Added support for All in one WP Security Change Login URL. If you changed your login URL iQ Block Country will detect this setting and use it with your backend block settings.
|
178 |
+
|
179 |
= 1.1.20 =
|
180 |
|
181 |
* Added Google Ads to search engines
|