Google Captcha (reCAPTCHA) by BestWebSoft - Version 1.43

Version Description

  • 27.03.2019 =
  • NEW : The ability to hide reCAPTCHA Badge has been added.
  • PRO : The compatibility with Divi Theme has been added.
  • Bugfix : The bug with button Test verification has been fixed.
Download this release

Release Info

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

Code changes from version 1.42 to 1.43

css/hide_badge.css ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ .grecaptcha-badge {
2
+ visibility: hidden;
3
+ }
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.42
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv3 or later
12
  */
@@ -123,11 +123,14 @@ if ( ! function_exists( 'gglcptch_admin_init' ) ) {
123
  /* Add google captcha styles */
124
  if ( ! function_exists( 'gglcptch_add_admin_script_styles' ) ) {
125
  function gglcptch_add_admin_script_styles() {
126
- global $gglcptch_plugin_info;
127
 
128
  /* css for displaing an icon */
129
  wp_enqueue_style( 'gglcptch_admin_page_stylesheet', plugins_url( 'css/admin_page.css', __FILE__ ) );
130
 
 
 
 
131
  if ( isset( $_REQUEST['page'] ) && ( 'google-captcha.php' == $_REQUEST['page'] || 'google-captcha-whitelist.php' == $_REQUEST['page'] ) ) {
132
  wp_enqueue_style( 'gglcptch_stylesheet', plugins_url( 'css/style.css', __FILE__ ), array(), $gglcptch_plugin_info['Version'] );
133
  wp_enqueue_script( 'gglcptch_admin_script', plugins_url( 'js/admin_script.js', __FILE__ ), array( 'jquery', 'jquery-ui-accordion' ), $gglcptch_plugin_info['Version'] );
@@ -253,6 +256,10 @@ if ( ! function_exists( 'gglcptch_add_scripts' ) ) {
253
  'visibility' => ( 'login_footer' == current_filter() )
254
  )
255
  ) );
 
 
 
 
256
  }
257
  }
258
 
@@ -362,7 +369,8 @@ if ( ! function_exists( 'gglcptch_get_default_options' ) ) {
362
  'first_install' => strtotime( "now" ),
363
  'display_settings_notice' => 1,
364
  'suggest_feature_banner' => 1,
365
- 'score_v3' => 0.5
 
366
  );
367
 
368
  if ( function_exists( 'get_editable_roles' ) ) {
@@ -522,6 +530,17 @@ if ( ! function_exists( 'gglcptch_display' ) ) {
522
  $privatekey = $gglcptch_options['private_key'];
523
 
524
  $content .= '<div class="gglcptch gglcptch_' . $gglcptch_options['recaptcha_version'] . '">';
 
 
 
 
 
 
 
 
 
 
 
525
  if ( ! $privatekey || ! $publickey ) {
526
  if ( current_user_can( 'manage_options' ) ) {
527
  $content .= sprintf(
@@ -568,17 +587,6 @@ if ( ! function_exists( 'gglcptch_display' ) ) {
568
  });
569
  });
570
  </script>';
571
- } else {
572
- /**
573
- * @deprecated
574
- * @todo remove after 01.02.2019
575
- * Also need delete lib/recaptchalib.php'
576
- */
577
- // require_once( 'lib/recaptchalib.php' );
578
- // $content .= '<div id="gglcptch_recaptcha_' . $id . '" class="gglcptch_recaptcha"></div>';
579
- // $content .= gglcptch_recaptcha_get_html( $publickey, null, is_ssl() );
580
- // $deps = array();
581
- /* @todo end */
582
  }
583
  $content .= '</div>';
584
  $gglcptch_count++;
@@ -741,44 +749,8 @@ if ( ! function_exists( 'gglcptch_check' ) ) {
741
  }
742
  }
743
  }
744
- } else {
745
- /**
746
- * @deprecated *
747
- * @todo remove after 01.02.2019
748
- */
749
- // $gglcptch_recaptcha_challenge_field = $gglcptch_recaptcha_response_field = '';
750
- //
751
- // if ( ! isset( $_POST['recaptcha_challenge_field'] ) && ! isset( $_POST['recaptcha_response_field'] ) ) {
752
- // $result = array(
753
- // 'response' => false,
754
- // 'reason' => 'RECAPTCHA_NO_RESPONSE'
755
- // );
756
- // } elseif ( ! empty( $_POST['recaptcha_challenge_field'] ) && empty( $_POST['recaptcha_response_field'] ) ) {
757
- // $result = array(
758
- // 'response' => false,
759
- // 'reason' => 'RECAPTCHA_EMPTY_RESPONSE'
760
- // );
761
- // } else {
762
- // $gglcptch_recaptcha_challenge_field = stripslashes( esc_html( $_POST['recaptcha_challenge_field'] ) );
763
- // $gglcptch_recaptcha_response_field = stripslashes( esc_html( $_POST['recaptcha_response_field'] ) );
764
- //
765
- // require_once( 'lib/recaptchalib.php' );
766
- // $response = gglcptch_recaptcha_check_answer( $privatekey, $gglcptch_remote_addr, $gglcptch_recaptcha_challenge_field, $gglcptch_recaptcha_response_field );
767
- //
768
- // if ( ! $response->is_valid ) {
769
- // $result = array(
770
- // 'response' => false,
771
- // 'reason' => $debug ? $response->error : 'VERIFICATION_FAILED'
772
- // );
773
- // } else {
774
- // $result = array(
775
- // 'response' => true,
776
- // 'reason' => ''
777
- // );
778
- // }
779
- // }
780
- /* @todo end */
781
- }
782
  if ( ! $result['response'] ) {
783
  $result['errors'] = new WP_Error;
784
  if ( ! $debug && ! in_array( $result['reason'], array( 'ERROR_WRONG_SECRET', 'ERROR_NO_KEYS' ) ) ) {
6
  Author: BestWebSoft
7
  Text Domain: google-captcha
8
  Domain Path: /languages
9
+ Version: 1.43
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv3 or later
12
  */
123
  /* Add google captcha styles */
124
  if ( ! function_exists( 'gglcptch_add_admin_script_styles' ) ) {
125
  function gglcptch_add_admin_script_styles() {
126
+ global $gglcptch_plugin_info, $gglcptch_options;
127
 
128
  /* css for displaing an icon */
129
  wp_enqueue_style( 'gglcptch_admin_page_stylesheet', plugins_url( 'css/admin_page.css', __FILE__ ) );
130
 
131
+ if ( 1 == $gglcptch_options['hide_badge'] ) {
132
+ wp_enqueue_style( 'gglcptch_hide', plugins_url( 'css/hide_badge.css', __FILE__ ), array(), $gglcptch_plugin_info['Version'] );
133
+ }
134
  if ( isset( $_REQUEST['page'] ) && ( 'google-captcha.php' == $_REQUEST['page'] || 'google-captcha-whitelist.php' == $_REQUEST['page'] ) ) {
135
  wp_enqueue_style( 'gglcptch_stylesheet', plugins_url( 'css/style.css', __FILE__ ), array(), $gglcptch_plugin_info['Version'] );
136
  wp_enqueue_script( 'gglcptch_admin_script', plugins_url( 'js/admin_script.js', __FILE__ ), array( 'jquery', 'jquery-ui-accordion' ), $gglcptch_plugin_info['Version'] );
256
  'visibility' => ( 'login_footer' == current_filter() )
257
  )
258
  ) );
259
+
260
+ if ( 1 == $gglcptch_options['hide_badge'] ) {
261
+ wp_enqueue_style( 'gglcptch_hide', plugins_url( 'css/hide_badge.css', __FILE__ ), array(), $gglcptch_plugin_info['Version'] );
262
+ }
263
  }
264
  }
265
 
369
  'first_install' => strtotime( "now" ),
370
  'display_settings_notice' => 1,
371
  'suggest_feature_banner' => 1,
372
+ 'score_v3' => 0.5,
373
+ 'hide_badge' => 0
374
  );
375
 
376
  if ( function_exists( 'get_editable_roles' ) ) {
530
  $privatekey = $gglcptch_options['private_key'];
531
 
532
  $content .= '<div class="gglcptch gglcptch_' . $gglcptch_options['recaptcha_version'] . '">';
533
+
534
+ if ( 1 == $gglcptch_options['hide_badge'] ) {
535
+ $content .= sprintf(
536
+ '<div>%s<a href="https://policies.google.com/privacy">%s</a>%s<a href="https://policies.google.com/terms">%s</a>%s</div>',
537
+ __( 'This site is protected by reCAPTCHA and the Google ', 'google-captcha' ),
538
+ __( 'Privacy Policy', 'google-captcha' ),
539
+ __( ' and ', 'google-captcha' ),
540
+ __( 'Terms of Service', 'google-captcha' ),
541
+ __( ' apply.', 'google-captcha' )
542
+ );
543
+ }
544
  if ( ! $privatekey || ! $publickey ) {
545
  if ( current_user_can( 'manage_options' ) ) {
546
  $content .= sprintf(
587
  });
588
  });
589
  </script>';
 
 
 
 
 
 
 
 
 
 
 
590
  }
591
  $content .= '</div>';
592
  $gglcptch_count++;
749
  }
750
  }
751
  }
752
+ }
753
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
754
  if ( ! $result['response'] ) {
755
  $result['errors'] = new WP_Error;
756
  if ( ! $debug && ! in_array( $result['reason'], array( 'ERROR_WRONG_SECRET', 'ERROR_NO_KEYS' ) ) ) {
includes/class-gglcptch-settings-tabs.php CHANGED
@@ -120,6 +120,7 @@ if ( ! class_exists( 'Gglcptch_Settings_Tabs' ) ) {
120
  $this->options['theme_v2'] = stripslashes( esc_html( $_POST['gglcptch_theme_v2'] ) );
121
  $this->options['score_v3'] = isset( $_POST['gglcptch_score_v3'] ) ? (float)$_POST['gglcptch_score_v3'] : 0.5;
122
  $this->options['disable_submit'] = isset( $_POST['gglcptch_disable_submit'] ) ? 1 : 0;
 
123
 
124
  foreach ( $this->forms as $form_slug => $form_data ) {
125
  $this->options[ $form_slug ] = isset( $_POST["gglcptch_{$form_slug}"] ) ? 1 : 0;
@@ -259,6 +260,17 @@ if ( ! class_exists( 'Gglcptch_Settings_Tabs' ) ) {
259
  </fieldset>
260
  </td>
261
  </tr>
 
 
 
 
 
 
 
 
 
 
 
262
  <tr class="gglcptch_theme_v2" valign="top">
263
  <th scope="row">
264
  <?php _e( 'Theme', 'google-captcha' ); ?>
120
  $this->options['theme_v2'] = stripslashes( esc_html( $_POST['gglcptch_theme_v2'] ) );
121
  $this->options['score_v3'] = isset( $_POST['gglcptch_score_v3'] ) ? (float)$_POST['gglcptch_score_v3'] : 0.5;
122
  $this->options['disable_submit'] = isset( $_POST['gglcptch_disable_submit'] ) ? 1 : 0;
123
+ $this->options['hide_badge'] = isset( $_POST['gglcptch_hide_badge'] ) ? 1 : 0;
124
 
125
  foreach ( $this->forms as $form_slug => $form_data ) {
126
  $this->options[ $form_slug ] = isset( $_POST["gglcptch_{$form_slug}"] ) ? 1 : 0;
260
  </fieldset>
261
  </td>
262
  </tr>
263
+ <tr class="gglcptch_badge_v3" valign="top">
264
+ <th scope="row">
265
+ <?php _e( 'Hide reCAPTCHA Badge', 'google-captcha' ); ?>
266
+ </th>
267
+ <td>
268
+ <input<?php echo $this->change_permission_attr; ?> id="gglcptch_hide_badge" type="checkbox" <?php checked( ! empty( $this->options["hide_badge"] ) ); ?> name="gglcptch_hide_badge" value="1" />&nbsp;
269
+ <span class="bws_info">
270
+ <?php _e( 'Enable to hide reCAPTCHA Badge for Version 3 and Invisble reCAPTCHA.', 'google-captcha' ); ?>
271
+ </span>
272
+ </td>
273
+ </tr>
274
  <tr class="gglcptch_theme_v2" valign="top">
275
  <th scope="row">
276
  <?php _e( 'Theme', 'google-captcha' ); ?>
includes/pro_banners.php CHANGED
@@ -67,8 +67,9 @@ if ( ! function_exists( 'gglcptch_supported_plugins_banner' ) ) {
67
  'wpforo_new_topic_form' => array( 'form_name' => __( 'wpForo New Topic form', 'google-captcha' ) ),
68
  'wpforo_reply_form' => array( 'form_name' => __( 'wpForo Reply form', 'google-captcha') ),
69
  'ninja_form' => array( 'form_name' => __( 'Ninja Forms', 'google-captcha' ) ),
70
- 'divi_contact_form' => array( 'form_name' => __( 'Contact Forms', 'google-captcha' ) ),
71
- 'divi_login' => array( 'form_name' => __( 'Login Forms', 'google-captcha' ) ),
 
72
  );
73
  $pro_sections = array(
74
  'external' => array(
@@ -106,6 +107,12 @@ if ( ! function_exists( 'gglcptch_supported_plugins_banner' ) ) {
106
  'divi_login',
107
  )
108
  ),
 
 
 
 
 
 
109
  'bbpress' => array(
110
  'name' => 'bbPress',
111
  'forms' => array(
67
  'wpforo_new_topic_form' => array( 'form_name' => __( 'wpForo New Topic form', 'google-captcha' ) ),
68
  'wpforo_reply_form' => array( 'form_name' => __( 'wpForo Reply form', 'google-captcha') ),
69
  'ninja_form' => array( 'form_name' => __( 'Ninja Forms', 'google-captcha' ) ),
70
+ 'divi_contact_form' => array( 'form_name' => __( 'Divi Contact Form', 'google-captcha' ) ),
71
+ 'divi_login' => array( 'form_name' => __( 'Divi Login Forms', 'google-captcha' ) ),
72
+ 'divi_theme_contact_form' => array( 'form_name' => __( 'Divi Theme Contact Form', 'google-captcha' ) ),
73
  );
74
  $pro_sections = array(
75
  'external' => array(
107
  'divi_login',
108
  )
109
  ),
110
+ 'divi_theme' => array(
111
+ 'name' => 'Divi Theme',
112
+ 'forms' => array(
113
+ 'divi_theme_contact_form',
114
+ )
115
+ ),
116
  'bbpress' => array(
117
  'name' => 'bbPress',
118
  'forms' => array(
js/admin_script.js CHANGED
@@ -1,23 +1,23 @@
1
  ( function( $ ) {
2
  $( document ).ready( function() {
3
 
4
-
5
- $( "#gglcptch_score_v3").change(function() {
6
  var score;
7
- score = $(this).val();
8
- $("#gglcptch_score_out_v3").text(score);
9
- })
10
- .trigger('change');
11
 
12
  $( 'input[name="gglcptch_recaptcha_version"]' ).change( function() {
13
- var versions = $( 'input[name="gglcptch_recaptcha_version"]' );
14
  versions.each( function() {
15
  if ( $( this ).is( ':checked' ) ) {
16
  $( '.gglcptch_theme_' + $( this ).val() ).show();
17
  $( '.gglcptch_score_' + $( this ).val() ).show();
 
18
  } else {
19
  $( '.gglcptch_theme_' + $( this ).val() ).hide();
20
  $( '.gglcptch_score_' + $( this ).val() ).hide();
 
21
  }
22
  } );
23
  } ).trigger( 'change' );
@@ -85,7 +85,7 @@
85
  if( $( '#gglcptch_test_keys_verification' ).length > 0 ) {
86
  $( '#gglcptch_test_keys_verification' ).removeAttr('disabled');
87
  }
88
- }, 2000 );
89
  return false;
90
  } );
91
 
1
  ( function( $ ) {
2
  $( document ).ready( function() {
3
 
4
+ $( '#gglcptch_score_v3' ).change( function() {
 
5
  var score;
6
+ score = $( this ).val();
7
+ $( '#gglcptch_score_out_v3' ).text( score );
8
+ } ).trigger( 'change' );
 
9
 
10
  $( 'input[name="gglcptch_recaptcha_version"]' ).change( function() {
11
+ var versions = $( 'input[name="gglcptch_recaptcha_version"]' );
12
  versions.each( function() {
13
  if ( $( this ).is( ':checked' ) ) {
14
  $( '.gglcptch_theme_' + $( this ).val() ).show();
15
  $( '.gglcptch_score_' + $( this ).val() ).show();
16
+ $( '.gglcptch_badge_v3' ).show();
17
  } else {
18
  $( '.gglcptch_theme_' + $( this ).val() ).hide();
19
  $( '.gglcptch_score_' + $( this ).val() ).hide();
20
+ $( '.gglcptch_badge_' + $( this ).val() ).hide();
21
  }
22
  } );
23
  } ).trigger( 'change' );
85
  if( $( '#gglcptch_test_keys_verification' ).length > 0 ) {
86
  $( '#gglcptch_test_keys_verification' ).removeAttr('disabled');
87
  }
88
+ }, 8000 );
89
  return false;
90
  } );
91
 
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: 2019-01-08 13:07+0200\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Mik013\n"
8
  "Language-Team: Mik013\n"
@@ -13,16 +13,16 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.8.7.1\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:38 google-captcha.php:40 google-captcha.php:449
21
- #: includes/class-gglcptch-settings-tabs.php:147
22
  msgid "Google Captcha Settings"
23
  msgstr "Nastavení Google Captcha"
24
 
25
- #: google-captcha.php:40 google-captcha.php:1080 google-captcha.php:1093
26
  #: includes/class-gglcptch-settings-tabs.php:25
27
  msgid "Settings"
28
  msgstr "Nastavení"
@@ -39,11 +39,11 @@ msgstr "Seznam povolených"
39
  msgid "Upgrade to Pro"
40
  msgstr "Aktualizovat na Pro"
41
 
42
- #: google-captcha.php:237
43
  msgid "Please wait until Google reCAPTCHA is loaded."
44
  msgstr "Počkejte, než se Google reCAPTCHA načte."
45
 
46
- #: google-captcha.php:238
47
  msgid ""
48
  "Failed to load Google reCAPTCHA. Please check your internet connection and "
49
  "reload this page."
@@ -51,67 +51,87 @@ 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:254
55
  msgid "Warning"
56
  msgstr "Upozornění"
57
 
58
- #: google-captcha.php:353
59
  msgid "You are in the whitelist"
60
  msgstr "Jste na seznamu povolených"
61
 
62
- #: google-captcha.php:450
63
  msgid "Please enable JavaScript in your browser."
64
  msgstr ""
65
 
66
- #: google-captcha.php:537 google-captcha.php:1115
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  msgid "To use Google Captcha you must get the keys from"
68
  msgstr "Chcete-li použít Google Captcha musíte získat klíče z"
69
 
70
- #: google-captcha.php:538 google-captcha.php:1116
71
  msgid "here"
72
  msgstr "zde"
73
 
74
- #: google-captcha.php:539 google-captcha.php:1117
75
  msgid "and enter them on the"
76
  msgstr "a zadejte je na"
77
 
78
- #: google-captcha.php:541 google-captcha.php:1119
79
  msgid "plugin setting page"
80
  msgstr "stránce nastavení pluginu"
81
 
82
- #: google-captcha.php:847 includes/forms.php:369
83
  msgid "Error"
84
  msgstr "Chyba"
85
 
86
- #: google-captcha.php:972
87
  msgid "User response is missing."
88
  msgstr "Chybí odezva uživatele."
89
 
90
- #: google-captcha.php:976 google-captcha.php:984
91
  msgid "Secret Key is invalid."
92
  msgstr "Tajný klíč je neplatný."
93
 
94
- #: google-captcha.php:977 google-captcha.php:985
95
  msgid "Check your domain configurations"
96
  msgstr "Zkontrolujte konfiguraci vaší domény"
97
 
98
- #: google-captcha.php:978 google-captcha.php:986
99
  msgid "and enter it again"
100
  msgstr "a zadejte jej znovu"
101
 
102
- #: google-captcha.php:981
103
  msgid "Secret Key is missing."
104
  msgstr "Tajný klíč chybí."
105
 
106
- #: google-captcha.php:988
107
  msgid "User response is invalid"
108
  msgstr "Neplatná odezva uživatele"
109
 
110
- #: google-captcha.php:989
111
  msgid "You have entered an incorrect reCAPTCHA value."
112
  msgstr "Zadali jste nesprávnou hodnotu reCAPTCHA ."
113
 
114
- #: google-captcha.php:990
115
  msgid ""
116
  "More than one reCAPTCHA has been found in the current form. Please remove "
117
  "all unnecessary reCAPTCHA fields to make it work properly."
@@ -119,33 +139,33 @@ msgstr ""
119
  "V aktuálním formuláři byla zjištěna více než jedna reCAPTCHA. Pro správnou "
120
  "funkcionalitu, odstraňte všechny nepotřebné reCAPTCHA pole."
121
 
122
- #: google-captcha.php:992
123
  msgid "reCAPTCHA v3 test failed"
124
  msgstr ""
125
 
126
- #: google-captcha.php:1030
127
  msgid "Please submit \"Test verification\""
128
  msgstr "Odešlete &#8222;Test ověření&#8220;"
129
 
130
- #: google-captcha.php:1032
131
  msgid "Please complete the captcha and submit \"Test verification\""
132
  msgstr "Doplňte captcha a odešlete &#8222;Test ověření&#8220;"
133
 
134
- #: google-captcha.php:1039
135
  msgid "Test verification"
136
  msgstr "Test ověření"
137
 
138
- #: google-captcha.php:1060
139
  msgid "The verification is successfully completed."
140
  msgstr "Ověření je úspěšně dokončeno."
141
 
142
- #: google-captcha.php:1095
143
  msgid "FAQ"
144
  msgstr ""
145
  "Časté dotazy <acronym title=\\\"Frequently asked questions\\\">(FAQ)</"
146
  "acronym>"
147
 
148
- #: google-captcha.php:1096
149
  msgid "Support"
150
  msgstr "Podpora"
151
 
@@ -191,15 +211,15 @@ msgstr "VAROVÁNÍ: Captcha se nezobrazí, dokud nebudou vyplněna pole s klíč
191
  msgid "Enter secret key"
192
  msgstr "Vložte tajný klíč"
193
 
194
- #: includes/class-gglcptch-settings-tabs.php:135
195
  msgid "Settings saved."
196
  msgstr "Nastavení uloženo."
197
 
198
- #: includes/class-gglcptch-settings-tabs.php:150
199
  msgid "Authentication"
200
  msgstr "Autentizace"
201
 
202
- #: includes/class-gglcptch-settings-tabs.php:151
203
  msgid ""
204
  "Register your website with Google to get required API keys and enter them "
205
  "below."
@@ -207,60 +227,70 @@ msgstr ""
207
  "Zaregistrujte svůj web na Google, abyste získali požadované API klíče a "
208
  "zadejte je níže."
209
 
210
- #: includes/class-gglcptch-settings-tabs.php:151
211
  msgid "Get the API Keys"
212
  msgstr "Získat API klíče"
213
 
214
- #: includes/class-gglcptch-settings-tabs.php:168
215
  msgid "Test reCAPTCHA"
216
  msgstr "Vyzkoušet reCAPTCHA"
217
 
218
- #: includes/class-gglcptch-settings-tabs.php:174
219
  msgid "General"
220
  msgstr "Obecné"
221
 
222
- #: includes/class-gglcptch-settings-tabs.php:177
 
 
 
 
223
  msgid "Enable reCAPTCHA for"
224
  msgstr "Povolit reCAPTCHA pro"
225
 
226
- #: includes/class-gglcptch-settings-tabs.php:223
227
- #: includes/class-gglcptch-settings-tabs.php:287 includes/pro_banners.php:20
228
  msgid "Close"
229
  msgstr "Zavřít"
230
 
231
- #: includes/class-gglcptch-settings-tabs.php:232
232
  msgid "Hide reCAPTCHA for"
233
  msgstr "Skrýt reCAPTCHA pro"
234
 
235
- #: includes/class-gglcptch-settings-tabs.php:250
236
- msgid "reCAPTCHA Version"
237
- msgstr "reCAPTCHA verze"
 
 
238
 
239
- #: includes/class-gglcptch-settings-tabs.php:264
 
 
 
 
240
  msgid "Theme"
241
  msgstr "Šablona"
242
 
243
- #: includes/class-gglcptch-settings-tabs.php:275
244
  msgid "Score"
245
  msgstr ""
246
 
247
- #: includes/class-gglcptch-settings-tabs.php:280
248
  msgid "Set the minimum verification score from 0 to 1"
249
  msgstr ""
250
 
251
- #: includes/class-gglcptch-settings-tabs.php:296
252
  msgid "Whitelist Notification"
253
  msgstr "Upozornění na seznam povolených"
254
 
255
- #: includes/class-gglcptch-settings-tabs.php:299
256
  msgid "This message will be displayed instead of the reCAPTCHA."
257
  msgstr "Tato zpráva se bude zobrazovat namísto reCAPTCHA."
258
 
259
- #: includes/class-gglcptch-settings-tabs.php:303
260
  msgid "Disabled Submit Button"
261
  msgstr "Neaktivní tlačitko odeslat"
262
 
263
- #: includes/class-gglcptch-settings-tabs.php:307
264
  msgid ""
265
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
266
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
@@ -269,7 +299,7 @@ msgstr ""
269
  "možnost nepoužívejte, pokud se zobrazuje zpráva &#8222;Nepodařilo se načíst "
270
  "Google reCAPTCHA&#8220;)."
271
 
272
- #: includes/class-gglcptch-settings-tabs.php:321
273
  msgid ""
274
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
275
  "regenerate Site and Secret keys if necessary."
@@ -277,11 +307,11 @@ msgstr ""
277
  "Byla změněna verze reCAPTCHA. Klikněte na &#8222;Vyzkoušet reCAPTCHA&#8220; "
278
  "a znovu vygenerujte tajné a webové klíče, je-li to nezbytné."
279
 
280
- #: includes/class-gglcptch-settings-tabs.php:334
281
  msgid "Google Captcha Shortcode"
282
  msgstr "Zkrácený kód Google Captcha"
283
 
284
- #: includes/class-gglcptch-settings-tabs.php:337
285
  msgid ""
286
  "Add Google Captcha to your posts or pages using the following shortcode:"
287
  msgstr ""
@@ -312,7 +342,7 @@ msgstr "Testimonials"
312
  msgid "WordPress default"
313
  msgstr "WordPress"
314
 
315
- #: includes/forms.php:47 includes/pro_banners.php:72
316
  msgid "External Plugins"
317
  msgstr "Externí pluginy"
318
 
@@ -332,11 +362,11 @@ msgstr "Aktivovat"
332
  msgid "Install Now"
333
  msgstr "Instalovat nyní"
334
 
335
- #: includes/forms.php:282
336
  msgid "Authentication failed."
337
  msgstr "Ověření selhalo."
338
 
339
- #: includes/forms.php:371
340
  msgid "Click the BACK button on your browser and try again."
341
  msgstr "Klikněte ve vašem prohlížeči na tlačítko ZPĚT a zkuste to znovu."
342
 
@@ -428,27 +458,43 @@ msgstr "wpForo formulář nového tématu"
428
  msgid "wpForo Reply form"
429
  msgstr "wpForo odpovědní formulář"
430
 
431
- #: includes/pro_banners.php:156
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
432
  msgid "Size"
433
  msgstr "Velikost"
434
 
435
- #: includes/pro_banners.php:160
436
  msgid "Normal"
437
  msgstr "Normální"
438
 
439
- #: includes/pro_banners.php:161
440
  msgid "Compact"
441
  msgstr "Kompaktní"
442
 
443
- #: includes/pro_banners.php:166
444
  msgid "Language"
445
  msgstr "Jazyk"
446
 
447
- #: includes/pro_banners.php:174
448
  msgid "Multilanguage"
449
  msgstr "Multilanguage"
450
 
451
- #: includes/pro_banners.php:177
452
  msgid ""
453
  "Enable to switch language automatically on multilingual website using "
454
  "Multilanguage plugin."
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-03-04 12:07+0200\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Mik013\n"
8
  "Language-Team: Mik013\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 2.0.6\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:38 google-captcha.php:40 google-captcha.php:457
21
+ #: includes/class-gglcptch-settings-tabs.php:148
22
  msgid "Google Captcha Settings"
23
  msgstr "Nastavení Google Captcha"
24
 
25
+ #: google-captcha.php:40 google-captcha.php:1055 google-captcha.php:1068
26
  #: includes/class-gglcptch-settings-tabs.php:25
27
  msgid "Settings"
28
  msgstr "Nastavení"
39
  msgid "Upgrade to Pro"
40
  msgstr "Aktualizovat na Pro"
41
 
42
+ #: google-captcha.php:240
43
  msgid "Please wait until Google reCAPTCHA is loaded."
44
  msgstr "Počkejte, než se Google reCAPTCHA načte."
45
 
46
+ #: google-captcha.php:241
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:257
55
  msgid "Warning"
56
  msgstr "Upozornění"
57
 
58
+ #: google-captcha.php:360
59
  msgid "You are in the whitelist"
60
  msgstr "Jste na seznamu povolených"
61
 
62
+ #: google-captcha.php:458
63
  msgid "Please enable JavaScript in your browser."
64
  msgstr ""
65
 
66
+ #: google-captcha.php:541
67
+ msgid "This site is protected by reCAPTCHA and the Google "
68
+ msgstr ""
69
+
70
+ #: google-captcha.php:542
71
+ msgid "Privacy Policy"
72
+ msgstr ""
73
+
74
+ #: google-captcha.php:543
75
+ msgid " and "
76
+ msgstr ""
77
+
78
+ #: google-captcha.php:544
79
+ msgid "Terms of Service"
80
+ msgstr ""
81
+
82
+ #: google-captcha.php:545
83
+ msgid " apply."
84
+ msgstr ""
85
+
86
+ #: google-captcha.php:552 google-captcha.php:1090
87
  msgid "To use Google Captcha you must get the keys from"
88
  msgstr "Chcete-li použít Google Captcha musíte získat klíče z"
89
 
90
+ #: google-captcha.php:553 google-captcha.php:1091
91
  msgid "here"
92
  msgstr "zde"
93
 
94
+ #: google-captcha.php:554 google-captcha.php:1092
95
  msgid "and enter them on the"
96
  msgstr "a zadejte je na"
97
 
98
+ #: google-captcha.php:556 google-captcha.php:1094
99
  msgid "plugin setting page"
100
  msgstr "stránce nastavení pluginu"
101
 
102
+ #: google-captcha.php:823 includes/forms.php:356
103
  msgid "Error"
104
  msgstr "Chyba"
105
 
106
+ #: google-captcha.php:948
107
  msgid "User response is missing."
108
  msgstr "Chybí odezva uživatele."
109
 
110
+ #: google-captcha.php:952 google-captcha.php:960
111
  msgid "Secret Key is invalid."
112
  msgstr "Tajný klíč je neplatný."
113
 
114
+ #: google-captcha.php:953 google-captcha.php:961
115
  msgid "Check your domain configurations"
116
  msgstr "Zkontrolujte konfiguraci vaší domény"
117
 
118
+ #: google-captcha.php:954 google-captcha.php:962
119
  msgid "and enter it again"
120
  msgstr "a zadejte jej znovu"
121
 
122
+ #: google-captcha.php:957
123
  msgid "Secret Key is missing."
124
  msgstr "Tajný klíč chybí."
125
 
126
+ #: google-captcha.php:964
127
  msgid "User response is invalid"
128
  msgstr "Neplatná odezva uživatele"
129
 
130
+ #: google-captcha.php:965
131
  msgid "You have entered an incorrect reCAPTCHA value."
132
  msgstr "Zadali jste nesprávnou hodnotu reCAPTCHA ."
133
 
134
+ #: google-captcha.php:966
135
  msgid ""
136
  "More than one reCAPTCHA has been found in the current form. Please remove "
137
  "all unnecessary reCAPTCHA fields to make it work properly."
139
  "V aktuálním formuláři byla zjištěna více než jedna reCAPTCHA. Pro správnou "
140
  "funkcionalitu, odstraňte všechny nepotřebné reCAPTCHA pole."
141
 
142
+ #: google-captcha.php:968
143
  msgid "reCAPTCHA v3 test failed"
144
  msgstr ""
145
 
146
+ #: google-captcha.php:1006
147
  msgid "Please submit \"Test verification\""
148
  msgstr "Odešlete &#8222;Test ověření&#8220;"
149
 
150
+ #: google-captcha.php:1008
151
  msgid "Please complete the captcha and submit \"Test verification\""
152
  msgstr "Doplňte captcha a odešlete &#8222;Test ověření&#8220;"
153
 
154
+ #: google-captcha.php:1014
155
  msgid "Test verification"
156
  msgstr "Test ověření"
157
 
158
+ #: google-captcha.php:1035
159
  msgid "The verification is successfully completed."
160
  msgstr "Ověření je úspěšně dokončeno."
161
 
162
+ #: google-captcha.php:1070
163
  msgid "FAQ"
164
  msgstr ""
165
  "Časté dotazy <acronym title=\\\"Frequently asked questions\\\">(FAQ)</"
166
  "acronym>"
167
 
168
+ #: google-captcha.php:1071
169
  msgid "Support"
170
  msgstr "Podpora"
171
 
211
  msgid "Enter secret key"
212
  msgstr "Vložte tajný klíč"
213
 
214
+ #: includes/class-gglcptch-settings-tabs.php:136
215
  msgid "Settings saved."
216
  msgstr "Nastavení uloženo."
217
 
218
+ #: includes/class-gglcptch-settings-tabs.php:151
219
  msgid "Authentication"
220
  msgstr "Autentizace"
221
 
222
+ #: includes/class-gglcptch-settings-tabs.php:152
223
  msgid ""
224
  "Register your website with Google to get required API keys and enter them "
225
  "below."
227
  "Zaregistrujte svůj web na Google, abyste získali požadované API klíče a "
228
  "zadejte je níže."
229
 
230
+ #: includes/class-gglcptch-settings-tabs.php:152
231
  msgid "Get the API Keys"
232
  msgstr "Získat API klíče"
233
 
234
+ #: includes/class-gglcptch-settings-tabs.php:169
235
  msgid "Test reCAPTCHA"
236
  msgstr "Vyzkoušet reCAPTCHA"
237
 
238
+ #: includes/class-gglcptch-settings-tabs.php:175
239
  msgid "General"
240
  msgstr "Obecné"
241
 
242
+ #: includes/class-gglcptch-settings-tabs.php:178
243
+ msgid "reCAPTCHA Version"
244
+ msgstr "reCAPTCHA verze"
245
+
246
+ #: includes/class-gglcptch-settings-tabs.php:191
247
  msgid "Enable reCAPTCHA for"
248
  msgstr "Povolit reCAPTCHA pro"
249
 
250
+ #: includes/class-gglcptch-settings-tabs.php:237
251
+ #: includes/class-gglcptch-settings-tabs.php:299 includes/pro_banners.php:20
252
  msgid "Close"
253
  msgstr "Zavřít"
254
 
255
+ #: includes/class-gglcptch-settings-tabs.php:246
256
  msgid "Hide reCAPTCHA for"
257
  msgstr "Skrýt reCAPTCHA pro"
258
 
259
+ #: includes/class-gglcptch-settings-tabs.php:265
260
+ #, fuzzy
261
+ #| msgid "Hide reCAPTCHA for"
262
+ msgid "Hide reCAPTCHA Badge"
263
+ msgstr "Skrýt reCAPTCHA pro"
264
 
265
+ #: includes/class-gglcptch-settings-tabs.php:270
266
+ msgid "Enable to hide reCAPTCHA Badge for Version 3 and Invisble reCAPTCHA."
267
+ msgstr ""
268
+
269
+ #: includes/class-gglcptch-settings-tabs.php:276
270
  msgid "Theme"
271
  msgstr "Šablona"
272
 
273
+ #: includes/class-gglcptch-settings-tabs.php:287
274
  msgid "Score"
275
  msgstr ""
276
 
277
+ #: includes/class-gglcptch-settings-tabs.php:292
278
  msgid "Set the minimum verification score from 0 to 1"
279
  msgstr ""
280
 
281
+ #: includes/class-gglcptch-settings-tabs.php:308
282
  msgid "Whitelist Notification"
283
  msgstr "Upozornění na seznam povolených"
284
 
285
+ #: includes/class-gglcptch-settings-tabs.php:311
286
  msgid "This message will be displayed instead of the reCAPTCHA."
287
  msgstr "Tato zpráva se bude zobrazovat namísto reCAPTCHA."
288
 
289
+ #: includes/class-gglcptch-settings-tabs.php:315
290
  msgid "Disabled Submit Button"
291
  msgstr "Neaktivní tlačitko odeslat"
292
 
293
+ #: includes/class-gglcptch-settings-tabs.php:319
294
  msgid ""
295
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
296
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
299
  "možnost nepoužívejte, pokud se zobrazuje zpráva &#8222;Nepodařilo se načíst "
300
  "Google reCAPTCHA&#8220;)."
301
 
302
+ #: includes/class-gglcptch-settings-tabs.php:333
303
  msgid ""
304
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
305
  "regenerate Site and Secret keys if necessary."
307
  "Byla změněna verze reCAPTCHA. Klikněte na &#8222;Vyzkoušet reCAPTCHA&#8220; "
308
  "a znovu vygenerujte tajné a webové klíče, je-li to nezbytné."
309
 
310
+ #: includes/class-gglcptch-settings-tabs.php:346
311
  msgid "Google Captcha Shortcode"
312
  msgstr "Zkrácený kód Google Captcha"
313
 
314
+ #: includes/class-gglcptch-settings-tabs.php:349
315
  msgid ""
316
  "Add Google Captcha to your posts or pages using the following shortcode:"
317
  msgstr ""
342
  msgid "WordPress default"
343
  msgstr "WordPress"
344
 
345
+ #: includes/forms.php:47 includes/pro_banners.php:75
346
  msgid "External Plugins"
347
  msgstr "Externí pluginy"
348
 
362
  msgid "Install Now"
363
  msgstr "Instalovat nyní"
364
 
365
+ #: includes/forms.php:269
366
  msgid "Authentication failed."
367
  msgstr "Ověření selhalo."
368
 
369
+ #: includes/forms.php:358
370
  msgid "Click the BACK button on your browser and try again."
371
  msgstr "Klikněte ve vašem prohlížeči na tlačítko ZPĚT a zkuste to znovu."
372
 
458
  msgid "wpForo Reply form"
459
  msgstr "wpForo odpovědní formulář"
460
 
461
+ #: includes/pro_banners.php:69
462
+ msgid "Ninja Forms"
463
+ msgstr ""
464
+
465
+ #: includes/pro_banners.php:70
466
+ #, fuzzy
467
+ #| msgid "Jetpack Contact Form"
468
+ msgid "Contact Forms"
469
+ msgstr "Jetpack Contact Form"
470
+
471
+ #: includes/pro_banners.php:71
472
+ #, fuzzy
473
+ #| msgid "Login form"
474
+ msgid "Login Forms"
475
+ msgstr "Přihlašovací formulář"
476
+
477
+ #: includes/pro_banners.php:167
478
  msgid "Size"
479
  msgstr "Velikost"
480
 
481
+ #: includes/pro_banners.php:171
482
  msgid "Normal"
483
  msgstr "Normální"
484
 
485
+ #: includes/pro_banners.php:172
486
  msgid "Compact"
487
  msgstr "Kompaktní"
488
 
489
+ #: includes/pro_banners.php:177
490
  msgid "Language"
491
  msgstr "Jazyk"
492
 
493
+ #: includes/pro_banners.php:185
494
  msgid "Multilanguage"
495
  msgstr "Multilanguage"
496
 
497
+ #: includes/pro_banners.php:188
498
  msgid ""
499
  "Enable to switch language automatically on multilingual website using "
500
  "Multilanguage plugin."
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: 2019-01-08 13:07+0200\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Cloudzeroxyz <cloudzeroxyz@gmail.com>\n"
@@ -13,16 +13,16 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.8.7.1\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:38 google-captcha.php:40 google-captcha.php:449
21
- #: includes/class-gglcptch-settings-tabs.php:147
22
  msgid "Google Captcha Settings"
23
  msgstr "Google Captcha Ajustes"
24
 
25
- #: google-captcha.php:40 google-captcha.php:1080 google-captcha.php:1093
26
  #: includes/class-gglcptch-settings-tabs.php:25
27
  msgid "Settings"
28
  msgstr "Configuraciónes"
@@ -39,11 +39,11 @@ msgstr "Lista Blanca"
39
  msgid "Upgrade to Pro"
40
  msgstr "Actualizar a Pro"
41
 
42
- #: google-captcha.php:237
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:238
47
  msgid ""
48
  "Failed to load Google reCAPTCHA. Please check your internet connection and "
49
  "reload this page."
@@ -51,67 +51,87 @@ 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:254
55
  msgid "Warning"
56
  msgstr "Atención"
57
 
58
- #: google-captcha.php:353
59
  msgid "You are in the whitelist"
60
  msgstr "Estás en la lista blanca"
61
 
62
- #: google-captcha.php:450
63
  msgid "Please enable JavaScript in your browser."
64
  msgstr ""
65
 
66
- #: google-captcha.php:537 google-captcha.php:1115
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  msgid "To use Google Captcha you must get the keys from"
68
  msgstr "Para utilizar Google Captcha debe obtener las claves de"
69
 
70
- #: google-captcha.php:538 google-captcha.php:1116
71
  msgid "here"
72
  msgstr "aquí"
73
 
74
- #: google-captcha.php:539 google-captcha.php:1117
75
  msgid "and enter them on the"
76
  msgstr "e introducirlas en"
77
 
78
- #: google-captcha.php:541 google-captcha.php:1119
79
  msgid "plugin setting page"
80
  msgstr "página de configuración de plugin"
81
 
82
- #: google-captcha.php:847 includes/forms.php:369
83
  msgid "Error"
84
  msgstr "Error "
85
 
86
- #: google-captcha.php:972
87
  msgid "User response is missing."
88
  msgstr "Respuesta del usuario está ausente."
89
 
90
- #: google-captcha.php:976 google-captcha.php:984
91
  msgid "Secret Key is invalid."
92
  msgstr ""
93
 
94
- #: google-captcha.php:977 google-captcha.php:985
95
  msgid "Check your domain configurations"
96
  msgstr ""
97
 
98
- #: google-captcha.php:978 google-captcha.php:986
99
  msgid "and enter it again"
100
  msgstr "e introducirle otra vez"
101
 
102
- #: google-captcha.php:981
103
  msgid "Secret Key is missing."
104
  msgstr "Clave Secreta está ausente."
105
 
106
- #: google-captcha.php:988
107
  msgid "User response is invalid"
108
  msgstr "Respuesta del usuario no es válido"
109
 
110
- #: google-captcha.php:989
111
  msgid "You have entered an incorrect reCAPTCHA value."
112
  msgstr "Ha introducido un valor incorrecto de reCAPTCHA."
113
 
114
- #: google-captcha.php:990
115
  msgid ""
116
  "More than one reCAPTCHA has been found in the current form. Please remove "
117
  "all unnecessary reCAPTCHA fields to make it work properly."
@@ -119,31 +139,31 @@ msgstr ""
119
  "Más de un reCAPTCHA se ha encontrado en la forma actual. Por favor, elimine "
120
  "todos los campos de reCAPTCHA innecesarios para que funcione correctamente."
121
 
122
- #: google-captcha.php:992
123
  msgid "reCAPTCHA v3 test failed"
124
  msgstr ""
125
 
126
- #: google-captcha.php:1030
127
  msgid "Please submit \"Test verification\""
128
  msgstr ""
129
 
130
- #: google-captcha.php:1032
131
  msgid "Please complete the captcha and submit \"Test verification\""
132
  msgstr ""
133
 
134
- #: google-captcha.php:1039
135
  msgid "Test verification"
136
  msgstr "Test de verificación"
137
 
138
- #: google-captcha.php:1060
139
  msgid "The verification is successfully completed."
140
  msgstr ""
141
 
142
- #: google-captcha.php:1095
143
  msgid "FAQ"
144
  msgstr "Preguntas Frecuentes"
145
 
146
- #: google-captcha.php:1096
147
  msgid "Support"
148
  msgstr "Soporte"
149
 
@@ -189,95 +209,104 @@ msgstr ""
189
  msgid "Enter secret key"
190
  msgstr "Introduce la clave secreta"
191
 
192
- #: includes/class-gglcptch-settings-tabs.php:135
193
  msgid "Settings saved."
194
  msgstr ""
195
 
196
- #: includes/class-gglcptch-settings-tabs.php:150
197
  msgid "Authentication"
198
  msgstr "Autentificación"
199
 
200
- #: includes/class-gglcptch-settings-tabs.php:151
201
  msgid ""
202
  "Register your website with Google to get required API keys and enter them "
203
  "below."
204
  msgstr ""
205
 
206
- #: includes/class-gglcptch-settings-tabs.php:151
207
  msgid "Get the API Keys"
208
  msgstr ""
209
 
210
- #: includes/class-gglcptch-settings-tabs.php:168
211
  #, fuzzy
212
  msgid "Test reCAPTCHA"
213
  msgstr "Invisible reCAPTCHA"
214
 
215
- #: includes/class-gglcptch-settings-tabs.php:174
216
  msgid "General"
217
  msgstr ""
218
 
219
- #: includes/class-gglcptch-settings-tabs.php:177
 
 
 
 
220
  msgid "Enable reCAPTCHA for"
221
  msgstr "Permite reCAPTCHA para"
222
 
223
- #: includes/class-gglcptch-settings-tabs.php:223
224
- #: includes/class-gglcptch-settings-tabs.php:287 includes/pro_banners.php:20
225
  msgid "Close"
226
  msgstr "Сerrar"
227
 
228
- #: includes/class-gglcptch-settings-tabs.php:232
229
  #, fuzzy
230
  msgid "Hide reCAPTCHA for"
231
  msgstr "Permite reCAPTCHA para"
232
 
233
- #: includes/class-gglcptch-settings-tabs.php:250
234
- msgid "reCAPTCHA Version"
235
- msgstr "reCAPTCHA Versión"
 
236
 
237
- #: includes/class-gglcptch-settings-tabs.php:264
 
 
 
 
238
  msgid "Theme"
239
  msgstr ""
240
 
241
- #: includes/class-gglcptch-settings-tabs.php:275
242
  msgid "Score"
243
  msgstr ""
244
 
245
- #: includes/class-gglcptch-settings-tabs.php:280
246
  msgid "Set the minimum verification score from 0 to 1"
247
  msgstr ""
248
 
249
- #: includes/class-gglcptch-settings-tabs.php:296
250
  msgid "Whitelist Notification"
251
  msgstr "Notificaciones de la Lista Blanca"
252
 
253
- #: includes/class-gglcptch-settings-tabs.php:299
254
  #, fuzzy
255
  msgid "This message will be displayed instead of the reCAPTCHA."
256
  msgstr ""
257
  "Este mensaje se visualizará en lugar del reCAPTCHA si la IP del usuario se "
258
  "agrega a la lista blanca"
259
 
260
- #: includes/class-gglcptch-settings-tabs.php:303
261
  msgid "Disabled Submit Button"
262
  msgstr ""
263
 
264
- #: includes/class-gglcptch-settings-tabs.php:307
265
  msgid ""
266
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
267
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
268
  msgstr ""
269
 
270
- #: includes/class-gglcptch-settings-tabs.php:321
271
  msgid ""
272
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
273
  "regenerate Site and Secret keys if necessary."
274
  msgstr ""
275
 
276
- #: includes/class-gglcptch-settings-tabs.php:334
277
  msgid "Google Captcha Shortcode"
278
  msgstr ""
279
 
280
- #: includes/class-gglcptch-settings-tabs.php:337
281
  msgid ""
282
  "Add Google Captcha to your posts or pages using the following shortcode:"
283
  msgstr ""
@@ -306,7 +335,7 @@ msgstr "Testimonials"
306
  msgid "WordPress default"
307
  msgstr "WordPress por defecto"
308
 
309
- #: includes/forms.php:47 includes/pro_banners.php:72
310
  msgid "External Plugins"
311
  msgstr ""
312
 
@@ -327,11 +356,11 @@ msgstr "Activar"
327
  msgid "Install Now"
328
  msgstr ""
329
 
330
- #: includes/forms.php:282
331
  msgid "Authentication failed."
332
  msgstr ""
333
 
334
- #: includes/forms.php:371
335
  msgid "Click the BACK button on your browser and try again."
336
  msgstr ""
337
 
@@ -423,27 +452,43 @@ msgstr ""
423
  msgid "wpForo Reply form"
424
  msgstr ""
425
 
426
- #: includes/pro_banners.php:156
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
427
  msgid "Size"
428
  msgstr ""
429
 
430
- #: includes/pro_banners.php:160
431
  msgid "Normal"
432
  msgstr "Normal"
433
 
434
- #: includes/pro_banners.php:161
435
  msgid "Compact"
436
  msgstr "Compacto"
437
 
438
- #: includes/pro_banners.php:166
439
  msgid "Language"
440
  msgstr ""
441
 
442
- #: includes/pro_banners.php:174
443
  msgid "Multilanguage"
444
  msgstr ""
445
 
446
- #: includes/pro_banners.php:177
447
  msgid ""
448
  "Enable to switch language automatically on multilingual website using "
449
  "Multilanguage plugin."
@@ -729,9 +774,6 @@ msgstr "Resultados de la búsqueda para"
729
  #~ msgid "powered by"
730
  #~ msgstr "impulsado por"
731
 
732
- #~ msgid "Contact form"
733
- #~ msgstr "Formulario de contacto"
734
-
735
  #~ msgid "Activate contact form"
736
  #~ msgstr "Activar formulario de contacto"
737
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-03-04 12:06+0200\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Cloudzeroxyz <cloudzeroxyz@gmail.com>\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 2.0.6\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: google-captcha.php:38 google-captcha.php:40 google-captcha.php:457
21
+ #: includes/class-gglcptch-settings-tabs.php:148
22
  msgid "Google Captcha Settings"
23
  msgstr "Google Captcha Ajustes"
24
 
25
+ #: google-captcha.php:40 google-captcha.php:1055 google-captcha.php:1068
26
  #: includes/class-gglcptch-settings-tabs.php:25
27
  msgid "Settings"
28
  msgstr "Configuraciónes"
39
  msgid "Upgrade to Pro"
40
  msgstr "Actualizar a Pro"
41
 
42
+ #: google-captcha.php:240
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:241
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:257
55
  msgid "Warning"
56
  msgstr "Atención"
57
 
58
+ #: google-captcha.php:360
59
  msgid "You are in the whitelist"
60
  msgstr "Estás en la lista blanca"
61
 
62
+ #: google-captcha.php:458
63
  msgid "Please enable JavaScript in your browser."
64
  msgstr ""
65
 
66
+ #: google-captcha.php:541
67
+ msgid "This site is protected by reCAPTCHA and the Google "
68
+ msgstr ""
69
+
70
+ #: google-captcha.php:542
71
+ msgid "Privacy Policy"
72
+ msgstr ""
73
+
74
+ #: google-captcha.php:543
75
+ msgid " and "
76
+ msgstr ""
77
+
78
+ #: google-captcha.php:544
79
+ msgid "Terms of Service"
80
+ msgstr ""
81
+
82
+ #: google-captcha.php:545
83
+ msgid " apply."
84
+ msgstr ""
85
+
86
+ #: google-captcha.php:552 google-captcha.php:1090
87
  msgid "To use Google Captcha you must get the keys from"
88
  msgstr "Para utilizar Google Captcha debe obtener las claves de"
89
 
90
+ #: google-captcha.php:553 google-captcha.php:1091
91
  msgid "here"
92
  msgstr "aquí"
93
 
94
+ #: google-captcha.php:554 google-captcha.php:1092
95
  msgid "and enter them on the"
96
  msgstr "e introducirlas en"
97
 
98
+ #: google-captcha.php:556 google-captcha.php:1094
99
  msgid "plugin setting page"
100
  msgstr "página de configuración de plugin"
101
 
102
+ #: google-captcha.php:823 includes/forms.php:356
103
  msgid "Error"
104
  msgstr "Error "
105
 
106
+ #: google-captcha.php:948
107
  msgid "User response is missing."
108
  msgstr "Respuesta del usuario está ausente."
109
 
110
+ #: google-captcha.php:952 google-captcha.php:960
111
  msgid "Secret Key is invalid."
112
  msgstr ""
113
 
114
+ #: google-captcha.php:953 google-captcha.php:961
115
  msgid "Check your domain configurations"
116
  msgstr ""
117
 
118
+ #: google-captcha.php:954 google-captcha.php:962
119
  msgid "and enter it again"
120
  msgstr "e introducirle otra vez"
121
 
122
+ #: google-captcha.php:957
123
  msgid "Secret Key is missing."
124
  msgstr "Clave Secreta está ausente."
125
 
126
+ #: google-captcha.php:964
127
  msgid "User response is invalid"
128
  msgstr "Respuesta del usuario no es válido"
129
 
130
+ #: google-captcha.php:965
131
  msgid "You have entered an incorrect reCAPTCHA value."
132
  msgstr "Ha introducido un valor incorrecto de reCAPTCHA."
133
 
134
+ #: google-captcha.php:966
135
  msgid ""
136
  "More than one reCAPTCHA has been found in the current form. Please remove "
137
  "all unnecessary reCAPTCHA fields to make it work properly."
139
  "Más de un reCAPTCHA se ha encontrado en la forma actual. Por favor, elimine "
140
  "todos los campos de reCAPTCHA innecesarios para que funcione correctamente."
141
 
142
+ #: google-captcha.php:968
143
  msgid "reCAPTCHA v3 test failed"
144
  msgstr ""
145
 
146
+ #: google-captcha.php:1006
147
  msgid "Please submit \"Test verification\""
148
  msgstr ""
149
 
150
+ #: google-captcha.php:1008
151
  msgid "Please complete the captcha and submit \"Test verification\""
152
  msgstr ""
153
 
154
+ #: google-captcha.php:1014
155
  msgid "Test verification"
156
  msgstr "Test de verificación"
157
 
158
+ #: google-captcha.php:1035
159
  msgid "The verification is successfully completed."
160
  msgstr ""
161
 
162
+ #: google-captcha.php:1070
163
  msgid "FAQ"
164
  msgstr "Preguntas Frecuentes"
165
 
166
+ #: google-captcha.php:1071
167
  msgid "Support"
168
  msgstr "Soporte"
169
 
209
  msgid "Enter secret key"
210
  msgstr "Introduce la clave secreta"
211
 
212
+ #: includes/class-gglcptch-settings-tabs.php:136
213
  msgid "Settings saved."
214
  msgstr ""
215
 
216
+ #: includes/class-gglcptch-settings-tabs.php:151
217
  msgid "Authentication"
218
  msgstr "Autentificación"
219
 
220
+ #: includes/class-gglcptch-settings-tabs.php:152
221
  msgid ""
222
  "Register your website with Google to get required API keys and enter them "
223
  "below."
224
  msgstr ""
225
 
226
+ #: includes/class-gglcptch-settings-tabs.php:152
227
  msgid "Get the API Keys"
228
  msgstr ""
229
 
230
+ #: includes/class-gglcptch-settings-tabs.php:169
231
  #, fuzzy
232
  msgid "Test reCAPTCHA"
233
  msgstr "Invisible reCAPTCHA"
234
 
235
+ #: includes/class-gglcptch-settings-tabs.php:175
236
  msgid "General"
237
  msgstr ""
238
 
239
+ #: includes/class-gglcptch-settings-tabs.php:178
240
+ msgid "reCAPTCHA Version"
241
+ msgstr "reCAPTCHA Versión"
242
+
243
+ #: includes/class-gglcptch-settings-tabs.php:191
244
  msgid "Enable reCAPTCHA for"
245
  msgstr "Permite reCAPTCHA para"
246
 
247
+ #: includes/class-gglcptch-settings-tabs.php:237
248
+ #: includes/class-gglcptch-settings-tabs.php:299 includes/pro_banners.php:20
249
  msgid "Close"
250
  msgstr "Сerrar"
251
 
252
+ #: includes/class-gglcptch-settings-tabs.php:246
253
  #, fuzzy
254
  msgid "Hide reCAPTCHA for"
255
  msgstr "Permite reCAPTCHA para"
256
 
257
+ #: includes/class-gglcptch-settings-tabs.php:265
258
+ #, fuzzy
259
+ msgid "Hide reCAPTCHA Badge"
260
+ msgstr "Permite reCAPTCHA para"
261
 
262
+ #: includes/class-gglcptch-settings-tabs.php:270
263
+ msgid "Enable to hide reCAPTCHA Badge for Version 3 and Invisble reCAPTCHA."
264
+ msgstr ""
265
+
266
+ #: includes/class-gglcptch-settings-tabs.php:276
267
  msgid "Theme"
268
  msgstr ""
269
 
270
+ #: includes/class-gglcptch-settings-tabs.php:287
271
  msgid "Score"
272
  msgstr ""
273
 
274
+ #: includes/class-gglcptch-settings-tabs.php:292
275
  msgid "Set the minimum verification score from 0 to 1"
276
  msgstr ""
277
 
278
+ #: includes/class-gglcptch-settings-tabs.php:308
279
  msgid "Whitelist Notification"
280
  msgstr "Notificaciones de la Lista Blanca"
281
 
282
+ #: includes/class-gglcptch-settings-tabs.php:311
283
  #, fuzzy
284
  msgid "This message will be displayed instead of the reCAPTCHA."
285
  msgstr ""
286
  "Este mensaje se visualizará en lugar del reCAPTCHA si la IP del usuario se "
287
  "agrega a la lista blanca"
288
 
289
+ #: includes/class-gglcptch-settings-tabs.php:315
290
  msgid "Disabled Submit Button"
291
  msgstr ""
292
 
293
+ #: includes/class-gglcptch-settings-tabs.php:319
294
  msgid ""
295
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
296
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
297
  msgstr ""
298
 
299
+ #: includes/class-gglcptch-settings-tabs.php:333
300
  msgid ""
301
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
302
  "regenerate Site and Secret keys if necessary."
303
  msgstr ""
304
 
305
+ #: includes/class-gglcptch-settings-tabs.php:346
306
  msgid "Google Captcha Shortcode"
307
  msgstr ""
308
 
309
+ #: includes/class-gglcptch-settings-tabs.php:349
310
  msgid ""
311
  "Add Google Captcha to your posts or pages using the following shortcode:"
312
  msgstr ""
335
  msgid "WordPress default"
336
  msgstr "WordPress por defecto"
337
 
338
+ #: includes/forms.php:47 includes/pro_banners.php:75
339
  msgid "External Plugins"
340
  msgstr ""
341
 
356
  msgid "Install Now"
357
  msgstr ""
358
 
359
+ #: includes/forms.php:269
360
  msgid "Authentication failed."
361
  msgstr ""
362
 
363
+ #: includes/forms.php:358
364
  msgid "Click the BACK button on your browser and try again."
365
  msgstr ""
366
 
452
  msgid "wpForo Reply form"
453
  msgstr ""
454
 
455
+ #: includes/pro_banners.php:69
456
+ msgid "Ninja Forms"
457
+ msgstr ""
458
+
459
+ #: includes/pro_banners.php:70
460
+ #, fuzzy
461
+ #| msgid "Contact form"
462
+ msgid "Contact Forms"
463
+ msgstr "Formulario de contacto"
464
+
465
+ #: includes/pro_banners.php:71
466
+ #, fuzzy
467
+ #| msgid "Login form"
468
+ msgid "Login Forms"
469
+ msgstr "Formulario de acceso"
470
+
471
+ #: includes/pro_banners.php:167
472
  msgid "Size"
473
  msgstr ""
474
 
475
+ #: includes/pro_banners.php:171
476
  msgid "Normal"
477
  msgstr "Normal"
478
 
479
+ #: includes/pro_banners.php:172
480
  msgid "Compact"
481
  msgstr "Compacto"
482
 
483
+ #: includes/pro_banners.php:177
484
  msgid "Language"
485
  msgstr ""
486
 
487
+ #: includes/pro_banners.php:185
488
  msgid "Multilanguage"
489
  msgstr ""
490
 
491
+ #: includes/pro_banners.php:188
492
  msgid ""
493
  "Enable to switch language automatically on multilingual website using "
494
  "Multilanguage plugin."
774
  #~ msgid "powered by"
775
  #~ msgstr "impulsado por"
776
 
 
 
 
777
  #~ msgid "Activate contact form"
778
  #~ msgstr "Activar formulario de contacto"
779
 
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: 2019-01-08 13:07+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"
@@ -13,17 +13,17 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.8.7.1\n"
17
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: google-captcha.php:38 google-captcha.php:40 google-captcha.php:449
22
- #: includes/class-gglcptch-settings-tabs.php:147
23
  msgid "Google Captcha Settings"
24
  msgstr "Настройки Google Captcha"
25
 
26
- #: google-captcha.php:40 google-captcha.php:1080 google-captcha.php:1093
27
  #: includes/class-gglcptch-settings-tabs.php:25
28
  msgid "Settings"
29
  msgstr "Настройки"
@@ -40,11 +40,11 @@ msgstr "Белый список"
40
  msgid "Upgrade to Pro"
41
  msgstr "Обновить до Pro"
42
 
43
- #: google-captcha.php:237
44
  msgid "Please wait until Google reCAPTCHA is loaded."
45
  msgstr "Пожалуйста, дождитесь окончания загрузки Google reCAPTCHA."
46
 
47
- #: google-captcha.php:238
48
  msgid ""
49
  "Failed to load Google reCAPTCHA. Please check your internet connection and "
50
  "reload this page."
@@ -52,67 +52,87 @@ msgstr ""
52
  "Не удалось загрузить Google reCAPTCHA. Пожалуйста, проверьте ваше "
53
  "подключение к сети Интернет и перезагрузите эту страницу."
54
 
55
- #: google-captcha.php:254
56
  msgid "Warning"
57
  msgstr "Внимание"
58
 
59
- #: google-captcha.php:353
60
  msgid "You are in the whitelist"
61
  msgstr "Вы в белом списке"
62
 
63
- #: google-captcha.php:450
64
  msgid "Please enable JavaScript in your browser."
65
  msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
66
 
67
- #: google-captcha.php:537 google-captcha.php:1115
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  msgid "To use Google Captcha you must get the keys from"
69
  msgstr "Чтобы использовать Google Captcha, вам необходимо получить ключи"
70
 
71
- #: google-captcha.php:538 google-captcha.php:1116
72
  msgid "here"
73
  msgstr "здесь"
74
 
75
- #: google-captcha.php:539 google-captcha.php:1117
76
  msgid "and enter them on the"
77
  msgstr "и вставить их на"
78
 
79
- #: google-captcha.php:541 google-captcha.php:1119
80
  msgid "plugin setting page"
81
  msgstr "странице настроек плагина"
82
 
83
- #: google-captcha.php:847 includes/forms.php:369
84
  msgid "Error"
85
  msgstr "Ошибка"
86
 
87
- #: google-captcha.php:972
88
  msgid "User response is missing."
89
  msgstr "Ответ пользователя отсутствует."
90
 
91
- #: google-captcha.php:976 google-captcha.php:984
92
  msgid "Secret Key is invalid."
93
  msgstr "Некорректный секретный ключ."
94
 
95
- #: google-captcha.php:977 google-captcha.php:985
96
  msgid "Check your domain configurations"
97
  msgstr "Проверьте настройки вашего домена"
98
 
99
- #: google-captcha.php:978 google-captcha.php:986
100
  msgid "and enter it again"
101
  msgstr "и введите его снова"
102
 
103
- #: google-captcha.php:981
104
  msgid "Secret Key is missing."
105
  msgstr "Секретный ключ отсутствует."
106
 
107
- #: google-captcha.php:988
108
  msgid "User response is invalid"
109
  msgstr "Некорректный ответ пользователя"
110
 
111
- #: google-captcha.php:989
112
  msgid "You have entered an incorrect reCAPTCHA value."
113
  msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
114
 
115
- #: google-captcha.php:990
116
  msgid ""
117
  "More than one reCAPTCHA has been found in the current form. Please remove "
118
  "all unnecessary reCAPTCHA fields to make it work properly."
@@ -120,32 +140,32 @@ msgstr ""
120
  "В текущей форме найдено более одного блока reCAPTCHA. Пожалуйста, удалите "
121
  "все лишние блоки reCAPTCHA для дальнейшей корректной работы."
122
 
123
- #: google-captcha.php:992
124
  msgid "reCAPTCHA v3 test failed"
125
  msgstr "Тест reCAPTCHA v3 не пройден"
126
 
127
- #: google-captcha.php:1030
128
  msgid "Please submit \"Test verification\""
129
  msgstr "Пожалуйста, нажмите кнопку \"Тестирование проверки\"."
130
 
131
- #: google-captcha.php:1032
132
  msgid "Please complete the captcha and submit \"Test verification\""
133
  msgstr ""
134
  "Пожалуйста, заполните капчу и нажмите кнопку \"Тестирование проверки\"."
135
 
136
- #: google-captcha.php:1039
137
  msgid "Test verification"
138
  msgstr "Тестирование проверки"
139
 
140
- #: google-captcha.php:1060
141
  msgid "The verification is successfully completed."
142
  msgstr "Тестирование проверки успешно завершено."
143
 
144
- #: google-captcha.php:1095
145
  msgid "FAQ"
146
  msgstr "FAQ"
147
 
148
- #: google-captcha.php:1096
149
  msgid "Support"
150
  msgstr "Поддержка"
151
 
@@ -193,15 +213,15 @@ msgstr ""
193
  msgid "Enter secret key"
194
  msgstr "Введите секретный ключ"
195
 
196
- #: includes/class-gglcptch-settings-tabs.php:135
197
  msgid "Settings saved."
198
  msgstr "Настройки сохранены."
199
 
200
- #: includes/class-gglcptch-settings-tabs.php:150
201
  msgid "Authentication"
202
  msgstr "Идентификация"
203
 
204
- #: includes/class-gglcptch-settings-tabs.php:151
205
  msgid ""
206
  "Register your website with Google to get required API keys and enter them "
207
  "below."
@@ -209,61 +229,70 @@ msgstr ""
209
  "Зарегистрируйте свой сайт с помощью Google, чтобы получить требуемые API "
210
  "ключи и введите их ниже."
211
 
212
- #: includes/class-gglcptch-settings-tabs.php:151
213
  msgid "Get the API Keys"
214
  msgstr "Получить API ключи"
215
 
216
- #: includes/class-gglcptch-settings-tabs.php:168
217
  msgid "Test reCAPTCHA"
218
  msgstr "Тестирование reCAPTCHA"
219
 
220
- #: includes/class-gglcptch-settings-tabs.php:174
221
  msgid "General"
222
  msgstr "Общее"
223
 
224
- #: includes/class-gglcptch-settings-tabs.php:177
 
 
 
 
225
  msgid "Enable reCAPTCHA for"
226
  msgstr "Включить reCAPTCHA для"
227
 
228
- #: includes/class-gglcptch-settings-tabs.php:223
229
- #: includes/class-gglcptch-settings-tabs.php:287 includes/pro_banners.php:20
230
  msgid "Close"
231
  msgstr "Закрыть"
232
 
233
- #: includes/class-gglcptch-settings-tabs.php:232
234
  msgid "Hide reCAPTCHA for"
235
  msgstr "Спрятать reCAPTCHA для"
236
 
237
- #: includes/class-gglcptch-settings-tabs.php:250
238
- msgid "reCAPTCHA Version"
239
- msgstr "Версия reCAPTCHA"
 
 
 
 
 
240
 
241
- #: includes/class-gglcptch-settings-tabs.php:264
242
  msgid "Theme"
243
  msgstr "Тема"
244
 
245
- #: includes/class-gglcptch-settings-tabs.php:275
246
  msgid "Score"
247
  msgstr "Количество очков"
248
 
249
- #: includes/class-gglcptch-settings-tabs.php:280
250
  msgid "Set the minimum verification score from 0 to 1"
251
  msgstr ""
252
  "Укажите пороговое значение, при котором проверка будет пройдена от 0 до 1"
253
 
254
- #: includes/class-gglcptch-settings-tabs.php:296
255
  msgid "Whitelist Notification"
256
  msgstr "Уведомление о нахождении в белом списке"
257
 
258
- #: includes/class-gglcptch-settings-tabs.php:299
259
  msgid "This message will be displayed instead of the reCAPTCHA."
260
  msgstr "Это сообщение будет отображено вместо поля reCAPTCHA."
261
 
262
- #: includes/class-gglcptch-settings-tabs.php:303
263
  msgid "Disabled Submit Button"
264
  msgstr "Отключенная кнопка подтверждения"
265
 
266
- #: includes/class-gglcptch-settings-tabs.php:307
267
  msgid ""
268
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
269
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
@@ -272,7 +301,7 @@ msgstr ""
272
  "не будет загружена reCAPTCHA (Не используйте эту опцию, если вы видите "
273
  "сообщение \"Не удалось загрузить Google reCAPTCHA\")."
274
 
275
- #: includes/class-gglcptch-settings-tabs.php:321
276
  msgid ""
277
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
278
  "regenerate Site and Secret keys if necessary."
@@ -280,11 +309,11 @@ msgstr ""
280
  "Версия reCAPTCHA была изменена. Пожалуйста, нажмите \"Тестирование reCAPTCHA"
281
  "\" и при необходимости обновите секретный ключ и ключ сайта."
282
 
283
- #: includes/class-gglcptch-settings-tabs.php:334
284
  msgid "Google Captcha Shortcode"
285
  msgstr "Шорткод Google Captcha"
286
 
287
- #: includes/class-gglcptch-settings-tabs.php:337
288
  msgid ""
289
  "Add Google Captcha to your posts or pages using the following shortcode:"
290
  msgstr ""
@@ -315,7 +344,7 @@ msgstr "Testimonials"
315
  msgid "WordPress default"
316
  msgstr "Стандартных форм WordPress"
317
 
318
- #: includes/forms.php:47 includes/pro_banners.php:72
319
  msgid "External Plugins"
320
  msgstr "Внешние плагины"
321
 
@@ -335,11 +364,11 @@ msgstr "Активировать"
335
  msgid "Install Now"
336
  msgstr "Установить сейчас"
337
 
338
- #: includes/forms.php:282
339
  msgid "Authentication failed."
340
  msgstr "Ошибка аутентификации."
341
 
342
- #: includes/forms.php:371
343
  msgid "Click the BACK button on your browser and try again."
344
  msgstr "Нажмите кнопку НАЗАД в вашем браузере и попытайтесь снова."
345
 
@@ -431,27 +460,43 @@ msgstr "Форма новой темы плагина wpForo"
431
  msgid "wpForo Reply form"
432
  msgstr "Форма ответа плагина wpForo"
433
 
434
- #: includes/pro_banners.php:156
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
435
  msgid "Size"
436
  msgstr "Размер"
437
 
438
- #: includes/pro_banners.php:160
439
  msgid "Normal"
440
  msgstr "Нормальный"
441
 
442
- #: includes/pro_banners.php:161
443
  msgid "Compact"
444
  msgstr "Компактный"
445
 
446
- #: includes/pro_banners.php:166
447
  msgid "Language"
448
  msgstr "Язык"
449
 
450
- #: includes/pro_banners.php:174
451
  msgid "Multilanguage"
452
  msgstr "Multilanguage"
453
 
454
- #: includes/pro_banners.php:177
455
  msgid ""
456
  "Enable to switch language automatically on multilingual website using "
457
  "Multilanguage plugin."
@@ -845,9 +890,6 @@ msgstr "Результаты поиска для"
845
  #~ "Настройки плагина были изменены. Для того, чтобы сохранить их, "
846
  #~ "пожалуйста, не забудьте нажать кнопку 'Сохранить изменения'."
847
 
848
- #~ msgid "Contact form"
849
- #~ msgstr "Contact form"
850
-
851
  #~ msgid "Activate contact form"
852
  #~ msgstr "Активировать Contact form"
853
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-03-04 12:02+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"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 2.0.6\n"
17
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: google-captcha.php:38 google-captcha.php:40 google-captcha.php:457
22
+ #: includes/class-gglcptch-settings-tabs.php:148
23
  msgid "Google Captcha Settings"
24
  msgstr "Настройки Google Captcha"
25
 
26
+ #: google-captcha.php:40 google-captcha.php:1055 google-captcha.php:1068
27
  #: includes/class-gglcptch-settings-tabs.php:25
28
  msgid "Settings"
29
  msgstr "Настройки"
40
  msgid "Upgrade to Pro"
41
  msgstr "Обновить до Pro"
42
 
43
+ #: google-captcha.php:240
44
  msgid "Please wait until Google reCAPTCHA is loaded."
45
  msgstr "Пожалуйста, дождитесь окончания загрузки Google reCAPTCHA."
46
 
47
+ #: google-captcha.php:241
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:257
56
  msgid "Warning"
57
  msgstr "Внимание"
58
 
59
+ #: google-captcha.php:360
60
  msgid "You are in the whitelist"
61
  msgstr "Вы в белом списке"
62
 
63
+ #: google-captcha.php:458
64
  msgid "Please enable JavaScript in your browser."
65
  msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
66
 
67
+ #: google-captcha.php:541
68
+ msgid "This site is protected by reCAPTCHA and the Google "
69
+ msgstr "Этот сайт защищен reCAPTCHA и применяются "
70
+
71
+ #: google-captcha.php:542
72
+ msgid "Privacy Policy"
73
+ msgstr "Политика конфиденциальности"
74
+
75
+ #: google-captcha.php:543
76
+ msgid " and "
77
+ msgstr " и "
78
+
79
+ #: google-captcha.php:544
80
+ msgid "Terms of Service"
81
+ msgstr "Условия обслуживания"
82
+
83
+ #: google-captcha.php:545
84
+ msgid " apply."
85
+ msgstr " Google."
86
+
87
+ #: google-captcha.php:552 google-captcha.php:1090
88
  msgid "To use Google Captcha you must get the keys from"
89
  msgstr "Чтобы использовать Google Captcha, вам необходимо получить ключи"
90
 
91
+ #: google-captcha.php:553 google-captcha.php:1091
92
  msgid "here"
93
  msgstr "здесь"
94
 
95
+ #: google-captcha.php:554 google-captcha.php:1092
96
  msgid "and enter them on the"
97
  msgstr "и вставить их на"
98
 
99
+ #: google-captcha.php:556 google-captcha.php:1094
100
  msgid "plugin setting page"
101
  msgstr "странице настроек плагина"
102
 
103
+ #: google-captcha.php:823 includes/forms.php:356
104
  msgid "Error"
105
  msgstr "Ошибка"
106
 
107
+ #: google-captcha.php:948
108
  msgid "User response is missing."
109
  msgstr "Ответ пользователя отсутствует."
110
 
111
+ #: google-captcha.php:952 google-captcha.php:960
112
  msgid "Secret Key is invalid."
113
  msgstr "Некорректный секретный ключ."
114
 
115
+ #: google-captcha.php:953 google-captcha.php:961
116
  msgid "Check your domain configurations"
117
  msgstr "Проверьте настройки вашего домена"
118
 
119
+ #: google-captcha.php:954 google-captcha.php:962
120
  msgid "and enter it again"
121
  msgstr "и введите его снова"
122
 
123
+ #: google-captcha.php:957
124
  msgid "Secret Key is missing."
125
  msgstr "Секретный ключ отсутствует."
126
 
127
+ #: google-captcha.php:964
128
  msgid "User response is invalid"
129
  msgstr "Некорректный ответ пользователя"
130
 
131
+ #: google-captcha.php:965
132
  msgid "You have entered an incorrect reCAPTCHA value."
133
  msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
134
 
135
+ #: google-captcha.php:966
136
  msgid ""
137
  "More than one reCAPTCHA has been found in the current form. Please remove "
138
  "all unnecessary reCAPTCHA fields to make it work properly."
140
  "В текущей форме найдено более одного блока reCAPTCHA. Пожалуйста, удалите "
141
  "все лишние блоки reCAPTCHA для дальнейшей корректной работы."
142
 
143
+ #: google-captcha.php:968
144
  msgid "reCAPTCHA v3 test failed"
145
  msgstr "Тест reCAPTCHA v3 не пройден"
146
 
147
+ #: google-captcha.php:1006
148
  msgid "Please submit \"Test verification\""
149
  msgstr "Пожалуйста, нажмите кнопку \"Тестирование проверки\"."
150
 
151
+ #: google-captcha.php:1008
152
  msgid "Please complete the captcha and submit \"Test verification\""
153
  msgstr ""
154
  "Пожалуйста, заполните капчу и нажмите кнопку \"Тестирование проверки\"."
155
 
156
+ #: google-captcha.php:1014
157
  msgid "Test verification"
158
  msgstr "Тестирование проверки"
159
 
160
+ #: google-captcha.php:1035
161
  msgid "The verification is successfully completed."
162
  msgstr "Тестирование проверки успешно завершено."
163
 
164
+ #: google-captcha.php:1070
165
  msgid "FAQ"
166
  msgstr "FAQ"
167
 
168
+ #: google-captcha.php:1071
169
  msgid "Support"
170
  msgstr "Поддержка"
171
 
213
  msgid "Enter secret key"
214
  msgstr "Введите секретный ключ"
215
 
216
+ #: includes/class-gglcptch-settings-tabs.php:136
217
  msgid "Settings saved."
218
  msgstr "Настройки сохранены."
219
 
220
+ #: includes/class-gglcptch-settings-tabs.php:151
221
  msgid "Authentication"
222
  msgstr "Идентификация"
223
 
224
+ #: includes/class-gglcptch-settings-tabs.php:152
225
  msgid ""
226
  "Register your website with Google to get required API keys and enter them "
227
  "below."
229
  "Зарегистрируйте свой сайт с помощью Google, чтобы получить требуемые API "
230
  "ключи и введите их ниже."
231
 
232
+ #: includes/class-gglcptch-settings-tabs.php:152
233
  msgid "Get the API Keys"
234
  msgstr "Получить API ключи"
235
 
236
+ #: includes/class-gglcptch-settings-tabs.php:169
237
  msgid "Test reCAPTCHA"
238
  msgstr "Тестирование reCAPTCHA"
239
 
240
+ #: includes/class-gglcptch-settings-tabs.php:175
241
  msgid "General"
242
  msgstr "Общее"
243
 
244
+ #: includes/class-gglcptch-settings-tabs.php:178
245
+ msgid "reCAPTCHA Version"
246
+ msgstr "Версия reCAPTCHA"
247
+
248
+ #: includes/class-gglcptch-settings-tabs.php:191
249
  msgid "Enable reCAPTCHA for"
250
  msgstr "Включить reCAPTCHA для"
251
 
252
+ #: includes/class-gglcptch-settings-tabs.php:237
253
+ #: includes/class-gglcptch-settings-tabs.php:299 includes/pro_banners.php:20
254
  msgid "Close"
255
  msgstr "Закрыть"
256
 
257
+ #: includes/class-gglcptch-settings-tabs.php:246
258
  msgid "Hide reCAPTCHA for"
259
  msgstr "Спрятать reCAPTCHA для"
260
 
261
+ #: includes/class-gglcptch-settings-tabs.php:265
262
+ msgid "Hide reCAPTCHA Badge"
263
+ msgstr "Спрятать значок reCAPTCHA"
264
+
265
+ #: includes/class-gglcptch-settings-tabs.php:270
266
+ msgid "Enable to hide reCAPTCHA Badge for Version 3 and Invisble reCAPTCHA."
267
+ msgstr ""
268
+ "Включите, чтобы скрыть значок reCAPTCHA для версии 3 и Invisible reCAPTCHA."
269
 
270
+ #: includes/class-gglcptch-settings-tabs.php:276
271
  msgid "Theme"
272
  msgstr "Тема"
273
 
274
+ #: includes/class-gglcptch-settings-tabs.php:287
275
  msgid "Score"
276
  msgstr "Количество очков"
277
 
278
+ #: includes/class-gglcptch-settings-tabs.php:292
279
  msgid "Set the minimum verification score from 0 to 1"
280
  msgstr ""
281
  "Укажите пороговое значение, при котором проверка будет пройдена от 0 до 1"
282
 
283
+ #: includes/class-gglcptch-settings-tabs.php:308
284
  msgid "Whitelist Notification"
285
  msgstr "Уведомление о нахождении в белом списке"
286
 
287
+ #: includes/class-gglcptch-settings-tabs.php:311
288
  msgid "This message will be displayed instead of the reCAPTCHA."
289
  msgstr "Это сообщение будет отображено вместо поля reCAPTCHA."
290
 
291
+ #: includes/class-gglcptch-settings-tabs.php:315
292
  msgid "Disabled Submit Button"
293
  msgstr "Отключенная кнопка подтверждения"
294
 
295
+ #: includes/class-gglcptch-settings-tabs.php:319
296
  msgid ""
297
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
298
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
301
  "не будет загружена reCAPTCHA (Не используйте эту опцию, если вы видите "
302
  "сообщение \"Не удалось загрузить Google reCAPTCHA\")."
303
 
304
+ #: includes/class-gglcptch-settings-tabs.php:333
305
  msgid ""
306
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
307
  "regenerate Site and Secret keys if necessary."
309
  "Версия reCAPTCHA была изменена. Пожалуйста, нажмите \"Тестирование reCAPTCHA"
310
  "\" и при необходимости обновите секретный ключ и ключ сайта."
311
 
312
+ #: includes/class-gglcptch-settings-tabs.php:346
313
  msgid "Google Captcha Shortcode"
314
  msgstr "Шорткод Google Captcha"
315
 
316
+ #: includes/class-gglcptch-settings-tabs.php:349
317
  msgid ""
318
  "Add Google Captcha to your posts or pages using the following shortcode:"
319
  msgstr ""
344
  msgid "WordPress default"
345
  msgstr "Стандартных форм WordPress"
346
 
347
+ #: includes/forms.php:47 includes/pro_banners.php:75
348
  msgid "External Plugins"
349
  msgstr "Внешние плагины"
350
 
364
  msgid "Install Now"
365
  msgstr "Установить сейчас"
366
 
367
+ #: includes/forms.php:269
368
  msgid "Authentication failed."
369
  msgstr "Ошибка аутентификации."
370
 
371
+ #: includes/forms.php:358
372
  msgid "Click the BACK button on your browser and try again."
373
  msgstr "Нажмите кнопку НАЗАД в вашем браузере и попытайтесь снова."
374
 
460
  msgid "wpForo Reply form"
461
  msgstr "Форма ответа плагина wpForo"
462
 
463
+ #: includes/pro_banners.php:69
464
+ msgid "Ninja Forms"
465
+ msgstr "Ninja Forms"
466
+
467
+ #: includes/pro_banners.php:70
468
+ #, fuzzy
469
+ #| msgid "Contact form"
470
+ msgid "Contact Forms"
471
+ msgstr "Contact form"
472
+
473
+ #: includes/pro_banners.php:71
474
+ #, fuzzy
475
+ #| msgid "Login form"
476
+ msgid "Login Forms"
477
+ msgstr "Форма логина"
478
+
479
+ #: includes/pro_banners.php:167
480
  msgid "Size"
481
  msgstr "Размер"
482
 
483
+ #: includes/pro_banners.php:171
484
  msgid "Normal"
485
  msgstr "Нормальный"
486
 
487
+ #: includes/pro_banners.php:172
488
  msgid "Compact"
489
  msgstr "Компактный"
490
 
491
+ #: includes/pro_banners.php:177
492
  msgid "Language"
493
  msgstr "Язык"
494
 
495
+ #: includes/pro_banners.php:185
496
  msgid "Multilanguage"
497
  msgstr "Multilanguage"
498
 
499
+ #: includes/pro_banners.php:188
500
  msgid ""
501
  "Enable to switch language automatically on multilingual website using "
502
  "Multilanguage plugin."
890
  #~ "Настройки плагина были изменены. Для того, чтобы сохранить их, "
891
  #~ "пожалуйста, не забудьте нажать кнопку 'Сохранить изменения'."
892
 
 
 
 
893
  #~ msgid "Activate contact form"
894
  #~ msgstr "Активировать Contact form"
895
 
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: 2019-01-08 13:07+0200\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: \n"
8
  "Language-Team: Team Link <teamlink@gmx.us>\n"
@@ -13,17 +13,17 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.8.7.1\n"
17
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: google-captcha.php:38 google-captcha.php:40 google-captcha.php:449
22
- #: includes/class-gglcptch-settings-tabs.php:147
23
  msgid "Google Captcha Settings"
24
  msgstr "Google Captcha Подешавања"
25
 
26
- #: google-captcha.php:40 google-captcha.php:1080 google-captcha.php:1093
27
  #: includes/class-gglcptch-settings-tabs.php:25
28
  msgid "Settings"
29
  msgstr "Подешавања"
@@ -40,11 +40,11 @@ msgstr "Бела листа"
40
  msgid "Upgrade to Pro"
41
  msgstr "Пређи на Про"
42
 
43
- #: google-captcha.php:237
44
  msgid "Please wait until Google reCAPTCHA is loaded."
45
  msgstr "Молимо сачекајте док се Google reCAPTCHA учита."
46
 
47
- #: google-captcha.php:238
48
  msgid ""
49
  "Failed to load Google reCAPTCHA. Please check your internet connection and "
50
  "reload this page."
@@ -52,67 +52,87 @@ msgstr ""
52
  "Није успело учитавање Google reCAPTCHA-e Молимо проверите Вашу интернет "
53
  "конекцију и освежите страну."
54
 
55
- #: google-captcha.php:254
56
  msgid "Warning"
57
  msgstr "Упозорење"
58
 
59
- #: google-captcha.php:353
60
  msgid "You are in the whitelist"
61
  msgstr "Ви сте на белој листи"
62
 
63
- #: google-captcha.php:450
64
  msgid "Please enable JavaScript in your browser."
65
  msgstr ""
66
 
67
- #: google-captcha.php:537 google-captcha.php:1115
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  msgid "To use Google Captcha you must get the keys from"
69
  msgstr "Да бисте користили Google Captcha морате узети кључеве од"
70
 
71
- #: google-captcha.php:538 google-captcha.php:1116
72
  msgid "here"
73
  msgstr "овде"
74
 
75
- #: google-captcha.php:539 google-captcha.php:1117
76
  msgid "and enter them on the"
77
  msgstr "и унесите их на"
78
 
79
- #: google-captcha.php:541 google-captcha.php:1119
80
  msgid "plugin setting page"
81
  msgstr "страна подешавања додатка"
82
 
83
- #: google-captcha.php:847 includes/forms.php:369
84
  msgid "Error"
85
  msgstr "Грешка"
86
 
87
- #: google-captcha.php:972
88
  msgid "User response is missing."
89
  msgstr "Одговор корисника недостаје."
90
 
91
- #: google-captcha.php:976 google-captcha.php:984
92
  msgid "Secret Key is invalid."
93
  msgstr ""
94
 
95
- #: google-captcha.php:977 google-captcha.php:985
96
  msgid "Check your domain configurations"
97
  msgstr ""
98
 
99
- #: google-captcha.php:978 google-captcha.php:986
100
  msgid "and enter it again"
101
  msgstr "и унесите поново"
102
 
103
- #: google-captcha.php:981
104
  msgid "Secret Key is missing."
105
  msgstr "Тајни кључ недостаје."
106
 
107
- #: google-captcha.php:988
108
  msgid "User response is invalid"
109
  msgstr "Одговор корисника није исправан"
110
 
111
- #: google-captcha.php:989
112
  msgid "You have entered an incorrect reCAPTCHA value."
113
  msgstr "Унели сте нетачну reCAPTCHA вредност."
114
 
115
- #: google-captcha.php:990
116
  msgid ""
117
  "More than one reCAPTCHA has been found in the current form. Please remove "
118
  "all unnecessary reCAPTCHA fields to make it work properly."
@@ -120,31 +140,31 @@ msgstr ""
120
  "Више од једне reCAPTCHA је нађено у тренутној форми. Молим вас да уклоните "
121
  "сва непотребна reCAPTCHA поља како би форма радила исправно."
122
 
123
- #: google-captcha.php:992
124
  msgid "reCAPTCHA v3 test failed"
125
  msgstr ""
126
 
127
- #: google-captcha.php:1030
128
  msgid "Please submit \"Test verification\""
129
  msgstr ""
130
 
131
- #: google-captcha.php:1032
132
  msgid "Please complete the captcha and submit \"Test verification\""
133
  msgstr ""
134
 
135
- #: google-captcha.php:1039
136
  msgid "Test verification"
137
  msgstr "Тестирај верификацију"
138
 
139
- #: google-captcha.php:1060
140
  msgid "The verification is successfully completed."
141
  msgstr ""
142
 
143
- #: google-captcha.php:1095
144
  msgid "FAQ"
145
  msgstr "ЧПП"
146
 
147
- #: google-captcha.php:1096
148
  msgid "Support"
149
  msgstr "Подршка"
150
 
@@ -190,95 +210,104 @@ msgstr ""
190
  msgid "Enter secret key"
191
  msgstr "Унесите тајни кључ"
192
 
193
- #: includes/class-gglcptch-settings-tabs.php:135
194
  msgid "Settings saved."
195
  msgstr ""
196
 
197
- #: includes/class-gglcptch-settings-tabs.php:150
198
  msgid "Authentication"
199
  msgstr "Аутентикација"
200
 
201
- #: includes/class-gglcptch-settings-tabs.php:151
202
  msgid ""
203
  "Register your website with Google to get required API keys and enter them "
204
  "below."
205
  msgstr ""
206
 
207
- #: includes/class-gglcptch-settings-tabs.php:151
208
  msgid "Get the API Keys"
209
  msgstr ""
210
 
211
- #: includes/class-gglcptch-settings-tabs.php:168
212
  #, fuzzy
213
  msgid "Test reCAPTCHA"
214
  msgstr "Невидљиви reCAPTCHA"
215
 
216
- #: includes/class-gglcptch-settings-tabs.php:174
217
  msgid "General"
218
  msgstr ""
219
 
220
- #: includes/class-gglcptch-settings-tabs.php:177
 
 
 
 
221
  msgid "Enable reCAPTCHA for"
222
  msgstr "Омогући reCAPTCHA за"
223
 
224
- #: includes/class-gglcptch-settings-tabs.php:223
225
- #: includes/class-gglcptch-settings-tabs.php:287 includes/pro_banners.php:20
226
  msgid "Close"
227
  msgstr "Затвори"
228
 
229
- #: includes/class-gglcptch-settings-tabs.php:232
230
  #, fuzzy
231
  msgid "Hide reCAPTCHA for"
232
  msgstr "Омогући reCAPTCHA за"
233
 
234
- #: includes/class-gglcptch-settings-tabs.php:250
235
- msgid "reCAPTCHA Version"
236
- msgstr "reCAPTCHA верзија"
 
237
 
238
- #: includes/class-gglcptch-settings-tabs.php:264
 
 
 
 
239
  msgid "Theme"
240
  msgstr ""
241
 
242
- #: includes/class-gglcptch-settings-tabs.php:275
243
  msgid "Score"
244
  msgstr ""
245
 
246
- #: includes/class-gglcptch-settings-tabs.php:280
247
  msgid "Set the minimum verification score from 0 to 1"
248
  msgstr ""
249
 
250
- #: includes/class-gglcptch-settings-tabs.php:296
251
  msgid "Whitelist Notification"
252
  msgstr "Нотификација за белу листу"
253
 
254
- #: includes/class-gglcptch-settings-tabs.php:299
255
  #, fuzzy
256
  msgid "This message will be displayed instead of the reCAPTCHA."
257
  msgstr ""
258
  "Ова порука ће бити приказана уместо reCAPTCHA уколико је кориснички IP додат "
259
  "у белу листу"
260
 
261
- #: includes/class-gglcptch-settings-tabs.php:303
262
  msgid "Disabled Submit Button"
263
  msgstr ""
264
 
265
- #: includes/class-gglcptch-settings-tabs.php:307
266
  msgid ""
267
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
268
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
269
  msgstr ""
270
 
271
- #: includes/class-gglcptch-settings-tabs.php:321
272
  msgid ""
273
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
274
  "regenerate Site and Secret keys if necessary."
275
  msgstr ""
276
 
277
- #: includes/class-gglcptch-settings-tabs.php:334
278
  msgid "Google Captcha Shortcode"
279
  msgstr ""
280
 
281
- #: includes/class-gglcptch-settings-tabs.php:337
282
  msgid ""
283
  "Add Google Captcha to your posts or pages using the following shortcode:"
284
  msgstr ""
@@ -307,7 +336,7 @@ msgstr "Testimonials"
307
  msgid "WordPress default"
308
  msgstr "WordPress подразумевано"
309
 
310
- #: includes/forms.php:47 includes/pro_banners.php:72
311
  msgid "External Plugins"
312
  msgstr ""
313
 
@@ -327,11 +356,11 @@ msgstr "Активирај"
327
  msgid "Install Now"
328
  msgstr ""
329
 
330
- #: includes/forms.php:282
331
  msgid "Authentication failed."
332
  msgstr ""
333
 
334
- #: includes/forms.php:371
335
  msgid "Click the BACK button on your browser and try again."
336
  msgstr ""
337
 
@@ -423,27 +452,43 @@ msgstr ""
423
  msgid "wpForo Reply form"
424
  msgstr ""
425
 
426
- #: includes/pro_banners.php:156
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
427
  msgid "Size"
428
  msgstr ""
429
 
430
- #: includes/pro_banners.php:160
431
  msgid "Normal"
432
  msgstr "Нормално"
433
 
434
- #: includes/pro_banners.php:161
435
  msgid "Compact"
436
  msgstr "Компактно"
437
 
438
- #: includes/pro_banners.php:166
439
  msgid "Language"
440
  msgstr ""
441
 
442
- #: includes/pro_banners.php:174
443
  msgid "Multilanguage"
444
  msgstr ""
445
 
446
- #: includes/pro_banners.php:177
447
  msgid ""
448
  "Enable to switch language automatically on multilingual website using "
449
  "Multilanguage plugin."
@@ -764,9 +809,6 @@ msgstr "Резултати претраге за"
764
  #~ "Подешавања додатка су промењена. Да бисте сачували промене молимо не "
765
  #~ "заборавите да кликнете на \"Сачувај Измене\" дугме."
766
 
767
- #~ msgid "Contact form"
768
- #~ msgstr "Контакт форма"
769
-
770
  #~ msgid "Activate contact form"
771
  #~ msgstr "Активирајте контакт форму"
772
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-03-04 12:06+0200\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: \n"
8
  "Language-Team: Team Link <teamlink@gmx.us>\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 2.0.6\n"
17
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: google-captcha.php:38 google-captcha.php:40 google-captcha.php:457
22
+ #: includes/class-gglcptch-settings-tabs.php:148
23
  msgid "Google Captcha Settings"
24
  msgstr "Google Captcha Подешавања"
25
 
26
+ #: google-captcha.php:40 google-captcha.php:1055 google-captcha.php:1068
27
  #: includes/class-gglcptch-settings-tabs.php:25
28
  msgid "Settings"
29
  msgstr "Подешавања"
40
  msgid "Upgrade to Pro"
41
  msgstr "Пређи на Про"
42
 
43
+ #: google-captcha.php:240
44
  msgid "Please wait until Google reCAPTCHA is loaded."
45
  msgstr "Молимо сачекајте док се Google reCAPTCHA учита."
46
 
47
+ #: google-captcha.php:241
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:257
56
  msgid "Warning"
57
  msgstr "Упозорење"
58
 
59
+ #: google-captcha.php:360
60
  msgid "You are in the whitelist"
61
  msgstr "Ви сте на белој листи"
62
 
63
+ #: google-captcha.php:458
64
  msgid "Please enable JavaScript in your browser."
65
  msgstr ""
66
 
67
+ #: google-captcha.php:541
68
+ msgid "This site is protected by reCAPTCHA and the Google "
69
+ msgstr ""
70
+
71
+ #: google-captcha.php:542
72
+ msgid "Privacy Policy"
73
+ msgstr ""
74
+
75
+ #: google-captcha.php:543
76
+ msgid " and "
77
+ msgstr ""
78
+
79
+ #: google-captcha.php:544
80
+ msgid "Terms of Service"
81
+ msgstr ""
82
+
83
+ #: google-captcha.php:545
84
+ msgid " apply."
85
+ msgstr ""
86
+
87
+ #: google-captcha.php:552 google-captcha.php:1090
88
  msgid "To use Google Captcha you must get the keys from"
89
  msgstr "Да бисте користили Google Captcha морате узети кључеве од"
90
 
91
+ #: google-captcha.php:553 google-captcha.php:1091
92
  msgid "here"
93
  msgstr "овде"
94
 
95
+ #: google-captcha.php:554 google-captcha.php:1092
96
  msgid "and enter them on the"
97
  msgstr "и унесите их на"
98
 
99
+ #: google-captcha.php:556 google-captcha.php:1094
100
  msgid "plugin setting page"
101
  msgstr "страна подешавања додатка"
102
 
103
+ #: google-captcha.php:823 includes/forms.php:356
104
  msgid "Error"
105
  msgstr "Грешка"
106
 
107
+ #: google-captcha.php:948
108
  msgid "User response is missing."
109
  msgstr "Одговор корисника недостаје."
110
 
111
+ #: google-captcha.php:952 google-captcha.php:960
112
  msgid "Secret Key is invalid."
113
  msgstr ""
114
 
115
+ #: google-captcha.php:953 google-captcha.php:961
116
  msgid "Check your domain configurations"
117
  msgstr ""
118
 
119
+ #: google-captcha.php:954 google-captcha.php:962
120
  msgid "and enter it again"
121
  msgstr "и унесите поново"
122
 
123
+ #: google-captcha.php:957
124
  msgid "Secret Key is missing."
125
  msgstr "Тајни кључ недостаје."
126
 
127
+ #: google-captcha.php:964
128
  msgid "User response is invalid"
129
  msgstr "Одговор корисника није исправан"
130
 
131
+ #: google-captcha.php:965
132
  msgid "You have entered an incorrect reCAPTCHA value."
133
  msgstr "Унели сте нетачну reCAPTCHA вредност."
134
 
135
+ #: google-captcha.php:966
136
  msgid ""
137
  "More than one reCAPTCHA has been found in the current form. Please remove "
138
  "all unnecessary reCAPTCHA fields to make it work properly."
140
  "Више од једне reCAPTCHA је нађено у тренутној форми. Молим вас да уклоните "
141
  "сва непотребна reCAPTCHA поља како би форма радила исправно."
142
 
143
+ #: google-captcha.php:968
144
  msgid "reCAPTCHA v3 test failed"
145
  msgstr ""
146
 
147
+ #: google-captcha.php:1006
148
  msgid "Please submit \"Test verification\""
149
  msgstr ""
150
 
151
+ #: google-captcha.php:1008
152
  msgid "Please complete the captcha and submit \"Test verification\""
153
  msgstr ""
154
 
155
+ #: google-captcha.php:1014
156
  msgid "Test verification"
157
  msgstr "Тестирај верификацију"
158
 
159
+ #: google-captcha.php:1035
160
  msgid "The verification is successfully completed."
161
  msgstr ""
162
 
163
+ #: google-captcha.php:1070
164
  msgid "FAQ"
165
  msgstr "ЧПП"
166
 
167
+ #: google-captcha.php:1071
168
  msgid "Support"
169
  msgstr "Подршка"
170
 
210
  msgid "Enter secret key"
211
  msgstr "Унесите тајни кључ"
212
 
213
+ #: includes/class-gglcptch-settings-tabs.php:136
214
  msgid "Settings saved."
215
  msgstr ""
216
 
217
+ #: includes/class-gglcptch-settings-tabs.php:151
218
  msgid "Authentication"
219
  msgstr "Аутентикација"
220
 
221
+ #: includes/class-gglcptch-settings-tabs.php:152
222
  msgid ""
223
  "Register your website with Google to get required API keys and enter them "
224
  "below."
225
  msgstr ""
226
 
227
+ #: includes/class-gglcptch-settings-tabs.php:152
228
  msgid "Get the API Keys"
229
  msgstr ""
230
 
231
+ #: includes/class-gglcptch-settings-tabs.php:169
232
  #, fuzzy
233
  msgid "Test reCAPTCHA"
234
  msgstr "Невидљиви reCAPTCHA"
235
 
236
+ #: includes/class-gglcptch-settings-tabs.php:175
237
  msgid "General"
238
  msgstr ""
239
 
240
+ #: includes/class-gglcptch-settings-tabs.php:178
241
+ msgid "reCAPTCHA Version"
242
+ msgstr "reCAPTCHA верзија"
243
+
244
+ #: includes/class-gglcptch-settings-tabs.php:191
245
  msgid "Enable reCAPTCHA for"
246
  msgstr "Омогући reCAPTCHA за"
247
 
248
+ #: includes/class-gglcptch-settings-tabs.php:237
249
+ #: includes/class-gglcptch-settings-tabs.php:299 includes/pro_banners.php:20
250
  msgid "Close"
251
  msgstr "Затвори"
252
 
253
+ #: includes/class-gglcptch-settings-tabs.php:246
254
  #, fuzzy
255
  msgid "Hide reCAPTCHA for"
256
  msgstr "Омогући reCAPTCHA за"
257
 
258
+ #: includes/class-gglcptch-settings-tabs.php:265
259
+ #, fuzzy
260
+ msgid "Hide reCAPTCHA Badge"
261
+ msgstr "Омогући reCAPTCHA за"
262
 
263
+ #: includes/class-gglcptch-settings-tabs.php:270
264
+ msgid "Enable to hide reCAPTCHA Badge for Version 3 and Invisble reCAPTCHA."
265
+ msgstr ""
266
+
267
+ #: includes/class-gglcptch-settings-tabs.php:276
268
  msgid "Theme"
269
  msgstr ""
270
 
271
+ #: includes/class-gglcptch-settings-tabs.php:287
272
  msgid "Score"
273
  msgstr ""
274
 
275
+ #: includes/class-gglcptch-settings-tabs.php:292
276
  msgid "Set the minimum verification score from 0 to 1"
277
  msgstr ""
278
 
279
+ #: includes/class-gglcptch-settings-tabs.php:308
280
  msgid "Whitelist Notification"
281
  msgstr "Нотификација за белу листу"
282
 
283
+ #: includes/class-gglcptch-settings-tabs.php:311
284
  #, fuzzy
285
  msgid "This message will be displayed instead of the reCAPTCHA."
286
  msgstr ""
287
  "Ова порука ће бити приказана уместо reCAPTCHA уколико је кориснички IP додат "
288
  "у белу листу"
289
 
290
+ #: includes/class-gglcptch-settings-tabs.php:315
291
  msgid "Disabled Submit Button"
292
  msgstr ""
293
 
294
+ #: includes/class-gglcptch-settings-tabs.php:319
295
  msgid ""
296
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
297
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
298
  msgstr ""
299
 
300
+ #: includes/class-gglcptch-settings-tabs.php:333
301
  msgid ""
302
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
303
  "regenerate Site and Secret keys if necessary."
304
  msgstr ""
305
 
306
+ #: includes/class-gglcptch-settings-tabs.php:346
307
  msgid "Google Captcha Shortcode"
308
  msgstr ""
309
 
310
+ #: includes/class-gglcptch-settings-tabs.php:349
311
  msgid ""
312
  "Add Google Captcha to your posts or pages using the following shortcode:"
313
  msgstr ""
336
  msgid "WordPress default"
337
  msgstr "WordPress подразумевано"
338
 
339
+ #: includes/forms.php:47 includes/pro_banners.php:75
340
  msgid "External Plugins"
341
  msgstr ""
342
 
356
  msgid "Install Now"
357
  msgstr ""
358
 
359
+ #: includes/forms.php:269
360
  msgid "Authentication failed."
361
  msgstr ""
362
 
363
+ #: includes/forms.php:358
364
  msgid "Click the BACK button on your browser and try again."
365
  msgstr ""
366
 
452
  msgid "wpForo Reply form"
453
  msgstr ""
454
 
455
+ #: includes/pro_banners.php:69
456
+ msgid "Ninja Forms"
457
+ msgstr ""
458
+
459
+ #: includes/pro_banners.php:70
460
+ #, fuzzy
461
+ #| msgid "Contact form"
462
+ msgid "Contact Forms"
463
+ msgstr "Контакт форма"
464
+
465
+ #: includes/pro_banners.php:71
466
+ #, fuzzy
467
+ #| msgid "Login form"
468
+ msgid "Login Forms"
469
+ msgstr "Логин форма"
470
+
471
+ #: includes/pro_banners.php:167
472
  msgid "Size"
473
  msgstr ""
474
 
475
+ #: includes/pro_banners.php:171
476
  msgid "Normal"
477
  msgstr "Нормално"
478
 
479
+ #: includes/pro_banners.php:172
480
  msgid "Compact"
481
  msgstr "Компактно"
482
 
483
+ #: includes/pro_banners.php:177
484
  msgid "Language"
485
  msgstr ""
486
 
487
+ #: includes/pro_banners.php:185
488
  msgid "Multilanguage"
489
  msgstr ""
490
 
491
+ #: includes/pro_banners.php:188
492
  msgid ""
493
  "Enable to switch language automatically on multilingual website using "
494
  "Multilanguage plugin."
809
  #~ "Подешавања додатка су промењена. Да бисте сачували промене молимо не "
810
  #~ "заборавите да кликнете на \"Сачувај Измене\" дугме."
811
 
 
 
 
812
  #~ msgid "Activate contact form"
813
  #~ msgstr "Активирајте контакт форму"
814
 
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: 2019-01-08 13:08+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"
@@ -13,17 +13,17 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.8.7.1\n"
17
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: google-captcha.php:38 google-captcha.php:40 google-captcha.php:449
22
- #: includes/class-gglcptch-settings-tabs.php:147
23
  msgid "Google Captcha Settings"
24
  msgstr "Налаштування Google Captcha"
25
 
26
- #: google-captcha.php:40 google-captcha.php:1080 google-captcha.php:1093
27
  #: includes/class-gglcptch-settings-tabs.php:25
28
  msgid "Settings"
29
  msgstr "Налаштування"
@@ -40,11 +40,11 @@ msgstr "Білий список"
40
  msgid "Upgrade to Pro"
41
  msgstr "Оновити до Pro"
42
 
43
- #: google-captcha.php:237
44
  msgid "Please wait until Google reCAPTCHA is loaded."
45
  msgstr "Будь ласка, зачекайте, поки буде завантаженo Google reCAPTCHA."
46
 
47
- #: google-captcha.php:238
48
  msgid ""
49
  "Failed to load Google reCAPTCHA. Please check your internet connection and "
50
  "reload this page."
@@ -52,67 +52,87 @@ msgstr ""
52
  "Не вдалося завантажити Google reCAPTCHA. Будь ласка, перевірте підключення "
53
  "до Інтернету та оновіть цю сторінку."
54
 
55
- #: google-captcha.php:254
56
  msgid "Warning"
57
  msgstr "Увага"
58
 
59
- #: google-captcha.php:353
60
  msgid "You are in the whitelist"
61
  msgstr "Ви знаходитесь в білому списку"
62
 
63
- #: google-captcha.php:450
64
  msgid "Please enable JavaScript in your browser."
65
  msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
66
 
67
- #: google-captcha.php:537 google-captcha.php:1115
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  msgid "To use Google Captcha you must get the keys from"
69
  msgstr "Щоб використовувати Google Captcha, вам необхідно отримати ключі з"
70
 
71
- #: google-captcha.php:538 google-captcha.php:1116
72
  msgid "here"
73
  msgstr "тут"
74
 
75
- #: google-captcha.php:539 google-captcha.php:1117
76
  msgid "and enter them on the"
77
  msgstr "і вставте їх у"
78
 
79
- #: google-captcha.php:541 google-captcha.php:1119
80
  msgid "plugin setting page"
81
  msgstr "сторінку налаштувань плагіну"
82
 
83
- #: google-captcha.php:847 includes/forms.php:369
84
  msgid "Error"
85
  msgstr "Помилка"
86
 
87
- #: google-captcha.php:972
88
  msgid "User response is missing."
89
  msgstr "Відповідь користувача відсутня."
90
 
91
- #: google-captcha.php:976 google-captcha.php:984
92
  msgid "Secret Key is invalid."
93
  msgstr "Секретний ключ некоректний."
94
 
95
- #: google-captcha.php:977 google-captcha.php:985
96
  msgid "Check your domain configurations"
97
  msgstr "Перевірте конфігурацію вашого домену"
98
 
99
- #: google-captcha.php:978 google-captcha.php:986
100
  msgid "and enter it again"
101
  msgstr "і введіть його знову"
102
 
103
- #: google-captcha.php:981
104
  msgid "Secret Key is missing."
105
  msgstr "Секретний ключ відсутній."
106
 
107
- #: google-captcha.php:988
108
  msgid "User response is invalid"
109
  msgstr "Некоректна відповідь користувача"
110
 
111
- #: google-captcha.php:989
112
  msgid "You have entered an incorrect reCAPTCHA value."
113
  msgstr "Ви ввели невірне значення reCAPTCHA."
114
 
115
- #: google-captcha.php:990
116
  msgid ""
117
  "More than one reCAPTCHA has been found in the current form. Please remove "
118
  "all unnecessary reCAPTCHA fields to make it work properly."
@@ -120,32 +140,32 @@ msgstr ""
120
  "В поточній формі знайдено більш ніж один блок reCAPTCHA. Будь-ласка видаліть "
121
  "усі зайві блоки reCAPTCHA для коректної подальшої роботи."
122
 
123
- #: google-captcha.php:992
124
  msgid "reCAPTCHA v3 test failed"
125
  msgstr "Тест reCAPTCHA v3 не пройдений"
126
 
127
- #: google-captcha.php:1030
128
  msgid "Please submit \"Test verification\""
129
  msgstr "Будь ласка, натисніть кнопку \"Тестування перевірки\""
130
 
131
- #: google-captcha.php:1032
132
  msgid "Please complete the captcha and submit \"Test verification\""
133
  msgstr ""
134
  "Будь ласка, заповніть капчу і натисніть кнопку \"Тестування перевірки\""
135
 
136
- #: google-captcha.php:1039
137
  msgid "Test verification"
138
  msgstr "Тестування перевірки"
139
 
140
- #: google-captcha.php:1060
141
  msgid "The verification is successfully completed."
142
  msgstr "Перевірка завершена успішно."
143
 
144
- #: google-captcha.php:1095
145
  msgid "FAQ"
146
  msgstr "FAQ"
147
 
148
- #: google-captcha.php:1096
149
  msgid "Support"
150
  msgstr "Техпідтримка"
151
 
@@ -192,15 +212,15 @@ msgstr ""
192
  msgid "Enter secret key"
193
  msgstr "Введіть секретний ключ"
194
 
195
- #: includes/class-gglcptch-settings-tabs.php:135
196
  msgid "Settings saved."
197
  msgstr "Налаштування збережені."
198
 
199
- #: includes/class-gglcptch-settings-tabs.php:150
200
  msgid "Authentication"
201
  msgstr "Ідентифікація"
202
 
203
- #: includes/class-gglcptch-settings-tabs.php:151
204
  msgid ""
205
  "Register your website with Google to get required API keys and enter them "
206
  "below."
@@ -208,61 +228,70 @@ msgstr ""
208
  "Зареєструйте свій веб-сайт за допомогою Google, щоб отримати необхідні API "
209
  "ключі та введіть їх нижче."
210
 
211
- #: includes/class-gglcptch-settings-tabs.php:151
212
  msgid "Get the API Keys"
213
  msgstr "Отримати API ключі"
214
 
215
- #: includes/class-gglcptch-settings-tabs.php:168
216
  msgid "Test reCAPTCHA"
217
  msgstr "Тестування reCAPTCHA"
218
 
219
- #: includes/class-gglcptch-settings-tabs.php:174
220
  msgid "General"
221
  msgstr "Загальне"
222
 
223
- #: includes/class-gglcptch-settings-tabs.php:177
 
 
 
 
224
  msgid "Enable reCAPTCHA for"
225
  msgstr "Включити reCAPTCHA для"
226
 
227
- #: includes/class-gglcptch-settings-tabs.php:223
228
- #: includes/class-gglcptch-settings-tabs.php:287 includes/pro_banners.php:20
229
  msgid "Close"
230
  msgstr "Закрити"
231
 
232
- #: includes/class-gglcptch-settings-tabs.php:232
233
  msgid "Hide reCAPTCHA for"
234
  msgstr "Сховати reCAPTCHA для"
235
 
236
- #: includes/class-gglcptch-settings-tabs.php:250
237
- msgid "reCAPTCHA Version"
238
- msgstr "Версія reCAPTCHA"
 
 
 
 
 
239
 
240
- #: includes/class-gglcptch-settings-tabs.php:264
241
  msgid "Theme"
242
  msgstr "Тема"
243
 
244
- #: includes/class-gglcptch-settings-tabs.php:275
245
  msgid "Score"
246
  msgstr "Кількість очок"
247
 
248
- #: includes/class-gglcptch-settings-tabs.php:280
249
  msgid "Set the minimum verification score from 0 to 1"
250
  msgstr ""
251
  "Вкажіть граничне значення, при якому перевірка буде пройдена від 0 до 1"
252
 
253
- #: includes/class-gglcptch-settings-tabs.php:296
254
  msgid "Whitelist Notification"
255
  msgstr "Повідомлення про знаходження у білому списку"
256
 
257
- #: includes/class-gglcptch-settings-tabs.php:299
258
  msgid "This message will be displayed instead of the reCAPTCHA."
259
  msgstr "Це повідомлення буде відображатися замість reCAPTCHA."
260
 
261
- #: includes/class-gglcptch-settings-tabs.php:303
262
  msgid "Disabled Submit Button"
263
  msgstr "Відключена кнопка підтвердження"
264
 
265
- #: includes/class-gglcptch-settings-tabs.php:307
266
  msgid ""
267
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
268
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
@@ -271,7 +300,7 @@ msgstr ""
271
  "не буде завантажена reCAPTCHA (Не використовуйте цю опцію, якщо ви бачите "
272
  "повідомлення \"Не вдалося завантажити Google reCAPTCHA\")."
273
 
274
- #: includes/class-gglcptch-settings-tabs.php:321
275
  msgid ""
276
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
277
  "regenerate Site and Secret keys if necessary."
@@ -279,11 +308,11 @@ msgstr ""
279
  "Версію reCAPTCHA було змінено. Будь ласка, натисніть \"Тестування reCAPTCHA"
280
  "\" та оновіть секретний ключ та ключ сайту, якщо це необхідно."
281
 
282
- #: includes/class-gglcptch-settings-tabs.php:334
283
  msgid "Google Captcha Shortcode"
284
  msgstr "Шорткод Google Captcha"
285
 
286
- #: includes/class-gglcptch-settings-tabs.php:337
287
  msgid ""
288
  "Add Google Captcha to your posts or pages using the following shortcode:"
289
  msgstr ""
@@ -314,7 +343,7 @@ msgstr "Testimonials"
314
  msgid "WordPress default"
315
  msgstr "Стандартних форм WordPress"
316
 
317
- #: includes/forms.php:47 includes/pro_banners.php:72
318
  msgid "External Plugins"
319
  msgstr "Зовнішні плагіни"
320
 
@@ -334,11 +363,11 @@ msgstr "Активувати"
334
  msgid "Install Now"
335
  msgstr "Встановити зараз"
336
 
337
- #: includes/forms.php:282
338
  msgid "Authentication failed."
339
  msgstr "Помилка аутентифікації."
340
 
341
- #: includes/forms.php:371
342
  msgid "Click the BACK button on your browser and try again."
343
  msgstr "Натисніть кнопку НАЗАД у браузері та спробуйте ще раз."
344
 
@@ -430,27 +459,43 @@ msgstr "Форма нової теми плагіна wpForo"
430
  msgid "wpForo Reply form"
431
  msgstr "Форма відповіді плагина wpForo"
432
 
433
- #: includes/pro_banners.php:156
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
434
  msgid "Size"
435
  msgstr "Розмір"
436
 
437
- #: includes/pro_banners.php:160
438
  msgid "Normal"
439
  msgstr "Нормальний"
440
 
441
- #: includes/pro_banners.php:161
442
  msgid "Compact"
443
  msgstr "Компактний"
444
 
445
- #: includes/pro_banners.php:166
446
  msgid "Language"
447
  msgstr "Мова"
448
 
449
- #: includes/pro_banners.php:174
450
  msgid "Multilanguage"
451
  msgstr "Multilanguage"
452
 
453
- #: includes/pro_banners.php:177
454
  msgid ""
455
  "Enable to switch language automatically on multilingual website using "
456
  "Multilanguage plugin."
@@ -839,9 +884,6 @@ msgstr "Результати пошуку для"
839
  #~ "Налаштування плагіну змінено. Щоб зберегти їх, будь ласка, не забудьте "
840
  #~ "клікнути 'Зберегти зміни'."
841
 
842
- #~ msgid "Contact form"
843
- #~ msgstr "Контактна форма"
844
-
845
  #~ msgid "Activate contact form"
846
  #~ msgstr "Активувати контактну форму"
847
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-03-04 12:04+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"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 2.0.6\n"
17
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: google-captcha.php:38 google-captcha.php:40 google-captcha.php:457
22
+ #: includes/class-gglcptch-settings-tabs.php:148
23
  msgid "Google Captcha Settings"
24
  msgstr "Налаштування Google Captcha"
25
 
26
+ #: google-captcha.php:40 google-captcha.php:1055 google-captcha.php:1068
27
  #: includes/class-gglcptch-settings-tabs.php:25
28
  msgid "Settings"
29
  msgstr "Налаштування"
40
  msgid "Upgrade to Pro"
41
  msgstr "Оновити до Pro"
42
 
43
+ #: google-captcha.php:240
44
  msgid "Please wait until Google reCAPTCHA is loaded."
45
  msgstr "Будь ласка, зачекайте, поки буде завантаженo Google reCAPTCHA."
46
 
47
+ #: google-captcha.php:241
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:257
56
  msgid "Warning"
57
  msgstr "Увага"
58
 
59
+ #: google-captcha.php:360
60
  msgid "You are in the whitelist"
61
  msgstr "Ви знаходитесь в білому списку"
62
 
63
+ #: google-captcha.php:458
64
  msgid "Please enable JavaScript in your browser."
65
  msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
66
 
67
+ #: google-captcha.php:541
68
+ msgid "This site is protected by reCAPTCHA and the Google "
69
+ msgstr "Цей сайт захищений reCAPTCHA і застосовуються "
70
+
71
+ #: google-captcha.php:542
72
+ msgid "Privacy Policy"
73
+ msgstr "Політика конфіденційності"
74
+
75
+ #: google-captcha.php:543
76
+ msgid " and "
77
+ msgstr " та "
78
+
79
+ #: google-captcha.php:544
80
+ msgid "Terms of Service"
81
+ msgstr "Умови обслуговування"
82
+
83
+ #: google-captcha.php:545
84
+ msgid " apply."
85
+ msgstr " Google."
86
+
87
+ #: google-captcha.php:552 google-captcha.php:1090
88
  msgid "To use Google Captcha you must get the keys from"
89
  msgstr "Щоб використовувати Google Captcha, вам необхідно отримати ключі з"
90
 
91
+ #: google-captcha.php:553 google-captcha.php:1091
92
  msgid "here"
93
  msgstr "тут"
94
 
95
+ #: google-captcha.php:554 google-captcha.php:1092
96
  msgid "and enter them on the"
97
  msgstr "і вставте їх у"
98
 
99
+ #: google-captcha.php:556 google-captcha.php:1094
100
  msgid "plugin setting page"
101
  msgstr "сторінку налаштувань плагіну"
102
 
103
+ #: google-captcha.php:823 includes/forms.php:356
104
  msgid "Error"
105
  msgstr "Помилка"
106
 
107
+ #: google-captcha.php:948
108
  msgid "User response is missing."
109
  msgstr "Відповідь користувача відсутня."
110
 
111
+ #: google-captcha.php:952 google-captcha.php:960
112
  msgid "Secret Key is invalid."
113
  msgstr "Секретний ключ некоректний."
114
 
115
+ #: google-captcha.php:953 google-captcha.php:961
116
  msgid "Check your domain configurations"
117
  msgstr "Перевірте конфігурацію вашого домену"
118
 
119
+ #: google-captcha.php:954 google-captcha.php:962
120
  msgid "and enter it again"
121
  msgstr "і введіть його знову"
122
 
123
+ #: google-captcha.php:957
124
  msgid "Secret Key is missing."
125
  msgstr "Секретний ключ відсутній."
126
 
127
+ #: google-captcha.php:964
128
  msgid "User response is invalid"
129
  msgstr "Некоректна відповідь користувача"
130
 
131
+ #: google-captcha.php:965
132
  msgid "You have entered an incorrect reCAPTCHA value."
133
  msgstr "Ви ввели невірне значення reCAPTCHA."
134
 
135
+ #: google-captcha.php:966
136
  msgid ""
137
  "More than one reCAPTCHA has been found in the current form. Please remove "
138
  "all unnecessary reCAPTCHA fields to make it work properly."
140
  "В поточній формі знайдено більш ніж один блок reCAPTCHA. Будь-ласка видаліть "
141
  "усі зайві блоки reCAPTCHA для коректної подальшої роботи."
142
 
143
+ #: google-captcha.php:968
144
  msgid "reCAPTCHA v3 test failed"
145
  msgstr "Тест reCAPTCHA v3 не пройдений"
146
 
147
+ #: google-captcha.php:1006
148
  msgid "Please submit \"Test verification\""
149
  msgstr "Будь ласка, натисніть кнопку \"Тестування перевірки\""
150
 
151
+ #: google-captcha.php:1008
152
  msgid "Please complete the captcha and submit \"Test verification\""
153
  msgstr ""
154
  "Будь ласка, заповніть капчу і натисніть кнопку \"Тестування перевірки\""
155
 
156
+ #: google-captcha.php:1014
157
  msgid "Test verification"
158
  msgstr "Тестування перевірки"
159
 
160
+ #: google-captcha.php:1035
161
  msgid "The verification is successfully completed."
162
  msgstr "Перевірка завершена успішно."
163
 
164
+ #: google-captcha.php:1070
165
  msgid "FAQ"
166
  msgstr "FAQ"
167
 
168
+ #: google-captcha.php:1071
169
  msgid "Support"
170
  msgstr "Техпідтримка"
171
 
212
  msgid "Enter secret key"
213
  msgstr "Введіть секретний ключ"
214
 
215
+ #: includes/class-gglcptch-settings-tabs.php:136
216
  msgid "Settings saved."
217
  msgstr "Налаштування збережені."
218
 
219
+ #: includes/class-gglcptch-settings-tabs.php:151
220
  msgid "Authentication"
221
  msgstr "Ідентифікація"
222
 
223
+ #: includes/class-gglcptch-settings-tabs.php:152
224
  msgid ""
225
  "Register your website with Google to get required API keys and enter them "
226
  "below."
228
  "Зареєструйте свій веб-сайт за допомогою Google, щоб отримати необхідні API "
229
  "ключі та введіть їх нижче."
230
 
231
+ #: includes/class-gglcptch-settings-tabs.php:152
232
  msgid "Get the API Keys"
233
  msgstr "Отримати API ключі"
234
 
235
+ #: includes/class-gglcptch-settings-tabs.php:169
236
  msgid "Test reCAPTCHA"
237
  msgstr "Тестування reCAPTCHA"
238
 
239
+ #: includes/class-gglcptch-settings-tabs.php:175
240
  msgid "General"
241
  msgstr "Загальне"
242
 
243
+ #: includes/class-gglcptch-settings-tabs.php:178
244
+ msgid "reCAPTCHA Version"
245
+ msgstr "Версія reCAPTCHA"
246
+
247
+ #: includes/class-gglcptch-settings-tabs.php:191
248
  msgid "Enable reCAPTCHA for"
249
  msgstr "Включити reCAPTCHA для"
250
 
251
+ #: includes/class-gglcptch-settings-tabs.php:237
252
+ #: includes/class-gglcptch-settings-tabs.php:299 includes/pro_banners.php:20
253
  msgid "Close"
254
  msgstr "Закрити"
255
 
256
+ #: includes/class-gglcptch-settings-tabs.php:246
257
  msgid "Hide reCAPTCHA for"
258
  msgstr "Сховати reCAPTCHA для"
259
 
260
+ #: includes/class-gglcptch-settings-tabs.php:265
261
+ msgid "Hide reCAPTCHA Badge"
262
+ msgstr "Сховати значок reCAPTCHA"
263
+
264
+ #: includes/class-gglcptch-settings-tabs.php:270
265
+ msgid "Enable to hide reCAPTCHA Badge for Version 3 and Invisble reCAPTCHA."
266
+ msgstr ""
267
+ "Увімкніть, щоб приховати значок reCAPTCHA для версії 3 і Invisible reCAPTCHA."
268
 
269
+ #: includes/class-gglcptch-settings-tabs.php:276
270
  msgid "Theme"
271
  msgstr "Тема"
272
 
273
+ #: includes/class-gglcptch-settings-tabs.php:287
274
  msgid "Score"
275
  msgstr "Кількість очок"
276
 
277
+ #: includes/class-gglcptch-settings-tabs.php:292
278
  msgid "Set the minimum verification score from 0 to 1"
279
  msgstr ""
280
  "Вкажіть граничне значення, при якому перевірка буде пройдена від 0 до 1"
281
 
282
+ #: includes/class-gglcptch-settings-tabs.php:308
283
  msgid "Whitelist Notification"
284
  msgstr "Повідомлення про знаходження у білому списку"
285
 
286
+ #: includes/class-gglcptch-settings-tabs.php:311
287
  msgid "This message will be displayed instead of the reCAPTCHA."
288
  msgstr "Це повідомлення буде відображатися замість reCAPTCHA."
289
 
290
+ #: includes/class-gglcptch-settings-tabs.php:315
291
  msgid "Disabled Submit Button"
292
  msgstr "Відключена кнопка підтвердження"
293
 
294
+ #: includes/class-gglcptch-settings-tabs.php:319
295
  msgid ""
296
  "Enable to keep submit button disabled until reCAPTCHA is loaded (do not use "
297
  "this option if you see \"Failed to load Google reCAPTCHA\" message)."
300
  "не буде завантажена reCAPTCHA (Не використовуйте цю опцію, якщо ви бачите "
301
  "повідомлення \"Не вдалося завантажити Google reCAPTCHA\")."
302
 
303
+ #: includes/class-gglcptch-settings-tabs.php:333
304
  msgid ""
305
  "reCAPTCHA version was changed. Please submit \"Test reCAPTCHA\" and "
306
  "regenerate Site and Secret keys if necessary."
308
  "Версію reCAPTCHA було змінено. Будь ласка, натисніть \"Тестування reCAPTCHA"
309
  "\" та оновіть секретний ключ та ключ сайту, якщо це необхідно."
310
 
311
+ #: includes/class-gglcptch-settings-tabs.php:346
312
  msgid "Google Captcha Shortcode"
313
  msgstr "Шорткод Google Captcha"
314
 
315
+ #: includes/class-gglcptch-settings-tabs.php:349
316
  msgid ""
317
  "Add Google Captcha to your posts or pages using the following shortcode:"
318
  msgstr ""
343
  msgid "WordPress default"
344
  msgstr "Стандартних форм WordPress"
345
 
346
+ #: includes/forms.php:47 includes/pro_banners.php:75
347
  msgid "External Plugins"
348
  msgstr "Зовнішні плагіни"
349
 
363
  msgid "Install Now"
364
  msgstr "Встановити зараз"
365
 
366
+ #: includes/forms.php:269
367
  msgid "Authentication failed."
368
  msgstr "Помилка аутентифікації."
369
 
370
+ #: includes/forms.php:358
371
  msgid "Click the BACK button on your browser and try again."
372
  msgstr "Натисніть кнопку НАЗАД у браузері та спробуйте ще раз."
373
 
459
  msgid "wpForo Reply form"
460
  msgstr "Форма відповіді плагина wpForo"
461
 
462
+ #: includes/pro_banners.php:69
463
+ msgid "Ninja Forms"
464
+ msgstr "Ninja Forms"
465
+
466
+ #: includes/pro_banners.php:70
467
+ #, fuzzy
468
+ #| msgid "Contact form"
469
+ msgid "Contact Forms"
470
+ msgstr "Контактна форма"
471
+
472
+ #: includes/pro_banners.php:71
473
+ #, fuzzy
474
+ #| msgid "Login form"
475
+ msgid "Login Forms"
476
+ msgstr "Форма логіну"
477
+
478
+ #: includes/pro_banners.php:167
479
  msgid "Size"
480
  msgstr "Розмір"
481
 
482
+ #: includes/pro_banners.php:171
483
  msgid "Normal"
484
  msgstr "Нормальний"
485
 
486
+ #: includes/pro_banners.php:172
487
  msgid "Compact"
488
  msgstr "Компактний"
489
 
490
+ #: includes/pro_banners.php:177
491
  msgid "Language"
492
  msgstr "Мова"
493
 
494
+ #: includes/pro_banners.php:185
495
  msgid "Multilanguage"
496
  msgstr "Multilanguage"
497
 
498
+ #: includes/pro_banners.php:188
499
  msgid ""
500
  "Enable to switch language automatically on multilingual website using "
501
  "Multilanguage plugin."
884
  #~ "Налаштування плагіну змінено. Щоб зберегти їх, будь ласка, не забудьте "
885
  #~ "клікнути 'Зберегти зміни'."
886
 
 
 
 
887
  #~ msgid "Activate contact form"
888
  #~ msgstr "Активувати контактну форму"
889
 
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, recaptcha version3
5
  Requires at least: 3.9
6
- Tested up to: 5.1
7
- Stable tag: 1.42
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -43,6 +43,7 @@ http://www.youtube.com/watch?v=qwHsW3IJ7gQ
43
  * Dark
44
  * Compatible with [Limit Attempts](https://bestwebsoft.com/products/wordpress/plugins/limit-attempts/?k=1b1865c556920231995b35c3ed889415)
45
  * Hide Google Captcha (reCAPTCHA) in your forms for certain user roles
 
46
  * Supports Google Captcha (reCAPTCHA):
47
  * Version 2
48
  * Version 3
@@ -64,15 +65,16 @@ http://www.youtube.com/watch?v=qwHsW3IJ7gQ
64
  > * Jetpack contact form
65
  > * Fast Secure Contact Form
66
  > * MailChimp for WordPress
67
- > * Ninja Forms [NEW]
68
  > * Compatible with WooCommerce:
69
  > * Login form
70
  > * Register form
71
  > * Lost password form
72
  > * Checkout billing form
73
- > * Compatible with Divi Builder:
74
- > * Contact form
75
- > * Login form
 
76
  > * Compatible with bbPress:
77
  > * New Topic form
78
  > * Reply form
@@ -85,9 +87,6 @@ http://www.youtube.com/watch?v=qwHsW3IJ7gQ
85
  > * Registration form
86
  > * New Topic form
87
  > * Reply form
88
- > * Compatible with Divi Builder:
89
- > * Login form
90
- > * Contact form
91
  > * Select Google Captcha (reCAPTCHA) language manually
92
  > * Change size: normal or compact (for version 2)
93
  > * Configure all subsites on the network
@@ -266,6 +265,11 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
266
 
267
  == Changelog ==
268
 
 
 
 
 
 
269
  = V1.42 - 26.02.2019 =
270
  * PRO : The compatibility with Divi Builder has been added.
271
  * Update : All functionality was updated for WordPress 5.1.
@@ -454,6 +458,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
454
 
455
  == Upgrade Notice ==
456
 
 
 
 
 
457
  = V1.42 =
458
  * Functionality expanded.
459
  * The compatibility with new WordPress version updated.
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, recaptcha version3
5
  Requires at least: 3.9
6
+ Tested up to: 5.1.1
7
+ Stable tag: 1.43
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
43
  * Dark
44
  * Compatible with [Limit Attempts](https://bestwebsoft.com/products/wordpress/plugins/limit-attempts/?k=1b1865c556920231995b35c3ed889415)
45
  * Hide Google Captcha (reCAPTCHA) in your forms for certain user roles
46
+ * Hide Google Captcha (reCAPTCHA) Badge (Invisible and V3) [NEW]
47
  * Supports Google Captcha (reCAPTCHA):
48
  * Version 2
49
  * Version 3
65
  > * Jetpack contact form
66
  > * Fast Secure Contact Form
67
  > * MailChimp for WordPress
68
+ > * Ninja Forms
69
  > * Compatible with WooCommerce:
70
  > * Login form
71
  > * Register form
72
  > * Lost password form
73
  > * Checkout billing form
74
+ > * Compatible with Divi:
75
+ > * Divi Builder Contact form
76
+ > * Divi Builder Login form
77
+ > * Divi Theme Contact form [NEW]
78
  > * Compatible with bbPress:
79
  > * New Topic form
80
  > * Reply form
87
  > * Registration form
88
  > * New Topic form
89
  > * Reply form
 
 
 
90
  > * Select Google Captcha (reCAPTCHA) language manually
91
  > * Change size: normal or compact (for version 2)
92
  > * Configure all subsites on the network
265
 
266
  == Changelog ==
267
 
268
+ = V1.43 - 27.03.2019 =
269
+ * NEW : The ability to hide reCAPTCHA Badge has been added.
270
+ * PRO : The compatibility with Divi Theme has been added.
271
+ * Bugfix : The bug with button Test verification has been fixed.
272
+
273
  = V1.42 - 26.02.2019 =
274
  * PRO : The compatibility with Divi Builder has been added.
275
  * Update : All functionality was updated for WordPress 5.1.
458
 
459
  == Upgrade Notice ==
460
 
461
+ = V1.43 =
462
+ * New features added.
463
+ * Bugs fixed.
464
+
465
  = V1.42 =
466
  * Functionality expanded.
467
  * The compatibility with new WordPress version updated.
screenshot-7.png CHANGED
Binary file
screenshot-8.png CHANGED
Binary file