Google Captcha (reCAPTCHA) by BestWebSoft - Version 1.34

Version Description

  • 06.02.2018 =
  • NEW : The compatibility with Wordfence option "Immediately block the IP of users who try to sign in as these usernames" has been added.
  • Update : reCAPTCHA output functionality in forms has been optimized.
  • Update : The compatibility with Limit Attempts by BestWebSoft has been improved.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Google Captcha (reCAPTCHA) by BestWebSoft
Version 1.34
Comparing to
See all releases

Code changes from version 1.33 to 1.34

google-captcha.php CHANGED
@@ -6,7 +6,7 @@ Description: Protect WordPress website forms from spam entries with Google Captc
6
  Author: BestWebSoft
7
  Text Domain: google-captcha
8
  Domain Path: /languages
9
- Version: 1.33
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv3 or later
12
  */
@@ -381,7 +381,7 @@ if ( ! function_exists( 'gglcptch_plugin_status' ) ) {
381
  'plugin' => '',
382
  'plugin_info' => array(),
383
  );
384
- foreach ( (array)$plugins as $plugin ) {
385
  if ( array_key_exists( $plugin, $all_plugins ) ) {
386
  if (
387
  ( $is_network && is_plugin_active_for_network( $plugin ) ) ||
@@ -389,12 +389,12 @@ if ( ! function_exists( 'gglcptch_plugin_status' ) ) {
389
  ) {
390
  $result['status'] = 'activated';
391
  $result['plugin'] = $plugin;
392
- $result['plugin_info'] = $all_plugins[$plugin];
393
  break;
394
  } else {
395
  $result['status'] = 'deactivated';
396
  $result['plugin'] = $plugin;
397
- $result['plugin_info'] = $all_plugins[$plugin];
398
  }
399
 
400
  }
@@ -632,7 +632,7 @@ if ( ! function_exists( 'gglcptch_get_response' ) ) {
632
 
633
  /* Check google captcha */
634
  if ( ! function_exists( 'gglcptch_check' ) ) {
635
- function gglcptch_check( $debug = false ) {
636
  global $gglcptch_options;
637
 
638
  if ( empty( $gglcptch_options ) ) {
@@ -643,9 +643,12 @@ if ( ! function_exists( 'gglcptch_check' ) ) {
643
  $privatekey = $gglcptch_options['private_key'];
644
 
645
  if ( ! $privatekey || ! $publickey ) {
 
 
646
  return array(
647
- 'response' => false,
648
- 'reason' => 'ERROR_NO_KEYS'
 
649
  );
650
  }
651
 
@@ -674,7 +677,7 @@ if ( ! function_exists( 'gglcptch_check' ) ) {
674
  );
675
  } else {
676
  if (
677
- ! $debug && ! empty( $response['error-codes'] ) &&
678
  (
679
  in_array( 'missing-input-secret', $response['error-codes'] ) ||
680
  in_array( 'invalid-input-secret', $response['error-codes'] )
@@ -725,7 +728,13 @@ if ( ! function_exists( 'gglcptch_check' ) ) {
725
  }
726
  }
727
  }
728
-
 
 
 
 
 
 
729
  return $result;
730
  }
731
  }
@@ -749,7 +758,7 @@ if ( ! function_exists( 'gglcptch_check_custom' ) ) {
749
  if ( gglcptch_is_recaptcha_required( $form_slug ) ) {
750
  $gglcptch_check = gglcptch_check();
751
 
752
- if ( ! $gglcptch_check['response'] && $gglcptch_check['reason'] == 'ERROR_NO_KEYS' ) {
753
  return $allow;
754
  }
755
 
@@ -784,7 +793,7 @@ if ( ! function_exists( 'gglcptch_check_custom' ) ) {
784
  }
785
  }
786
  if ( ! $gglcptch_check['response'] ) {
787
- $error_message = sprintf( '<strong>%s</strong>:&nbsp;%s', __( 'Error', 'google-captcha-pro' ), gglcptch_get_message() );
788
  $allow->add( 'gglcptch_error', $error_message );
789
  }
790
  break;
@@ -800,6 +809,31 @@ if ( ! function_exists( 'gglcptch_check_custom' ) ) {
800
  }
801
  }
802
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
803
  /**
804
  *
805
  * @since 1.32
@@ -918,6 +952,18 @@ if ( ! function_exists( 'gglcptch_get_message' ) ) {
918
  }
919
  }
920
 
 
 
 
 
 
 
 
 
 
 
 
 
921
  if ( ! function_exists( 'gglcptch_test_keys' ) ) {
922
  function gglcptch_test_keys() {
923
  global $gglcptch_ip_in_whitelist, $gglcptch_options;
@@ -949,7 +995,7 @@ if ( ! function_exists( 'gglcptch_test_keys_verification' ) ) {
949
 
950
  if ( ! $result['response'] ) {
951
  if ( isset( $result['reason'] ) ) {
952
- foreach ( (array)$result['reason'] as $error ) { ?>
953
  <div class="error gglcptch-test-results"><p>
954
  <?php gglcptch_get_message( $error, true ); ?>
955
  </p></div>
@@ -972,7 +1018,7 @@ if ( ! function_exists( 'gglcptch_action_links' ) ) {
972
  if ( ! is_network_admin() ) {
973
  static $this_plugin;
974
  if ( ! $this_plugin ) {
975
- $this_plugin = plugin_basename(__FILE__);
976
  }
977
 
978
  if ( $file == $this_plugin ) {
@@ -1100,6 +1146,8 @@ add_filter( 'widget_text', 'do_shortcode' );
1100
  add_filter( 'gglcptch_display_recaptcha', 'gglcptch_display_custom', 10, 2 );
1101
  add_filter( 'gglcptch_verify_recaptcha', 'gglcptch_check_custom', 10, 3 );
1102
 
 
 
1103
  add_filter( 'plugin_action_links', 'gglcptch_action_links', 10, 2 );
1104
  add_filter( 'plugin_row_meta', 'gglcptch_links', 10, 2 );
1105
 
6
  Author: BestWebSoft
7
  Text Domain: google-captcha
8
  Domain Path: /languages
9
+ Version: 1.34
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv3 or later
12
  */
381
  'plugin' => '',
382
  'plugin_info' => array(),
383
  );
384
+ foreach ( ( array )$plugins as $plugin ) {
385
  if ( array_key_exists( $plugin, $all_plugins ) ) {
386
  if (
387
  ( $is_network && is_plugin_active_for_network( $plugin ) ) ||
389
  ) {
390
  $result['status'] = 'activated';
391
  $result['plugin'] = $plugin;
392
+ $result['plugin_info'] = $all_plugins[ $plugin ];
393
  break;
394
  } else {
395
  $result['status'] = 'deactivated';
396
  $result['plugin'] = $plugin;
397
+ $result['plugin_info'] = $all_plugins[ $plugin ];
398
  }
399
 
400
  }
632
 
633
  /* Check google captcha */
634
  if ( ! function_exists( 'gglcptch_check' ) ) {
635
+ function gglcptch_check( $form = 'general', $debug = false ) {
636
  global $gglcptch_options;
637
 
638
  if ( empty( $gglcptch_options ) ) {
643
  $privatekey = $gglcptch_options['private_key'];
644
 
645
  if ( ! $privatekey || ! $publickey ) {
646
+ $errors = new WP_Error;
647
+ $errors->add( 'gglcptch_error', gglcptch_get_message() );
648
  return array(
649
+ 'response' => false,
650
+ 'reason' => 'ERROR_NO_KEYS',
651
+ 'errors' => $errors
652
  );
653
  }
654
 
677
  );
678
  } else {
679
  if (
680
+ ! $debug &&
681
  (
682
  in_array( 'missing-input-secret', $response['error-codes'] ) ||
683
  in_array( 'invalid-input-secret', $response['error-codes'] )
728
  }
729
  }
730
  }
731
+ if ( ! $result['response'] ) {
732
+ $result['errors'] = new WP_Error;
733
+ if ( ! $debug && ! in_array( $result['reason'], array( 'ERROR_WRONG_SECRET', 'ERROR_NO_KEYS' ) ) ) {
734
+ $result['errors']->add( 'gglcptch_error', gglcptch_get_message() );
735
+ }
736
+ }
737
+ $result = apply_filters( 'gglcptch_limit_attempts_check', $result, $form );
738
  return $result;
739
  }
740
  }
758
  if ( gglcptch_is_recaptcha_required( $form_slug ) ) {
759
  $gglcptch_check = gglcptch_check();
760
 
761
+ if ( ! $gglcptch_check['response'] && 'ERROR_NO_KEYS' == $gglcptch_check['reason'] ) {
762
  return $allow;
763
  }
764
 
793
  }
794
  }
795
  if ( ! $gglcptch_check['response'] ) {
796
+ $error_message = sprintf( '<strong>%s</strong>:&nbsp;%s', __( 'Error', 'google-captcha' ), gglcptch_get_message() );
797
  $allow->add( 'gglcptch_error', $error_message );
798
  }
799
  break;
809
  }
810
  }
811
 
812
+ /* Limit Attempts plugin check */
813
+ if ( ! function_exists( 'gglcptch_limit_attempts_check' ) ) {
814
+ function gglcptch_limit_attempts_check( $gglcptch_check, $form ){
815
+
816
+ $result = gglcptch_handle_by_limit_attempts( $gglcptch_check['response'], $form );
817
+
818
+ if ( true !== $result ) {
819
+ $gglcptch_check['response'] = false;
820
+ if ( 'login_form' != $form ) {
821
+ if ( is_wp_error( $result ) ) {
822
+ $gglcptch_check['errors']->add( 'lmttmpts_error', $result->get_error_message() );
823
+ } elseif ( is_string( $result ) ) {
824
+ $gglcptch_check['errors']->add( 'lmttmpts_error', $result );
825
+ }
826
+ }
827
+ return $gglcptch_check;
828
+ } else {
829
+ if ( 'contact_form' == $form || 'buddypress_register' == $form ) {
830
+ return true;
831
+ }
832
+ return $gglcptch_check;
833
+ }
834
+ }
835
+ }
836
+
837
  /**
838
  *
839
  * @since 1.32
952
  }
953
  }
954
 
955
+ if ( ! function_exists( 'gglcptch_is_woocommerce_page' ) ) {
956
+ function gglcptch_is_woocommerce_page() {
957
+ $traces = debug_backtrace();
958
+
959
+ foreach( $traces as $trace ) {
960
+ if ( isset( $trace['file'] ) && false !== strpos( $trace['file'], 'woocommerce' ) )
961
+ return true;
962
+ }
963
+ return false;
964
+ }
965
+ }
966
+
967
  if ( ! function_exists( 'gglcptch_test_keys' ) ) {
968
  function gglcptch_test_keys() {
969
  global $gglcptch_ip_in_whitelist, $gglcptch_options;
995
 
996
  if ( ! $result['response'] ) {
997
  if ( isset( $result['reason'] ) ) {
998
+ foreach ( ( array )$result['reason'] as $error ) { ?>
999
  <div class="error gglcptch-test-results"><p>
1000
  <?php gglcptch_get_message( $error, true ); ?>
1001
  </p></div>
1018
  if ( ! is_network_admin() ) {
1019
  static $this_plugin;
1020
  if ( ! $this_plugin ) {
1021
+ $this_plugin = plugin_basename( __FILE__ );
1022
  }
1023
 
1024
  if ( $file == $this_plugin ) {
1146
  add_filter( 'gglcptch_display_recaptcha', 'gglcptch_display_custom', 10, 2 );
1147
  add_filter( 'gglcptch_verify_recaptcha', 'gglcptch_check_custom', 10, 3 );
1148
 
1149
+ add_filter( 'gglcptch_limit_attempts_check', 'gglcptch_limit_attempts_check', 10, 2 );
1150
+
1151
  add_filter( 'plugin_action_links', 'gglcptch_action_links', 10, 2 );
1152
  add_filter( 'plugin_row_meta', 'gglcptch_links', 10, 2 );
1153
 
includes/forms.php CHANGED
@@ -259,71 +259,41 @@ if ( ! function_exists( 'gglcptch_login_display' ) ) {
259
  /* Check google captcha in login form */
260
  if ( ! function_exists( 'gglcptch_login_check' ) ) {
261
  function gglcptch_login_check( $user ) {
262
-
263
- if ( is_wp_error( $user ) )
264
  return $user;
265
-
266
- $gglcptch_check = gglcptch_check();
267
-
268
- /* reCAPTCHA is not configured */
269
- if ( ! $gglcptch_check['response'] && $gglcptch_check['reason'] == 'ERROR_NO_KEYS' ) {
270
  return $user;
271
- }
272
-
273
- $la_result = gglcptch_handle_by_limit_attempts( $gglcptch_check['response'], 'login_form' );
274
 
275
- if ( true !== $la_result ) {
276
- $user = new WP_Error();
277
-
278
- if ( is_wp_error( $la_result ) ) {
279
- $user = $la_result;
280
- } elseif ( is_string( $la_result ) ) {
281
- $user->add( 'gglcptch_la_error', $la_result );
282
- }
283
 
 
284
  if ( $gglcptch_check['reason'] == 'VERIFICATION_FAILED' ) {
285
  wp_clear_auth_cookie();
286
  }
287
-
288
- if ( ! $gglcptch_check['response'] ) {
289
- $error_message = sprintf( '<strong>%s</strong>:&nbsp;%s', __( 'Error', 'google-captcha' ), gglcptch_get_message() );
290
- $user->add( 'gglcptch_error', $error_message );
 
 
291
  }
 
 
292
  }
293
-
294
  return $user;
295
  }
296
  }
297
 
298
- /* Check google captcha in lostpassword form */
299
  if ( ! function_exists( 'gglcptch_register_check' ) ) {
300
  function gglcptch_register_check( $allow ) {
301
-
302
- $gglcptch_check = gglcptch_check();
303
-
304
- if ( ! $gglcptch_check['response'] && $gglcptch_check['reason'] == 'ERROR_NO_KEYS' ) {
305
  return $allow;
 
 
 
306
  }
307
-
308
- $la_result = gglcptch_handle_by_limit_attempts( $gglcptch_check['response'], 'registration_form' );
309
-
310
- if ( true !== $la_result ) {
311
- if ( ! is_wp_error( $allow ) ) {
312
- $allow = new WP_Error();
313
- }
314
-
315
- if ( is_wp_error( $la_result ) ) {
316
- $allow = $la_result;
317
- } elseif ( is_string( $la_result ) ) {
318
- $allow->add( 'gglcptch_la_error', $la_result );
319
- }
320
-
321
- if ( ! $gglcptch_check['response'] ) {
322
- $error_message = sprintf( '<strong>%s</strong>:&nbsp;%s', __( 'Error', 'google-captcha' ), gglcptch_get_message() );
323
- $allow->add( 'gglcptch_error', $error_message );
324
- }
325
- }
326
-
327
  return $allow;
328
  }
329
  }
@@ -331,32 +301,12 @@ if ( ! function_exists( 'gglcptch_register_check' ) ) {
331
  /* Check google captcha in lostpassword form */
332
  if ( ! function_exists( 'gglcptch_lostpassword_check' ) ) {
333
  function gglcptch_lostpassword_check( $allow ) {
334
-
335
- $gglcptch_check = gglcptch_check();
336
-
337
- if ( ! $gglcptch_check['response'] && $gglcptch_check['reason'] == 'ERROR_NO_KEYS' ) {
338
  return $allow;
 
 
 
339
  }
340
-
341
- $la_result = gglcptch_handle_by_limit_attempts( $gglcptch_check['response'], 'reset_pwd_form' );
342
-
343
- if ( true !== $la_result ) {
344
- if ( ! is_wp_error( $allow ) ) {
345
- $allow = new WP_Error();
346
- }
347
-
348
- if ( is_wp_error( $la_result ) ) {
349
- $allow = $la_result;
350
- } elseif ( is_string( $la_result ) ) {
351
- $allow->add( 'gglcptch_la_error', $la_result );
352
- }
353
-
354
- if ( ! $gglcptch_check['response'] ) {
355
- $error_message = sprintf( '<strong>%s</strong>:&nbsp;%s', __( 'Error', 'google-captcha' ), gglcptch_get_message() );
356
- $allow->add( 'gglcptch_error', $error_message );
357
- }
358
- }
359
-
360
  return $allow;
361
  }
362
  }
@@ -367,6 +317,9 @@ if ( ! function_exists( 'gglcptch_signup_display' ) ) {
367
  if ( $error_message = $errors->get_error_message( 'gglcptch_error' ) ) {
368
  printf( '<p class="error gglcptch_error">%s</p>', $error_message );
369
  }
 
 
 
370
  echo gglcptch_display();
371
  }
372
  }
@@ -375,37 +328,13 @@ if ( ! function_exists( 'gglcptch_signup_display' ) ) {
375
  if ( ! function_exists( 'gglcptch_signup_check' ) ) {
376
  function gglcptch_signup_check( $result ) {
377
  global $current_user;
378
-
379
- if ( is_admin() && ! defined( 'DOING_AJAX' ) && ! empty( $current_user->data->ID ) ) {
380
  return $result;
381
- }
382
-
383
- $gglcptch_check = gglcptch_check();
384
-
385
- if ( ! $gglcptch_check['response'] && $gglcptch_check['reason'] == 'ERROR_NO_KEYS' ) {
386
  return $result;
387
  }
388
-
389
- $errors = $result['errors'];
390
-
391
- $la_result = gglcptch_handle_by_limit_attempts( $gglcptch_check['response'], 'registration_form' );
392
-
393
- if ( true !== $la_result ) {
394
- if ( is_wp_error( $la_result ) ) {
395
- $la_result = $la_result->get_error_message();
396
- $errors->add( 'gglcptch_la_error', $la_result );
397
- } elseif ( is_string( $la_result ) ) {
398
- $errors->add( 'gglcptch_la_error', $la_result );
399
- }
400
-
401
- if ( ! $gglcptch_check['response'] ) {
402
- $error_message = sprintf( '<strong>%s</strong>:&nbsp;%s', __( 'Error', 'google-captcha' ), gglcptch_get_message() );
403
- $errors->add( 'gglcptch_error', $error_message );
404
- }
405
-
406
- $result['errors'] = $errors;
407
- }
408
-
409
  return $result;
410
  }
411
  }
@@ -424,32 +353,13 @@ if ( ! function_exists( 'gglcptch_commentform_display' ) ) {
424
  /* Check JS enabled for comment form */
425
  if ( ! function_exists( 'gglcptch_commentform_check' ) ) {
426
  function gglcptch_commentform_check() {
427
-
428
- $gglcptch_check = gglcptch_check();
429
-
430
- if ( ! $gglcptch_check['response'] && $gglcptch_check['reason'] == 'ERROR_NO_KEYS' ) {
431
- return;
432
- }
433
-
434
- $la_result = gglcptch_handle_by_limit_attempts( $gglcptch_check['response'], 'comments_form' );
435
-
436
- if ( true !== $la_result ) {
437
- $error_message = '';
438
- if ( is_wp_error( $la_result ) ) {
439
- $la_result = $la_result->get_error_message();
440
- $error_message .= $la_result . "<br />";
441
- } elseif ( is_string( $la_result ) ) {
442
- $error_message .= $la_result . "<br />";
443
- }
444
-
445
- if ( ! $gglcptch_check['response'] ) {
446
- $error_message .= gglcptch_get_message() . "<br />";
447
- }
448
-
449
  $error_message = sprintf(
450
  '<strong>%s</strong>:&nbsp;%s&nbsp;%s',
451
  __( 'Error', 'google-captcha' ),
452
- $error_message,
453
  __( 'Click the BACK button on your browser and try again.', 'google-captcha' )
454
  );
455
  wp_die( $error_message );
@@ -464,32 +374,10 @@ if ( ! function_exists( 'gglcptch_contact_form_check' ) ) {
464
  if ( ! $allow || is_string( $allow ) || is_wp_error( $allow ) ) {
465
  return $allow;
466
  }
467
-
468
- $gglcptch_check = gglcptch_check();
469
-
470
- if ( ! $gglcptch_check['response'] && $gglcptch_check['reason'] == 'ERROR_NO_KEYS' ) {
471
- return true;
472
- }
473
-
474
- $la_result = gglcptch_handle_by_limit_attempts( $gglcptch_check['response'], 'contact_form' );
475
-
476
- if ( true !== $la_result ) {
477
- $allow = new WP_Error();
478
-
479
- if ( is_wp_error( $la_result ) ) {
480
- $allow = $la_result;
481
- } elseif ( is_string( $la_result ) ) {
482
- $allow->add( 'gglcptch_la_error', $la_result );
483
- }
484
-
485
- if ( ! $gglcptch_check['response'] ) {
486
- $error_message = sprintf( '<strong>%s</strong>:&nbsp;%s', __( 'Error', 'google-captcha' ), gglcptch_get_message() );
487
- $allow->add( 'gglcptch_error', $error_message );
488
- }
489
-
490
- return $allow;
491
- } else {
492
- return true;
493
  }
 
494
  }
495
  }
259
  /* Check google captcha in login form */
260
  if ( ! function_exists( 'gglcptch_login_check' ) ) {
261
  function gglcptch_login_check( $user ) {
262
+ global $gglcptch_check;
263
+ if ( gglcptch_is_woocommerce_page() )
264
  return $user;
265
+ if ( is_wp_error( $user ) && isset( $user->errors["empty_username"] ) && isset( $user->errors["empty_password"] ) )
 
 
 
 
266
  return $user;
 
 
 
267
 
268
+ $gglcptch_check = gglcptch_check( 'login_form' );
 
 
 
 
 
 
 
269
 
270
+ if ( ! $gglcptch_check['response'] ) {
271
  if ( $gglcptch_check['reason'] == 'VERIFICATION_FAILED' ) {
272
  wp_clear_auth_cookie();
273
  }
274
+ $errors = new WP_Error( $user->get_error_code(), __( 'Authentication failed.', 'google-captcha' ) );
275
+ $gglcptch_errors = $gglcptch_check['errors']->errors;
276
+ foreach ( $gglcptch_errors as $code => $messages ) {
277
+ foreach ( $messages as $message ) {
278
+ $errors->add( $code, $message );
279
+ }
280
  }
281
+ $gglcptch_check['errors'] = $errors;
282
+ return $gglcptch_check['errors'];
283
  }
 
284
  return $user;
285
  }
286
  }
287
 
288
+ /* Check google captcha in registration form */
289
  if ( ! function_exists( 'gglcptch_register_check' ) ) {
290
  function gglcptch_register_check( $allow ) {
291
+ if ( gglcptch_is_woocommerce_page() )
 
 
 
292
  return $allow;
293
+ $gglcptch_check = gglcptch_check( 'registration_form' );
294
+ if ( ! $gglcptch_check['response'] ) {
295
+ return $gglcptch_check['errors'];
296
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
297
  return $allow;
298
  }
299
  }
301
  /* Check google captcha in lostpassword form */
302
  if ( ! function_exists( 'gglcptch_lostpassword_check' ) ) {
303
  function gglcptch_lostpassword_check( $allow ) {
304
+ if ( gglcptch_is_woocommerce_page() )
 
 
 
305
  return $allow;
306
+ $gglcptch_check = gglcptch_check( 'reset_pwd_form' );
307
+ if ( ! $gglcptch_check['response'] ) {
308
+ return $gglcptch_check['errors'];
309
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
310
  return $allow;
311
  }
312
  }
317
  if ( $error_message = $errors->get_error_message( 'gglcptch_error' ) ) {
318
  printf( '<p class="error gglcptch_error">%s</p>', $error_message );
319
  }
320
+ if ( $error_message = $errors->get_error_message( 'lmttmpts_error' ) ) {
321
+ printf( '<p class="error lmttmpts_error">%s</p>', $error_message );
322
+ }
323
  echo gglcptch_display();
324
  }
325
  }
328
  if ( ! function_exists( 'gglcptch_signup_check' ) ) {
329
  function gglcptch_signup_check( $result ) {
330
  global $current_user;
331
+ if ( is_admin() && ! defined( 'DOING_AJAX' ) && ! empty( $current_user->data->ID ) )
 
332
  return $result;
333
+ $gglcptch_check = gglcptch_check( 'registration_form' );
334
+ if ( ! $gglcptch_check['response'] ) {
335
+ $result['errors'] = $gglcptch_check['errors'];
 
 
336
  return $result;
337
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
338
  return $result;
339
  }
340
  }
353
  /* Check JS enabled for comment form */
354
  if ( ! function_exists( 'gglcptch_commentform_check' ) ) {
355
  function gglcptch_commentform_check() {
356
+ $gglcptch_check = gglcptch_check( 'comments_form' );
357
+ if ( ! $gglcptch_check['response'] ) {
358
+ $message = gglcptch_get_message() . "<br />";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
359
  $error_message = sprintf(
360
  '<strong>%s</strong>:&nbsp;%s&nbsp;%s',
361
  __( 'Error', 'google-captcha' ),
362
+ $message,
363
  __( 'Click the BACK button on your browser and try again.', 'google-captcha' )
364
  );
365
  wp_die( $error_message );
374
  if ( ! $allow || is_string( $allow ) || is_wp_error( $allow ) ) {
375
  return $allow;
376
  }
377
+ $gglcptch_check = gglcptch_check( 'contact_form' );
378
+ if ( ! $gglcptch_check['response'] ) {
379
+ return $gglcptch_check['errors'];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
380
  }
381
+ return $allow;
382
  }
383
  }
includes/pro_banners.php CHANGED
@@ -52,6 +52,7 @@ if ( ! function_exists( 'gglcptch_supported_plugins_banner' ) ) {
52
  'si_contact_form' => array( 'form_name' => 'Fast Secure Contact Form' ),
53
  'jetpack_contact_form' => array( 'form_name' => __( 'Jetpack Contact Form', 'google-captcha' ) ),
54
  'sbscrbr' => array( 'form_name' => 'Subscriber' ),
 
55
  'bbpress_new_topic_form' => array( 'form_name' => __( 'bbPress New Topic form', 'google-captcha' ) ),
56
  'bbpress_reply_form' => array( 'form_name' => __( 'bbPress Reply form', 'google-captcha' ) ),
57
  'buddypress_register' => array( 'form_name' => __( 'BuddyPress Registration form', 'google-captcha' ) ),
@@ -73,7 +74,8 @@ if ( ! function_exists( 'gglcptch_supported_plugins_banner' ) ) {
73
  'cf7',
74
  'si_contact_form',
75
  'jetpack_contact_form',
76
- 'sbscrbr'
 
77
  )
78
  ),
79
  'bbpress' => array(
52
  'si_contact_form' => array( 'form_name' => 'Fast Secure Contact Form' ),
53
  'jetpack_contact_form' => array( 'form_name' => __( 'Jetpack Contact Form', 'google-captcha' ) ),
54
  'sbscrbr' => array( 'form_name' => 'Subscriber' ),
55
+ 'mailchimp' => array( 'form_name' => 'MailChimp for Wordpress' ),
56
  'bbpress_new_topic_form' => array( 'form_name' => __( 'bbPress New Topic form', 'google-captcha' ) ),
57
  'bbpress_reply_form' => array( 'form_name' => __( 'bbPress Reply form', 'google-captcha' ) ),
58
  'buddypress_register' => array( 'form_name' => __( 'BuddyPress Registration form', 'google-captcha' ) ),
74
  'cf7',
75
  'si_contact_form',
76
  'jetpack_contact_form',
77
+ 'sbscrbr',
78
+ 'mailchimp'
79
  )
80
  ),
81
  'bbpress' => array(
js/script.js CHANGED
@@ -161,7 +161,12 @@
161
  }
162
 
163
  if ( 'v2' == gglcptch_version ) {
164
- var parameters = params ? params : { 'sitekey' : gglcptch.options.sitekey, 'theme' : gglcptch.options.theme },
 
 
 
 
 
165
  gglcptch_index = grecaptcha.render( container, parameters );
166
  $( '#' + container ).data( 'gglcptch_index', gglcptch_index );
167
  }
@@ -169,7 +174,7 @@
169
  if ( 'invisible' == gglcptch_version ) {
170
  var block = $( '#' + container ),
171
  form = block.closest( 'form' ),
172
- parameters = params ? params : { 'sitekey' : gglcptch.options.sitekey, 'size' : 'invisible' },
173
  targetObject = false,
174
  targetEvent = false;
175
 
@@ -260,4 +265,31 @@
260
  return id;
261
  }
262
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
263
  } )( jQuery, gglcptch );
161
  }
162
 
163
  if ( 'v2' == gglcptch_version ) {
164
+ if ( $( '#' + container ).parent().width() <= 304 ) {
165
+ var size = 'compact';
166
+ } else {
167
+ var size = 'normal';
168
+ }
169
+ var parameters = params ? params : { 'sitekey' : gglcptch.options.sitekey, 'theme' : gglcptch.options.theme, 'size' : size },
170
  gglcptch_index = grecaptcha.render( container, parameters );
171
  $( '#' + container ).data( 'gglcptch_index', gglcptch_index );
172
  }
174
  if ( 'invisible' == gglcptch_version ) {
175
  var block = $( '#' + container ),
176
  form = block.closest( 'form' ),
177
+ parameters = params ? params : { 'sitekey' : gglcptch.options.sitekey, 'size' : 'invisible', 'tabindex' : 9999 },
178
  targetObject = false,
179
  targetEvent = false;
180
 
265
  return id;
266
  }
267
  }
268
+
269
+ if ( gglcptch.options.version == 'v2' ) {
270
+ var width = $( window ).width();
271
+ $( window ).on( 'resize', function( ) {
272
+ if( $( window ).width() != width ) {
273
+ width = $( window ).width();
274
+ if ( typeof grecaptcha != "undefined" ) {
275
+ $( '.gglcptch_recaptcha' ).html( '' );
276
+ $('script[src^="https://www.google.com/recaptcha/api.js"], script[src^="https://www.gstatic.com/recaptcha/api2"]').remove();
277
+ var src = "https://www.google.com/recaptcha/api.js";
278
+ $.getScript( {
279
+ url : src,
280
+ success : function() {
281
+ setTimeout( function() {
282
+ try {
283
+ gglcptch.prepare();
284
+ } catch ( e ) {
285
+ console.log( e );
286
+ }
287
+ }, 500 );
288
+ }
289
+ } );
290
+ }
291
+ }
292
+ } );
293
+ }
294
+
295
  } )( jQuery, gglcptch );
languages/google-captcha-cs_CZ.mo CHANGED
Binary file
languages/google-captcha-cs_CZ.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-09-14 20:10+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Mik013\n"
8
  "Language-Team: Mik013\n"
@@ -17,17 +17,17 @@ msgstr ""
17
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:37 google-captcha.php:39 google-captcha.php:432
21
- #: includes/class-gglcptch-settings-tabs.php:149
22
  msgid "Google Captcha Settings"
23
  msgstr "Nastavení Google Captcha"
24
 
25
- #: google-captcha.php:39 google-captcha.php:950 google-captcha.php:963
26
  #: includes/class-gglcptch-settings-tabs.php:25
27
  msgid "Settings"
28
  msgstr "Nastavení"
29
 
30
- #: google-captcha.php:41 includes/whitelist.php:44
31
  msgid "Google Captcha Whitelist"
32
  msgstr "Google Captcha seznam povolených"
33
 
@@ -39,11 +39,11 @@ msgstr "Seznam povolených"
39
  msgid "Upgrade to Pro"
40
  msgstr "Aktualizovat na Pro"
41
 
42
- #: google-captcha.php:225
43
  msgid "Please wait until Google reCAPTCHA is loaded."
44
  msgstr "Prosím počkejte, než se Google reCAPTCHA načte."
45
 
46
- #: google-captcha.php:226
47
  msgid ""
48
  "Failed to load Google reCAPTCHA. Please check your internet connection and "
49
  "reload this page."
@@ -51,65 +51,63 @@ msgstr ""
51
  "Nepodařilo se načíst Google reCAPTCHA. Zkontrolujte připojení k Internetu a "
52
  "znovu načtěte tuto stránku."
53
 
54
- #: google-captcha.php:242
55
  msgid "Warning"
56
  msgstr "Upozornění"
57
 
58
- #: google-captcha.php:340
59
  msgid "You are in the whitelist"
60
  msgstr "Jste na seznamu povolených"
61
 
62
- #: google-captcha.php:512 google-captcha.php:983
63
  msgid "To use Google Captcha you must get the keys from"
64
  msgstr "Chcete-li použít Google Captcha musíte získat klíče z"
65
 
66
- #: google-captcha.php:513 google-captcha.php:984
67
  msgid "here"
68
  msgstr "zde"
69
 
70
- #: google-captcha.php:514 google-captcha.php:985
71
  msgid "and enter them on the"
72
  msgstr "a zadejte je na"
73
 
74
- #: google-captcha.php:516 google-captcha.php:987
75
  msgid "plugin setting page"
76
  msgstr "stránce nastavení pluginu"
77
 
78
- #: google-captcha.php:763 includes/forms.php:282 includes/forms.php:313
79
- #: includes/forms.php:344 includes/forms.php:389 includes/forms.php:435
80
- #: includes/forms.php:469
81
  msgid "Error"
82
  msgstr "Chyba"
83
 
84
- #: google-captcha.php:860
85
  msgid "User response is missing."
86
  msgstr "Chybí odezva uživatele."
87
 
88
- #: google-captcha.php:864 google-captcha.php:872
89
  msgid "Secret Key is invalid."
90
  msgstr "Tajný klíč je neplatný."
91
 
92
- #: google-captcha.php:865 google-captcha.php:873
93
  msgid "Check your domain configurations"
94
  msgstr "Zkontrolujte konfiguraci vaší domény"
95
 
96
- #: google-captcha.php:866 google-captcha.php:874
97
  msgid "and enter it again"
98
  msgstr "a zadejte jej znovu"
99
 
100
- #: google-captcha.php:869
101
  msgid "Secret Key is missing."
102
  msgstr "Tajný klíč chybí."
103
 
104
- #: google-captcha.php:876
105
  msgid "User response is invalid"
106
  msgstr "Neplatná odezva uživatele"
107
 
108
- #: google-captcha.php:877
109
  msgid "You have entered an incorrect reCAPTCHA value."
110
  msgstr "Zadali jste nesprávnou hodnotu reCAPTCHA ."
111
 
112
- #: google-captcha.php:878
113
  msgid ""
114
  "More than one reCAPTCHA has been found in the current form. Please remove "
115
  "all unnecessary reCAPTCHA fields to make it work properly."
@@ -117,27 +115,27 @@ msgstr ""
117
  "V aktuálním formuláři byla zjištěna více než jedna reCAPTCHA. Pro správnou "
118
  "funkcionalitu, prosím odstraňte všechny nepotřebné reCAPTCHA pole."
119
 
120
- #: google-captcha.php:902
121
  msgid "Please submit \"Test verification\""
122
  msgstr "Odešlete \"Test ověření\""
123
 
124
- #: google-captcha.php:904
125
  msgid "Please complete the captcha and submit \"Test verification\""
126
  msgstr "Prosím, doplňte captcha a odešlete \"Test ověření\""
127
 
128
- #: google-captcha.php:910
129
  msgid "Test verification"
130
  msgstr "Test ověření"
131
 
132
- #: google-captcha.php:931
133
  msgid "The verification is successfully completed."
134
  msgstr "Ověření je úspěšně dokončeno."
135
 
136
- #: google-captcha.php:964
137
  msgid "FAQ"
138
  msgstr "Často kladené otázky (FAQ)"
139
 
140
- #: google-captcha.php:965
141
  msgid "Support"
142
  msgstr "Podpora"
143
 
@@ -183,15 +181,15 @@ msgstr "VAROVÁNÍ: Captcha se nezobrazí, dokud nebudou vyplněna pole s klíč
183
  msgid "Enter secret key"
184
  msgstr "Vložte tajný klíč"
185
 
186
- #: includes/class-gglcptch-settings-tabs.php:135
187
  msgid "Settings saved."
188
  msgstr "Nastavení uloženo."
189
 
190
- #: includes/class-gglcptch-settings-tabs.php:152
191
  msgid "Authentication"
192
  msgstr "Autentizace"
193
 
194
- #: includes/class-gglcptch-settings-tabs.php:153
195
  msgid ""
196
  "Register your website with Google to get required API keys and enter them "
197
  "below."
@@ -199,62 +197,62 @@ msgstr ""
199
  "Zaregistrujte svůj web na Google, abyste získali požadované API klíče a "
200
  "zadejte je níže."
201
 
202
- #: includes/class-gglcptch-settings-tabs.php:153
203
  msgid "Get the API Keys"
204
  msgstr "Získat API klíče"
205
 
206
- #: includes/class-gglcptch-settings-tabs.php:170
207
  #, fuzzy
208
  msgid "Test reCAPTCHA"
209
  msgstr "Vyzkoušet reCAPTCHA"
210
 
211
- #: includes/class-gglcptch-settings-tabs.php:176
212
  msgid "General"
213
  msgstr "Obecné"
214
 
215
- #: includes/class-gglcptch-settings-tabs.php:179
216
  msgid "Enable reCAPTCHA for"
217
  msgstr "Povolit reCAPTCHA pro"
218
 
219
- #: includes/class-gglcptch-settings-tabs.php:224
220
- #: includes/class-gglcptch-settings-tabs.php:290 includes/pro_banners.php:20
221
  msgid "Close"
222
  msgstr "Zavřít"
223
 
224
- #: includes/class-gglcptch-settings-tabs.php:233
225
  #, fuzzy
226
  msgid "Hide reCAPTCHA for"
227
  msgstr "Povolit reCAPTCHA pro"
228
 
229
- #: includes/class-gglcptch-settings-tabs.php:251
230
  msgid "reCAPTCHA Version"
231
  msgstr "reCAPTCHA verze"
232
 
233
- #: includes/class-gglcptch-settings-tabs.php:265
234
- #: includes/class-gglcptch-settings-tabs.php:277
235
  msgid "Theme"
236
  msgstr "Šablona"
237
 
238
- #: includes/class-gglcptch-settings-tabs.php:299
239
  msgid "Whitelist Notification"
240
  msgstr "Upozornění na seznam povolených"
241
 
242
- #: includes/class-gglcptch-settings-tabs.php:302
243
  #, fuzzy
244
  msgid "This message will be displayed instead of the reCAPTCHA."
245
  msgstr "Tato zpráva se zobrazí namísto reCAPTCHA."
246
 
247
- #: includes/class-gglcptch-settings-tabs.php:306
248
  msgid "Disabled Submit Button"
249
  msgstr ""
250
 
251
- #: includes/class-gglcptch-settings-tabs.php:310
252
  msgid ""
253
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
254
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
255
  msgstr ""
256
 
257
- #: includes/class-gglcptch-settings-tabs.php:325
258
  msgid ""
259
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
260
  "version 1 features."
@@ -262,7 +260,7 @@ msgstr ""
262
  "Na stránce lze zobrazit pouze jednu reCAPTCHA, což souvisí s vlastnostmi "
263
  "reCAPTCHA verze 1."
264
 
265
- #: includes/class-gglcptch-settings-tabs.php:328
266
  #, fuzzy
267
  msgid ""
268
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
@@ -271,11 +269,11 @@ msgstr ""
271
  "ReCAPTCHA verze byla změněna. Klikněte na \"Vyzkoušet reCAPTCHA\" a znovu "
272
  "vygenerujte tajné a webové klíče, je-li to nezbytné."
273
 
274
- #: includes/class-gglcptch-settings-tabs.php:341
275
  msgid "Google Captcha Shortcode"
276
  msgstr "Zkrácený kód Google Captcha"
277
 
278
- #: includes/class-gglcptch-settings-tabs.php:344
279
  msgid ""
280
  "Add Google Captcha to your posts or pages using the following shortcode:"
281
  msgstr ""
@@ -302,7 +300,7 @@ msgstr "Formulář komentářů"
302
  msgid "WordPress default"
303
  msgstr "WordPress"
304
 
305
- #: includes/forms.php:46 includes/pro_banners.php:71
306
  msgid "External Plugins"
307
  msgstr "Externí pluginy"
308
 
@@ -310,19 +308,23 @@ msgstr "Externí pluginy"
310
  msgid "Custom Forms"
311
  msgstr ""
312
 
313
- #: includes/forms.php:75
314
  msgid "Google Captcha Plugin"
315
  msgstr ""
316
 
317
- #: includes/forms.php:114 includes/forms.php:139
318
  msgid "Activate"
319
  msgstr "Aktivovat"
320
 
321
- #: includes/forms.php:116 includes/forms.php:142 includes/forms.php:146
322
  msgid "Install Now"
323
  msgstr "Instalovat nyní"
324
 
325
- #: includes/forms.php:437
 
 
 
 
326
  msgid "Click the BACK button on your browser and try again."
327
  msgstr "Klikněte ve vašem prohlížeči na tlačítko ZPĚT a zkuste to znovu."
328
 
@@ -330,7 +332,7 @@ msgstr "Klikněte ve vašem prohlížeči na tlačítko ZPĚT a zkuste to znovu.
330
  msgid "This options is available in Pro version of plugin"
331
  msgstr "Toto nastavení je k dispozici v Pro verzi pluginu"
332
 
333
- #: includes/pro_banners.php:40 includes/whitelist.php:84
334
  msgid "Allowed formats"
335
  msgstr "Přípustné formáty"
336
 
@@ -362,82 +364,82 @@ msgstr "tabelátor, nový řádek nebo návratu vozíku."
362
  msgid "Jetpack Contact Form"
363
  msgstr ""
364
 
365
- #: includes/pro_banners.php:55
366
  msgid "bbPress New Topic form"
367
  msgstr ""
368
 
369
- #: includes/pro_banners.php:56
370
  msgid "bbPress Reply form"
371
  msgstr ""
372
 
373
- #: includes/pro_banners.php:57
374
  #, fuzzy
375
  msgid "BuddyPress Registration form"
376
  msgstr "Buddypress Registrační formulář"
377
 
378
- #: includes/pro_banners.php:58
379
  #, fuzzy
380
  msgid "BuddyPress Comments form"
381
  msgstr "Buddypress Formulář pro odeslání komentáře"
382
 
383
- #: includes/pro_banners.php:59
384
  msgid "BuddyPress Add New Group form"
385
  msgstr ""
386
 
387
- #: includes/pro_banners.php:60
388
  #, fuzzy
389
  msgid "WooCommerce Login form"
390
  msgstr "WooCommerce přihlašovací formulář"
391
 
392
- #: includes/pro_banners.php:61
393
  msgid "WooCommerce Registration form"
394
  msgstr ""
395
 
396
- #: includes/pro_banners.php:62
397
  msgid "WooCommerce Reset password form"
398
  msgstr ""
399
 
400
- #: includes/pro_banners.php:63
401
  msgid "WooCommerce Checkout form"
402
  msgstr ""
403
 
404
- #: includes/pro_banners.php:64
405
  msgid "wpForo Login form"
406
  msgstr ""
407
 
408
- #: includes/pro_banners.php:65
409
  msgid "wpForo Registration form"
410
  msgstr ""
411
 
412
- #: includes/pro_banners.php:66
413
  msgid "wpForo New Topic form"
414
  msgstr ""
415
 
416
- #: includes/pro_banners.php:67
417
  msgid "wpForo Reply form"
418
  msgstr ""
419
 
420
- #: includes/pro_banners.php:153
421
  msgid "Size"
422
  msgstr "Velikost"
423
 
424
- #: includes/pro_banners.php:157
425
  msgid "Normal"
426
  msgstr "Normální"
427
 
428
- #: includes/pro_banners.php:158
429
  msgid "Compact"
430
  msgstr "Kompaktní"
431
 
432
- #: includes/pro_banners.php:163
433
  msgid "Language"
434
  msgstr "Jazyk"
435
 
436
- #: includes/pro_banners.php:171
437
  msgid "Multilanguage"
438
  msgstr "Multilanguage"
439
 
440
- #: includes/pro_banners.php:174
441
  msgid ""
442
  "Enable to switch language automatically on multilingual website using "
443
  "Multilanguage plugin."
@@ -445,80 +447,80 @@ msgstr ""
445
  "Povolit automatické přepnutí jazyka na vícejazyčných webech s pluginem "
446
  "Multilanguage."
447
 
448
- #: includes/whitelist.php:47
449
  msgid "Add New"
450
  msgstr "Přidat novou"
451
 
452
- #: includes/whitelist.php:72
453
  msgid "IP to whitelist"
454
  msgstr "Přidat IP adresu na seznam povolených"
455
 
456
- #: includes/whitelist.php:79
457
  msgid "My IP"
458
  msgstr "Má IP adresa"
459
 
460
- #: includes/whitelist.php:86
461
  msgid "Allowed diapason"
462
  msgstr "Povolený rozsah"
463
 
464
- #: includes/whitelist.php:90
465
  msgid "Add IP to whitelist"
466
  msgstr "Přidat IP adresu na seznam povolených"
467
 
468
- #: includes/whitelist.php:95
469
  msgid "Search IP"
470
  msgstr "Hledat IP adresu"
471
 
472
- #: includes/whitelist.php:149
473
  msgid "Nothing found"
474
  msgstr "Nic nenalezeno"
475
 
476
- #: includes/whitelist.php:149
477
  msgid "No IP in the whitelist"
478
  msgstr "Na seznamu povolených zatím není žádná IP adresa"
479
 
480
- #: includes/whitelist.php:156
481
  msgid "IP Address"
482
  msgstr "IP adresa"
483
 
484
- #: includes/whitelist.php:157
485
  msgid "Date Added"
486
  msgstr "Datum přidání"
487
 
488
- #: includes/whitelist.php:211 includes/whitelist.php:221
489
  msgid "Delete"
490
  msgstr "Smazat"
491
 
492
- #: includes/whitelist.php:307
493
  msgid "IP added to the whitelist successfully."
494
  msgstr "IP adresa byla úspěšně přidána na seznam povolených."
495
 
496
- #: includes/whitelist.php:309 includes/whitelist.php:330
497
- #: includes/whitelist.php:340
498
  msgid "Some errors occurred."
499
  msgstr "Došlo k chybám."
500
 
501
- #: includes/whitelist.php:311
502
  msgid "IP is already in the whitelist."
503
  msgstr "IP adresa již na seznamu povolených je."
504
 
505
- #: includes/whitelist.php:314
506
  msgid "Invalid IP. See allowed formats."
507
  msgstr "Neplatná IP adresa. Zkontrolujte Přípustné formáty."
508
 
509
- #: includes/whitelist.php:336
510
  msgid "One IP was deleted successfully."
511
  msgstr "Jedna IP adresa byla úspěšně odstraněna."
512
 
513
- #: includes/whitelist.php:343
514
  msgid "You have not entered any IP."
515
  msgstr "Nezadali jste žádnou IP adresu."
516
 
517
- #: includes/whitelist.php:346
518
  msgid "You have not entered any IP in to the search form."
519
  msgstr "Do vyhledávacího formuláře jste nezadali žádnou IP adresu."
520
 
521
- #: includes/whitelist.php:348
522
  msgid "Search results for"
523
  msgstr "Výsledky hledání pro"
524
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-02-06 09:49+0200\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Mik013\n"
8
  "Language-Team: Mik013\n"
17
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: google-captcha.php:37 google-captcha.php:39 google-captcha.php:445
21
+ #: includes/class-gglcptch-settings-tabs.php:150
22
  msgid "Google Captcha Settings"
23
  msgstr "Nastavení Google Captcha"
24
 
25
+ #: google-captcha.php:39 google-captcha.php:1025 google-captcha.php:1038
26
  #: includes/class-gglcptch-settings-tabs.php:25
27
  msgid "Settings"
28
  msgstr "Nastavení"
29
 
30
+ #: google-captcha.php:41 includes/whitelist.php:46
31
  msgid "Google Captcha Whitelist"
32
  msgstr "Google Captcha seznam povolených"
33
 
39
  msgid "Upgrade to Pro"
40
  msgstr "Aktualizovat na Pro"
41
 
42
+ #: google-captcha.php:233
43
  msgid "Please wait until Google reCAPTCHA is loaded."
44
  msgstr "Prosím počkejte, než se Google reCAPTCHA načte."
45
 
46
+ #: google-captcha.php:234
47
  msgid ""
48
  "Failed to load Google reCAPTCHA. Please check your internet connection and "
49
  "reload this page."
51
  "Nepodařilo se načíst Google reCAPTCHA. Zkontrolujte připojení k Internetu a "
52
  "znovu načtěte tuto stránku."
53
 
54
+ #: google-captcha.php:250
55
  msgid "Warning"
56
  msgstr "Upozornění"
57
 
58
+ #: google-captcha.php:351
59
  msgid "You are in the whitelist"
60
  msgstr "Jste na seznamu povolených"
61
 
62
+ #: google-captcha.php:532 google-captcha.php:1060
63
  msgid "To use Google Captcha you must get the keys from"
64
  msgstr "Chcete-li použít Google Captcha musíte získat klíče z"
65
 
66
+ #: google-captcha.php:533 google-captcha.php:1061
67
  msgid "here"
68
  msgstr "zde"
69
 
70
+ #: google-captcha.php:534 google-captcha.php:1062
71
  msgid "and enter them on the"
72
  msgstr "a zadejte je na"
73
 
74
+ #: google-captcha.php:536 google-captcha.php:1064
75
  msgid "plugin setting page"
76
  msgstr "stránce nastavení pluginu"
77
 
78
+ #: google-captcha.php:796 includes/forms.php:361
 
 
79
  msgid "Error"
80
  msgstr "Chyba"
81
 
82
+ #: google-captcha.php:920
83
  msgid "User response is missing."
84
  msgstr "Chybí odezva uživatele."
85
 
86
+ #: google-captcha.php:924 google-captcha.php:932
87
  msgid "Secret Key is invalid."
88
  msgstr "Tajný klíč je neplatný."
89
 
90
+ #: google-captcha.php:925 google-captcha.php:933
91
  msgid "Check your domain configurations"
92
  msgstr "Zkontrolujte konfiguraci vaší domény"
93
 
94
+ #: google-captcha.php:926 google-captcha.php:934
95
  msgid "and enter it again"
96
  msgstr "a zadejte jej znovu"
97
 
98
+ #: google-captcha.php:929
99
  msgid "Secret Key is missing."
100
  msgstr "Tajný klíč chybí."
101
 
102
+ #: google-captcha.php:936
103
  msgid "User response is invalid"
104
  msgstr "Neplatná odezva uživatele"
105
 
106
+ #: google-captcha.php:937
107
  msgid "You have entered an incorrect reCAPTCHA value."
108
  msgstr "Zadali jste nesprávnou hodnotu reCAPTCHA ."
109
 
110
+ #: google-captcha.php:938
111
  msgid ""
112
  "More than one reCAPTCHA has been found in the current form. Please remove "
113
  "all unnecessary reCAPTCHA fields to make it work properly."
115
  "V aktuálním formuláři byla zjištěna více než jedna reCAPTCHA. Pro správnou "
116
  "funkcionalitu, prosím odstraňte všechny nepotřebné reCAPTCHA pole."
117
 
118
+ #: google-captcha.php:975
119
  msgid "Please submit \"Test verification\""
120
  msgstr "Odešlete \"Test ověření\""
121
 
122
+ #: google-captcha.php:977
123
  msgid "Please complete the captcha and submit \"Test verification\""
124
  msgstr "Prosím, doplňte captcha a odešlete \"Test ověření\""
125
 
126
+ #: google-captcha.php:984
127
  msgid "Test verification"
128
  msgstr "Test ověření"
129
 
130
+ #: google-captcha.php:1005
131
  msgid "The verification is successfully completed."
132
  msgstr "Ověření je úspěšně dokončeno."
133
 
134
+ #: google-captcha.php:1040
135
  msgid "FAQ"
136
  msgstr "Často kladené otázky (FAQ)"
137
 
138
+ #: google-captcha.php:1041
139
  msgid "Support"
140
  msgstr "Podpora"
141
 
181
  msgid "Enter secret key"
182
  msgstr "Vložte tajný klíč"
183
 
184
+ #: includes/class-gglcptch-settings-tabs.php:136
185
  msgid "Settings saved."
186
  msgstr "Nastavení uloženo."
187
 
188
+ #: includes/class-gglcptch-settings-tabs.php:153
189
  msgid "Authentication"
190
  msgstr "Autentizace"
191
 
192
+ #: includes/class-gglcptch-settings-tabs.php:154
193
  msgid ""
194
  "Register your website with Google to get required API keys and enter them "
195
  "below."
197
  "Zaregistrujte svůj web na Google, abyste získali požadované API klíče a "
198
  "zadejte je níže."
199
 
200
+ #: includes/class-gglcptch-settings-tabs.php:154
201
  msgid "Get the API Keys"
202
  msgstr "Získat API klíče"
203
 
204
+ #: includes/class-gglcptch-settings-tabs.php:171
205
  #, fuzzy
206
  msgid "Test reCAPTCHA"
207
  msgstr "Vyzkoušet reCAPTCHA"
208
 
209
+ #: includes/class-gglcptch-settings-tabs.php:177
210
  msgid "General"
211
  msgstr "Obecné"
212
 
213
+ #: includes/class-gglcptch-settings-tabs.php:180
214
  msgid "Enable reCAPTCHA for"
215
  msgstr "Povolit reCAPTCHA pro"
216
 
217
+ #: includes/class-gglcptch-settings-tabs.php:226
218
+ #: includes/class-gglcptch-settings-tabs.php:292 includes/pro_banners.php:20
219
  msgid "Close"
220
  msgstr "Zavřít"
221
 
222
+ #: includes/class-gglcptch-settings-tabs.php:235
223
  #, fuzzy
224
  msgid "Hide reCAPTCHA for"
225
  msgstr "Povolit reCAPTCHA pro"
226
 
227
+ #: includes/class-gglcptch-settings-tabs.php:253
228
  msgid "reCAPTCHA Version"
229
  msgstr "reCAPTCHA verze"
230
 
231
+ #: includes/class-gglcptch-settings-tabs.php:267
232
+ #: includes/class-gglcptch-settings-tabs.php:279
233
  msgid "Theme"
234
  msgstr "Šablona"
235
 
236
+ #: includes/class-gglcptch-settings-tabs.php:301
237
  msgid "Whitelist Notification"
238
  msgstr "Upozornění na seznam povolených"
239
 
240
+ #: includes/class-gglcptch-settings-tabs.php:304
241
  #, fuzzy
242
  msgid "This message will be displayed instead of the reCAPTCHA."
243
  msgstr "Tato zpráva se zobrazí namísto reCAPTCHA."
244
 
245
+ #: includes/class-gglcptch-settings-tabs.php:308
246
  msgid "Disabled Submit Button"
247
  msgstr ""
248
 
249
+ #: includes/class-gglcptch-settings-tabs.php:312
250
  msgid ""
251
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
252
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
253
  msgstr ""
254
 
255
+ #: includes/class-gglcptch-settings-tabs.php:327
256
  msgid ""
257
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
258
  "version 1 features."
260
  "Na stránce lze zobrazit pouze jednu reCAPTCHA, což souvisí s vlastnostmi "
261
  "reCAPTCHA verze 1."
262
 
263
+ #: includes/class-gglcptch-settings-tabs.php:330
264
  #, fuzzy
265
  msgid ""
266
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
269
  "ReCAPTCHA verze byla změněna. Klikněte na \"Vyzkoušet reCAPTCHA\" a znovu "
270
  "vygenerujte tajné a webové klíče, je-li to nezbytné."
271
 
272
+ #: includes/class-gglcptch-settings-tabs.php:343
273
  msgid "Google Captcha Shortcode"
274
  msgstr "Zkrácený kód Google Captcha"
275
 
276
+ #: includes/class-gglcptch-settings-tabs.php:346
277
  msgid ""
278
  "Add Google Captcha to your posts or pages using the following shortcode:"
279
  msgstr ""
300
  msgid "WordPress default"
301
  msgstr "WordPress"
302
 
303
+ #: includes/forms.php:46 includes/pro_banners.php:72
304
  msgid "External Plugins"
305
  msgstr "Externí pluginy"
306
 
308
  msgid "Custom Forms"
309
  msgstr ""
310
 
311
+ #: includes/forms.php:76
312
  msgid "Google Captcha Plugin"
313
  msgstr ""
314
 
315
+ #: includes/forms.php:116 includes/forms.php:141
316
  msgid "Activate"
317
  msgstr "Aktivovat"
318
 
319
+ #: includes/forms.php:118 includes/forms.php:144 includes/forms.php:148
320
  msgid "Install Now"
321
  msgstr "Instalovat nyní"
322
 
323
+ #: includes/forms.php:274
324
+ msgid "Authentication failed."
325
+ msgstr ""
326
+
327
+ #: includes/forms.php:363
328
  msgid "Click the BACK button on your browser and try again."
329
  msgstr "Klikněte ve vašem prohlížeči na tlačítko ZPĚT a zkuste to znovu."
330
 
332
  msgid "This options is available in Pro version of plugin"
333
  msgstr "Toto nastavení je k dispozici v Pro verzi pluginu"
334
 
335
+ #: includes/pro_banners.php:40 includes/whitelist.php:86
336
  msgid "Allowed formats"
337
  msgstr "Přípustné formáty"
338
 
364
  msgid "Jetpack Contact Form"
365
  msgstr ""
366
 
367
+ #: includes/pro_banners.php:56
368
  msgid "bbPress New Topic form"
369
  msgstr ""
370
 
371
+ #: includes/pro_banners.php:57
372
  msgid "bbPress Reply form"
373
  msgstr ""
374
 
375
+ #: includes/pro_banners.php:58
376
  #, fuzzy
377
  msgid "BuddyPress Registration form"
378
  msgstr "Buddypress Registrační formulář"
379
 
380
+ #: includes/pro_banners.php:59
381
  #, fuzzy
382
  msgid "BuddyPress Comments form"
383
  msgstr "Buddypress Formulář pro odeslání komentáře"
384
 
385
+ #: includes/pro_banners.php:60
386
  msgid "BuddyPress Add New Group form"
387
  msgstr ""
388
 
389
+ #: includes/pro_banners.php:61
390
  #, fuzzy
391
  msgid "WooCommerce Login form"
392
  msgstr "WooCommerce přihlašovací formulář"
393
 
394
+ #: includes/pro_banners.php:62
395
  msgid "WooCommerce Registration form"
396
  msgstr ""
397
 
398
+ #: includes/pro_banners.php:63
399
  msgid "WooCommerce Reset password form"
400
  msgstr ""
401
 
402
+ #: includes/pro_banners.php:64
403
  msgid "WooCommerce Checkout form"
404
  msgstr ""
405
 
406
+ #: includes/pro_banners.php:65
407
  msgid "wpForo Login form"
408
  msgstr ""
409
 
410
+ #: includes/pro_banners.php:66
411
  msgid "wpForo Registration form"
412
  msgstr ""
413
 
414
+ #: includes/pro_banners.php:67
415
  msgid "wpForo New Topic form"
416
  msgstr ""
417
 
418
+ #: includes/pro_banners.php:68
419
  msgid "wpForo Reply form"
420
  msgstr ""
421
 
422
+ #: includes/pro_banners.php:156
423
  msgid "Size"
424
  msgstr "Velikost"
425
 
426
+ #: includes/pro_banners.php:160
427
  msgid "Normal"
428
  msgstr "Normální"
429
 
430
+ #: includes/pro_banners.php:161
431
  msgid "Compact"
432
  msgstr "Kompaktní"
433
 
434
+ #: includes/pro_banners.php:166
435
  msgid "Language"
436
  msgstr "Jazyk"
437
 
438
+ #: includes/pro_banners.php:174
439
  msgid "Multilanguage"
440
  msgstr "Multilanguage"
441
 
442
+ #: includes/pro_banners.php:177
443
  msgid ""
444
  "Enable to switch language automatically on multilingual website using "
445
  "Multilanguage plugin."
447
  "Povolit automatické přepnutí jazyka na vícejazyčných webech s pluginem "
448
  "Multilanguage."
449
 
450
+ #: includes/whitelist.php:49
451
  msgid "Add New"
452
  msgstr "Přidat novou"
453
 
454
+ #: includes/whitelist.php:74
455
  msgid "IP to whitelist"
456
  msgstr "Přidat IP adresu na seznam povolených"
457
 
458
+ #: includes/whitelist.php:81
459
  msgid "My IP"
460
  msgstr "Má IP adresa"
461
 
462
+ #: includes/whitelist.php:88
463
  msgid "Allowed diapason"
464
  msgstr "Povolený rozsah"
465
 
466
+ #: includes/whitelist.php:92
467
  msgid "Add IP to whitelist"
468
  msgstr "Přidat IP adresu na seznam povolených"
469
 
470
+ #: includes/whitelist.php:97
471
  msgid "Search IP"
472
  msgstr "Hledat IP adresu"
473
 
474
+ #: includes/whitelist.php:151
475
  msgid "Nothing found"
476
  msgstr "Nic nenalezeno"
477
 
478
+ #: includes/whitelist.php:151
479
  msgid "No IP in the whitelist"
480
  msgstr "Na seznamu povolených zatím není žádná IP adresa"
481
 
482
+ #: includes/whitelist.php:158
483
  msgid "IP Address"
484
  msgstr "IP adresa"
485
 
486
+ #: includes/whitelist.php:159
487
  msgid "Date Added"
488
  msgstr "Datum přidání"
489
 
490
+ #: includes/whitelist.php:213 includes/whitelist.php:223
491
  msgid "Delete"
492
  msgstr "Smazat"
493
 
494
+ #: includes/whitelist.php:310
495
  msgid "IP added to the whitelist successfully."
496
  msgstr "IP adresa byla úspěšně přidána na seznam povolených."
497
 
498
+ #: includes/whitelist.php:312 includes/whitelist.php:334
499
+ #: includes/whitelist.php:344
500
  msgid "Some errors occurred."
501
  msgstr "Došlo k chybám."
502
 
503
+ #: includes/whitelist.php:315
504
  msgid "IP is already in the whitelist."
505
  msgstr "IP adresa již na seznamu povolených je."
506
 
507
+ #: includes/whitelist.php:318
508
  msgid "Invalid IP. See allowed formats."
509
  msgstr "Neplatná IP adresa. Zkontrolujte Přípustné formáty."
510
 
511
+ #: includes/whitelist.php:340
512
  msgid "One IP was deleted successfully."
513
  msgstr "Jedna IP adresa byla úspěšně odstraněna."
514
 
515
+ #: includes/whitelist.php:347
516
  msgid "You have not entered any IP."
517
  msgstr "Nezadali jste žádnou IP adresu."
518
 
519
+ #: includes/whitelist.php:350
520
  msgid "You have not entered any IP in to the search form."
521
  msgstr "Do vyhledávacího formuláře jste nezadali žádnou IP adresu."
522
 
523
+ #: includes/whitelist.php:352
524
  msgid "Search results for"
525
  msgstr "Výsledky hledání pro"
526
 
languages/google-captcha-es_ES.mo CHANGED
Binary file
languages/google-captcha-es_ES.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-09-14 20:10+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Cloudzeroxyz <cloudzeroxyz@gmail.com>\n"
@@ -17,17 +17,17 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:37 google-captcha.php:39 google-captcha.php:432
21
- #: includes/class-gglcptch-settings-tabs.php:149
22
  msgid "Google Captcha Settings"
23
  msgstr "Googe Captcha Ajustes"
24
 
25
- #: google-captcha.php:39 google-captcha.php:950 google-captcha.php:963
26
  #: includes/class-gglcptch-settings-tabs.php:25
27
  msgid "Settings"
28
  msgstr "Configuraciónes"
29
 
30
- #: google-captcha.php:41 includes/whitelist.php:44
31
  msgid "Google Captcha Whitelist"
32
  msgstr ""
33
 
@@ -39,11 +39,11 @@ msgstr "Lista Blanca"
39
  msgid "Upgrade to Pro"
40
  msgstr "Actualizar a Pro"
41
 
42
- #: google-captcha.php:225
43
  msgid "Please wait until Google reCAPTCHA is loaded."
44
  msgstr "Por favor espere hasta que se carga Google reCAPTCHA."
45
 
46
- #: google-captcha.php:226
47
  msgid ""
48
  "Failed to load Google reCAPTCHA. Please check your internet connection and "
49
  "reload this page."
@@ -51,65 +51,63 @@ msgstr ""
51
  "Error al cargar Google reCAPTCHA. Por favor, compruebe su conexión a "
52
  "internet y vuelva a cargar esta página."
53
 
54
- #: google-captcha.php:242
55
  msgid "Warning"
56
  msgstr "Atención"
57
 
58
- #: google-captcha.php:340
59
  msgid "You are in the whitelist"
60
  msgstr "Estás en la lista blanca"
61
 
62
- #: google-captcha.php:512 google-captcha.php:983
63
  msgid "To use Google Captcha you must get the keys from"
64
  msgstr "Para utilizar Google Captcha debe obtener las claves de"
65
 
66
- #: google-captcha.php:513 google-captcha.php:984
67
  msgid "here"
68
  msgstr "aquí"
69
 
70
- #: google-captcha.php:514 google-captcha.php:985
71
  msgid "and enter them on the"
72
  msgstr "e introducirlas en"
73
 
74
- #: google-captcha.php:516 google-captcha.php:987
75
  msgid "plugin setting page"
76
  msgstr "página de configuración de plugin"
77
 
78
- #: google-captcha.php:763 includes/forms.php:282 includes/forms.php:313
79
- #: includes/forms.php:344 includes/forms.php:389 includes/forms.php:435
80
- #: includes/forms.php:469
81
  msgid "Error"
82
  msgstr "Error "
83
 
84
- #: google-captcha.php:860
85
  msgid "User response is missing."
86
  msgstr "Respuesta del usuario está ausente."
87
 
88
- #: google-captcha.php:864 google-captcha.php:872
89
  msgid "Secret Key is invalid."
90
  msgstr ""
91
 
92
- #: google-captcha.php:865 google-captcha.php:873
93
  msgid "Check your domain configurations"
94
  msgstr ""
95
 
96
- #: google-captcha.php:866 google-captcha.php:874
97
  msgid "and enter it again"
98
  msgstr "e introducirle otra vez"
99
 
100
- #: google-captcha.php:869
101
  msgid "Secret Key is missing."
102
  msgstr "Clave Secreta está ausente."
103
 
104
- #: google-captcha.php:876
105
  msgid "User response is invalid"
106
  msgstr "Respuesta del usuario no es válido"
107
 
108
- #: google-captcha.php:877
109
  msgid "You have entered an incorrect reCAPTCHA value."
110
  msgstr "Ha introducido un valor incorrecto de reCAPTCHA."
111
 
112
- #: google-captcha.php:878
113
  msgid ""
114
  "More than one reCAPTCHA has been found in the current form. Please remove "
115
  "all unnecessary reCAPTCHA fields to make it work properly."
@@ -117,27 +115,27 @@ msgstr ""
117
  "Más de un reCAPTCHA se ha encontrado en la forma actual. Por favor, elimine "
118
  "todos los campos de reCAPTCHA innecesarios para que funcione correctamente."
119
 
120
- #: google-captcha.php:902
121
  msgid "Please submit \"Test verification\""
122
  msgstr ""
123
 
124
- #: google-captcha.php:904
125
  msgid "Please complete the captcha and submit \"Test verification\""
126
  msgstr ""
127
 
128
- #: google-captcha.php:910
129
  msgid "Test verification"
130
  msgstr "Test de verificación"
131
 
132
- #: google-captcha.php:931
133
  msgid "The verification is successfully completed."
134
  msgstr ""
135
 
136
- #: google-captcha.php:964
137
  msgid "FAQ"
138
  msgstr "Preguntas Frecuentes"
139
 
140
- #: google-captcha.php:965
141
  msgid "Support"
142
  msgstr "Soporte"
143
 
@@ -183,78 +181,78 @@ msgstr ""
183
  msgid "Enter secret key"
184
  msgstr "Introduce la clave secreta"
185
 
186
- #: includes/class-gglcptch-settings-tabs.php:135
187
  msgid "Settings saved."
188
  msgstr ""
189
 
190
- #: includes/class-gglcptch-settings-tabs.php:152
191
  msgid "Authentication"
192
  msgstr "Autentificación"
193
 
194
- #: includes/class-gglcptch-settings-tabs.php:153
195
  msgid ""
196
  "Register your website with Google to get required API keys and enter them "
197
  "below."
198
  msgstr ""
199
 
200
- #: includes/class-gglcptch-settings-tabs.php:153
201
  msgid "Get the API Keys"
202
  msgstr ""
203
 
204
- #: includes/class-gglcptch-settings-tabs.php:170
205
  #, fuzzy
206
  msgid "Test reCAPTCHA"
207
  msgstr "Invisible reCAPTCHA"
208
 
209
- #: includes/class-gglcptch-settings-tabs.php:176
210
  msgid "General"
211
  msgstr ""
212
 
213
- #: includes/class-gglcptch-settings-tabs.php:179
214
  msgid "Enable reCAPTCHA for"
215
  msgstr "Permite reCAPTCHA para"
216
 
217
- #: includes/class-gglcptch-settings-tabs.php:224
218
- #: includes/class-gglcptch-settings-tabs.php:290 includes/pro_banners.php:20
219
  msgid "Close"
220
  msgstr "Сerrar"
221
 
222
- #: includes/class-gglcptch-settings-tabs.php:233
223
  #, fuzzy
224
  msgid "Hide reCAPTCHA for"
225
  msgstr "Permite reCAPTCHA para"
226
 
227
- #: includes/class-gglcptch-settings-tabs.php:251
228
  msgid "reCAPTCHA Version"
229
  msgstr "reCAPTCHA Versión"
230
 
231
- #: includes/class-gglcptch-settings-tabs.php:265
232
- #: includes/class-gglcptch-settings-tabs.php:277
233
  msgid "Theme"
234
  msgstr ""
235
 
236
- #: includes/class-gglcptch-settings-tabs.php:299
237
  msgid "Whitelist Notification"
238
  msgstr "Notificaciones de la Lista Blanca"
239
 
240
- #: includes/class-gglcptch-settings-tabs.php:302
241
  #, fuzzy
242
  msgid "This message will be displayed instead of the reCAPTCHA."
243
  msgstr ""
244
  "Este mensaje se visualizará en lugar del reCAPTCHA si la IP del usuario se "
245
  "agrega a la lista blanca"
246
 
247
- #: includes/class-gglcptch-settings-tabs.php:306
248
  msgid "Disabled Submit Button"
249
  msgstr ""
250
 
251
- #: includes/class-gglcptch-settings-tabs.php:310
252
  msgid ""
253
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
254
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
255
  msgstr ""
256
 
257
- #: includes/class-gglcptch-settings-tabs.php:325
258
  msgid ""
259
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
260
  "version 1 features."
@@ -262,17 +260,17 @@ msgstr ""
262
  "Sólo un reCAPTCHA puede visualizarse en la página, está relacionado con "
263
  "características de la versión 1 de reCAPTCHA."
264
 
265
- #: includes/class-gglcptch-settings-tabs.php:328
266
  msgid ""
267
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
268
  "regenerate Site and Secret keys if necessary."
269
  msgstr ""
270
 
271
- #: includes/class-gglcptch-settings-tabs.php:341
272
  msgid "Google Captcha Shortcode"
273
  msgstr ""
274
 
275
- #: includes/class-gglcptch-settings-tabs.php:344
276
  msgid ""
277
  "Add Google Captcha to your posts or pages using the following shortcode:"
278
  msgstr ""
@@ -297,7 +295,7 @@ msgstr "Formulario de comentarios"
297
  msgid "WordPress default"
298
  msgstr "WordPress por defecto"
299
 
300
- #: includes/forms.php:46 includes/pro_banners.php:71
301
  msgid "External Plugins"
302
  msgstr ""
303
 
@@ -305,20 +303,24 @@ msgstr ""
305
  msgid "Custom Forms"
306
  msgstr ""
307
 
308
- #: includes/forms.php:75
309
  msgid "Google Captcha Plugin"
310
  msgstr ""
311
 
312
- #: includes/forms.php:114 includes/forms.php:139
313
  #, fuzzy
314
  msgid "Activate"
315
  msgstr "Activar"
316
 
317
- #: includes/forms.php:116 includes/forms.php:142 includes/forms.php:146
318
  msgid "Install Now"
319
  msgstr ""
320
 
321
- #: includes/forms.php:437
 
 
 
 
322
  msgid "Click the BACK button on your browser and try again."
323
  msgstr ""
324
 
@@ -326,7 +328,7 @@ msgstr ""
326
  msgid "This options is available in Pro version of plugin"
327
  msgstr "Esta opción está disponible en la versión Pro de plugin"
328
 
329
- #: includes/pro_banners.php:40 includes/whitelist.php:84
330
  msgid "Allowed formats"
331
  msgstr "Formatos permitidos"
332
 
@@ -358,162 +360,162 @@ msgstr ""
358
  msgid "Jetpack Contact Form"
359
  msgstr ""
360
 
361
- #: includes/pro_banners.php:55
362
  msgid "bbPress New Topic form"
363
  msgstr ""
364
 
365
- #: includes/pro_banners.php:56
366
  msgid "bbPress Reply form"
367
  msgstr ""
368
 
369
- #: includes/pro_banners.php:57
370
  msgid "BuddyPress Registration form"
371
  msgstr ""
372
 
373
- #: includes/pro_banners.php:58
374
  msgid "BuddyPress Comments form"
375
  msgstr ""
376
 
377
- #: includes/pro_banners.php:59
378
  msgid "BuddyPress Add New Group form"
379
  msgstr ""
380
 
381
- #: includes/pro_banners.php:60
382
  msgid "WooCommerce Login form"
383
  msgstr ""
384
 
385
- #: includes/pro_banners.php:61
386
  msgid "WooCommerce Registration form"
387
  msgstr ""
388
 
389
- #: includes/pro_banners.php:62
390
  msgid "WooCommerce Reset password form"
391
  msgstr ""
392
 
393
- #: includes/pro_banners.php:63
394
  msgid "WooCommerce Checkout form"
395
  msgstr ""
396
 
397
- #: includes/pro_banners.php:64
398
  msgid "wpForo Login form"
399
  msgstr ""
400
 
401
- #: includes/pro_banners.php:65
402
  msgid "wpForo Registration form"
403
  msgstr ""
404
 
405
- #: includes/pro_banners.php:66
406
  msgid "wpForo New Topic form"
407
  msgstr ""
408
 
409
- #: includes/pro_banners.php:67
410
  msgid "wpForo Reply form"
411
  msgstr ""
412
 
413
- #: includes/pro_banners.php:153
414
  msgid "Size"
415
  msgstr ""
416
 
417
- #: includes/pro_banners.php:157
418
  msgid "Normal"
419
  msgstr "Normal"
420
 
421
- #: includes/pro_banners.php:158
422
  msgid "Compact"
423
  msgstr "Compacto"
424
 
425
- #: includes/pro_banners.php:163
426
  msgid "Language"
427
  msgstr ""
428
 
429
- #: includes/pro_banners.php:171
430
  msgid "Multilanguage"
431
  msgstr ""
432
 
433
- #: includes/pro_banners.php:174
434
  msgid ""
435
  "Enable to switch language automatically on multilingual website using "
436
  "Multilanguage plugin."
437
  msgstr ""
438
 
439
- #: includes/whitelist.php:47
440
  #, fuzzy
441
  msgid "Add New"
442
  msgstr "Agregar nuevo"
443
 
444
- #: includes/whitelist.php:72
445
  msgid "IP to whitelist"
446
  msgstr ""
447
 
448
- #: includes/whitelist.php:79
449
  msgid "My IP"
450
  msgstr "Mi IP"
451
 
452
- #: includes/whitelist.php:86
453
  msgid "Allowed diapason"
454
  msgstr "Diapason permitido"
455
 
456
- #: includes/whitelist.php:90
457
  msgid "Add IP to whitelist"
458
  msgstr ""
459
 
460
- #: includes/whitelist.php:95
461
  msgid "Search IP"
462
  msgstr "Buscar IP"
463
 
464
- #: includes/whitelist.php:149
465
  msgid "Nothing found"
466
  msgstr "Nada encontrado"
467
 
468
- #: includes/whitelist.php:149
469
  msgid "No IP in the whitelist"
470
  msgstr "No IP en la lista blanca"
471
 
472
- #: includes/whitelist.php:156
473
  msgid "IP Address"
474
  msgstr ""
475
 
476
- #: includes/whitelist.php:157
477
  msgid "Date Added"
478
  msgstr ""
479
 
480
- #: includes/whitelist.php:211 includes/whitelist.php:221
481
  #, fuzzy
482
  msgid "Delete"
483
  msgstr "Eliminar"
484
 
485
- #: includes/whitelist.php:307
486
  msgid "IP added to the whitelist successfully."
487
  msgstr ""
488
 
489
- #: includes/whitelist.php:309 includes/whitelist.php:330
490
- #: includes/whitelist.php:340
491
  msgid "Some errors occurred."
492
  msgstr ""
493
 
494
- #: includes/whitelist.php:311
495
  msgid "IP is already in the whitelist."
496
  msgstr ""
497
 
498
- #: includes/whitelist.php:314
499
  msgid "Invalid IP. See allowed formats."
500
  msgstr "IP es no válido. Ver formatos permitidos."
501
 
502
- #: includes/whitelist.php:336
503
  #, fuzzy
504
  msgid "One IP was deleted successfully."
505
  msgstr "Una dirección IP se ha eliminado correctamente"
506
 
507
- #: includes/whitelist.php:343
508
  #, fuzzy
509
  msgid "You have not entered any IP."
510
  msgstr "No se ha introducido ningún IP"
511
 
512
- #: includes/whitelist.php:346
513
  msgid "You have not entered any IP in to the search form."
514
  msgstr ""
515
 
516
- #: includes/whitelist.php:348
517
  msgid "Search results for"
518
  msgstr "Resultados de la búsqueda para"
519
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-02-06 09:50+0200\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Cloudzeroxyz <cloudzeroxyz@gmail.com>\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: google-captcha.php:37 google-captcha.php:39 google-captcha.php:445
21
+ #: includes/class-gglcptch-settings-tabs.php:150
22
  msgid "Google Captcha Settings"
23
  msgstr "Googe Captcha Ajustes"
24
 
25
+ #: google-captcha.php:39 google-captcha.php:1025 google-captcha.php:1038
26
  #: includes/class-gglcptch-settings-tabs.php:25
27
  msgid "Settings"
28
  msgstr "Configuraciónes"
29
 
30
+ #: google-captcha.php:41 includes/whitelist.php:46
31
  msgid "Google Captcha Whitelist"
32
  msgstr ""
33
 
39
  msgid "Upgrade to Pro"
40
  msgstr "Actualizar a Pro"
41
 
42
+ #: google-captcha.php:233
43
  msgid "Please wait until Google reCAPTCHA is loaded."
44
  msgstr "Por favor espere hasta que se carga Google reCAPTCHA."
45
 
46
+ #: google-captcha.php:234
47
  msgid ""
48
  "Failed to load Google reCAPTCHA. Please check your internet connection and "
49
  "reload this page."
51
  "Error al cargar Google reCAPTCHA. Por favor, compruebe su conexión a "
52
  "internet y vuelva a cargar esta página."
53
 
54
+ #: google-captcha.php:250
55
  msgid "Warning"
56
  msgstr "Atención"
57
 
58
+ #: google-captcha.php:351
59
  msgid "You are in the whitelist"
60
  msgstr "Estás en la lista blanca"
61
 
62
+ #: google-captcha.php:532 google-captcha.php:1060
63
  msgid "To use Google Captcha you must get the keys from"
64
  msgstr "Para utilizar Google Captcha debe obtener las claves de"
65
 
66
+ #: google-captcha.php:533 google-captcha.php:1061
67
  msgid "here"
68
  msgstr "aquí"
69
 
70
+ #: google-captcha.php:534 google-captcha.php:1062
71
  msgid "and enter them on the"
72
  msgstr "e introducirlas en"
73
 
74
+ #: google-captcha.php:536 google-captcha.php:1064
75
  msgid "plugin setting page"
76
  msgstr "página de configuración de plugin"
77
 
78
+ #: google-captcha.php:796 includes/forms.php:361
 
 
79
  msgid "Error"
80
  msgstr "Error "
81
 
82
+ #: google-captcha.php:920
83
  msgid "User response is missing."
84
  msgstr "Respuesta del usuario está ausente."
85
 
86
+ #: google-captcha.php:924 google-captcha.php:932
87
  msgid "Secret Key is invalid."
88
  msgstr ""
89
 
90
+ #: google-captcha.php:925 google-captcha.php:933
91
  msgid "Check your domain configurations"
92
  msgstr ""
93
 
94
+ #: google-captcha.php:926 google-captcha.php:934
95
  msgid "and enter it again"
96
  msgstr "e introducirle otra vez"
97
 
98
+ #: google-captcha.php:929
99
  msgid "Secret Key is missing."
100
  msgstr "Clave Secreta está ausente."
101
 
102
+ #: google-captcha.php:936
103
  msgid "User response is invalid"
104
  msgstr "Respuesta del usuario no es válido"
105
 
106
+ #: google-captcha.php:937
107
  msgid "You have entered an incorrect reCAPTCHA value."
108
  msgstr "Ha introducido un valor incorrecto de reCAPTCHA."
109
 
110
+ #: google-captcha.php:938
111
  msgid ""
112
  "More than one reCAPTCHA has been found in the current form. Please remove "
113
  "all unnecessary reCAPTCHA fields to make it work properly."
115
  "Más de un reCAPTCHA se ha encontrado en la forma actual. Por favor, elimine "
116
  "todos los campos de reCAPTCHA innecesarios para que funcione correctamente."
117
 
118
+ #: google-captcha.php:975
119
  msgid "Please submit \"Test verification\""
120
  msgstr ""
121
 
122
+ #: google-captcha.php:977
123
  msgid "Please complete the captcha and submit \"Test verification\""
124
  msgstr ""
125
 
126
+ #: google-captcha.php:984
127
  msgid "Test verification"
128
  msgstr "Test de verificación"
129
 
130
+ #: google-captcha.php:1005
131
  msgid "The verification is successfully completed."
132
  msgstr ""
133
 
134
+ #: google-captcha.php:1040
135
  msgid "FAQ"
136
  msgstr "Preguntas Frecuentes"
137
 
138
+ #: google-captcha.php:1041
139
  msgid "Support"
140
  msgstr "Soporte"
141
 
181
  msgid "Enter secret key"
182
  msgstr "Introduce la clave secreta"
183
 
184
+ #: includes/class-gglcptch-settings-tabs.php:136
185
  msgid "Settings saved."
186
  msgstr ""
187
 
188
+ #: includes/class-gglcptch-settings-tabs.php:153
189
  msgid "Authentication"
190
  msgstr "Autentificación"
191
 
192
+ #: includes/class-gglcptch-settings-tabs.php:154
193
  msgid ""
194
  "Register your website with Google to get required API keys and enter them "
195
  "below."
196
  msgstr ""
197
 
198
+ #: includes/class-gglcptch-settings-tabs.php:154
199
  msgid "Get the API Keys"
200
  msgstr ""
201
 
202
+ #: includes/class-gglcptch-settings-tabs.php:171
203
  #, fuzzy
204
  msgid "Test reCAPTCHA"
205
  msgstr "Invisible reCAPTCHA"
206
 
207
+ #: includes/class-gglcptch-settings-tabs.php:177
208
  msgid "General"
209
  msgstr ""
210
 
211
+ #: includes/class-gglcptch-settings-tabs.php:180
212
  msgid "Enable reCAPTCHA for"
213
  msgstr "Permite reCAPTCHA para"
214
 
215
+ #: includes/class-gglcptch-settings-tabs.php:226
216
+ #: includes/class-gglcptch-settings-tabs.php:292 includes/pro_banners.php:20
217
  msgid "Close"
218
  msgstr "Сerrar"
219
 
220
+ #: includes/class-gglcptch-settings-tabs.php:235
221
  #, fuzzy
222
  msgid "Hide reCAPTCHA for"
223
  msgstr "Permite reCAPTCHA para"
224
 
225
+ #: includes/class-gglcptch-settings-tabs.php:253
226
  msgid "reCAPTCHA Version"
227
  msgstr "reCAPTCHA Versión"
228
 
229
+ #: includes/class-gglcptch-settings-tabs.php:267
230
+ #: includes/class-gglcptch-settings-tabs.php:279
231
  msgid "Theme"
232
  msgstr ""
233
 
234
+ #: includes/class-gglcptch-settings-tabs.php:301
235
  msgid "Whitelist Notification"
236
  msgstr "Notificaciones de la Lista Blanca"
237
 
238
+ #: includes/class-gglcptch-settings-tabs.php:304
239
  #, fuzzy
240
  msgid "This message will be displayed instead of the reCAPTCHA."
241
  msgstr ""
242
  "Este mensaje se visualizará en lugar del reCAPTCHA si la IP del usuario se "
243
  "agrega a la lista blanca"
244
 
245
+ #: includes/class-gglcptch-settings-tabs.php:308
246
  msgid "Disabled Submit Button"
247
  msgstr ""
248
 
249
+ #: includes/class-gglcptch-settings-tabs.php:312
250
  msgid ""
251
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
252
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
253
  msgstr ""
254
 
255
+ #: includes/class-gglcptch-settings-tabs.php:327
256
  msgid ""
257
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
258
  "version 1 features."
260
  "Sólo un reCAPTCHA puede visualizarse en la página, está relacionado con "
261
  "características de la versión 1 de reCAPTCHA."
262
 
263
+ #: includes/class-gglcptch-settings-tabs.php:330
264
  msgid ""
265
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
266
  "regenerate Site and Secret keys if necessary."
267
  msgstr ""
268
 
269
+ #: includes/class-gglcptch-settings-tabs.php:343
270
  msgid "Google Captcha Shortcode"
271
  msgstr ""
272
 
273
+ #: includes/class-gglcptch-settings-tabs.php:346
274
  msgid ""
275
  "Add Google Captcha to your posts or pages using the following shortcode:"
276
  msgstr ""
295
  msgid "WordPress default"
296
  msgstr "WordPress por defecto"
297
 
298
+ #: includes/forms.php:46 includes/pro_banners.php:72
299
  msgid "External Plugins"
300
  msgstr ""
301
 
303
  msgid "Custom Forms"
304
  msgstr ""
305
 
306
+ #: includes/forms.php:76
307
  msgid "Google Captcha Plugin"
308
  msgstr ""
309
 
310
+ #: includes/forms.php:116 includes/forms.php:141
311
  #, fuzzy
312
  msgid "Activate"
313
  msgstr "Activar"
314
 
315
+ #: includes/forms.php:118 includes/forms.php:144 includes/forms.php:148
316
  msgid "Install Now"
317
  msgstr ""
318
 
319
+ #: includes/forms.php:274
320
+ msgid "Authentication failed."
321
+ msgstr ""
322
+
323
+ #: includes/forms.php:363
324
  msgid "Click the BACK button on your browser and try again."
325
  msgstr ""
326
 
328
  msgid "This options is available in Pro version of plugin"
329
  msgstr "Esta opción está disponible en la versión Pro de plugin"
330
 
331
+ #: includes/pro_banners.php:40 includes/whitelist.php:86
332
  msgid "Allowed formats"
333
  msgstr "Formatos permitidos"
334
 
360
  msgid "Jetpack Contact Form"
361
  msgstr ""
362
 
363
+ #: includes/pro_banners.php:56
364
  msgid "bbPress New Topic form"
365
  msgstr ""
366
 
367
+ #: includes/pro_banners.php:57
368
  msgid "bbPress Reply form"
369
  msgstr ""
370
 
371
+ #: includes/pro_banners.php:58
372
  msgid "BuddyPress Registration form"
373
  msgstr ""
374
 
375
+ #: includes/pro_banners.php:59
376
  msgid "BuddyPress Comments form"
377
  msgstr ""
378
 
379
+ #: includes/pro_banners.php:60
380
  msgid "BuddyPress Add New Group form"
381
  msgstr ""
382
 
383
+ #: includes/pro_banners.php:61
384
  msgid "WooCommerce Login form"
385
  msgstr ""
386
 
387
+ #: includes/pro_banners.php:62
388
  msgid "WooCommerce Registration form"
389
  msgstr ""
390
 
391
+ #: includes/pro_banners.php:63
392
  msgid "WooCommerce Reset password form"
393
  msgstr ""
394
 
395
+ #: includes/pro_banners.php:64
396
  msgid "WooCommerce Checkout form"
397
  msgstr ""
398
 
399
+ #: includes/pro_banners.php:65
400
  msgid "wpForo Login form"
401
  msgstr ""
402
 
403
+ #: includes/pro_banners.php:66
404
  msgid "wpForo Registration form"
405
  msgstr ""
406
 
407
+ #: includes/pro_banners.php:67
408
  msgid "wpForo New Topic form"
409
  msgstr ""
410
 
411
+ #: includes/pro_banners.php:68
412
  msgid "wpForo Reply form"
413
  msgstr ""
414
 
415
+ #: includes/pro_banners.php:156
416
  msgid "Size"
417
  msgstr ""
418
 
419
+ #: includes/pro_banners.php:160
420
  msgid "Normal"
421
  msgstr "Normal"
422
 
423
+ #: includes/pro_banners.php:161
424
  msgid "Compact"
425
  msgstr "Compacto"
426
 
427
+ #: includes/pro_banners.php:166
428
  msgid "Language"
429
  msgstr ""
430
 
431
+ #: includes/pro_banners.php:174
432
  msgid "Multilanguage"
433
  msgstr ""
434
 
435
+ #: includes/pro_banners.php:177
436
  msgid ""
437
  "Enable to switch language automatically on multilingual website using "
438
  "Multilanguage plugin."
439
  msgstr ""
440
 
441
+ #: includes/whitelist.php:49
442
  #, fuzzy
443
  msgid "Add New"
444
  msgstr "Agregar nuevo"
445
 
446
+ #: includes/whitelist.php:74
447
  msgid "IP to whitelist"
448
  msgstr ""
449
 
450
+ #: includes/whitelist.php:81
451
  msgid "My IP"
452
  msgstr "Mi IP"
453
 
454
+ #: includes/whitelist.php:88
455
  msgid "Allowed diapason"
456
  msgstr "Diapason permitido"
457
 
458
+ #: includes/whitelist.php:92
459
  msgid "Add IP to whitelist"
460
  msgstr ""
461
 
462
+ #: includes/whitelist.php:97
463
  msgid "Search IP"
464
  msgstr "Buscar IP"
465
 
466
+ #: includes/whitelist.php:151
467
  msgid "Nothing found"
468
  msgstr "Nada encontrado"
469
 
470
+ #: includes/whitelist.php:151
471
  msgid "No IP in the whitelist"
472
  msgstr "No IP en la lista blanca"
473
 
474
+ #: includes/whitelist.php:158
475
  msgid "IP Address"
476
  msgstr ""
477
 
478
+ #: includes/whitelist.php:159
479
  msgid "Date Added"
480
  msgstr ""
481
 
482
+ #: includes/whitelist.php:213 includes/whitelist.php:223
483
  #, fuzzy
484
  msgid "Delete"
485
  msgstr "Eliminar"
486
 
487
+ #: includes/whitelist.php:310
488
  msgid "IP added to the whitelist successfully."
489
  msgstr ""
490
 
491
+ #: includes/whitelist.php:312 includes/whitelist.php:334
492
+ #: includes/whitelist.php:344
493
  msgid "Some errors occurred."
494
  msgstr ""
495
 
496
+ #: includes/whitelist.php:315
497
  msgid "IP is already in the whitelist."
498
  msgstr ""
499
 
500
+ #: includes/whitelist.php:318
501
  msgid "Invalid IP. See allowed formats."
502
  msgstr "IP es no válido. Ver formatos permitidos."
503
 
504
+ #: includes/whitelist.php:340
505
  #, fuzzy
506
  msgid "One IP was deleted successfully."
507
  msgstr "Una dirección IP se ha eliminado correctamente"
508
 
509
+ #: includes/whitelist.php:347
510
  #, fuzzy
511
  msgid "You have not entered any IP."
512
  msgstr "No se ha introducido ningún IP"
513
 
514
+ #: includes/whitelist.php:350
515
  msgid "You have not entered any IP in to the search form."
516
  msgstr ""
517
 
518
+ #: includes/whitelist.php:352
519
  msgid "Search results for"
520
  msgstr "Resultados de la búsqueda para"
521
 
languages/google-captcha-ru_RU.mo CHANGED
Binary file
languages/google-captcha-ru_RU.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-09-14 20:03+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
@@ -18,17 +18,17 @@ msgstr ""
18
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: google-captcha.php:37 google-captcha.php:39 google-captcha.php:432
22
- #: includes/class-gglcptch-settings-tabs.php:149
23
  msgid "Google Captcha Settings"
24
  msgstr "Настройки Google Captcha"
25
 
26
- #: google-captcha.php:39 google-captcha.php:950 google-captcha.php:963
27
  #: includes/class-gglcptch-settings-tabs.php:25
28
  msgid "Settings"
29
  msgstr "Настройки"
30
 
31
- #: google-captcha.php:41 includes/whitelist.php:44
32
  msgid "Google Captcha Whitelist"
33
  msgstr "Белый cписок Google Captcha"
34
 
@@ -40,11 +40,11 @@ msgstr "Белый список"
40
  msgid "Upgrade to Pro"
41
  msgstr "Обновить до Pro"
42
 
43
- #: google-captcha.php:225
44
  msgid "Please wait until Google reCAPTCHA is loaded."
45
  msgstr "Пожалуйста, дождитесь окончания загрузки Google reCAPTCHA."
46
 
47
- #: google-captcha.php:226
48
  msgid ""
49
  "Failed to load Google reCAPTCHA. Please check your internet connection and "
50
  "reload this page."
@@ -52,65 +52,63 @@ msgstr ""
52
  "Не удалось загрузить Google reCAPTCHA. Пожалуйста, проверьте ваше "
53
  "подключение к сети Интернет и перезагрузите эту страницу."
54
 
55
- #: google-captcha.php:242
56
  msgid "Warning"
57
  msgstr "Внимание"
58
 
59
- #: google-captcha.php:340
60
  msgid "You are in the whitelist"
61
  msgstr "Вы в белом списке"
62
 
63
- #: google-captcha.php:512 google-captcha.php:983
64
  msgid "To use Google Captcha you must get the keys from"
65
  msgstr "Чтобы использовать Google Captcha, вам необходимо получить ключи"
66
 
67
- #: google-captcha.php:513 google-captcha.php:984
68
  msgid "here"
69
  msgstr "здесь"
70
 
71
- #: google-captcha.php:514 google-captcha.php:985
72
  msgid "and enter them on the"
73
  msgstr "и вставить их на"
74
 
75
- #: google-captcha.php:516 google-captcha.php:987
76
  msgid "plugin setting page"
77
  msgstr "странице настроек плагина"
78
 
79
- #: google-captcha.php:763 includes/forms.php:282 includes/forms.php:313
80
- #: includes/forms.php:344 includes/forms.php:389 includes/forms.php:435
81
- #: includes/forms.php:469
82
  msgid "Error"
83
  msgstr "Ошибка"
84
 
85
- #: google-captcha.php:860
86
  msgid "User response is missing."
87
  msgstr "Ответ пользователя отсутствует."
88
 
89
- #: google-captcha.php:864 google-captcha.php:872
90
  msgid "Secret Key is invalid."
91
  msgstr "Некорректный секретный ключ."
92
 
93
- #: google-captcha.php:865 google-captcha.php:873
94
  msgid "Check your domain configurations"
95
  msgstr "Проверьте настройки вашего домена"
96
 
97
- #: google-captcha.php:866 google-captcha.php:874
98
  msgid "and enter it again"
99
  msgstr "и введите его снова"
100
 
101
- #: google-captcha.php:869
102
  msgid "Secret Key is missing."
103
  msgstr "Секретный ключ отсутствует."
104
 
105
- #: google-captcha.php:876
106
  msgid "User response is invalid"
107
  msgstr "Некорректный ответ пользователя"
108
 
109
- #: google-captcha.php:877
110
  msgid "You have entered an incorrect reCAPTCHA value."
111
  msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
112
 
113
- #: google-captcha.php:878
114
  msgid ""
115
  "More than one reCAPTCHA has been found in the current form. Please remove "
116
  "all unnecessary reCAPTCHA fields to make it work properly."
@@ -118,28 +116,28 @@ msgstr ""
118
  "В текущей форме найдено более одного блока reCAPTCHA. Пожалуйста, удалите "
119
  "все лишние блоки reCAPTCHA для дальнейшей корректной работы."
120
 
121
- #: google-captcha.php:902
122
  msgid "Please submit \"Test verification\""
123
  msgstr "Пожалуйста, нажмите кнопку \"Тестирование проверки\"."
124
 
125
- #: google-captcha.php:904
126
  msgid "Please complete the captcha and submit \"Test verification\""
127
  msgstr ""
128
  "Пожалуйста, заполните капчу и нажмите кнопку \"Тестирование проверки\"."
129
 
130
- #: google-captcha.php:910
131
  msgid "Test verification"
132
  msgstr "Тестирование проверки"
133
 
134
- #: google-captcha.php:931
135
  msgid "The verification is successfully completed."
136
  msgstr "Тестирование проверки успешно завершено."
137
 
138
- #: google-captcha.php:964
139
  msgid "FAQ"
140
  msgstr "FAQ"
141
 
142
- #: google-captcha.php:965
143
  msgid "Support"
144
  msgstr "Поддержка"
145
 
@@ -187,15 +185,15 @@ msgstr ""
187
  msgid "Enter secret key"
188
  msgstr "Введите секретный ключ"
189
 
190
- #: includes/class-gglcptch-settings-tabs.php:135
191
  msgid "Settings saved."
192
  msgstr "Настройки сохранены."
193
 
194
- #: includes/class-gglcptch-settings-tabs.php:152
195
  msgid "Authentication"
196
  msgstr "Идентификация"
197
 
198
- #: includes/class-gglcptch-settings-tabs.php:153
199
  msgid ""
200
  "Register your website with Google to get required API keys and enter them "
201
  "below."
@@ -203,53 +201,53 @@ msgstr ""
203
  "Зарегистрируйте свой сайт с помощью Google, чтобы получить требуемые API "
204
  "ключи и введите их ниже."
205
 
206
- #: includes/class-gglcptch-settings-tabs.php:153
207
  msgid "Get the API Keys"
208
  msgstr "Получить API ключи"
209
 
210
- #: includes/class-gglcptch-settings-tabs.php:170
211
  msgid "Test reCAPTCHA"
212
  msgstr "Тестирование reCAPTCHA"
213
 
214
- #: includes/class-gglcptch-settings-tabs.php:176
215
  msgid "General"
216
  msgstr "Общее"
217
 
218
- #: includes/class-gglcptch-settings-tabs.php:179
219
  msgid "Enable reCAPTCHA for"
220
  msgstr "Включить reCAPTCHA для"
221
 
222
- #: includes/class-gglcptch-settings-tabs.php:224
223
- #: includes/class-gglcptch-settings-tabs.php:290 includes/pro_banners.php:20
224
  msgid "Close"
225
  msgstr "Закрыть"
226
 
227
- #: includes/class-gglcptch-settings-tabs.php:233
228
  msgid "Hide reCAPTCHA for"
229
  msgstr "Спрятать reCAPTCHA для"
230
 
231
- #: includes/class-gglcptch-settings-tabs.php:251
232
  msgid "reCAPTCHA Version"
233
  msgstr "Версия reCAPTCHA"
234
 
235
- #: includes/class-gglcptch-settings-tabs.php:265
236
- #: includes/class-gglcptch-settings-tabs.php:277
237
  msgid "Theme"
238
  msgstr "Тема"
239
 
240
- #: includes/class-gglcptch-settings-tabs.php:299
241
  msgid "Whitelist Notification"
242
  msgstr "Уведомление о нахождении в белом списке"
243
 
244
- #: includes/class-gglcptch-settings-tabs.php:302
245
  msgid "This message will be displayed instead of the reCAPTCHA."
246
  msgstr "Это сообщение будет отображено вместо поля reCAPTCHA."
247
 
248
- #: includes/class-gglcptch-settings-tabs.php:306
249
  msgid "Disabled Submit Button"
250
  msgstr "Отключенная кнопка подтверждения"
251
 
252
- #: includes/class-gglcptch-settings-tabs.php:310
253
  msgid ""
254
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
255
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
@@ -258,7 +256,7 @@ msgstr ""
258
  "не будет загружена reCAPTCHA (Не используйте эту опцию, если вы видите "
259
  "сообщение \"Не удалось загрузить Google reCAPTCHA\")."
260
 
261
- #: includes/class-gglcptch-settings-tabs.php:325
262
  msgid ""
263
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
264
  "version 1 features."
@@ -266,7 +264,7 @@ msgstr ""
266
  "В связи с особенностями работы reCAPTCHA версии 1 на странице может "
267
  "отображаться только одна reCAPTCHA."
268
 
269
- #: includes/class-gglcptch-settings-tabs.php:328
270
  msgid ""
271
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
272
  "regenerate Site and Secret keys if necessary."
@@ -274,11 +272,11 @@ msgstr ""
274
  "Версия reCAPTCHA была изменена. Пожалуйста, нажмите \"Тестирование reCAPTCHA"
275
  "\" и при необходимости обновите секретный ключ и ключ сайта."
276
 
277
- #: includes/class-gglcptch-settings-tabs.php:341
278
  msgid "Google Captcha Shortcode"
279
  msgstr "Шорткод Google Captcha"
280
 
281
- #: includes/class-gglcptch-settings-tabs.php:344
282
  msgid ""
283
  "Add Google Captcha to your posts or pages using the following shortcode:"
284
  msgstr ""
@@ -305,7 +303,7 @@ msgstr "Форма комментариев"
305
  msgid "WordPress default"
306
  msgstr "Стандартных форм WordPress"
307
 
308
- #: includes/forms.php:46 includes/pro_banners.php:71
309
  msgid "External Plugins"
310
  msgstr "Внешние плагины"
311
 
@@ -313,19 +311,23 @@ msgstr "Внешние плагины"
313
  msgid "Custom Forms"
314
  msgstr "Пользовательские формы"
315
 
316
- #: includes/forms.php:75
317
  msgid "Google Captcha Plugin"
318
  msgstr "Плагин Google Captcha"
319
 
320
- #: includes/forms.php:114 includes/forms.php:139
321
  msgid "Activate"
322
  msgstr "Активировать"
323
 
324
- #: includes/forms.php:116 includes/forms.php:142 includes/forms.php:146
325
  msgid "Install Now"
326
  msgstr "Установить сейчас"
327
 
328
- #: includes/forms.php:437
 
 
 
 
329
  msgid "Click the BACK button on your browser and try again."
330
  msgstr "Нажмите кнопку НАЗАД в вашем браузере и попытайтесь снова."
331
 
@@ -333,7 +335,7 @@ msgstr "Нажмите кнопку НАЗАД в вашем браузере и
333
  msgid "This options is available in Pro version of plugin"
334
  msgstr "Эта опция доступна в Pro версии плагина"
335
 
336
- #: includes/pro_banners.php:40 includes/whitelist.php:84
337
  msgid "Allowed formats"
338
  msgstr "Доступные форматы"
339
 
@@ -365,79 +367,79 @@ msgstr "табуляция, новая строка или возврат кар
365
  msgid "Jetpack Contact Form"
366
  msgstr "Контактная форма плагина Jetpack"
367
 
368
- #: includes/pro_banners.php:55
369
  msgid "bbPress New Topic form"
370
  msgstr "Форма новой темы плагина bbPress"
371
 
372
- #: includes/pro_banners.php:56
373
  msgid "bbPress Reply form"
374
  msgstr "Форма ответа плагина bbPress"
375
 
376
- #: includes/pro_banners.php:57
377
  msgid "BuddyPress Registration form"
378
  msgstr "Форма регистрации плагина BuddyPress"
379
 
380
- #: includes/pro_banners.php:58
381
  msgid "BuddyPress Comments form"
382
  msgstr "Форма комментариев плагина BuddyPress"
383
 
384
- #: includes/pro_banners.php:59
385
  msgid "BuddyPress Add New Group form"
386
  msgstr "Форма добавления новой группы плагина BuddyPress"
387
 
388
- #: includes/pro_banners.php:60
389
  msgid "WooCommerce Login form"
390
  msgstr "Форма логина плагина WooCommerce"
391
 
392
- #: includes/pro_banners.php:61
393
  msgid "WooCommerce Registration form"
394
  msgstr "Форма регистрации плагина WooCommerce"
395
 
396
- #: includes/pro_banners.php:62
397
  msgid "WooCommerce Reset password form"
398
  msgstr "Форма восстановления пароля плагина WooCommerce"
399
 
400
- #: includes/pro_banners.php:63
401
  msgid "WooCommerce Checkout form"
402
  msgstr "Форма оформления заказа плагина WooCommerce"
403
 
404
- #: includes/pro_banners.php:64
405
  msgid "wpForo Login form"
406
  msgstr "Форма логина плагина wpForo"
407
 
408
- #: includes/pro_banners.php:65
409
  msgid "wpForo Registration form"
410
  msgstr "Форма регистрации плагина wpForo"
411
 
412
- #: includes/pro_banners.php:66
413
  msgid "wpForo New Topic form"
414
  msgstr "Форма новой темы плагина wpForo"
415
 
416
- #: includes/pro_banners.php:67
417
  msgid "wpForo Reply form"
418
  msgstr "Форма ответа плагина wpForo"
419
 
420
- #: includes/pro_banners.php:153
421
  msgid "Size"
422
  msgstr "Размер"
423
 
424
- #: includes/pro_banners.php:157
425
  msgid "Normal"
426
  msgstr "Нормальный"
427
 
428
- #: includes/pro_banners.php:158
429
  msgid "Compact"
430
  msgstr "Компактный"
431
 
432
- #: includes/pro_banners.php:163
433
  msgid "Language"
434
  msgstr "Язык"
435
 
436
- #: includes/pro_banners.php:171
437
  msgid "Multilanguage"
438
  msgstr "Multilanguage"
439
 
440
- #: includes/pro_banners.php:174
441
  msgid ""
442
  "Enable to switch language automatically on multilingual website using "
443
  "Multilanguage plugin."
@@ -445,80 +447,80 @@ msgstr ""
445
  "Включить, чтобы переключить язык автоматически на многоязычном сайте, "
446
  "используя плагин Multilanguage."
447
 
448
- #: includes/whitelist.php:47
449
  msgid "Add New"
450
  msgstr "Добавить"
451
 
452
- #: includes/whitelist.php:72
453
  msgid "IP to whitelist"
454
  msgstr "IP в белый список"
455
 
456
- #: includes/whitelist.php:79
457
  msgid "My IP"
458
  msgstr "Мой IP"
459
 
460
- #: includes/whitelist.php:86
461
  msgid "Allowed diapason"
462
  msgstr "Доступные диапазоны"
463
 
464
- #: includes/whitelist.php:90
465
  msgid "Add IP to whitelist"
466
  msgstr "Добавить IP в белый список"
467
 
468
- #: includes/whitelist.php:95
469
  msgid "Search IP"
470
  msgstr "Искать IP"
471
 
472
- #: includes/whitelist.php:149
473
  msgid "Nothing found"
474
  msgstr "Ничего не найдено"
475
 
476
- #: includes/whitelist.php:149
477
  msgid "No IP in the whitelist"
478
  msgstr "Список IP пуст"
479
 
480
- #: includes/whitelist.php:156
481
  msgid "IP Address"
482
  msgstr "IP Адресс"
483
 
484
- #: includes/whitelist.php:157
485
  msgid "Date Added"
486
  msgstr "Дата добавления"
487
 
488
- #: includes/whitelist.php:211 includes/whitelist.php:221
489
  msgid "Delete"
490
  msgstr "Удалить"
491
 
492
- #: includes/whitelist.php:307
493
  msgid "IP added to the whitelist successfully."
494
  msgstr "IP адрес успешно добавлен в белый список."
495
 
496
- #: includes/whitelist.php:309 includes/whitelist.php:330
497
- #: includes/whitelist.php:340
498
  msgid "Some errors occurred."
499
  msgstr "Возникли некоторые ошибки."
500
 
501
- #: includes/whitelist.php:311
502
  msgid "IP is already in the whitelist."
503
  msgstr "IP адрес уже в белом списке."
504
 
505
- #: includes/whitelist.php:314
506
  msgid "Invalid IP. See allowed formats."
507
  msgstr "Неверный IP. Смотите доступные форматы."
508
 
509
- #: includes/whitelist.php:336
510
  msgid "One IP was deleted successfully."
511
  msgstr "Один IP адрес был успешно удален."
512
 
513
- #: includes/whitelist.php:343
514
  msgid "You have not entered any IP."
515
  msgstr "Вы не ввели ни одного IP адреса."
516
 
517
- #: includes/whitelist.php:346
518
  msgid "You have not entered any IP in to the search form."
519
  msgstr "Вы не ввели значения в форму поиска."
520
 
521
- #: includes/whitelist.php:348
522
  msgid "Search results for"
523
  msgstr "Результаты поиска для"
524
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-02-06 09:50+0200\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
18
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: google-captcha.php:37 google-captcha.php:39 google-captcha.php:445
22
+ #: includes/class-gglcptch-settings-tabs.php:150
23
  msgid "Google Captcha Settings"
24
  msgstr "Настройки Google Captcha"
25
 
26
+ #: google-captcha.php:39 google-captcha.php:1025 google-captcha.php:1038
27
  #: includes/class-gglcptch-settings-tabs.php:25
28
  msgid "Settings"
29
  msgstr "Настройки"
30
 
31
+ #: google-captcha.php:41 includes/whitelist.php:46
32
  msgid "Google Captcha Whitelist"
33
  msgstr "Белый cписок Google Captcha"
34
 
40
  msgid "Upgrade to Pro"
41
  msgstr "Обновить до Pro"
42
 
43
+ #: google-captcha.php:233
44
  msgid "Please wait until Google reCAPTCHA is loaded."
45
  msgstr "Пожалуйста, дождитесь окончания загрузки Google reCAPTCHA."
46
 
47
+ #: google-captcha.php:234
48
  msgid ""
49
  "Failed to load Google reCAPTCHA. Please check your internet connection and "
50
  "reload this page."
52
  "Не удалось загрузить Google reCAPTCHA. Пожалуйста, проверьте ваше "
53
  "подключение к сети Интернет и перезагрузите эту страницу."
54
 
55
+ #: google-captcha.php:250
56
  msgid "Warning"
57
  msgstr "Внимание"
58
 
59
+ #: google-captcha.php:351
60
  msgid "You are in the whitelist"
61
  msgstr "Вы в белом списке"
62
 
63
+ #: google-captcha.php:532 google-captcha.php:1060
64
  msgid "To use Google Captcha you must get the keys from"
65
  msgstr "Чтобы использовать Google Captcha, вам необходимо получить ключи"
66
 
67
+ #: google-captcha.php:533 google-captcha.php:1061
68
  msgid "here"
69
  msgstr "здесь"
70
 
71
+ #: google-captcha.php:534 google-captcha.php:1062
72
  msgid "and enter them on the"
73
  msgstr "и вставить их на"
74
 
75
+ #: google-captcha.php:536 google-captcha.php:1064
76
  msgid "plugin setting page"
77
  msgstr "странице настроек плагина"
78
 
79
+ #: google-captcha.php:796 includes/forms.php:361
 
 
80
  msgid "Error"
81
  msgstr "Ошибка"
82
 
83
+ #: google-captcha.php:920
84
  msgid "User response is missing."
85
  msgstr "Ответ пользователя отсутствует."
86
 
87
+ #: google-captcha.php:924 google-captcha.php:932
88
  msgid "Secret Key is invalid."
89
  msgstr "Некорректный секретный ключ."
90
 
91
+ #: google-captcha.php:925 google-captcha.php:933
92
  msgid "Check your domain configurations"
93
  msgstr "Проверьте настройки вашего домена"
94
 
95
+ #: google-captcha.php:926 google-captcha.php:934
96
  msgid "and enter it again"
97
  msgstr "и введите его снова"
98
 
99
+ #: google-captcha.php:929
100
  msgid "Secret Key is missing."
101
  msgstr "Секретный ключ отсутствует."
102
 
103
+ #: google-captcha.php:936
104
  msgid "User response is invalid"
105
  msgstr "Некорректный ответ пользователя"
106
 
107
+ #: google-captcha.php:937
108
  msgid "You have entered an incorrect reCAPTCHA value."
109
  msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
110
 
111
+ #: google-captcha.php:938
112
  msgid ""
113
  "More than one reCAPTCHA has been found in the current form. Please remove "
114
  "all unnecessary reCAPTCHA fields to make it work properly."
116
  "В текущей форме найдено более одного блока reCAPTCHA. Пожалуйста, удалите "
117
  "все лишние блоки reCAPTCHA для дальнейшей корректной работы."
118
 
119
+ #: google-captcha.php:975
120
  msgid "Please submit \"Test verification\""
121
  msgstr "Пожалуйста, нажмите кнопку \"Тестирование проверки\"."
122
 
123
+ #: google-captcha.php:977
124
  msgid "Please complete the captcha and submit \"Test verification\""
125
  msgstr ""
126
  "Пожалуйста, заполните капчу и нажмите кнопку \"Тестирование проверки\"."
127
 
128
+ #: google-captcha.php:984
129
  msgid "Test verification"
130
  msgstr "Тестирование проверки"
131
 
132
+ #: google-captcha.php:1005
133
  msgid "The verification is successfully completed."
134
  msgstr "Тестирование проверки успешно завершено."
135
 
136
+ #: google-captcha.php:1040
137
  msgid "FAQ"
138
  msgstr "FAQ"
139
 
140
+ #: google-captcha.php:1041
141
  msgid "Support"
142
  msgstr "Поддержка"
143
 
185
  msgid "Enter secret key"
186
  msgstr "Введите секретный ключ"
187
 
188
+ #: includes/class-gglcptch-settings-tabs.php:136
189
  msgid "Settings saved."
190
  msgstr "Настройки сохранены."
191
 
192
+ #: includes/class-gglcptch-settings-tabs.php:153
193
  msgid "Authentication"
194
  msgstr "Идентификация"
195
 
196
+ #: includes/class-gglcptch-settings-tabs.php:154
197
  msgid ""
198
  "Register your website with Google to get required API keys and enter them "
199
  "below."
201
  "Зарегистрируйте свой сайт с помощью Google, чтобы получить требуемые API "
202
  "ключи и введите их ниже."
203
 
204
+ #: includes/class-gglcptch-settings-tabs.php:154
205
  msgid "Get the API Keys"
206
  msgstr "Получить API ключи"
207
 
208
+ #: includes/class-gglcptch-settings-tabs.php:171
209
  msgid "Test reCAPTCHA"
210
  msgstr "Тестирование reCAPTCHA"
211
 
212
+ #: includes/class-gglcptch-settings-tabs.php:177
213
  msgid "General"
214
  msgstr "Общее"
215
 
216
+ #: includes/class-gglcptch-settings-tabs.php:180
217
  msgid "Enable reCAPTCHA for"
218
  msgstr "Включить reCAPTCHA для"
219
 
220
+ #: includes/class-gglcptch-settings-tabs.php:226
221
+ #: includes/class-gglcptch-settings-tabs.php:292 includes/pro_banners.php:20
222
  msgid "Close"
223
  msgstr "Закрыть"
224
 
225
+ #: includes/class-gglcptch-settings-tabs.php:235
226
  msgid "Hide reCAPTCHA for"
227
  msgstr "Спрятать reCAPTCHA для"
228
 
229
+ #: includes/class-gglcptch-settings-tabs.php:253
230
  msgid "reCAPTCHA Version"
231
  msgstr "Версия reCAPTCHA"
232
 
233
+ #: includes/class-gglcptch-settings-tabs.php:267
234
+ #: includes/class-gglcptch-settings-tabs.php:279
235
  msgid "Theme"
236
  msgstr "Тема"
237
 
238
+ #: includes/class-gglcptch-settings-tabs.php:301
239
  msgid "Whitelist Notification"
240
  msgstr "Уведомление о нахождении в белом списке"
241
 
242
+ #: includes/class-gglcptch-settings-tabs.php:304
243
  msgid "This message will be displayed instead of the reCAPTCHA."
244
  msgstr "Это сообщение будет отображено вместо поля reCAPTCHA."
245
 
246
+ #: includes/class-gglcptch-settings-tabs.php:308
247
  msgid "Disabled Submit Button"
248
  msgstr "Отключенная кнопка подтверждения"
249
 
250
+ #: includes/class-gglcptch-settings-tabs.php:312
251
  msgid ""
252
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
253
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
256
  "не будет загружена reCAPTCHA (Не используйте эту опцию, если вы видите "
257
  "сообщение \"Не удалось загрузить Google reCAPTCHA\")."
258
 
259
+ #: includes/class-gglcptch-settings-tabs.php:327
260
  msgid ""
261
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
262
  "version 1 features."
264
  "В связи с особенностями работы reCAPTCHA версии 1 на странице может "
265
  "отображаться только одна reCAPTCHA."
266
 
267
+ #: includes/class-gglcptch-settings-tabs.php:330
268
  msgid ""
269
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
270
  "regenerate Site and Secret keys if necessary."
272
  "Версия reCAPTCHA была изменена. Пожалуйста, нажмите \"Тестирование reCAPTCHA"
273
  "\" и при необходимости обновите секретный ключ и ключ сайта."
274
 
275
+ #: includes/class-gglcptch-settings-tabs.php:343
276
  msgid "Google Captcha Shortcode"
277
  msgstr "Шорткод Google Captcha"
278
 
279
+ #: includes/class-gglcptch-settings-tabs.php:346
280
  msgid ""
281
  "Add Google Captcha to your posts or pages using the following shortcode:"
282
  msgstr ""
303
  msgid "WordPress default"
304
  msgstr "Стандартных форм WordPress"
305
 
306
+ #: includes/forms.php:46 includes/pro_banners.php:72
307
  msgid "External Plugins"
308
  msgstr "Внешние плагины"
309
 
311
  msgid "Custom Forms"
312
  msgstr "Пользовательские формы"
313
 
314
+ #: includes/forms.php:76
315
  msgid "Google Captcha Plugin"
316
  msgstr "Плагин Google Captcha"
317
 
318
+ #: includes/forms.php:116 includes/forms.php:141
319
  msgid "Activate"
320
  msgstr "Активировать"
321
 
322
+ #: includes/forms.php:118 includes/forms.php:144 includes/forms.php:148
323
  msgid "Install Now"
324
  msgstr "Установить сейчас"
325
 
326
+ #: includes/forms.php:274
327
+ msgid "Authentication failed."
328
+ msgstr "Ошибка аутентификации."
329
+
330
+ #: includes/forms.php:363
331
  msgid "Click the BACK button on your browser and try again."
332
  msgstr "Нажмите кнопку НАЗАД в вашем браузере и попытайтесь снова."
333
 
335
  msgid "This options is available in Pro version of plugin"
336
  msgstr "Эта опция доступна в Pro версии плагина"
337
 
338
+ #: includes/pro_banners.php:40 includes/whitelist.php:86
339
  msgid "Allowed formats"
340
  msgstr "Доступные форматы"
341
 
367
  msgid "Jetpack Contact Form"
368
  msgstr "Контактная форма плагина Jetpack"
369
 
370
+ #: includes/pro_banners.php:56
371
  msgid "bbPress New Topic form"
372
  msgstr "Форма новой темы плагина bbPress"
373
 
374
+ #: includes/pro_banners.php:57
375
  msgid "bbPress Reply form"
376
  msgstr "Форма ответа плагина bbPress"
377
 
378
+ #: includes/pro_banners.php:58
379
  msgid "BuddyPress Registration form"
380
  msgstr "Форма регистрации плагина BuddyPress"
381
 
382
+ #: includes/pro_banners.php:59
383
  msgid "BuddyPress Comments form"
384
  msgstr "Форма комментариев плагина BuddyPress"
385
 
386
+ #: includes/pro_banners.php:60
387
  msgid "BuddyPress Add New Group form"
388
  msgstr "Форма добавления новой группы плагина BuddyPress"
389
 
390
+ #: includes/pro_banners.php:61
391
  msgid "WooCommerce Login form"
392
  msgstr "Форма логина плагина WooCommerce"
393
 
394
+ #: includes/pro_banners.php:62
395
  msgid "WooCommerce Registration form"
396
  msgstr "Форма регистрации плагина WooCommerce"
397
 
398
+ #: includes/pro_banners.php:63
399
  msgid "WooCommerce Reset password form"
400
  msgstr "Форма восстановления пароля плагина WooCommerce"
401
 
402
+ #: includes/pro_banners.php:64
403
  msgid "WooCommerce Checkout form"
404
  msgstr "Форма оформления заказа плагина WooCommerce"
405
 
406
+ #: includes/pro_banners.php:65
407
  msgid "wpForo Login form"
408
  msgstr "Форма логина плагина wpForo"
409
 
410
+ #: includes/pro_banners.php:66
411
  msgid "wpForo Registration form"
412
  msgstr "Форма регистрации плагина wpForo"
413
 
414
+ #: includes/pro_banners.php:67
415
  msgid "wpForo New Topic form"
416
  msgstr "Форма новой темы плагина wpForo"
417
 
418
+ #: includes/pro_banners.php:68
419
  msgid "wpForo Reply form"
420
  msgstr "Форма ответа плагина wpForo"
421
 
422
+ #: includes/pro_banners.php:156
423
  msgid "Size"
424
  msgstr "Размер"
425
 
426
+ #: includes/pro_banners.php:160
427
  msgid "Normal"
428
  msgstr "Нормальный"
429
 
430
+ #: includes/pro_banners.php:161
431
  msgid "Compact"
432
  msgstr "Компактный"
433
 
434
+ #: includes/pro_banners.php:166
435
  msgid "Language"
436
  msgstr "Язык"
437
 
438
+ #: includes/pro_banners.php:174
439
  msgid "Multilanguage"
440
  msgstr "Multilanguage"
441
 
442
+ #: includes/pro_banners.php:177
443
  msgid ""
444
  "Enable to switch language automatically on multilingual website using "
445
  "Multilanguage plugin."
447
  "Включить, чтобы переключить язык автоматически на многоязычном сайте, "
448
  "используя плагин Multilanguage."
449
 
450
+ #: includes/whitelist.php:49
451
  msgid "Add New"
452
  msgstr "Добавить"
453
 
454
+ #: includes/whitelist.php:74
455
  msgid "IP to whitelist"
456
  msgstr "IP в белый список"
457
 
458
+ #: includes/whitelist.php:81
459
  msgid "My IP"
460
  msgstr "Мой IP"
461
 
462
+ #: includes/whitelist.php:88
463
  msgid "Allowed diapason"
464
  msgstr "Доступные диапазоны"
465
 
466
+ #: includes/whitelist.php:92
467
  msgid "Add IP to whitelist"
468
  msgstr "Добавить IP в белый список"
469
 
470
+ #: includes/whitelist.php:97
471
  msgid "Search IP"
472
  msgstr "Искать IP"
473
 
474
+ #: includes/whitelist.php:151
475
  msgid "Nothing found"
476
  msgstr "Ничего не найдено"
477
 
478
+ #: includes/whitelist.php:151
479
  msgid "No IP in the whitelist"
480
  msgstr "Список IP пуст"
481
 
482
+ #: includes/whitelist.php:158
483
  msgid "IP Address"
484
  msgstr "IP Адресс"
485
 
486
+ #: includes/whitelist.php:159
487
  msgid "Date Added"
488
  msgstr "Дата добавления"
489
 
490
+ #: includes/whitelist.php:213 includes/whitelist.php:223
491
  msgid "Delete"
492
  msgstr "Удалить"
493
 
494
+ #: includes/whitelist.php:310
495
  msgid "IP added to the whitelist successfully."
496
  msgstr "IP адрес успешно добавлен в белый список."
497
 
498
+ #: includes/whitelist.php:312 includes/whitelist.php:334
499
+ #: includes/whitelist.php:344
500
  msgid "Some errors occurred."
501
  msgstr "Возникли некоторые ошибки."
502
 
503
+ #: includes/whitelist.php:315
504
  msgid "IP is already in the whitelist."
505
  msgstr "IP адрес уже в белом списке."
506
 
507
+ #: includes/whitelist.php:318
508
  msgid "Invalid IP. See allowed formats."
509
  msgstr "Неверный IP. Смотите доступные форматы."
510
 
511
+ #: includes/whitelist.php:340
512
  msgid "One IP was deleted successfully."
513
  msgstr "Один IP адрес был успешно удален."
514
 
515
+ #: includes/whitelist.php:347
516
  msgid "You have not entered any IP."
517
  msgstr "Вы не ввели ни одного IP адреса."
518
 
519
+ #: includes/whitelist.php:350
520
  msgid "You have not entered any IP in to the search form."
521
  msgstr "Вы не ввели значения в форму поиска."
522
 
523
+ #: includes/whitelist.php:352
524
  msgid "Search results for"
525
  msgstr "Результаты поиска для"
526
 
languages/google-captcha-sr_RS.mo CHANGED
Binary file
languages/google-captcha-sr_RS.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-09-14 20:09+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: \n"
8
  "Language-Team: Team Link <teamlink@gmx.us>\n"
@@ -18,17 +18,17 @@ msgstr ""
18
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: google-captcha.php:37 google-captcha.php:39 google-captcha.php:432
22
- #: includes/class-gglcptch-settings-tabs.php:149
23
  msgid "Google Captcha Settings"
24
  msgstr "Google Captcha Подешавања"
25
 
26
- #: google-captcha.php:39 google-captcha.php:950 google-captcha.php:963
27
  #: includes/class-gglcptch-settings-tabs.php:25
28
  msgid "Settings"
29
  msgstr "Подешавања"
30
 
31
- #: google-captcha.php:41 includes/whitelist.php:44
32
  msgid "Google Captcha Whitelist"
33
  msgstr ""
34
 
@@ -40,11 +40,11 @@ msgstr "Бела листа"
40
  msgid "Upgrade to Pro"
41
  msgstr "Пређи на Про"
42
 
43
- #: google-captcha.php:225
44
  msgid "Please wait until Google reCAPTCHA is loaded."
45
  msgstr "Молимо сачекајте док се Google reCAPTCHA учита."
46
 
47
- #: google-captcha.php:226
48
  msgid ""
49
  "Failed to load Google reCAPTCHA. Please check your internet connection and "
50
  "reload this page."
@@ -52,65 +52,63 @@ msgstr ""
52
  "Није успело учитавање Google reCAPTCHA-e Молимо проверите Вашу интернет "
53
  "конекцију и освежите страну."
54
 
55
- #: google-captcha.php:242
56
  msgid "Warning"
57
  msgstr "Упозорење"
58
 
59
- #: google-captcha.php:340
60
  msgid "You are in the whitelist"
61
  msgstr "Ви сте на белој листи"
62
 
63
- #: google-captcha.php:512 google-captcha.php:983
64
  msgid "To use Google Captcha you must get the keys from"
65
  msgstr "Да бисте користили Google Captcha морате узети кључеве од"
66
 
67
- #: google-captcha.php:513 google-captcha.php:984
68
  msgid "here"
69
  msgstr "овде"
70
 
71
- #: google-captcha.php:514 google-captcha.php:985
72
  msgid "and enter them on the"
73
  msgstr "и унесите их на"
74
 
75
- #: google-captcha.php:516 google-captcha.php:987
76
  msgid "plugin setting page"
77
  msgstr "страна подешавања додатка"
78
 
79
- #: google-captcha.php:763 includes/forms.php:282 includes/forms.php:313
80
- #: includes/forms.php:344 includes/forms.php:389 includes/forms.php:435
81
- #: includes/forms.php:469
82
  msgid "Error"
83
  msgstr "Грешка"
84
 
85
- #: google-captcha.php:860
86
  msgid "User response is missing."
87
  msgstr "Одговор корисника недостаје."
88
 
89
- #: google-captcha.php:864 google-captcha.php:872
90
  msgid "Secret Key is invalid."
91
  msgstr ""
92
 
93
- #: google-captcha.php:865 google-captcha.php:873
94
  msgid "Check your domain configurations"
95
  msgstr ""
96
 
97
- #: google-captcha.php:866 google-captcha.php:874
98
  msgid "and enter it again"
99
  msgstr "и унесите поново"
100
 
101
- #: google-captcha.php:869
102
  msgid "Secret Key is missing."
103
  msgstr "Тајни кључ недостаје."
104
 
105
- #: google-captcha.php:876
106
  msgid "User response is invalid"
107
  msgstr "Одговор корисника није исправан"
108
 
109
- #: google-captcha.php:877
110
  msgid "You have entered an incorrect reCAPTCHA value."
111
  msgstr "Унели сте нетачну reCAPTCHA вредност."
112
 
113
- #: google-captcha.php:878
114
  msgid ""
115
  "More than one reCAPTCHA has been found in the current form. Please remove "
116
  "all unnecessary reCAPTCHA fields to make it work properly."
@@ -118,27 +116,27 @@ msgstr ""
118
  "Више од једне reCAPTCHA је нађено у тренутној форми. Молим вас да уклоните "
119
  "сва непотребна reCAPTCHA поља како би форма радила исправно."
120
 
121
- #: google-captcha.php:902
122
  msgid "Please submit \"Test verification\""
123
  msgstr ""
124
 
125
- #: google-captcha.php:904
126
  msgid "Please complete the captcha and submit \"Test verification\""
127
  msgstr ""
128
 
129
- #: google-captcha.php:910
130
  msgid "Test verification"
131
  msgstr "Тестирај верификацију"
132
 
133
- #: google-captcha.php:931
134
  msgid "The verification is successfully completed."
135
  msgstr ""
136
 
137
- #: google-captcha.php:964
138
  msgid "FAQ"
139
  msgstr "ЧПП"
140
 
141
- #: google-captcha.php:965
142
  msgid "Support"
143
  msgstr "Подршка"
144
 
@@ -184,78 +182,78 @@ msgstr ""
184
  msgid "Enter secret key"
185
  msgstr "Унесите тајни кључ"
186
 
187
- #: includes/class-gglcptch-settings-tabs.php:135
188
  msgid "Settings saved."
189
  msgstr ""
190
 
191
- #: includes/class-gglcptch-settings-tabs.php:152
192
  msgid "Authentication"
193
  msgstr "Аутентикација"
194
 
195
- #: includes/class-gglcptch-settings-tabs.php:153
196
  msgid ""
197
  "Register your website with Google to get required API keys and enter them "
198
  "below."
199
  msgstr ""
200
 
201
- #: includes/class-gglcptch-settings-tabs.php:153
202
  msgid "Get the API Keys"
203
  msgstr ""
204
 
205
- #: includes/class-gglcptch-settings-tabs.php:170
206
  #, fuzzy
207
  msgid "Test reCAPTCHA"
208
  msgstr "Невидљиви reCAPTCHA"
209
 
210
- #: includes/class-gglcptch-settings-tabs.php:176
211
  msgid "General"
212
  msgstr ""
213
 
214
- #: includes/class-gglcptch-settings-tabs.php:179
215
  msgid "Enable reCAPTCHA for"
216
  msgstr "Омогући reCAPTCHA за"
217
 
218
- #: includes/class-gglcptch-settings-tabs.php:224
219
- #: includes/class-gglcptch-settings-tabs.php:290 includes/pro_banners.php:20
220
  msgid "Close"
221
  msgstr "Затвори"
222
 
223
- #: includes/class-gglcptch-settings-tabs.php:233
224
  #, fuzzy
225
  msgid "Hide reCAPTCHA for"
226
  msgstr "Омогући reCAPTCHA за"
227
 
228
- #: includes/class-gglcptch-settings-tabs.php:251
229
  msgid "reCAPTCHA Version"
230
  msgstr "reCAPTCHA верзија"
231
 
232
- #: includes/class-gglcptch-settings-tabs.php:265
233
- #: includes/class-gglcptch-settings-tabs.php:277
234
  msgid "Theme"
235
  msgstr ""
236
 
237
- #: includes/class-gglcptch-settings-tabs.php:299
238
  msgid "Whitelist Notification"
239
  msgstr "Нотификација за белу листу"
240
 
241
- #: includes/class-gglcptch-settings-tabs.php:302
242
  #, fuzzy
243
  msgid "This message will be displayed instead of the reCAPTCHA."
244
  msgstr ""
245
  "Ова порука ће бити приказана уместо reCAPTCHA уколико је кориснички IP додат "
246
  "у белу листу"
247
 
248
- #: includes/class-gglcptch-settings-tabs.php:306
249
  msgid "Disabled Submit Button"
250
  msgstr ""
251
 
252
- #: includes/class-gglcptch-settings-tabs.php:310
253
  msgid ""
254
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
255
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
256
  msgstr ""
257
 
258
- #: includes/class-gglcptch-settings-tabs.php:325
259
  msgid ""
260
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
261
  "version 1 features."
@@ -263,17 +261,17 @@ msgstr ""
263
  "Само један reCAPTCHA може бити приказан на страни, у вези је са могућностима "
264
  "reCAPTCHA верзије 1."
265
 
266
- #: includes/class-gglcptch-settings-tabs.php:328
267
  msgid ""
268
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
269
  "regenerate Site and Secret keys if necessary."
270
  msgstr ""
271
 
272
- #: includes/class-gglcptch-settings-tabs.php:341
273
  msgid "Google Captcha Shortcode"
274
  msgstr ""
275
 
276
- #: includes/class-gglcptch-settings-tabs.php:344
277
  msgid ""
278
  "Add Google Captcha to your posts or pages using the following shortcode:"
279
  msgstr ""
@@ -298,7 +296,7 @@ msgstr "Форма за коментаре"
298
  msgid "WordPress default"
299
  msgstr "WordPress подразумевано"
300
 
301
- #: includes/forms.php:46 includes/pro_banners.php:71
302
  msgid "External Plugins"
303
  msgstr ""
304
 
@@ -306,19 +304,23 @@ msgstr ""
306
  msgid "Custom Forms"
307
  msgstr ""
308
 
309
- #: includes/forms.php:75
310
  msgid "Google Captcha Plugin"
311
  msgstr ""
312
 
313
- #: includes/forms.php:114 includes/forms.php:139
314
  msgid "Activate"
315
  msgstr "Активирај"
316
 
317
- #: includes/forms.php:116 includes/forms.php:142 includes/forms.php:146
318
  msgid "Install Now"
319
  msgstr ""
320
 
321
- #: includes/forms.php:437
 
 
 
 
322
  msgid "Click the BACK button on your browser and try again."
323
  msgstr ""
324
 
@@ -326,7 +328,7 @@ msgstr ""
326
  msgid "This options is available in Pro version of plugin"
327
  msgstr "Ова опција је доступна у Про верзији додатка"
328
 
329
- #: includes/pro_banners.php:40 includes/whitelist.php:84
330
  msgid "Allowed formats"
331
  msgstr "Дозвољени формати"
332
 
@@ -358,160 +360,160 @@ msgstr ""
358
  msgid "Jetpack Contact Form"
359
  msgstr ""
360
 
361
- #: includes/pro_banners.php:55
362
  msgid "bbPress New Topic form"
363
  msgstr ""
364
 
365
- #: includes/pro_banners.php:56
366
  msgid "bbPress Reply form"
367
  msgstr ""
368
 
369
- #: includes/pro_banners.php:57
370
  msgid "BuddyPress Registration form"
371
  msgstr ""
372
 
373
- #: includes/pro_banners.php:58
374
  msgid "BuddyPress Comments form"
375
  msgstr ""
376
 
377
- #: includes/pro_banners.php:59
378
  msgid "BuddyPress Add New Group form"
379
  msgstr ""
380
 
381
- #: includes/pro_banners.php:60
382
  msgid "WooCommerce Login form"
383
  msgstr ""
384
 
385
- #: includes/pro_banners.php:61
386
  msgid "WooCommerce Registration form"
387
  msgstr ""
388
 
389
- #: includes/pro_banners.php:62
390
  msgid "WooCommerce Reset password form"
391
  msgstr ""
392
 
393
- #: includes/pro_banners.php:63
394
  msgid "WooCommerce Checkout form"
395
  msgstr ""
396
 
397
- #: includes/pro_banners.php:64
398
  msgid "wpForo Login form"
399
  msgstr ""
400
 
401
- #: includes/pro_banners.php:65
402
  msgid "wpForo Registration form"
403
  msgstr ""
404
 
405
- #: includes/pro_banners.php:66
406
  msgid "wpForo New Topic form"
407
  msgstr ""
408
 
409
- #: includes/pro_banners.php:67
410
  msgid "wpForo Reply form"
411
  msgstr ""
412
 
413
- #: includes/pro_banners.php:153
414
  msgid "Size"
415
  msgstr ""
416
 
417
- #: includes/pro_banners.php:157
418
  msgid "Normal"
419
  msgstr "Нормално"
420
 
421
- #: includes/pro_banners.php:158
422
  msgid "Compact"
423
  msgstr "Компактно"
424
 
425
- #: includes/pro_banners.php:163
426
  msgid "Language"
427
  msgstr ""
428
 
429
- #: includes/pro_banners.php:171
430
  msgid "Multilanguage"
431
  msgstr ""
432
 
433
- #: includes/pro_banners.php:174
434
  msgid ""
435
  "Enable to switch language automatically on multilingual website using "
436
  "Multilanguage plugin."
437
  msgstr ""
438
 
439
- #: includes/whitelist.php:47
440
  msgid "Add New"
441
  msgstr ""
442
 
443
- #: includes/whitelist.php:72
444
  msgid "IP to whitelist"
445
  msgstr ""
446
 
447
- #: includes/whitelist.php:79
448
  msgid "My IP"
449
  msgstr "Мој IP"
450
 
451
- #: includes/whitelist.php:86
452
  msgid "Allowed diapason"
453
  msgstr "Дозвољени дијапазони"
454
 
455
- #: includes/whitelist.php:90
456
  msgid "Add IP to whitelist"
457
  msgstr ""
458
 
459
- #: includes/whitelist.php:95
460
  msgid "Search IP"
461
  msgstr "Тражи IP"
462
 
463
- #: includes/whitelist.php:149
464
  msgid "Nothing found"
465
  msgstr "Ништа није нађено"
466
 
467
- #: includes/whitelist.php:149
468
  msgid "No IP in the whitelist"
469
  msgstr "Нема IP у белој листи"
470
 
471
- #: includes/whitelist.php:156
472
  msgid "IP Address"
473
  msgstr ""
474
 
475
- #: includes/whitelist.php:157
476
  msgid "Date Added"
477
  msgstr ""
478
 
479
- #: includes/whitelist.php:211 includes/whitelist.php:221
480
  msgid "Delete"
481
  msgstr ""
482
 
483
- #: includes/whitelist.php:307
484
  msgid "IP added to the whitelist successfully."
485
  msgstr ""
486
 
487
- #: includes/whitelist.php:309 includes/whitelist.php:330
488
- #: includes/whitelist.php:340
489
  #, fuzzy
490
  msgid "Some errors occurred."
491
  msgstr "Неке грешке су се десиле"
492
 
493
- #: includes/whitelist.php:311
494
  msgid "IP is already in the whitelist."
495
  msgstr ""
496
 
497
- #: includes/whitelist.php:314
498
  msgid "Invalid IP. See allowed formats."
499
  msgstr "Неисправан IP. Погледајте дозвољене формате."
500
 
501
- #: includes/whitelist.php:336
502
  #, fuzzy
503
  msgid "One IP was deleted successfully."
504
  msgstr "Један IP је успешно обрисан"
505
 
506
- #: includes/whitelist.php:343
507
  msgid "You have not entered any IP."
508
  msgstr "Нисте унели ни један IP."
509
 
510
- #: includes/whitelist.php:346
511
  msgid "You have not entered any IP in to the search form."
512
  msgstr ""
513
 
514
- #: includes/whitelist.php:348
515
  msgid "Search results for"
516
  msgstr "Резултати претраге за"
517
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-02-06 09:50+0200\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: \n"
8
  "Language-Team: Team Link <teamlink@gmx.us>\n"
18
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: google-captcha.php:37 google-captcha.php:39 google-captcha.php:445
22
+ #: includes/class-gglcptch-settings-tabs.php:150
23
  msgid "Google Captcha Settings"
24
  msgstr "Google Captcha Подешавања"
25
 
26
+ #: google-captcha.php:39 google-captcha.php:1025 google-captcha.php:1038
27
  #: includes/class-gglcptch-settings-tabs.php:25
28
  msgid "Settings"
29
  msgstr "Подешавања"
30
 
31
+ #: google-captcha.php:41 includes/whitelist.php:46
32
  msgid "Google Captcha Whitelist"
33
  msgstr ""
34
 
40
  msgid "Upgrade to Pro"
41
  msgstr "Пређи на Про"
42
 
43
+ #: google-captcha.php:233
44
  msgid "Please wait until Google reCAPTCHA is loaded."
45
  msgstr "Молимо сачекајте док се Google reCAPTCHA учита."
46
 
47
+ #: google-captcha.php:234
48
  msgid ""
49
  "Failed to load Google reCAPTCHA. Please check your internet connection and "
50
  "reload this page."
52
  "Није успело учитавање Google reCAPTCHA-e Молимо проверите Вашу интернет "
53
  "конекцију и освежите страну."
54
 
55
+ #: google-captcha.php:250
56
  msgid "Warning"
57
  msgstr "Упозорење"
58
 
59
+ #: google-captcha.php:351
60
  msgid "You are in the whitelist"
61
  msgstr "Ви сте на белој листи"
62
 
63
+ #: google-captcha.php:532 google-captcha.php:1060
64
  msgid "To use Google Captcha you must get the keys from"
65
  msgstr "Да бисте користили Google Captcha морате узети кључеве од"
66
 
67
+ #: google-captcha.php:533 google-captcha.php:1061
68
  msgid "here"
69
  msgstr "овде"
70
 
71
+ #: google-captcha.php:534 google-captcha.php:1062
72
  msgid "and enter them on the"
73
  msgstr "и унесите их на"
74
 
75
+ #: google-captcha.php:536 google-captcha.php:1064
76
  msgid "plugin setting page"
77
  msgstr "страна подешавања додатка"
78
 
79
+ #: google-captcha.php:796 includes/forms.php:361
 
 
80
  msgid "Error"
81
  msgstr "Грешка"
82
 
83
+ #: google-captcha.php:920
84
  msgid "User response is missing."
85
  msgstr "Одговор корисника недостаје."
86
 
87
+ #: google-captcha.php:924 google-captcha.php:932
88
  msgid "Secret Key is invalid."
89
  msgstr ""
90
 
91
+ #: google-captcha.php:925 google-captcha.php:933
92
  msgid "Check your domain configurations"
93
  msgstr ""
94
 
95
+ #: google-captcha.php:926 google-captcha.php:934
96
  msgid "and enter it again"
97
  msgstr "и унесите поново"
98
 
99
+ #: google-captcha.php:929
100
  msgid "Secret Key is missing."
101
  msgstr "Тајни кључ недостаје."
102
 
103
+ #: google-captcha.php:936
104
  msgid "User response is invalid"
105
  msgstr "Одговор корисника није исправан"
106
 
107
+ #: google-captcha.php:937
108
  msgid "You have entered an incorrect reCAPTCHA value."
109
  msgstr "Унели сте нетачну reCAPTCHA вредност."
110
 
111
+ #: google-captcha.php:938
112
  msgid ""
113
  "More than one reCAPTCHA has been found in the current form. Please remove "
114
  "all unnecessary reCAPTCHA fields to make it work properly."
116
  "Више од једне reCAPTCHA је нађено у тренутној форми. Молим вас да уклоните "
117
  "сва непотребна reCAPTCHA поља како би форма радила исправно."
118
 
119
+ #: google-captcha.php:975
120
  msgid "Please submit \"Test verification\""
121
  msgstr ""
122
 
123
+ #: google-captcha.php:977
124
  msgid "Please complete the captcha and submit \"Test verification\""
125
  msgstr ""
126
 
127
+ #: google-captcha.php:984
128
  msgid "Test verification"
129
  msgstr "Тестирај верификацију"
130
 
131
+ #: google-captcha.php:1005
132
  msgid "The verification is successfully completed."
133
  msgstr ""
134
 
135
+ #: google-captcha.php:1040
136
  msgid "FAQ"
137
  msgstr "ЧПП"
138
 
139
+ #: google-captcha.php:1041
140
  msgid "Support"
141
  msgstr "Подршка"
142
 
182
  msgid "Enter secret key"
183
  msgstr "Унесите тајни кључ"
184
 
185
+ #: includes/class-gglcptch-settings-tabs.php:136
186
  msgid "Settings saved."
187
  msgstr ""
188
 
189
+ #: includes/class-gglcptch-settings-tabs.php:153
190
  msgid "Authentication"
191
  msgstr "Аутентикација"
192
 
193
+ #: includes/class-gglcptch-settings-tabs.php:154
194
  msgid ""
195
  "Register your website with Google to get required API keys and enter them "
196
  "below."
197
  msgstr ""
198
 
199
+ #: includes/class-gglcptch-settings-tabs.php:154
200
  msgid "Get the API Keys"
201
  msgstr ""
202
 
203
+ #: includes/class-gglcptch-settings-tabs.php:171
204
  #, fuzzy
205
  msgid "Test reCAPTCHA"
206
  msgstr "Невидљиви reCAPTCHA"
207
 
208
+ #: includes/class-gglcptch-settings-tabs.php:177
209
  msgid "General"
210
  msgstr ""
211
 
212
+ #: includes/class-gglcptch-settings-tabs.php:180
213
  msgid "Enable reCAPTCHA for"
214
  msgstr "Омогући reCAPTCHA за"
215
 
216
+ #: includes/class-gglcptch-settings-tabs.php:226
217
+ #: includes/class-gglcptch-settings-tabs.php:292 includes/pro_banners.php:20
218
  msgid "Close"
219
  msgstr "Затвори"
220
 
221
+ #: includes/class-gglcptch-settings-tabs.php:235
222
  #, fuzzy
223
  msgid "Hide reCAPTCHA for"
224
  msgstr "Омогући reCAPTCHA за"
225
 
226
+ #: includes/class-gglcptch-settings-tabs.php:253
227
  msgid "reCAPTCHA Version"
228
  msgstr "reCAPTCHA верзија"
229
 
230
+ #: includes/class-gglcptch-settings-tabs.php:267
231
+ #: includes/class-gglcptch-settings-tabs.php:279
232
  msgid "Theme"
233
  msgstr ""
234
 
235
+ #: includes/class-gglcptch-settings-tabs.php:301
236
  msgid "Whitelist Notification"
237
  msgstr "Нотификација за белу листу"
238
 
239
+ #: includes/class-gglcptch-settings-tabs.php:304
240
  #, fuzzy
241
  msgid "This message will be displayed instead of the reCAPTCHA."
242
  msgstr ""
243
  "Ова порука ће бити приказана уместо reCAPTCHA уколико је кориснички IP додат "
244
  "у белу листу"
245
 
246
+ #: includes/class-gglcptch-settings-tabs.php:308
247
  msgid "Disabled Submit Button"
248
  msgstr ""
249
 
250
+ #: includes/class-gglcptch-settings-tabs.php:312
251
  msgid ""
252
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
253
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
254
  msgstr ""
255
 
256
+ #: includes/class-gglcptch-settings-tabs.php:327
257
  msgid ""
258
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
259
  "version 1 features."
261
  "Само један reCAPTCHA може бити приказан на страни, у вези је са могућностима "
262
  "reCAPTCHA верзије 1."
263
 
264
+ #: includes/class-gglcptch-settings-tabs.php:330
265
  msgid ""
266
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
267
  "regenerate Site and Secret keys if necessary."
268
  msgstr ""
269
 
270
+ #: includes/class-gglcptch-settings-tabs.php:343
271
  msgid "Google Captcha Shortcode"
272
  msgstr ""
273
 
274
+ #: includes/class-gglcptch-settings-tabs.php:346
275
  msgid ""
276
  "Add Google Captcha to your posts or pages using the following shortcode:"
277
  msgstr ""
296
  msgid "WordPress default"
297
  msgstr "WordPress подразумевано"
298
 
299
+ #: includes/forms.php:46 includes/pro_banners.php:72
300
  msgid "External Plugins"
301
  msgstr ""
302
 
304
  msgid "Custom Forms"
305
  msgstr ""
306
 
307
+ #: includes/forms.php:76
308
  msgid "Google Captcha Plugin"
309
  msgstr ""
310
 
311
+ #: includes/forms.php:116 includes/forms.php:141
312
  msgid "Activate"
313
  msgstr "Активирај"
314
 
315
+ #: includes/forms.php:118 includes/forms.php:144 includes/forms.php:148
316
  msgid "Install Now"
317
  msgstr ""
318
 
319
+ #: includes/forms.php:274
320
+ msgid "Authentication failed."
321
+ msgstr ""
322
+
323
+ #: includes/forms.php:363
324
  msgid "Click the BACK button on your browser and try again."
325
  msgstr ""
326
 
328
  msgid "This options is available in Pro version of plugin"
329
  msgstr "Ова опција је доступна у Про верзији додатка"
330
 
331
+ #: includes/pro_banners.php:40 includes/whitelist.php:86
332
  msgid "Allowed formats"
333
  msgstr "Дозвољени формати"
334
 
360
  msgid "Jetpack Contact Form"
361
  msgstr ""
362
 
363
+ #: includes/pro_banners.php:56
364
  msgid "bbPress New Topic form"
365
  msgstr ""
366
 
367
+ #: includes/pro_banners.php:57
368
  msgid "bbPress Reply form"
369
  msgstr ""
370
 
371
+ #: includes/pro_banners.php:58
372
  msgid "BuddyPress Registration form"
373
  msgstr ""
374
 
375
+ #: includes/pro_banners.php:59
376
  msgid "BuddyPress Comments form"
377
  msgstr ""
378
 
379
+ #: includes/pro_banners.php:60
380
  msgid "BuddyPress Add New Group form"
381
  msgstr ""
382
 
383
+ #: includes/pro_banners.php:61
384
  msgid "WooCommerce Login form"
385
  msgstr ""
386
 
387
+ #: includes/pro_banners.php:62
388
  msgid "WooCommerce Registration form"
389
  msgstr ""
390
 
391
+ #: includes/pro_banners.php:63
392
  msgid "WooCommerce Reset password form"
393
  msgstr ""
394
 
395
+ #: includes/pro_banners.php:64
396
  msgid "WooCommerce Checkout form"
397
  msgstr ""
398
 
399
+ #: includes/pro_banners.php:65
400
  msgid "wpForo Login form"
401
  msgstr ""
402
 
403
+ #: includes/pro_banners.php:66
404
  msgid "wpForo Registration form"
405
  msgstr ""
406
 
407
+ #: includes/pro_banners.php:67
408
  msgid "wpForo New Topic form"
409
  msgstr ""
410
 
411
+ #: includes/pro_banners.php:68
412
  msgid "wpForo Reply form"
413
  msgstr ""
414
 
415
+ #: includes/pro_banners.php:156
416
  msgid "Size"
417
  msgstr ""
418
 
419
+ #: includes/pro_banners.php:160
420
  msgid "Normal"
421
  msgstr "Нормално"
422
 
423
+ #: includes/pro_banners.php:161
424
  msgid "Compact"
425
  msgstr "Компактно"
426
 
427
+ #: includes/pro_banners.php:166
428
  msgid "Language"
429
  msgstr ""
430
 
431
+ #: includes/pro_banners.php:174
432
  msgid "Multilanguage"
433
  msgstr ""
434
 
435
+ #: includes/pro_banners.php:177
436
  msgid ""
437
  "Enable to switch language automatically on multilingual website using "
438
  "Multilanguage plugin."
439
  msgstr ""
440
 
441
+ #: includes/whitelist.php:49
442
  msgid "Add New"
443
  msgstr ""
444
 
445
+ #: includes/whitelist.php:74
446
  msgid "IP to whitelist"
447
  msgstr ""
448
 
449
+ #: includes/whitelist.php:81
450
  msgid "My IP"
451
  msgstr "Мој IP"
452
 
453
+ #: includes/whitelist.php:88
454
  msgid "Allowed diapason"
455
  msgstr "Дозвољени дијапазони"
456
 
457
+ #: includes/whitelist.php:92
458
  msgid "Add IP to whitelist"
459
  msgstr ""
460
 
461
+ #: includes/whitelist.php:97
462
  msgid "Search IP"
463
  msgstr "Тражи IP"
464
 
465
+ #: includes/whitelist.php:151
466
  msgid "Nothing found"
467
  msgstr "Ништа није нађено"
468
 
469
+ #: includes/whitelist.php:151
470
  msgid "No IP in the whitelist"
471
  msgstr "Нема IP у белој листи"
472
 
473
+ #: includes/whitelist.php:158
474
  msgid "IP Address"
475
  msgstr ""
476
 
477
+ #: includes/whitelist.php:159
478
  msgid "Date Added"
479
  msgstr ""
480
 
481
+ #: includes/whitelist.php:213 includes/whitelist.php:223
482
  msgid "Delete"
483
  msgstr ""
484
 
485
+ #: includes/whitelist.php:310
486
  msgid "IP added to the whitelist successfully."
487
  msgstr ""
488
 
489
+ #: includes/whitelist.php:312 includes/whitelist.php:334
490
+ #: includes/whitelist.php:344
491
  #, fuzzy
492
  msgid "Some errors occurred."
493
  msgstr "Неке грешке су се десиле"
494
 
495
+ #: includes/whitelist.php:315
496
  msgid "IP is already in the whitelist."
497
  msgstr ""
498
 
499
+ #: includes/whitelist.php:318
500
  msgid "Invalid IP. See allowed formats."
501
  msgstr "Неисправан IP. Погледајте дозвољене формате."
502
 
503
+ #: includes/whitelist.php:340
504
  #, fuzzy
505
  msgid "One IP was deleted successfully."
506
  msgstr "Један IP је успешно обрисан"
507
 
508
+ #: includes/whitelist.php:347
509
  msgid "You have not entered any IP."
510
  msgstr "Нисте унели ни један IP."
511
 
512
+ #: includes/whitelist.php:350
513
  msgid "You have not entered any IP in to the search form."
514
  msgstr ""
515
 
516
+ #: includes/whitelist.php:352
517
  msgid "Search results for"
518
  msgstr "Резултати претраге за"
519
 
languages/google-captcha-uk.mo CHANGED
Binary file
languages/google-captcha-uk.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-09-14 20:00+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
@@ -18,17 +18,17 @@ msgstr ""
18
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: google-captcha.php:37 google-captcha.php:39 google-captcha.php:432
22
- #: includes/class-gglcptch-settings-tabs.php:149
23
  msgid "Google Captcha Settings"
24
  msgstr "Налаштування Google Captcha"
25
 
26
- #: google-captcha.php:39 google-captcha.php:950 google-captcha.php:963
27
  #: includes/class-gglcptch-settings-tabs.php:25
28
  msgid "Settings"
29
  msgstr "Налаштування"
30
 
31
- #: google-captcha.php:41 includes/whitelist.php:44
32
  msgid "Google Captcha Whitelist"
33
  msgstr "Білий список Google Captcha"
34
 
@@ -40,11 +40,11 @@ msgstr "Білий список"
40
  msgid "Upgrade to Pro"
41
  msgstr "Оновити до Pro"
42
 
43
- #: google-captcha.php:225
44
  msgid "Please wait until Google reCAPTCHA is loaded."
45
  msgstr "Будь ласка, зачекайте, поки буде завантаженo Google reCAPTCHA."
46
 
47
- #: google-captcha.php:226
48
  msgid ""
49
  "Failed to load Google reCAPTCHA. Please check your internet connection and "
50
  "reload this page."
@@ -52,65 +52,63 @@ msgstr ""
52
  "Не вдалося завантажити Google reCAPTCHA. Будь ласка, перевірте підключення "
53
  "до Інтернету та оновіть цю сторінку."
54
 
55
- #: google-captcha.php:242
56
  msgid "Warning"
57
  msgstr "Увага"
58
 
59
- #: google-captcha.php:340
60
  msgid "You are in the whitelist"
61
  msgstr "Ви знаходитесь в білому списку"
62
 
63
- #: google-captcha.php:512 google-captcha.php:983
64
  msgid "To use Google Captcha you must get the keys from"
65
  msgstr "Щоб використовувати Google Captcha, вам необхідно отримати ключі з"
66
 
67
- #: google-captcha.php:513 google-captcha.php:984
68
  msgid "here"
69
  msgstr "тут"
70
 
71
- #: google-captcha.php:514 google-captcha.php:985
72
  msgid "and enter them on the"
73
  msgstr "і вставте їх у"
74
 
75
- #: google-captcha.php:516 google-captcha.php:987
76
  msgid "plugin setting page"
77
  msgstr "сторінку налаштувань плагіну"
78
 
79
- #: google-captcha.php:763 includes/forms.php:282 includes/forms.php:313
80
- #: includes/forms.php:344 includes/forms.php:389 includes/forms.php:435
81
- #: includes/forms.php:469
82
  msgid "Error"
83
  msgstr "Помилка"
84
 
85
- #: google-captcha.php:860
86
  msgid "User response is missing."
87
  msgstr "Відповідь користувача відсутня."
88
 
89
- #: google-captcha.php:864 google-captcha.php:872
90
  msgid "Secret Key is invalid."
91
  msgstr "Секретний ключ некоректний."
92
 
93
- #: google-captcha.php:865 google-captcha.php:873
94
  msgid "Check your domain configurations"
95
  msgstr "Перевірте конфігурацію вашого домену"
96
 
97
- #: google-captcha.php:866 google-captcha.php:874
98
  msgid "and enter it again"
99
  msgstr "і введіть його знову"
100
 
101
- #: google-captcha.php:869
102
  msgid "Secret Key is missing."
103
  msgstr "Секретний ключ відсутній."
104
 
105
- #: google-captcha.php:876
106
  msgid "User response is invalid"
107
  msgstr "Некоректна відповідь користувача"
108
 
109
- #: google-captcha.php:877
110
  msgid "You have entered an incorrect reCAPTCHA value."
111
  msgstr "Ви ввели невірне значення reCAPTCHA."
112
 
113
- #: google-captcha.php:878
114
  msgid ""
115
  "More than one reCAPTCHA has been found in the current form. Please remove "
116
  "all unnecessary reCAPTCHA fields to make it work properly."
@@ -118,28 +116,28 @@ msgstr ""
118
  "В поточній формі знайдено більш ніж один блок reCAPTCHA. Будь-ласка видаліть "
119
  "усі зайві блоки reCAPTCHA для коректної подальшої роботи."
120
 
121
- #: google-captcha.php:902
122
  msgid "Please submit \"Test verification\""
123
  msgstr "Будь ласка, натисніть кнопку \"Тестування перевірки\""
124
 
125
- #: google-captcha.php:904
126
  msgid "Please complete the captcha and submit \"Test verification\""
127
  msgstr ""
128
  "Будь ласка, заповніть капчу і натисніть кнопку \"Тестування перевірки\""
129
 
130
- #: google-captcha.php:910
131
  msgid "Test verification"
132
  msgstr "Тестування перевірки"
133
 
134
- #: google-captcha.php:931
135
  msgid "The verification is successfully completed."
136
  msgstr "Перевірка завершена успішно."
137
 
138
- #: google-captcha.php:964
139
  msgid "FAQ"
140
  msgstr "FAQ"
141
 
142
- #: google-captcha.php:965
143
  msgid "Support"
144
  msgstr "Техпідтримка"
145
 
@@ -186,15 +184,15 @@ msgstr ""
186
  msgid "Enter secret key"
187
  msgstr "Введіть секретний ключ"
188
 
189
- #: includes/class-gglcptch-settings-tabs.php:135
190
  msgid "Settings saved."
191
  msgstr "Налаштування збережені."
192
 
193
- #: includes/class-gglcptch-settings-tabs.php:152
194
  msgid "Authentication"
195
  msgstr "Ідентифікація"
196
 
197
- #: includes/class-gglcptch-settings-tabs.php:153
198
  msgid ""
199
  "Register your website with Google to get required API keys and enter them "
200
  "below."
@@ -202,53 +200,53 @@ msgstr ""
202
  "Зареєструйте свій веб-сайт за допомогою Google, щоб отримати необхідні API "
203
  "ключі та введіть їх нижче."
204
 
205
- #: includes/class-gglcptch-settings-tabs.php:153
206
  msgid "Get the API Keys"
207
  msgstr "Отримати API ключі"
208
 
209
- #: includes/class-gglcptch-settings-tabs.php:170
210
  msgid "Test reCAPTCHA"
211
  msgstr "Тестування reCAPTCHA"
212
 
213
- #: includes/class-gglcptch-settings-tabs.php:176
214
  msgid "General"
215
  msgstr "Загальне"
216
 
217
- #: includes/class-gglcptch-settings-tabs.php:179
218
  msgid "Enable reCAPTCHA for"
219
  msgstr "Включити reCAPTCHA для"
220
 
221
- #: includes/class-gglcptch-settings-tabs.php:224
222
- #: includes/class-gglcptch-settings-tabs.php:290 includes/pro_banners.php:20
223
  msgid "Close"
224
  msgstr "Закрити"
225
 
226
- #: includes/class-gglcptch-settings-tabs.php:233
227
  msgid "Hide reCAPTCHA for"
228
  msgstr "Сховати reCAPTCHA для"
229
 
230
- #: includes/class-gglcptch-settings-tabs.php:251
231
  msgid "reCAPTCHA Version"
232
  msgstr "Версія reCAPTCHA"
233
 
234
- #: includes/class-gglcptch-settings-tabs.php:265
235
- #: includes/class-gglcptch-settings-tabs.php:277
236
  msgid "Theme"
237
  msgstr "Тема"
238
 
239
- #: includes/class-gglcptch-settings-tabs.php:299
240
  msgid "Whitelist Notification"
241
  msgstr "Повідомлення про знаходження у білому списку"
242
 
243
- #: includes/class-gglcptch-settings-tabs.php:302
244
  msgid "This message will be displayed instead of the reCAPTCHA."
245
  msgstr "Це повідомлення буде відображатися замість reCAPTCHA."
246
 
247
- #: includes/class-gglcptch-settings-tabs.php:306
248
  msgid "Disabled Submit Button"
249
  msgstr "Відключена кнопка підтвердження"
250
 
251
- #: includes/class-gglcptch-settings-tabs.php:310
252
  msgid ""
253
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
254
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
@@ -257,7 +255,7 @@ msgstr ""
257
  "не буде завантажена reCAPTCHA (Не використовуйте цю опцію, якщо ви бачите "
258
  "повідомлення \"Не вдалося завантажити Google reCAPTCHA\")."
259
 
260
- #: includes/class-gglcptch-settings-tabs.php:325
261
  msgid ""
262
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
263
  "version 1 features."
@@ -265,7 +263,7 @@ msgstr ""
265
  "У зв'язку з особливостями роботи reCAPTCHA версії 1 на сторінці може "
266
  "відображатися тільки одна reCAPTCHA."
267
 
268
- #: includes/class-gglcptch-settings-tabs.php:328
269
  msgid ""
270
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
271
  "regenerate Site and Secret keys if necessary."
@@ -273,11 +271,11 @@ msgstr ""
273
  "Версію reCAPTCHA було змінено. Будь ласка, натисніть \"Тестування reCAPTCHA"
274
  "\" та оновіть секретний ключ та ключ сайту, якщо це необхідно."
275
 
276
- #: includes/class-gglcptch-settings-tabs.php:341
277
  msgid "Google Captcha Shortcode"
278
  msgstr "Шорткод Google Captcha"
279
 
280
- #: includes/class-gglcptch-settings-tabs.php:344
281
  msgid ""
282
  "Add Google Captcha to your posts or pages using the following shortcode:"
283
  msgstr ""
@@ -304,7 +302,7 @@ msgstr "Форма коментарів"
304
  msgid "WordPress default"
305
  msgstr "Стандартних форм WordPress"
306
 
307
- #: includes/forms.php:46 includes/pro_banners.php:71
308
  msgid "External Plugins"
309
  msgstr "Зовнішні плагіни"
310
 
@@ -312,19 +310,23 @@ msgstr "Зовнішні плагіни"
312
  msgid "Custom Forms"
313
  msgstr "Користувацькі форми"
314
 
315
- #: includes/forms.php:75
316
  msgid "Google Captcha Plugin"
317
  msgstr "Плагін Google Captcha"
318
 
319
- #: includes/forms.php:114 includes/forms.php:139
320
  msgid "Activate"
321
  msgstr "Активувати"
322
 
323
- #: includes/forms.php:116 includes/forms.php:142 includes/forms.php:146
324
  msgid "Install Now"
325
  msgstr "Встановити зараз"
326
 
327
- #: includes/forms.php:437
 
 
 
 
328
  msgid "Click the BACK button on your browser and try again."
329
  msgstr "Натисніть кнопку НАЗАД у браузері та спробуйте ще раз."
330
 
@@ -332,7 +334,7 @@ msgstr "Натисніть кнопку НАЗАД у браузері та сп
332
  msgid "This options is available in Pro version of plugin"
333
  msgstr "Ця опція доступна в Pro версії плагіну"
334
 
335
- #: includes/pro_banners.php:40 includes/whitelist.php:84
336
  msgid "Allowed formats"
337
  msgstr "Доступні формати"
338
 
@@ -364,79 +366,79 @@ msgstr "табуляція, нова строка або повернення к
364
  msgid "Jetpack Contact Form"
365
  msgstr "Контактна форма Jetpack"
366
 
367
- #: includes/pro_banners.php:55
368
  msgid "bbPress New Topic form"
369
  msgstr "Форма \"Нова тема\" плагіну bbPress"
370
 
371
- #: includes/pro_banners.php:56
372
  msgid "bbPress Reply form"
373
  msgstr "Форма \"Відповісти\" плагіну bbPress"
374
 
375
- #: includes/pro_banners.php:57
376
  msgid "BuddyPress Registration form"
377
  msgstr "Форма реєстрації плагіну BuddyPress"
378
 
379
- #: includes/pro_banners.php:58
380
  msgid "BuddyPress Comments form"
381
  msgstr "Форма коментарів плагіну BuddyPress"
382
 
383
- #: includes/pro_banners.php:59
384
  msgid "BuddyPress Add New Group form"
385
  msgstr "Форма \"Додати нову групу\" плагіну BuddyPress"
386
 
387
- #: includes/pro_banners.php:60
388
  msgid "WooCommerce Login form"
389
  msgstr "Форма логіна плагіна WooCommerce"
390
 
391
- #: includes/pro_banners.php:61
392
  msgid "WooCommerce Registration form"
393
  msgstr "Форма реєстрації плагіна WooCommerce"
394
 
395
- #: includes/pro_banners.php:62
396
  msgid "WooCommerce Reset password form"
397
  msgstr "Форма відновлення пароля плагіна WooCommerce"
398
 
399
- #: includes/pro_banners.php:63
400
  msgid "WooCommerce Checkout form"
401
  msgstr "Форма оформлення замовлення плагіна WooCommerce"
402
 
403
- #: includes/pro_banners.php:64
404
  msgid "wpForo Login form"
405
  msgstr "Форма логіну плагіна wpForo"
406
 
407
- #: includes/pro_banners.php:65
408
  msgid "wpForo Registration form"
409
  msgstr "Форма реєстрації плагина wpForo"
410
 
411
- #: includes/pro_banners.php:66
412
  msgid "wpForo New Topic form"
413
  msgstr "Форма нової теми плагіна wpForo"
414
 
415
- #: includes/pro_banners.php:67
416
  msgid "wpForo Reply form"
417
  msgstr "Форма відповіді плагина wpForo"
418
 
419
- #: includes/pro_banners.php:153
420
  msgid "Size"
421
  msgstr "Розмір"
422
 
423
- #: includes/pro_banners.php:157
424
  msgid "Normal"
425
  msgstr "Нормальний"
426
 
427
- #: includes/pro_banners.php:158
428
  msgid "Compact"
429
  msgstr "Компактний"
430
 
431
- #: includes/pro_banners.php:163
432
  msgid "Language"
433
  msgstr "Мова"
434
 
435
- #: includes/pro_banners.php:171
436
  msgid "Multilanguage"
437
  msgstr "Multilanguage"
438
 
439
- #: includes/pro_banners.php:174
440
  msgid ""
441
  "Enable to switch language automatically on multilingual website using "
442
  "Multilanguage plugin."
@@ -444,80 +446,80 @@ msgstr ""
444
  "Увімкніть, щоб перемкнути мову автоматично на багатомовному сайті, "
445
  "використовуючи плагін Multilanguage."
446
 
447
- #: includes/whitelist.php:47
448
  msgid "Add New"
449
  msgstr "Додати"
450
 
451
- #: includes/whitelist.php:72
452
  msgid "IP to whitelist"
453
  msgstr "IP до білого списку"
454
 
455
- #: includes/whitelist.php:79
456
  msgid "My IP"
457
  msgstr "Мій IP"
458
 
459
- #: includes/whitelist.php:86
460
  msgid "Allowed diapason"
461
  msgstr "Доступні діапазони"
462
 
463
- #: includes/whitelist.php:90
464
  msgid "Add IP to whitelist"
465
  msgstr "Додати IP до білого списку"
466
 
467
- #: includes/whitelist.php:95
468
  msgid "Search IP"
469
  msgstr "Шукати IP"
470
 
471
- #: includes/whitelist.php:149
472
  msgid "Nothing found"
473
  msgstr "Нічого не знайдено"
474
 
475
- #: includes/whitelist.php:149
476
  msgid "No IP in the whitelist"
477
  msgstr "Список IP порожній"
478
 
479
- #: includes/whitelist.php:156
480
  msgid "IP Address"
481
  msgstr "IP адреса"
482
 
483
- #: includes/whitelist.php:157
484
  msgid "Date Added"
485
  msgstr "Дата додавання"
486
 
487
- #: includes/whitelist.php:211 includes/whitelist.php:221
488
  msgid "Delete"
489
  msgstr "Видалити"
490
 
491
- #: includes/whitelist.php:307
492
  msgid "IP added to the whitelist successfully."
493
  msgstr "IP успішно додано до білого списку."
494
 
495
- #: includes/whitelist.php:309 includes/whitelist.php:330
496
- #: includes/whitelist.php:340
497
  msgid "Some errors occurred."
498
  msgstr "Відбулися деякі помилки."
499
 
500
- #: includes/whitelist.php:311
501
  msgid "IP is already in the whitelist."
502
  msgstr "IP вже знаходиться в білому списку."
503
 
504
- #: includes/whitelist.php:314
505
  msgid "Invalid IP. See allowed formats."
506
  msgstr "Невірний IP. Дивіться доступні формати."
507
 
508
- #: includes/whitelist.php:336
509
  msgid "One IP was deleted successfully."
510
  msgstr "Одну IP було видалено успішно."
511
 
512
- #: includes/whitelist.php:343
513
  msgid "You have not entered any IP."
514
  msgstr "Ви не ввели жодного IP."
515
 
516
- #: includes/whitelist.php:346
517
  msgid "You have not entered any IP in to the search form."
518
  msgstr "Ви не ввели ніякого значення у форму пошуку."
519
 
520
- #: includes/whitelist.php:348
521
  msgid "Search results for"
522
  msgstr "Результати пошуку для"
523
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-02-06 09:51+0200\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
18
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: google-captcha.php:37 google-captcha.php:39 google-captcha.php:445
22
+ #: includes/class-gglcptch-settings-tabs.php:150
23
  msgid "Google Captcha Settings"
24
  msgstr "Налаштування Google Captcha"
25
 
26
+ #: google-captcha.php:39 google-captcha.php:1025 google-captcha.php:1038
27
  #: includes/class-gglcptch-settings-tabs.php:25
28
  msgid "Settings"
29
  msgstr "Налаштування"
30
 
31
+ #: google-captcha.php:41 includes/whitelist.php:46
32
  msgid "Google Captcha Whitelist"
33
  msgstr "Білий список Google Captcha"
34
 
40
  msgid "Upgrade to Pro"
41
  msgstr "Оновити до Pro"
42
 
43
+ #: google-captcha.php:233
44
  msgid "Please wait until Google reCAPTCHA is loaded."
45
  msgstr "Будь ласка, зачекайте, поки буде завантаженo Google reCAPTCHA."
46
 
47
+ #: google-captcha.php:234
48
  msgid ""
49
  "Failed to load Google reCAPTCHA. Please check your internet connection and "
50
  "reload this page."
52
  "Не вдалося завантажити Google reCAPTCHA. Будь ласка, перевірте підключення "
53
  "до Інтернету та оновіть цю сторінку."
54
 
55
+ #: google-captcha.php:250
56
  msgid "Warning"
57
  msgstr "Увага"
58
 
59
+ #: google-captcha.php:351
60
  msgid "You are in the whitelist"
61
  msgstr "Ви знаходитесь в білому списку"
62
 
63
+ #: google-captcha.php:532 google-captcha.php:1060
64
  msgid "To use Google Captcha you must get the keys from"
65
  msgstr "Щоб використовувати Google Captcha, вам необхідно отримати ключі з"
66
 
67
+ #: google-captcha.php:533 google-captcha.php:1061
68
  msgid "here"
69
  msgstr "тут"
70
 
71
+ #: google-captcha.php:534 google-captcha.php:1062
72
  msgid "and enter them on the"
73
  msgstr "і вставте їх у"
74
 
75
+ #: google-captcha.php:536 google-captcha.php:1064
76
  msgid "plugin setting page"
77
  msgstr "сторінку налаштувань плагіну"
78
 
79
+ #: google-captcha.php:796 includes/forms.php:361
 
 
80
  msgid "Error"
81
  msgstr "Помилка"
82
 
83
+ #: google-captcha.php:920
84
  msgid "User response is missing."
85
  msgstr "Відповідь користувача відсутня."
86
 
87
+ #: google-captcha.php:924 google-captcha.php:932
88
  msgid "Secret Key is invalid."
89
  msgstr "Секретний ключ некоректний."
90
 
91
+ #: google-captcha.php:925 google-captcha.php:933
92
  msgid "Check your domain configurations"
93
  msgstr "Перевірте конфігурацію вашого домену"
94
 
95
+ #: google-captcha.php:926 google-captcha.php:934
96
  msgid "and enter it again"
97
  msgstr "і введіть його знову"
98
 
99
+ #: google-captcha.php:929
100
  msgid "Secret Key is missing."
101
  msgstr "Секретний ключ відсутній."
102
 
103
+ #: google-captcha.php:936
104
  msgid "User response is invalid"
105
  msgstr "Некоректна відповідь користувача"
106
 
107
+ #: google-captcha.php:937
108
  msgid "You have entered an incorrect reCAPTCHA value."
109
  msgstr "Ви ввели невірне значення reCAPTCHA."
110
 
111
+ #: google-captcha.php:938
112
  msgid ""
113
  "More than one reCAPTCHA has been found in the current form. Please remove "
114
  "all unnecessary reCAPTCHA fields to make it work properly."
116
  "В поточній формі знайдено більш ніж один блок reCAPTCHA. Будь-ласка видаліть "
117
  "усі зайві блоки reCAPTCHA для коректної подальшої роботи."
118
 
119
+ #: google-captcha.php:975
120
  msgid "Please submit \"Test verification\""
121
  msgstr "Будь ласка, натисніть кнопку \"Тестування перевірки\""
122
 
123
+ #: google-captcha.php:977
124
  msgid "Please complete the captcha and submit \"Test verification\""
125
  msgstr ""
126
  "Будь ласка, заповніть капчу і натисніть кнопку \"Тестування перевірки\""
127
 
128
+ #: google-captcha.php:984
129
  msgid "Test verification"
130
  msgstr "Тестування перевірки"
131
 
132
+ #: google-captcha.php:1005
133
  msgid "The verification is successfully completed."
134
  msgstr "Перевірка завершена успішно."
135
 
136
+ #: google-captcha.php:1040
137
  msgid "FAQ"
138
  msgstr "FAQ"
139
 
140
+ #: google-captcha.php:1041
141
  msgid "Support"
142
  msgstr "Техпідтримка"
143
 
184
  msgid "Enter secret key"
185
  msgstr "Введіть секретний ключ"
186
 
187
+ #: includes/class-gglcptch-settings-tabs.php:136
188
  msgid "Settings saved."
189
  msgstr "Налаштування збережені."
190
 
191
+ #: includes/class-gglcptch-settings-tabs.php:153
192
  msgid "Authentication"
193
  msgstr "Ідентифікація"
194
 
195
+ #: includes/class-gglcptch-settings-tabs.php:154
196
  msgid ""
197
  "Register your website with Google to get required API keys and enter them "
198
  "below."
200
  "Зареєструйте свій веб-сайт за допомогою Google, щоб отримати необхідні API "
201
  "ключі та введіть їх нижче."
202
 
203
+ #: includes/class-gglcptch-settings-tabs.php:154
204
  msgid "Get the API Keys"
205
  msgstr "Отримати API ключі"
206
 
207
+ #: includes/class-gglcptch-settings-tabs.php:171
208
  msgid "Test reCAPTCHA"
209
  msgstr "Тестування reCAPTCHA"
210
 
211
+ #: includes/class-gglcptch-settings-tabs.php:177
212
  msgid "General"
213
  msgstr "Загальне"
214
 
215
+ #: includes/class-gglcptch-settings-tabs.php:180
216
  msgid "Enable reCAPTCHA for"
217
  msgstr "Включити reCAPTCHA для"
218
 
219
+ #: includes/class-gglcptch-settings-tabs.php:226
220
+ #: includes/class-gglcptch-settings-tabs.php:292 includes/pro_banners.php:20
221
  msgid "Close"
222
  msgstr "Закрити"
223
 
224
+ #: includes/class-gglcptch-settings-tabs.php:235
225
  msgid "Hide reCAPTCHA for"
226
  msgstr "Сховати reCAPTCHA для"
227
 
228
+ #: includes/class-gglcptch-settings-tabs.php:253
229
  msgid "reCAPTCHA Version"
230
  msgstr "Версія reCAPTCHA"
231
 
232
+ #: includes/class-gglcptch-settings-tabs.php:267
233
+ #: includes/class-gglcptch-settings-tabs.php:279
234
  msgid "Theme"
235
  msgstr "Тема"
236
 
237
+ #: includes/class-gglcptch-settings-tabs.php:301
238
  msgid "Whitelist Notification"
239
  msgstr "Повідомлення про знаходження у білому списку"
240
 
241
+ #: includes/class-gglcptch-settings-tabs.php:304
242
  msgid "This message will be displayed instead of the reCAPTCHA."
243
  msgstr "Це повідомлення буде відображатися замість reCAPTCHA."
244
 
245
+ #: includes/class-gglcptch-settings-tabs.php:308
246
  msgid "Disabled Submit Button"
247
  msgstr "Відключена кнопка підтвердження"
248
 
249
+ #: includes/class-gglcptch-settings-tabs.php:312
250
  msgid ""
251
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
252
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
255
  "не буде завантажена reCAPTCHA (Не використовуйте цю опцію, якщо ви бачите "
256
  "повідомлення \"Не вдалося завантажити Google reCAPTCHA\")."
257
 
258
+ #: includes/class-gglcptch-settings-tabs.php:327
259
  msgid ""
260
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
261
  "version 1 features."
263
  "У зв'язку з особливостями роботи reCAPTCHA версії 1 на сторінці може "
264
  "відображатися тільки одна reCAPTCHA."
265
 
266
+ #: includes/class-gglcptch-settings-tabs.php:330
267
  msgid ""
268
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
269
  "regenerate Site and Secret keys if necessary."
271
  "Версію reCAPTCHA було змінено. Будь ласка, натисніть \"Тестування reCAPTCHA"
272
  "\" та оновіть секретний ключ та ключ сайту, якщо це необхідно."
273
 
274
+ #: includes/class-gglcptch-settings-tabs.php:343
275
  msgid "Google Captcha Shortcode"
276
  msgstr "Шорткод Google Captcha"
277
 
278
+ #: includes/class-gglcptch-settings-tabs.php:346
279
  msgid ""
280
  "Add Google Captcha to your posts or pages using the following shortcode:"
281
  msgstr ""
302
  msgid "WordPress default"
303
  msgstr "Стандартних форм WordPress"
304
 
305
+ #: includes/forms.php:46 includes/pro_banners.php:72
306
  msgid "External Plugins"
307
  msgstr "Зовнішні плагіни"
308
 
310
  msgid "Custom Forms"
311
  msgstr "Користувацькі форми"
312
 
313
+ #: includes/forms.php:76
314
  msgid "Google Captcha Plugin"
315
  msgstr "Плагін Google Captcha"
316
 
317
+ #: includes/forms.php:116 includes/forms.php:141
318
  msgid "Activate"
319
  msgstr "Активувати"
320
 
321
+ #: includes/forms.php:118 includes/forms.php:144 includes/forms.php:148
322
  msgid "Install Now"
323
  msgstr "Встановити зараз"
324
 
325
+ #: includes/forms.php:274
326
+ msgid "Authentication failed."
327
+ msgstr "Помилка аутентифікації."
328
+
329
+ #: includes/forms.php:363
330
  msgid "Click the BACK button on your browser and try again."
331
  msgstr "Натисніть кнопку НАЗАД у браузері та спробуйте ще раз."
332
 
334
  msgid "This options is available in Pro version of plugin"
335
  msgstr "Ця опція доступна в Pro версії плагіну"
336
 
337
+ #: includes/pro_banners.php:40 includes/whitelist.php:86
338
  msgid "Allowed formats"
339
  msgstr "Доступні формати"
340
 
366
  msgid "Jetpack Contact Form"
367
  msgstr "Контактна форма Jetpack"
368
 
369
+ #: includes/pro_banners.php:56
370
  msgid "bbPress New Topic form"
371
  msgstr "Форма \"Нова тема\" плагіну bbPress"
372
 
373
+ #: includes/pro_banners.php:57
374
  msgid "bbPress Reply form"
375
  msgstr "Форма \"Відповісти\" плагіну bbPress"
376
 
377
+ #: includes/pro_banners.php:58
378
  msgid "BuddyPress Registration form"
379
  msgstr "Форма реєстрації плагіну BuddyPress"
380
 
381
+ #: includes/pro_banners.php:59
382
  msgid "BuddyPress Comments form"
383
  msgstr "Форма коментарів плагіну BuddyPress"
384
 
385
+ #: includes/pro_banners.php:60
386
  msgid "BuddyPress Add New Group form"
387
  msgstr "Форма \"Додати нову групу\" плагіну BuddyPress"
388
 
389
+ #: includes/pro_banners.php:61
390
  msgid "WooCommerce Login form"
391
  msgstr "Форма логіна плагіна WooCommerce"
392
 
393
+ #: includes/pro_banners.php:62
394
  msgid "WooCommerce Registration form"
395
  msgstr "Форма реєстрації плагіна WooCommerce"
396
 
397
+ #: includes/pro_banners.php:63
398
  msgid "WooCommerce Reset password form"
399
  msgstr "Форма відновлення пароля плагіна WooCommerce"
400
 
401
+ #: includes/pro_banners.php:64
402
  msgid "WooCommerce Checkout form"
403
  msgstr "Форма оформлення замовлення плагіна WooCommerce"
404
 
405
+ #: includes/pro_banners.php:65
406
  msgid "wpForo Login form"
407
  msgstr "Форма логіну плагіна wpForo"
408
 
409
+ #: includes/pro_banners.php:66
410
  msgid "wpForo Registration form"
411
  msgstr "Форма реєстрації плагина wpForo"
412
 
413
+ #: includes/pro_banners.php:67
414
  msgid "wpForo New Topic form"
415
  msgstr "Форма нової теми плагіна wpForo"
416
 
417
+ #: includes/pro_banners.php:68
418
  msgid "wpForo Reply form"
419
  msgstr "Форма відповіді плагина wpForo"
420
 
421
+ #: includes/pro_banners.php:156
422
  msgid "Size"
423
  msgstr "Розмір"
424
 
425
+ #: includes/pro_banners.php:160
426
  msgid "Normal"
427
  msgstr "Нормальний"
428
 
429
+ #: includes/pro_banners.php:161
430
  msgid "Compact"
431
  msgstr "Компактний"
432
 
433
+ #: includes/pro_banners.php:166
434
  msgid "Language"
435
  msgstr "Мова"
436
 
437
+ #: includes/pro_banners.php:174
438
  msgid "Multilanguage"
439
  msgstr "Multilanguage"
440
 
441
+ #: includes/pro_banners.php:177
442
  msgid ""
443
  "Enable to switch language automatically on multilingual website using "
444
  "Multilanguage plugin."
446
  "Увімкніть, щоб перемкнути мову автоматично на багатомовному сайті, "
447
  "використовуючи плагін Multilanguage."
448
 
449
+ #: includes/whitelist.php:49
450
  msgid "Add New"
451
  msgstr "Додати"
452
 
453
+ #: includes/whitelist.php:74
454
  msgid "IP to whitelist"
455
  msgstr "IP до білого списку"
456
 
457
+ #: includes/whitelist.php:81
458
  msgid "My IP"
459
  msgstr "Мій IP"
460
 
461
+ #: includes/whitelist.php:88
462
  msgid "Allowed diapason"
463
  msgstr "Доступні діапазони"
464
 
465
+ #: includes/whitelist.php:92
466
  msgid "Add IP to whitelist"
467
  msgstr "Додати IP до білого списку"
468
 
469
+ #: includes/whitelist.php:97
470
  msgid "Search IP"
471
  msgstr "Шукати IP"
472
 
473
+ #: includes/whitelist.php:151
474
  msgid "Nothing found"
475
  msgstr "Нічого не знайдено"
476
 
477
+ #: includes/whitelist.php:151
478
  msgid "No IP in the whitelist"
479
  msgstr "Список IP порожній"
480
 
481
+ #: includes/whitelist.php:158
482
  msgid "IP Address"
483
  msgstr "IP адреса"
484
 
485
+ #: includes/whitelist.php:159
486
  msgid "Date Added"
487
  msgstr "Дата додавання"
488
 
489
+ #: includes/whitelist.php:213 includes/whitelist.php:223
490
  msgid "Delete"
491
  msgstr "Видалити"
492
 
493
+ #: includes/whitelist.php:310
494
  msgid "IP added to the whitelist successfully."
495
  msgstr "IP успішно додано до білого списку."
496
 
497
+ #: includes/whitelist.php:312 includes/whitelist.php:334
498
+ #: includes/whitelist.php:344
499
  msgid "Some errors occurred."
500
  msgstr "Відбулися деякі помилки."
501
 
502
+ #: includes/whitelist.php:315
503
  msgid "IP is already in the whitelist."
504
  msgstr "IP вже знаходиться в білому списку."
505
 
506
+ #: includes/whitelist.php:318
507
  msgid "Invalid IP. See allowed formats."
508
  msgstr "Невірний IP. Дивіться доступні формати."
509
 
510
+ #: includes/whitelist.php:340
511
  msgid "One IP was deleted successfully."
512
  msgstr "Одну IP було видалено успішно."
513
 
514
+ #: includes/whitelist.php:347
515
  msgid "You have not entered any IP."
516
  msgstr "Ви не ввели жодного IP."
517
 
518
+ #: includes/whitelist.php:350
519
  msgid "You have not entered any IP in to the search form."
520
  msgstr "Ви не ввели ніякого значення у форму пошуку."
521
 
522
+ #: includes/whitelist.php:352
523
  msgid "Search results for"
524
  msgstr "Результати пошуку для"
525
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
3
  Donate link: https://bestwebsoft.com/donate/
4
  Tags: anti-spam security, antispam, recaptcha, captcha, captha, Invisible reCaptcha, Invisible captcha, Invisibl reCaptcha, comment, cpatcha, google catcha, Invisible re captcha
5
  Requires at least: 3.9
6
- Tested up to: 4.9
7
- Stable tag: 1.33
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -16,7 +16,7 @@ Google Captcha (reCAPTCHA) plugin is an effective security solution that protect
16
 
17
  Users are required to confirm that they are not a robot before the form can be submitted. It's easy for people and hard for bots.
18
 
19
- [View Demo](https://bestwebsoft.com/demo-for-google-captcha/)
20
 
21
  http://www.youtube.com/watch?v=qwHsW3IJ7gQ
22
 
@@ -60,8 +60,9 @@ http://www.youtube.com/watch?v=qwHsW3IJ7gQ
60
  > * Contact Form 7 (since v 3.4)
61
  > * [Subscriber](https://bestwebsoft.com/products/wordpress/plugins/subscriber/?k=e6d1742fcf1806a39afac207f7920cf3)
62
  > * [Multilanguage](https://bestwebsoft.com/products/wordpress/plugins/multilanguage/?k=e48e145002e4b2472e568a81d171b888)
63
- > * Jetpack Contact Form
64
  > * Fast Secure Contact Form
 
65
  > * Compatible with WooCommerce:
66
  > * Login form
67
  > * Register form
@@ -92,6 +93,7 @@ If you have a feature suggestion or idea you'd like to see in the plugin, we'd l
92
 
93
  * [[Doc] Installation](https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/)
94
  * [[Doc] Purchase](https://docs.google.com/document/d/1EUdBVvnm7IHZ6y0DNyldZypUQKpB8UVPToSc_LdOYQI/)
 
95
  * [[Video] Installation Instruction](http://www.youtube.com/watch?v=RUJ9VwZLFSY)
96
  * [[Video] Purchase, Installation & Configuration](https://www.youtube.com/watch?v=X-ccRdEFcM0)
97
 
@@ -123,7 +125,7 @@ Some of these translations are not complete. We are constantly adding new featur
123
 
124
  1. Upload the `google-captcha` folder to the `/wp-content/plugins/` directory.
125
  2. Activate the plugin via the 'Plugins' menu in WordPress.
126
- 3. Plugin settings are located in "Admin Panel" > "Google Captcha".
127
  4. Create a form in post and insert the shortcode [bws_google_captcha] into the form.
128
 
129
  [View a Step-by-step Instruction on Google Captcha (reCAPTCHA) Installation](https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/)
@@ -257,8 +259,13 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
257
 
258
  == Changelog ==
259
 
 
 
 
 
 
260
  = V1.33 - 15.11.2017 =
261
- * Bugfix : Redundant reCAPTHCA checking has been removed.
262
  * Update : The compatibility with Captcha by BestWebSoft and Contact Form by BestWebSoft plugins has been improved.
263
 
264
  = V1.32 - 13.10.2017 =
@@ -408,6 +415,11 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
408
 
409
  == Upgrade Notice ==
410
 
 
 
 
 
 
411
  = V1.33 =
412
  * Bugs fixed.
413
  * Functionality improved.
3
  Donate link: https://bestwebsoft.com/donate/
4
  Tags: anti-spam security, antispam, recaptcha, captcha, captha, Invisible reCaptcha, Invisible captcha, Invisibl reCaptcha, comment, cpatcha, google catcha, Invisible re captcha
5
  Requires at least: 3.9
6
+ Tested up to: 4.9.3
7
+ Stable tag: 1.34
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
16
 
17
  Users are required to confirm that they are not a robot before the form can be submitted. It's easy for people and hard for bots.
18
 
19
+ [View Demo](https://bestwebsoft.com/demo-for-google-captcha/?ref=readme)
20
 
21
  http://www.youtube.com/watch?v=qwHsW3IJ7gQ
22
 
60
  > * Contact Form 7 (since v 3.4)
61
  > * [Subscriber](https://bestwebsoft.com/products/wordpress/plugins/subscriber/?k=e6d1742fcf1806a39afac207f7920cf3)
62
  > * [Multilanguage](https://bestwebsoft.com/products/wordpress/plugins/multilanguage/?k=e48e145002e4b2472e568a81d171b888)
63
+ > * Jetpack contact form
64
  > * Fast Secure Contact Form
65
+ > * MailChimp for WordPress [NEW]
66
  > * Compatible with WooCommerce:
67
  > * Login form
68
  > * Register form
93
 
94
  * [[Doc] Installation](https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/)
95
  * [[Doc] Purchase](https://docs.google.com/document/d/1EUdBVvnm7IHZ6y0DNyldZypUQKpB8UVPToSc_LdOYQI/)
96
+ * [[Doc] How to Use](https://docs.google.com/document/d/1yTDdMSLqvgATbo5lPzuNn4QRF0EyEPFuLoFB15beMww/)
97
  * [[Video] Installation Instruction](http://www.youtube.com/watch?v=RUJ9VwZLFSY)
98
  * [[Video] Purchase, Installation & Configuration](https://www.youtube.com/watch?v=X-ccRdEFcM0)
99
 
125
 
126
  1. Upload the `google-captcha` folder to the `/wp-content/plugins/` directory.
127
  2. Activate the plugin via the 'Plugins' menu in WordPress.
128
+ 3. Plugin settings are located in Google Captcha" menu.
129
  4. Create a form in post and insert the shortcode [bws_google_captcha] into the form.
130
 
131
  [View a Step-by-step Instruction on Google Captcha (reCAPTCHA) Installation](https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/)
259
 
260
  == Changelog ==
261
 
262
+ = V1.34 - 06.02.2018 =
263
+ * NEW : The compatibility with Wordfence option "Immediately block the IP of users who try to sign in as these usernames" has been added.
264
+ * Update : reCAPTCHA output functionality in forms has been optimized.
265
+ * Update : The compatibility with Limit Attempts by BestWebSoft has been improved.
266
+
267
  = V1.33 - 15.11.2017 =
268
+ * Bugfix : Redundant reCAPTCHA checking has been removed.
269
  * Update : The compatibility with Captcha by BestWebSoft and Contact Form by BestWebSoft plugins has been improved.
270
 
271
  = V1.32 - 13.10.2017 =
415
 
416
  == Upgrade Notice ==
417
 
418
+ = V1.34 =
419
+ * The compatibility with new WordPress version updated.
420
+ * Functionality expanded.
421
+ * Functionality improved.
422
+
423
  = V1.33 =
424
  * Bugs fixed.
425
  * Functionality improved.
screenshot-8.png CHANGED
Binary file