Google Captcha (reCAPTCHA) by BestWebSoft - Version 1.65

Version Description

  • 01.10.2021 =
  • Update : All functionality was updated for WordPress 5.8.1
  • Update : BWS Panel section was updated.
  • Pro : The compatibility with Elementor Pro Contact Form has been added.
Download this release

Release Info

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

Code changes from version 1.64 to 1.65

bws_menu/bws_functions.php CHANGED
@@ -481,6 +481,53 @@ if ( ! function_exists( 'bws_plugin_suggest_feature_banner' ) ) {
481
  <?php }
482
  }
483
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
484
  if ( ! function_exists( 'bws_show_settings_notice' ) ) {
485
  function bws_show_settings_notice() { ?>
486
  <div id="bws_save_settings_notice" class="updated fade below-h2" style="display:none;">
481
  <?php }
482
  }
483
 
484
+ if ( ! function_exists( 'bws_affiliate_postbox' ) ) {
485
+ function bws_affiliate_postbox() {
486
+
487
+ $dismissed = get_user_meta( get_current_user_id(), '_bws_affiliate_postbox_dismissed', true );
488
+
489
+ if ( ! empty( $dismissed ) && strtotime( '-3 month' ) < $dismissed ) {
490
+ return;
491
+ }
492
+
493
+ if ( isset( $_POST['bws_hide_affiliate_banner' ] ) && check_admin_referer( 'bws_affiliate_postbox', 'bws_settings_nonce_name' ) ) {
494
+ update_user_meta( get_current_user_id(), '_bws_affiliate_postbox_dismissed', strtotime( 'now' ) );
495
+ return;
496
+ }
497
+
498
+ $bws_link = esc_url( 'https://bestwebsoft.com/affiliate/?utm_source=plugin&utm_medium=settings&utm_campaign=affiliate_program' ); ?>
499
+ <div id="bws-affiliate-postbox" class="postbox">
500
+ <form action="" method="post">
501
+ <button class="notice-dismiss bws_hide_settings_notice" title="<?php esc_html_e( 'Close notice', 'bestwebsoft' ); ?>"></button>
502
+ <input type="hidden" name="bws_hide_affiliate_banner" value="hide" />
503
+ <?php wp_nonce_field( 'bws_affiliate_postbox', 'bws_settings_nonce_name' ); ?>
504
+ </form>
505
+ <p>BESTWEBSOFT</p>
506
+ <h3><?php esc_html_e( 'Affiliate Program', 'bestwebsoft' ); ?></h3>
507
+ <div class="bws-affiliate-get"><?php printf( esc_html__( 'Get %s', 'bestwebsoft' ), '20%' ); ?></div>
508
+ <div><?php esc_html_e( 'from each BestWebSoft plugin and theme sale you refer', 'bestwebsoft' ); ?></div>
509
+ <div class="bws-row">
510
+ <div class="bws-cell">
511
+ <img src="<?php echo bws_menu_url( "images/join-icon.svg" ); ?>" alt="" />
512
+ <div><?php esc_html_e( 'Join affiliate program', 'bestwebsoft' ); ?></div>
513
+ </div>
514
+ <div class="bws-cell">
515
+ <img src="<?php echo bws_menu_url( "images/promote-icon.svg" ); ?>" alt="" />
516
+ <div><?php esc_html_e( 'Promote and sell products', 'bestwebsoft' ); ?></div>
517
+ </div>
518
+ <div class="bws-cell">
519
+ <img src="<?php echo bws_menu_url( "images/earn-icon.svg" ); ?>" alt="" />
520
+ <div><?php esc_html_e( 'Get commission!', 'bestwebsoft' ); ?></div>
521
+ </div>
522
+ </div>
523
+ <div class="clear"></div>
524
+ <p>
525
+ <a class="button" href="<?php echo $bws_link; ?>" target="_blank"><?php esc_html_e( 'Start Now', 'bestwebsoft' ); ?></a>
526
+ </p>
527
+ </div>
528
+ <?php }
529
+ }
530
+
531
  if ( ! function_exists( 'bws_show_settings_notice' ) ) {
532
  function bws_show_settings_notice() { ?>
533
  <div id="bws_save_settings_notice" class="updated fade below-h2" style="display:none;">
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 2.3.9
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 2.4.0
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
bws_menu/class-bws-settings.php CHANGED
@@ -230,7 +230,10 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
230
  <?php /**
231
  * action - Display custom metabox
232
  */
233
- do_action( __CLASS__ . '_display_metabox' ); ?>
 
 
 
234
  </div>
235
  </div>
236
  <div id="postbox-container-2" class="postbox-container">
230
  <?php /**
231
  * action - Display custom metabox
232
  */
233
+ do_action( __CLASS__ . '_display_metabox' );
234
+
235
+ if ( function_exists( 'bws_affiliate_postbox' ) )
236
+ bws_affiliate_postbox(); ?>
237
  </div>
238
  </div>
239
  <div id="postbox-container-2" class="postbox-container">
bws_menu/css/general_style.css CHANGED
@@ -425,6 +425,56 @@ div.bws_banner_on_plugin_page .icon {
425
  padding: 15px 20px 21px;
426
  }
427
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
428
  /* display code */
429
  span.bws_code {
430
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07);
@@ -837,4 +887,4 @@ span.bws_code {
837
  padding-left: 0;
838
  padding-right: 0;
839
  }
840
- }
425
  padding: 15px 20px 21px;
426
  }
427
  }
428
+ /*
429
+ * affiliate postbox
430
+ */
431
+ #bws-affiliate-postbox {
432
+ background: url("../images/affiliate-background.png") no-repeat center #1a3e59;
433
+ overflow: hidden;
434
+ position: relative;
435
+ padding: 12px;
436
+ color: #ffffff;
437
+ text-align: center;
438
+ }
439
+ #bws-affiliate-postbox .notice-dismiss:active:before,
440
+ #bws-affiliate-postbox .notice-dismiss:focus:before,
441
+ #bws-affiliate-postbox .notice-dismiss:hover:before {
442
+ color: #fff;
443
+ }
444
+ #bws-affiliate-postbox h3 {
445
+ color: #ffffff;
446
+ font-size: 1.3em;
447
+ }
448
+ .bws-affiliate-get {
449
+ color: #f67f48;
450
+ font-size: 1.3em;
451
+ font-weight: bold;
452
+ margin: 10px 0 5px;
453
+ }
454
+ #bws-affiliate-postbox img {
455
+ max-width: 65px;
456
+ margin-bottom: 5px;
457
+ }
458
+ .bws-row {
459
+ margin-top: 25px;
460
+ }
461
+ .bws-cell {
462
+ float: left;
463
+ width: 33.33%;
464
+ }
465
+ .bws-cell div {
466
+ margin: 5px;
467
+ }
468
+ #bws-affiliate-postbox .button {
469
+ background: #dd6930;
470
+ border-color: #dd6930;
471
+ color: #fff;
472
+ margin-top: 5px;
473
+ font-weight: bold;
474
+ }
475
+ #bws-affiliate-postbox .button:hover {
476
+ color: rgba(255, 255, 255, 0.8);
477
+ }
478
  /* display code */
479
  span.bws_code {
480
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07);
887
  padding-left: 0;
888
  padding-right: 0;
889
  }
890
+ }
bws_menu/css/style.css CHANGED
@@ -152,7 +152,7 @@ body[class*="-bws-panel"] .update-nag {
152
  text-align: left;
153
  line-height: 1;
154
  }
155
- .bws-membership .bws-button {
156
  background: #dd6930;
157
  color: #fff;
158
  text-align: center;
@@ -484,4 +484,4 @@ a.bws_donate {
484
  max-width: 160px;
485
  padding-right: 10px;
486
  }
487
- }
152
  text-align: left;
153
  line-height: 1;
154
  }
155
+ .bws-button {
156
  background: #dd6930;
157
  color: #fff;
158
  text-align: center;
484
  max-width: 160px;
485
  padding-right: 10px;
486
  }
487
+ }
bws_menu/deactivation-form.php CHANGED
@@ -338,7 +338,7 @@ if ( ! function_exists( 'bws_add_deactivation_feedback_dialog_box' ) ) {
338
  /* add script in FOOTER */
339
  wp_register_script( 'bws-deactivation-feedback-dialog-boxes', '', array( 'jquery' ), false, true );
340
  wp_enqueue_script( 'bws-deactivation-feedback-dialog-boxes' );
341
- wp_add_inline_script( 'bws-deactivation-feedback-dialog-boxes', sprintf( $script ) );
342
  }
343
  }
344
 
338
  /* add script in FOOTER */
339
  wp_register_script( 'bws-deactivation-feedback-dialog-boxes', '', array( 'jquery' ), false, true );
340
  wp_enqueue_script( 'bws-deactivation-feedback-dialog-boxes' );
341
+ wp_add_inline_script( 'bws-deactivation-feedback-dialog-boxes', $script );
342
  }
343
  }
344
 
bws_menu/images/affiliate-background.png ADDED
Binary file
bws_menu/images/earn-icon.svg ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg width="202" height="202" viewBox="0 0 202 202" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M202 101C202 156.663 156.915 202 101 202C45.0848 202 0 156.663 0 101C0 45.0848 45.0848 0 101 0C156.663 0 202 45.0848 202 101Z" fill="white" fill-opacity="0.47"/>
3
+ <path d="M30.224 88.9104C30.7277 62.9677 52.3886 42.3144 78.5831 42.8181C104.526 43.3218 125.179 64.9827 124.675 91.1772C124.172 117.12 102.511 137.773 76.3162 137.269C50.1217 136.514 29.7202 114.853 30.224 88.9104Z" fill="white"/>
4
+ <path d="M34.758 88.9101C35.2618 65.4862 54.9076 46.5959 78.3316 47.3515C101.756 47.8552 120.646 67.5011 119.89 90.9251C119.386 114.601 99.7406 133.239 76.3166 132.484C52.8927 132.232 34.2543 112.586 34.758 88.9101Z" fill="#3F8ABC"/>
5
+ <path d="M96.9695 102.511C96.9695 91.6808 88.154 88.1546 80.5979 85.384L80.8498 71.2793C84.376 72.2868 87.3984 74.3017 90.169 76.3167L91.4284 77.0723L95.7102 68.7606L94.7027 68.005C89.9171 64.7307 85.3835 62.7157 80.8498 62.212V57.1746H76.568V61.9601C67.2488 62.4638 59.9446 68.7606 60.1964 77.0723C60.1964 87.1471 69.2638 90.6733 76.0643 93.4439L75.8124 109.312C71.2787 108.052 66.4932 104.778 63.4708 101.756L62.2114 100.496L56.9221 108.304L57.9296 109.06C63.2189 113.845 69.7675 116.868 75.8124 117.875V122.913H80.0942V118.127C88.4059 118.127 97.2214 112.082 96.9695 102.511ZM70.2712 77.0723C70.2712 73.2943 73.2937 70.7756 76.568 70.5237L76.3161 83.3691C73.0418 82.1097 70.2712 80.0948 70.2712 77.0723ZM80.3461 109.564L80.5979 94.9551C84.376 96.4663 87.1466 98.4813 87.1466 103.015C87.1466 107.297 83.6204 109.312 80.3461 109.564Z" fill="white"/>
6
+ <path d="M57.6789 56.9226C57.6789 56.9226 56.9233 57.6782 55.9158 58.9376C54.6565 60.1969 53.1453 62.2119 51.3822 64.4787C50.6266 65.7381 49.6191 66.9974 48.8635 68.5086C47.856 69.768 47.3522 71.5311 46.3448 73.0423C45.5891 74.8054 44.8335 76.3166 44.3298 78.0797C44.0779 78.8353 43.8261 79.8428 43.5742 80.8503C43.3223 81.8578 43.3223 82.6134 43.0704 83.6209C42.5667 85.384 42.5667 87.3989 42.3148 89.162C42.063 90.9251 42.3148 92.9401 42.3148 94.7032C42.5667 96.4662 42.8186 98.2293 43.0704 99.7406C43.0704 100.496 43.3223 101.252 43.5742 102.007C43.8261 102.763 44.0779 103.519 44.0779 104.274C44.5817 105.785 44.8335 107.045 45.3373 108.052C45.841 109.06 46.0929 110.067 46.3448 111.075C46.8485 112.838 47.3522 113.593 47.3522 113.593C47.3522 113.593 46.5966 112.838 45.5891 111.327C45.0854 110.571 44.3298 109.815 43.5742 108.808C42.8186 107.8 42.3148 106.541 41.5592 105.282C41.0555 103.77 40.048 102.511 39.5443 100.748C39.0405 98.985 38.2849 97.2219 38.033 95.2069C38.033 94.1994 37.7812 93.1919 37.7812 92.1844C37.5293 91.177 37.5293 90.1695 37.5293 89.162C37.7812 87.147 37.5293 84.8802 38.2849 82.8653C38.5368 81.8578 38.7886 80.8503 39.0405 79.8428C39.2924 78.8353 39.7961 77.8278 40.048 76.8204C40.2999 75.8129 40.8036 74.8054 41.3074 74.0498C41.8111 73.0423 42.3148 72.2867 42.8186 71.5311C43.8261 70.0199 44.8335 68.2568 46.0929 66.9974C47.1004 65.4862 48.3597 64.4787 49.6191 63.2194C50.6266 62.2119 51.8859 61.2044 52.8934 60.4488C53.9009 59.6932 54.9083 59.1894 55.664 58.6857C56.6714 57.4263 57.6789 56.9226 57.6789 56.9226Z" fill="white"/>
7
+ <path d="M96.2148 122.661C96.2148 122.661 96.9705 121.905 97.9779 120.646C99.2373 119.387 100.749 117.372 102.512 115.105C103.267 113.845 104.275 112.586 105.03 111.075C106.038 109.815 106.542 108.052 107.549 106.541C108.305 104.778 109.06 103.267 109.564 101.504C109.816 100.748 110.068 99.7406 110.32 98.7331C110.571 97.7257 110.571 96.97 110.823 95.9626C111.327 94.1995 111.327 92.1845 111.579 90.4214C111.831 88.6583 111.579 86.6434 111.579 84.8803C111.327 83.1172 111.075 81.3541 110.823 79.8429C110.823 79.0873 110.571 78.3316 110.32 77.576C110.068 76.8204 109.816 76.0648 109.816 75.3092C109.312 73.798 109.06 72.5386 108.556 71.5311C108.053 70.5237 107.801 69.5162 107.549 68.5087C107.045 66.7456 106.542 65.99 106.542 65.99C106.542 65.99 107.297 66.7456 108.305 68.2568C108.808 69.0124 109.564 69.768 110.32 70.7755C111.075 71.783 111.579 73.0424 112.335 74.3017C112.838 75.8129 113.846 77.0723 114.35 78.8354C114.853 80.5985 115.609 82.3616 115.861 84.3765C115.861 85.384 116.113 86.3915 116.113 87.399C116.364 88.4065 116.364 89.4139 116.364 90.4214C116.113 92.4364 116.364 94.7032 115.609 96.7182C115.357 97.7257 115.105 98.7331 114.853 99.7406C114.601 100.748 114.098 101.756 113.846 102.763C113.594 103.771 113.09 104.778 112.586 105.534C112.083 106.541 111.579 107.297 111.075 108.052C110.068 109.564 109.06 111.327 107.801 112.586C106.793 114.097 105.534 115.105 104.275 116.364C103.267 117.372 102.008 118.379 101 119.135C99.9929 119.89 99.2373 120.394 98.2298 120.898C97.2223 122.409 96.2148 122.661 96.2148 122.661Z" fill="#C7C7C7"/>
8
+ <path d="M64.4793 119.135C65.235 93.1921 86.6439 72.5387 112.838 73.0425C138.781 73.5462 159.434 95.2071 158.931 121.402C158.427 147.344 136.766 167.998 110.572 167.494C84.3771 166.738 63.9756 145.329 64.4793 119.135Z" fill="white"/>
9
+ <path d="M69.0131 119.387C69.5169 95.9627 89.1628 77.0724 112.587 77.8281C136.011 78.3318 154.901 97.9777 154.145 121.402C153.642 145.077 133.996 163.716 110.572 162.96C87.1478 162.456 68.5094 142.811 69.0131 119.387Z" fill="#3F8ABC"/>
10
+ <path d="M131.225 132.736C131.225 121.905 122.409 118.379 114.853 115.608L115.105 101.504C118.631 102.511 121.654 104.526 124.424 106.541L125.684 107.297L129.965 98.985L129.21 98.2294C124.424 94.955 119.89 92.9401 115.357 92.4363V87.3989H111.075V92.1845C101.756 92.6882 94.4516 98.985 94.7034 107.297C94.7034 117.371 103.771 120.898 110.571 123.668L110.319 139.536C105.786 138.277 101 135.002 97.9778 131.98L96.7184 130.721L91.1772 139.032L92.1847 139.788C97.474 144.573 104.023 147.596 110.068 148.603V153.641H114.349V148.855C122.661 148.603 131.477 142.307 131.225 132.736ZM104.526 107.549C104.526 103.771 107.549 101.252 110.823 101L110.571 113.845C107.297 112.334 104.526 110.319 104.526 107.549ZM114.601 139.788L114.853 125.179C118.631 126.691 121.402 128.706 121.402 133.239C121.402 137.773 117.876 139.536 114.601 139.788Z" fill="white"/>
11
+ <path d="M91.9326 87.147C91.9326 87.147 91.177 87.9026 90.1695 89.1619C88.9101 90.4213 87.3989 92.4362 85.6358 94.7031C84.8802 95.9624 83.8727 97.2218 83.1171 98.733C82.1096 99.9924 81.6059 101.755 80.5984 103.267C79.8428 105.03 79.0872 106.541 78.5835 108.304C78.3316 109.06 78.0797 110.067 77.8278 111.075C77.576 112.082 77.576 112.838 77.3241 113.845C76.8204 115.608 76.8204 117.623 76.5685 119.386C76.3166 121.149 76.5685 123.164 76.5685 124.928C76.8204 126.691 77.0722 128.454 77.3241 129.965C77.3241 130.721 77.576 131.476 77.8278 132.232C78.0797 132.987 78.3316 133.743 78.3316 134.499C78.8353 136.01 79.0872 137.269 79.5909 138.277C80.0947 139.284 80.3466 140.292 80.5984 141.299C81.1022 143.062 81.6059 143.818 81.6059 143.818C81.6059 143.818 80.8503 143.062 79.8428 141.551C79.3391 140.795 78.5835 140.04 77.8278 139.032C77.0722 138.025 76.5685 136.765 75.8129 135.506C75.3091 133.995 74.3017 132.736 73.7979 130.972C73.2942 129.209 72.5386 127.446 72.2867 125.431C72.2867 124.424 72.0348 123.416 72.0348 122.409C71.783 121.401 71.783 120.394 71.783 119.386C72.0348 117.371 71.783 115.105 72.5386 113.09C72.7904 112.082 73.0423 111.075 73.2942 110.067C73.5461 109.06 74.0498 108.052 74.3017 107.045C74.5535 106.037 75.0573 105.03 75.561 104.274C76.0648 103.267 76.5685 102.511 77.0722 101.755C78.0797 100.244 79.0872 98.4811 80.3466 97.2218C81.354 95.7106 82.6134 94.7031 83.8727 93.4437C84.8802 92.4362 86.1396 91.4288 87.1471 90.6732C88.1545 89.9176 89.162 89.4138 89.9176 88.9101C91.177 87.6507 91.9326 87.147 91.9326 87.147Z" fill="white"/>
12
+ <path d="M130.469 152.885C130.469 152.885 131.224 152.13 132.232 150.87C133.491 149.611 135.002 147.596 136.765 145.329C137.521 144.07 138.528 142.81 139.284 141.299C140.291 140.04 140.795 138.277 141.803 136.766C142.558 135.002 143.314 133.491 143.818 131.728C144.07 130.973 144.321 129.965 144.573 128.958C144.825 127.95 144.825 127.194 145.077 126.187C146.084 124.676 146.084 122.913 146.084 120.898C146.336 119.135 146.084 117.12 146.084 115.357C145.833 113.593 145.581 111.83 145.329 110.319C145.329 109.564 145.077 108.808 144.825 108.052C144.573 107.297 144.321 106.541 144.321 105.786C143.818 104.274 143.566 103.015 143.062 102.007C142.558 101 142.306 99.9925 142.055 98.985C141.551 97.2219 141.047 96.4663 141.047 96.4663C141.047 96.4663 141.803 97.2219 142.81 98.7331C143.314 99.4888 144.07 100.244 144.825 101.252C145.581 102.259 146.084 103.519 146.84 104.778C147.344 106.289 148.351 107.549 148.855 109.312C149.359 111.075 150.114 112.838 150.366 114.853C150.366 115.86 150.618 116.868 150.618 117.875C150.87 118.883 150.87 119.89 150.87 120.898C150.618 122.913 150.87 125.18 150.114 127.194C149.863 128.202 149.611 129.209 149.359 130.217C149.107 131.224 148.603 132.232 148.351 133.239C148.099 134.247 147.596 135.254 147.092 136.01C146.588 137.017 146.084 137.773 145.581 138.529C144.573 140.04 143.566 141.803 142.306 143.062C141.299 144.574 140.04 145.581 138.78 146.84C137.773 147.848 136.513 148.855 135.506 149.611C134.498 150.367 133.491 150.87 132.735 151.374C131.476 152.633 130.469 152.885 130.469 152.885Z" fill="white"/>
13
+ <path d="M77.324 80.5986C77.8277 54.656 99.4886 34.0026 125.683 34.5063C151.626 35.0101 172.279 56.6709 171.775 82.8654C171.02 108.808 149.359 129.461 123.416 128.706C97.4736 128.202 76.8202 106.541 77.324 80.5986Z" fill="white"/>
14
+ <path d="M81.8579 80.5986C82.3616 57.1746 102.007 38.2844 125.431 39.04C148.855 39.5437 167.494 59.1896 166.99 82.6135C166.486 106.289 146.84 124.928 123.416 124.172C99.9925 123.668 81.3541 104.023 81.8579 80.5986Z" fill="#3F8ABC"/>
15
+ <path d="M144.07 93.9477C144.07 83.1173 135.255 79.5911 127.698 76.8206L127.95 62.7158C131.476 63.7233 134.499 65.7383 137.27 67.7532L138.529 68.5088L142.811 60.1971L141.803 59.4415C137.018 56.1672 132.484 54.1522 127.95 53.6485V48.6111H123.669V53.3966C114.349 53.9004 107.045 60.1971 107.297 68.5088C107.297 78.5837 116.364 82.1098 123.165 84.8804L122.913 100.748C118.379 99.4889 113.594 96.2146 110.571 93.1921L109.312 91.9328L103.771 100.244L104.778 101C110.068 105.786 116.616 108.808 122.661 109.816V114.853H126.943V110.067C135.506 109.816 144.322 103.771 144.07 93.9477ZM117.372 68.7607C117.372 64.9827 120.394 62.464 123.669 62.2121L123.417 75.0575C120.142 73.7981 117.372 71.7831 117.372 68.7607ZM127.447 101L127.698 86.3916C131.476 87.9028 134.247 89.9178 134.247 94.4515C134.247 98.9851 130.721 100.748 127.447 101Z" fill="white"/>
16
+ <path d="M104.777 48.6111C104.777 48.6111 104.022 49.3667 103.014 50.626C101.755 51.8854 100.244 53.9004 98.4806 56.1672C97.7249 57.4265 96.7175 58.6859 95.9619 60.1971C94.9544 61.4565 94.4506 63.2196 93.4431 64.7308C92.6875 66.4939 91.9319 68.0051 91.4282 69.7682C91.1763 70.5238 90.9244 71.5313 90.6726 72.5388C90.4207 73.5462 90.4207 74.3019 90.1688 75.3093C89.6651 77.0724 89.6651 79.0874 89.4132 80.8505C89.1614 82.6136 89.4132 84.6285 89.4132 86.3916C89.6651 88.1547 89.917 89.9178 90.1688 91.429C90.1688 92.1847 90.4207 92.9403 90.6726 93.6959C90.9244 94.4515 91.1763 95.2071 91.1763 95.9627C91.6801 97.4739 91.9319 98.7333 92.4357 99.7408C92.9394 100.748 93.1913 101.756 93.4431 102.763C93.9469 104.526 94.4506 105.282 94.4506 105.282C94.4506 105.282 93.695 104.526 92.6875 103.015C92.1838 102.259 91.4282 101.504 90.6726 100.496C89.917 99.4889 89.4132 98.2295 88.6576 96.9702C88.1539 95.459 87.1464 94.1996 86.6427 92.4365C86.1389 90.6734 85.3833 88.9103 85.1314 86.8954C85.1314 85.8879 84.8796 84.8804 84.8796 83.8729C84.6277 82.8655 84.6277 81.858 84.6277 80.8505C84.8796 78.8355 84.6277 76.5687 85.3833 74.5537C85.6352 73.5463 85.887 72.5388 86.1389 71.5313C86.3908 70.5238 86.8945 69.5163 87.1464 68.5088C87.3983 67.5014 87.902 66.4939 88.4057 65.7383C88.9095 64.7308 89.4132 63.9752 89.917 63.2196C90.9244 61.7083 91.9319 59.9452 93.1913 58.6859C94.1988 57.1747 95.4581 56.1672 96.7175 54.9078C97.725 53.9004 98.9843 52.8929 99.9918 52.1373C100.999 51.3817 102.007 50.8779 102.762 50.3742C104.022 48.863 104.777 48.6111 104.777 48.6111Z" fill="white"/>
17
+ <path d="M143.315 114.349C143.315 114.349 144.071 113.594 145.078 112.334C146.337 111.075 147.849 109.06 149.612 106.793C150.367 105.534 151.375 104.274 152.13 102.763C153.138 101.504 153.642 99.7408 154.649 98.2296C155.405 96.4665 156.16 94.9553 156.664 93.1922C156.916 92.4366 157.168 91.4291 157.42 90.4216C157.672 89.4141 157.672 88.6585 157.923 87.651C158.427 85.8879 158.427 83.873 158.679 82.1099C158.931 80.3468 158.679 78.3318 158.679 76.5687C158.427 74.8057 158.175 73.0426 157.923 71.5313C157.923 70.7757 157.672 70.0201 157.42 69.2645C157.168 68.5089 156.916 67.7533 156.916 66.9977C156.412 65.4864 156.16 64.2271 155.657 63.2196C155.153 62.2121 154.901 61.2047 154.649 60.1972C154.145 58.4341 153.642 57.6785 153.642 57.6785C153.642 57.6785 154.397 58.4341 155.405 59.9453C155.908 60.7009 156.664 61.4565 157.42 62.464C158.175 63.4715 158.679 64.7308 159.435 65.9902C159.938 67.5014 160.946 68.7608 161.45 70.5239C161.953 72.2869 162.709 74.05 162.961 76.065C162.961 77.0725 163.213 78.08 163.213 79.0874C163.465 80.0949 163.465 81.1024 163.465 82.1099C163.213 84.1249 163.465 86.3917 162.709 88.4066C162.457 89.4141 162.205 90.4216 161.953 91.4291C161.701 92.4366 161.198 93.4441 160.946 94.4515C160.694 95.459 160.19 96.4665 159.686 97.2221C159.183 98.2296 158.679 98.9852 158.175 99.7408C157.168 101.252 156.16 103.015 154.901 104.274C153.893 105.786 152.634 106.793 151.375 108.053C150.367 109.06 149.108 110.068 148.1 110.823C147.093 111.579 146.086 112.082 145.33 112.586C144.322 113.846 143.315 114.349 143.315 114.349Z" fill="white"/>
18
+ </svg>
bws_menu/images/join-icon.svg ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg width="202" height="202" viewBox="0 0 202 202" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M202 101C202 156.663 156.915 202 101 202C45.0848 202 0 156.663 0 101C0 45.3367 45.0848 0 101 0C156.663 0 202 45.0848 202 101Z" fill="white" fill-opacity="0.47"/>
3
+ <path d="M52.1856 111.848L31.5895 111.346L29.329 112.099L28.5754 112.601V113.103L35.1059 132.681L36.8641 137.951H47.4133L48.418 132.932L54.195 113.103V112.35L52.1856 111.848Z" fill="white"/>
4
+ <path d="M28.4621 113.342C22.669 120.898 13.3498 121.905 11.5867 131.224L11.083 138.277H36.7738L35.0107 132.987L28.4621 113.342Z" fill="#3F8ABC"/>
5
+ <path d="M47.3513 138.277H72.0346L71.5309 131.224C70.2715 124.928 63.2191 121.905 53.8999 113.594L48.3588 133.491L47.3513 138.277Z" fill="#3F8ABC"/>
6
+ <path d="M48.1077 102.511H46.0928H35.2623C32.9955 102.511 31.2324 104.022 31.2324 106.037V115.105C31.2324 117.12 32.9955 118.631 35.2623 118.631H48.1077C50.1227 118.631 51.6339 117.372 52.1377 115.86V115.105V114.853V105.786C52.1377 104.022 50.3746 102.511 48.1077 102.511Z" fill="#FFE2C2"/>
7
+ <path d="M60.7002 85.636C60.1965 85.3842 59.6927 85.8879 59.189 86.6435C59.189 86.3917 59.189 85.8879 59.189 85.636C59.189 74.3019 51.381 64.9827 41.8099 64.9827C32.2389 64.9827 24.4309 74.3019 24.4309 85.636C24.4309 85.8879 24.4309 86.3917 24.4309 86.6435C23.9271 85.8879 23.4234 85.636 22.9197 85.636C21.6603 86.1398 21.4084 89.1622 22.164 92.6884C22.9197 96.2146 24.4309 98.7333 25.6902 98.4814C26.194 98.2296 26.4458 97.9777 26.6977 97.2221C29.7202 105.786 35.2613 113.594 41.8099 113.594C48.3586 113.594 54.1516 105.786 56.9222 97.2221C57.174 97.9777 57.4259 98.4814 57.9296 98.4814C59.189 98.7333 60.7002 96.2146 61.4558 92.6884C62.2114 89.1622 61.9596 86.1398 60.7002 85.636Z" fill="#FFE2C2"/>
8
+ <path d="M30.9804 112.586C30.9804 112.586 31.2323 115.86 37.2771 117.623C43.0702 119.386 39.2921 123.416 39.2921 123.416L34.7584 124.424L31.9879 119.135L30.7285 115.105L30.9804 112.586Z" fill="white"/>
9
+ <path d="M52.3891 113.09C52.3891 113.09 52.1373 116.364 46.0924 118.127C40.2994 119.89 44.0774 123.92 44.0774 123.92L48.6111 124.928L51.3817 119.638L52.641 115.609L52.3891 113.09Z" fill="white"/>
10
+ <path d="M29.4691 112.082L23.1724 115.86L35.0103 132.988L29.4691 112.082Z" fill="white" fill-opacity="0.47"/>
11
+ <path d="M54.1524 111.831L60.701 116.868L48.3594 133.24L54.1524 111.831Z" fill="white" fill-opacity="0.47"/>
12
+ <path d="M40.5738 125.142L37.4438 137.951H46.3121L42.6605 125.142H40.5738Z" fill="#3F8ABC"/>
13
+ <path d="M39.2921 118.379L44.5814 118.631L45.337 122.409L44.3296 126.187H39.544L38.2847 122.661L39.2921 118.379Z" fill="#3F8ABC"/>
14
+ <path d="M23.1727 101.504C19.6465 95.7108 18.3872 89.4141 19.1428 84.3766C20.654 76.8205 23.6764 70.7757 28.462 66.7457C29.2176 61.7083 32.24 58.9377 38.033 58.9377C52.8934 59.9452 60.9532 68.7607 63.9757 82.8654C64.9832 87.9028 63.7238 94.1996 59.9458 99.9926C55.9158 107.801 58.4345 113.594 62.2126 121.653C52.6415 118.631 46.3448 115.357 48.3597 111.327C53.649 99.237 59.442 88.4066 51.8859 78.3318C49.3672 78.3318 38.033 86.3916 31.2325 80.5986C24.432 90.6734 29.9732 101.252 35.0106 112.838C37.0256 116.868 30.7288 120.142 21.1577 123.165C24.9358 115.105 27.2026 109.06 23.1727 101.504Z" fill="#D1AB86"/>
15
+ <path d="M167.997 111.579L145.581 111.327L143.062 112.082L142.307 112.334V113.09L149.359 132.484L151.374 137.773H162.96L163.967 132.988L170.012 113.09L170.264 112.334L167.997 111.579Z" fill="white"/>
16
+ <path d="M142.307 113.09C131.728 115.105 123.417 119.89 123.417 127.698L122.661 137.773H151.374L149.359 132.484L142.307 113.09Z" fill="#3F8ABC"/>
17
+ <path d="M162.96 137.773H190.666L189.911 127.698C189.911 120.394 181.095 115.357 170.013 113.09L163.968 132.988L162.96 137.773Z" fill="#3F8ABC"/>
18
+ <path d="M163.716 102.763H161.449H149.611C147.093 102.763 145.33 104.274 145.33 106.289V115.105C145.33 116.868 147.345 118.631 149.611 118.631H163.716C165.731 118.631 167.494 117.372 167.998 115.86V115.105V114.853V106.289C167.998 104.274 165.983 102.763 163.716 102.763Z" fill="#FFE2C2"/>
19
+ <path d="M177.066 86.6434C176.562 86.3915 175.806 86.8952 175.303 87.6508C175.303 87.399 175.303 86.8952 175.303 86.6434C175.303 75.5611 166.991 66.7456 156.664 66.7456C146.337 66.7456 138.026 75.5611 138.026 86.6434C138.026 86.8952 138.026 87.399 138.026 87.6508C137.522 86.8952 136.766 86.6434 136.263 86.6434C135.003 86.8952 134.5 90.1695 135.255 93.4439C136.011 96.97 137.774 99.2369 139.033 98.985C139.537 98.7331 139.789 98.4813 140.041 97.7256C143.315 106.037 149.36 113.342 156.412 113.342C163.465 113.342 169.761 105.785 172.784 97.7256C173.036 98.4813 173.288 98.985 173.791 98.985C175.051 99.2369 176.814 96.97 177.569 93.4439C178.829 90.1695 178.577 87.1471 177.066 86.6434Z" fill="#FFE2C2"/>
20
+ <path d="M145.077 112.082C145.077 112.082 145.329 115.357 151.878 117.12C158.175 118.883 153.893 122.913 153.893 122.913L148.855 123.92L146.085 118.631L144.825 114.601L145.077 112.082Z" fill="white"/>
21
+ <path d="M168.249 112.838C168.249 112.838 167.997 116.112 161.449 117.875C155.152 119.638 159.434 123.668 159.434 123.668L164.471 124.676L167.494 119.387L168.753 115.357L168.249 112.838Z" fill="white"/>
22
+ <path d="M143.315 110.823L137.522 113.342L149.36 132.484L143.315 110.823Z" fill="white" fill-opacity="0.47"/>
23
+ <path d="M170.265 111.075L175.806 113.846L163.969 132.988L170.265 111.075Z" fill="white" fill-opacity="0.47"/>
24
+ <path d="M155.908 125.431L152.885 137.773H161.449L157.923 125.431H155.908Z" fill="#3F8ABC"/>
25
+ <path d="M154.397 118.127H159.435L160.442 121.905L159.435 125.935H154.397L153.39 122.157L154.397 118.127Z" fill="#3F8ABC"/>
26
+ <path d="M168.25 70.7756C170.769 58.434 133.492 58.9377 138.026 87.651L140.293 97.7258C140.293 97.7258 154.649 89.4141 165.228 76.0649C169.258 77.828 171.273 81.1023 172.028 89.1622L173.036 97.7258L175.302 87.651C175.302 87.651 178.577 66.9976 168.25 70.7756Z" fill="#D1AB86"/>
27
+ <path d="M97.725 145.077L75.8123 110.068L87.1464 101.504L115.608 103.519L126.438 113.594L102.007 147.344C100.747 146.589 99.2362 145.833 97.725 145.077Z" fill="white"/>
28
+ <path d="M118.126 105.785L126.438 107.8C126.438 107.8 139.284 109.815 141.55 113.342C145.832 116.112 146.084 149.611 145.328 149.863C144.573 150.115 105.533 149.863 105.533 149.863C104.022 148.855 102.51 147.848 100.999 147.092L118.126 105.785Z" fill="#3F8ABC"/>
29
+ <path d="M83.621 105.785L75.5611 107.8C75.5611 107.8 62.7158 109.815 60.4489 113.342C56.1671 116.112 55.9153 149.611 56.6709 149.863C57.4265 150.115 107.801 149.863 107.801 149.863C109.312 148.855 104.022 148.351 101 147.092L83.621 105.785Z" fill="#3F8ABC"/>
30
+ <path d="M113.593 87.9028H88.1545V107.801H113.593V87.9028Z" fill="#FFE2C2"/>
31
+ <path d="M80.3469 75.0572C81.8581 90.4212 93.4442 101.755 101 101.755C108.808 101.755 119.639 89.9175 121.654 75.0572C123.417 60.4487 112.334 52.8926 101 52.8926C89.4142 53.1444 78.8357 60.4487 80.3469 75.0572Z" fill="#FFE2C2"/>
32
+ <path d="M122.157 59.9451C120.394 54.152 114.852 47.3516 107.8 45.5885C101.755 44.0772 91.1767 42.3141 81.8575 51.6333C80.5981 52.8927 78.0794 62.4638 78.3313 64.9825C79.3388 74.8054 80.3463 77.3241 80.3463 77.3241L82.865 78.3316C82.865 78.3316 81.6056 75.0573 83.3687 70.2717C83.8724 69.0124 84.3762 67.753 85.1318 66.7456C91.1767 70.0199 102.763 66.4937 109.815 67.2493C114.852 68.0049 115.86 73.5461 118.882 73.7979C119.134 76.3166 118.631 78.0797 118.631 78.0797L121.149 77.0722C121.149 77.0722 121.401 76.3166 121.905 73.7979C122.409 73.7979 122.912 73.7979 122.912 73.7979C122.912 73.7979 124.172 66.9974 122.157 59.9451Z" fill="#D1AB86"/>
33
+ <path d="M119.639 77.5759C118.631 80.5983 117.624 83.6208 119.135 84.1245C120.394 84.6282 123.165 82.3614 124.424 79.339C125.432 76.3165 125.432 73.2941 124.172 73.0422C122.661 72.2866 120.646 74.5534 119.639 77.5759Z" fill="#FFE2C2"/>
34
+ <path d="M82.1092 77.5759C83.1167 80.5983 84.1242 83.6208 82.613 84.1245C81.3536 84.6282 78.583 82.3614 77.3237 79.339C76.3162 76.3165 76.3162 73.2941 77.5755 73.0422C79.0868 72.2866 81.1017 74.5534 82.1092 77.5759Z" fill="#FFE2C2"/>
35
+ <path d="M94.4514 111.075L100.748 116.364L107.297 111.075L100.748 105.785L94.4514 111.075Z" fill="#3F8ABC"/>
36
+ <path d="M102.008 115.104L105.786 133.491L101.252 148.855L95.4595 133.491L99.7413 115.104H102.008Z" fill="#3F8ABC"/>
37
+ <path d="M114.601 97.7258L100.748 105.786L105.282 115.357L115.86 105.534C115.86 105.534 118.631 104.778 117.623 103.519C116.868 102.259 114.601 101 114.601 97.7258Z" fill="white"/>
38
+ <path d="M87.1477 97.7258L100.749 105.786L96.2151 115.357L85.6365 105.282C85.6365 105.282 82.8659 104.526 83.8734 103.267C84.8809 102.259 87.1477 101 87.1477 97.7258Z" fill="white"/>
39
+ <path d="M100.748 146.84L116.364 102.008L121.653 106.289L127.194 109.312L120.394 120.394H117.371L119.386 126.943L100.748 146.84Z" fill="white" fill-opacity="0.47"/>
40
+ <path d="M100.749 146.84L85.3847 102.008L80.0954 106.037L74.0505 109.312L81.3548 120.394H84.3772L82.3623 126.943L100.749 146.84Z" fill="white" fill-opacity="0.47"/>
41
+ </svg>
bws_menu/images/promote-icon.svg ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg width="202" height="202" viewBox="0 0 202 202" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0)">
3
+ <path d="M202.007 100.905C202.007 45.1232 156.787 -0.0964947 101.006 -0.0964918C45.2244 -0.0964889 0.00463195 45.1233 0.00463434 100.905C0.00463673 156.686 45.2244 201.906 101.006 201.906C156.787 201.906 202.007 156.686 202.007 100.905Z" fill="white" fill-opacity="0.47"/>
4
+ <path d="M51.8859 150.366C48.6116 158.678 54.6565 164.471 61.2051 164.975C67.7537 165.479 73.5467 157.922 71.2799 151.122C68.7612 144.321 68.2575 144.825 68.2575 144.825C68.2575 144.825 69.0131 143.818 70.0206 142.81C71.028 141.551 71.028 139.536 70.0206 138.277L68.2575 135.758C68.2575 135.758 69.2649 134.75 70.2724 133.491C71.2799 132.232 71.5318 130.217 70.2724 128.957L68.2575 126.691C68.2575 126.691 69.0131 125.683 69.7687 124.424C70.5243 123.164 70.2724 121.149 69.0131 119.89L66.7462 117.623L65.7388 105.785L50.1228 105.282C50.6265 105.03 55.4121 141.803 51.8859 150.366Z" fill="#3F8ABC"/>
5
+ <path d="M142.81 53.6483L170.768 44.3291V145.329L146.085 136.262L141.047 124.424L142.81 53.6483Z" fill="#3F8ABC"/>
6
+ <path d="M154.397 145.329L61.7089 108.052L61.457 83.6208L154.397 44.0771V145.329Z" fill="white"/>
7
+ <path d="M49.8701 95.7108C49.8701 103.519 43.5733 109.564 36.0172 109.564C28.2092 109.564 22.1643 103.267 22.1643 95.7108C22.1643 87.9028 28.4611 81.8579 36.0172 81.8579C43.5733 81.8579 49.8701 87.9028 49.8701 95.7108Z" fill="white"/>
8
+ <path d="M68.2573 80.5984H27.4543V110.823H68.2573V80.5984Z" fill="#3F8ABC"/>
9
+ <path d="M68.2573 101H27.4543V110.823H68.2573V101Z" fill="#3F8ABC"/>
10
+ <path d="M61.4563 104.526H50.374V107.045H61.4563V104.526Z" fill="#F2F2F2"/>
11
+ <path d="M38.5357 85.8876C38.5357 87.147 37.5282 88.4063 36.017 88.4063C34.7576 88.4063 33.4983 87.3988 33.4983 85.8876C33.4983 84.6282 34.5058 83.3689 36.017 83.3689C37.2763 83.3689 38.5357 84.3764 38.5357 85.8876Z" fill="white"/>
12
+ <path d="M60.1965 164.975C65.2339 141.299 59.9446 129.21 52.3885 122.913C53.1441 133.491 53.8997 146.085 52.1366 150.367C48.8623 158.175 53.8997 163.716 60.1965 164.975Z" fill="white"/>
13
+ <path d="M154.396 139.284L160.441 141.551V47.8552L154.396 49.8702V139.284Z" fill="#3F8ABC"/>
14
+ </g>
15
+ <defs>
16
+ <clipPath id="clip0">
17
+ <rect width="202" height="202" fill="white"/>
18
+ </clipPath>
19
+ </defs>
20
+ </svg>
bws_menu/product_list.php CHANGED
@@ -22,7 +22,7 @@ $bws_plugins = array(
22
  'name' => 'Bike Rental',
23
  'description' => __( 'Give a birth for your bike rental and booking WordPress website.', 'bestwebsoft' ),
24
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/bike-rental/?k=04387cfc31fc8b9553e4741392762231&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
25
- 'settings' => 'edit.php?post_type=bws_bike&page=bike-rental-settings',
26
  'pro_version' => 'bike-rental-pro/bike-rental-pro.php',
27
  'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/bike-rental/buy/?k=9b3222b005340035eaead38a7a495a0d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
28
  'pro_settings' => 'edit.php?post_type=bws_bike&page=bkrntl_bws_bike_settings',
22
  'name' => 'Bike Rental',
23
  'description' => __( 'Give a birth for your bike rental and booking WordPress website.', 'bestwebsoft' ),
24
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/bike-rental/?k=04387cfc31fc8b9553e4741392762231&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
25
+ 'settings' => 'edit.php?post_type=bws_bike&page=bkng_general_settings',
26
  'pro_version' => 'bike-rental-pro/bike-rental-pro.php',
27
  'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/bike-rental/buy/?k=9b3222b005340035eaead38a7a495a0d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
28
  'pro_settings' => 'edit.php?post_type=bws_bike&page=bkrntl_bws_bike_settings',
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.64
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv3 or later
12
  */
@@ -782,7 +782,12 @@ if ( ! function_exists( 'gglcptch_check' ) ) {
782
  );
783
  } else {
784
  $response = gglcptch_get_response( $gglcptch_options['private_key'], $gglcptch_remote_addr );
785
- if ( isset( $response['success'] ) && !! $response['success'] ) {
 
 
 
 
 
786
  if ( 'v3' == $gglcptch_options['recaptcha_version'] && $response['score'] < $gglcptch_options['score_v3'] ) {
787
  $result = array(
788
  'response' => false,
6
  Author: BestWebSoft
7
  Text Domain: google-captcha
8
  Domain Path: /languages
9
+ Version: 1.65
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv3 or later
12
  */
782
  );
783
  } else {
784
  $response = gglcptch_get_response( $gglcptch_options['private_key'], $gglcptch_remote_addr );
785
+ if ( empty( $response ) ) {
786
+ $result = array(
787
+ 'response' => false,
788
+ 'reason' => $debug ? __( 'Response is empty', 'google-captcha' ) : 'VERIFICATION_FAILED'
789
+ );
790
+ } elseif ( isset( $response['success'] ) && !! $response['success'] ) {
791
  if ( 'v3' == $gglcptch_options['recaptcha_version'] && $response['score'] < $gglcptch_options['score_v3'] ) {
792
  $result = array(
793
  'response' => false,
includes/class-gglcptch-settings-tabs.php CHANGED
@@ -72,6 +72,7 @@ if ( ! class_exists( 'Gglcptch_Settings_Tabs' ) ) {
72
  add_action( get_parent_class( $this ) . '_display_custom_messages', array( $this, 'display_custom_messages' ) );
73
  add_action( get_parent_class( $this ) . '_additional_misc_options', array( $this, 'additional_misc_options' ) );
74
  add_action( get_parent_class( $this ) . '_display_metabox', array( $this, 'display_metabox' ) );
 
75
  }
76
 
77
  /**
@@ -390,6 +391,14 @@ if ( ! class_exists( 'Gglcptch_Settings_Tabs' ) ) {
390
  do_action( 'gglcptch_settings_page_misc_action', $this->options );
391
  }
392
 
 
 
 
 
 
 
 
 
393
  /**
394
  * Display custom metabox
395
  * @access public
72
  add_action( get_parent_class( $this ) . '_display_custom_messages', array( $this, 'display_custom_messages' ) );
73
  add_action( get_parent_class( $this ) . '_additional_misc_options', array( $this, 'additional_misc_options' ) );
74
  add_action( get_parent_class( $this ) . '_display_metabox', array( $this, 'display_metabox' ) );
75
+ add_action( get_parent_class( $this ) .'_information_postbox_bottom', array( $this, 'information_postbox_bottom' ) );
76
  }
77
 
78
  /**
391
  do_action( 'gglcptch_settings_page_misc_action', $this->options );
392
  }
393
 
394
+ public function information_postbox_bottom() { ?>
395
+ <div class="misc-pub-section">
396
+ <?php printf( __( 'ReCaptcha plugin is fully compliant with GDPR. %s Learn more %s' , 'google-captcha' ),
397
+ '<a target="_blank" href="https://support.bestwebsoft.com/hc/en-us/articles/4406398670097">',
398
+ '</a>' ); ?>
399
+ </div>
400
+ <?php }
401
+
402
  /**
403
  * Display custom metabox
404
  * @access public
includes/pro_banners.php CHANGED
@@ -74,7 +74,8 @@ if ( ! function_exists( 'gglcptch_supported_plugins_banner' ) ) {
74
  'ultimate_member_login' => array( 'form_name' => __( 'Ultimate Member Login form', 'google-captcha' ) ),
75
  'ultimate_member_register' => array( 'form_name' => __( 'Ultimate Member Registration form', 'google-captcha' ) ),
76
  'ultimate_member_profile' => array( 'form_name' => __( 'Ultimate Member Profile form', 'google-captcha' ) ),
77
- 'caldera_forms' => array( 'form_name' => 'Caldera Forms' )
 
78
  );
79
  $pro_sections = array(
80
  'external' => array(
@@ -88,7 +89,8 @@ if ( ! function_exists( 'gglcptch_supported_plugins_banner' ) ) {
88
  'mailchimp',
89
  'ninja_form',
90
  'wpforms',
91
- 'caldera_forms'
 
92
  )
93
  ),
94
  'woocommerce' => array(
74
  'ultimate_member_login' => array( 'form_name' => __( 'Ultimate Member Login form', 'google-captcha' ) ),
75
  'ultimate_member_register' => array( 'form_name' => __( 'Ultimate Member Registration form', 'google-captcha' ) ),
76
  'ultimate_member_profile' => array( 'form_name' => __( 'Ultimate Member Profile form', 'google-captcha' ) ),
77
+ 'caldera_forms' => array( 'form_name' => 'Caldera Forms' ),
78
+ 'elementor_contact_form' => array( 'form_name' => __( 'Elementor Contact Form', 'google-captcha' ) ),
79
  );
80
  $pro_sections = array(
81
  'external' => array(
89
  'mailchimp',
90
  'ninja_form',
91
  'wpforms',
92
+ 'caldera_forms',
93
+ 'elementor_contact_form'
94
  )
95
  ),
96
  'woocommerce' => array(
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: reCaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-07-30 15:38+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
@@ -20,11 +20,11 @@ msgstr ""
20
  "X-Poedit-SearchPathExcluded-0: bws_menu\n"
21
 
22
  #: google-captcha.php:39 google-captcha.php:49 google-captcha.php:520
23
- #: includes/class-gglcptch-settings-tabs.php:146
24
  msgid "reCaptcha Settings"
25
  msgstr "Настройки reCaptcha"
26
 
27
- #: google-captcha.php:50 google-captcha.php:1109 google-captcha.php:1122
28
  #: includes/class-gglcptch-settings-tabs.php:22
29
  msgid "Settings"
30
  msgstr "Настройки"
@@ -101,39 +101,43 @@ msgstr "и вставить их на"
101
  msgid "plugin setting page"
102
  msgstr "странице настроек плагина"
103
 
104
- #: google-captcha.php:884 includes/forms.php:358
 
 
 
 
105
  msgid "Error"
106
  msgstr "Ошибка"
107
 
108
- #: google-captcha.php:1009
109
  msgid "User response is missing."
110
  msgstr "Ответ пользователя отсутствует."
111
 
112
- #: google-captcha.php:1011
113
  msgid "Secret Key is missing."
114
  msgstr "Секретный ключ отсутствует."
115
 
116
- #: google-captcha.php:1014
117
  msgid "Secret Key is invalid."
118
  msgstr "Некорректный секретный ключ."
119
 
120
- #: google-captcha.php:1015
121
  msgid "Check your domain configurations"
122
  msgstr "Проверьте настройки вашего домена"
123
 
124
- #: google-captcha.php:1016
125
  msgid "and enter it again"
126
  msgstr "и введите его снова"
127
 
128
- #: google-captcha.php:1018
129
  msgid "User response is invalid"
130
  msgstr "Некорректный ответ пользователя"
131
 
132
- #: google-captcha.php:1019
133
  msgid "You have entered an incorrect reCAPTCHA value."
134
  msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
135
 
136
- #: google-captcha.php:1020
137
  msgid ""
138
  "More than one reCAPTCHA has been found in the current form. Please remove "
139
  "all unnecessary reCAPTCHA fields to make it work properly."
@@ -141,32 +145,32 @@ msgstr ""
141
  "В текущей форме найдено более одного блока reCAPTCHA. Пожалуйста, удалите "
142
  "все лишние блоки reCAPTCHA для дальнейшей корректной работы."
143
 
144
- #: google-captcha.php:1022
145
  msgid "reCaptcha v3 test failed"
146
  msgstr "Тест reCaptcha v3 не пройден"
147
 
148
- #: google-captcha.php:1060
149
  msgid "Please submit \"Test verification\""
150
  msgstr "Пожалуйста, нажмите кнопку \"Тестирование проверки\"."
151
 
152
- #: google-captcha.php:1062
153
  msgid "Please complete the captcha and submit \"Test verification\""
154
  msgstr ""
155
  "Пожалуйста, заполните капчу и нажмите кнопку \"Тестирование проверки\"."
156
 
157
- #: google-captcha.php:1068
158
  msgid "Test verification"
159
  msgstr "Тестирование проверки"
160
 
161
- #: google-captcha.php:1089
162
  msgid "The verification is successfully completed."
163
  msgstr "Тестирование проверки успешно завершено."
164
 
165
- #: google-captcha.php:1124
166
  msgid "FAQ"
167
  msgstr "FAQ"
168
 
169
- #: google-captcha.php:1125
170
  msgid "Support"
171
  msgstr "Поддержка"
172
 
@@ -280,34 +284,34 @@ msgstr "Версия"
280
  msgid "Invisible"
281
  msgstr "Невидимая"
282
 
283
- #: includes/class-gglcptch-settings-tabs.php:89
284
  msgid "Enter site key"
285
  msgstr "Введите ключ сайта"
286
 
287
- #: includes/class-gglcptch-settings-tabs.php:90
288
- #: includes/class-gglcptch-settings-tabs.php:97
289
  msgid "WARNING: The captcha will not be displayed until you fill key fields."
290
  msgstr ""
291
  "ПРЕДУПРЕЖДЕНИЕ: Google Captcha не будет отображаться пока вы не заполните "
292
  "поля с ключами."
293
 
294
- #: includes/class-gglcptch-settings-tabs.php:96
295
  msgid "Enter secret key"
296
  msgstr "Введите секретный ключ"
297
 
298
- #: includes/class-gglcptch-settings-tabs.php:134
299
  msgid "Settings saved."
300
  msgstr "Настройки сохранены."
301
 
302
- #: includes/class-gglcptch-settings-tabs.php:149
303
  msgid "General"
304
  msgstr "Общее"
305
 
306
- #: includes/class-gglcptch-settings-tabs.php:152
307
  msgid "reCaptcha Version"
308
  msgstr "Версия reCaptcha"
309
 
310
- #: includes/class-gglcptch-settings-tabs.php:166
311
  #, php-format
312
  msgid ""
313
  "Register your domain name with Google reCaptcha service and add the keys to "
@@ -316,7 +320,7 @@ msgstr ""
316
  "Зарегистрируйте свой сайт с помощью Google, чтобы получить требуемые API "
317
  "ключи и введите их ниже. %s Получить API ключи. %s"
318
 
319
- #: includes/class-gglcptch-settings-tabs.php:170
320
  #, php-format
321
  msgid ""
322
  "If you do not want to create API keys use %s Captcha by BestWebSoft %s "
@@ -325,87 +329,87 @@ msgstr ""
325
  "Если вы не хотите создавать API ключи используйте %s Captcha by BestWebSoft "
326
  "%s плагин."
327
 
328
- #: includes/class-gglcptch-settings-tabs.php:188
329
  msgid "Test reCaptcha"
330
  msgstr "Тестировать reCaptcha"
331
 
332
- #: includes/class-gglcptch-settings-tabs.php:194
333
  msgid "Enable reCaptcha for"
334
  msgstr "Включить reCaptcha для"
335
 
336
- #: includes/class-gglcptch-settings-tabs.php:241
337
- #: includes/class-gglcptch-settings-tabs.php:269
338
- #: includes/class-gglcptch-settings-tabs.php:296 includes/pro_banners.php:20
339
  msgid "Close"
340
  msgstr "Закрыть"
341
 
342
- #: includes/class-gglcptch-settings-tabs.php:252
343
  msgid "reCaptcha Domain"
344
  msgstr "Домен reCaptcha"
345
 
346
- #: includes/class-gglcptch-settings-tabs.php:260
347
  msgid ""
348
  "If Google is not accessible or blocked in your country select other one."
349
  msgstr ""
350
  "Если Google недоступен или заблокирован в вашей стране выберите другой пункт."
351
 
352
- #: includes/class-gglcptch-settings-tabs.php:278
353
  msgid "Appearance"
354
  msgstr "Внешний Вид"
355
 
356
- #: includes/class-gglcptch-settings-tabs.php:282
357
  msgid "Theme"
358
  msgstr "Тема"
359
 
360
- #: includes/class-gglcptch-settings-tabs.php:286
361
  msgid "Light"
362
  msgstr "Светлая"
363
 
364
- #: includes/class-gglcptch-settings-tabs.php:287
365
  msgid "Dark"
366
  msgstr "Тёмная"
367
 
368
- #: includes/class-gglcptch-settings-tabs.php:307
369
  msgid "Hide reCaptcha Badge"
370
  msgstr "Спрятать значок reCaptcha"
371
 
372
- #: includes/class-gglcptch-settings-tabs.php:312
373
  msgid "Enable to hide reCaptcha Badge for Version 3 and Invisible reCaptcha."
374
  msgstr ""
375
  "Включите, чтобы скрыть значок reCaptcha для версии 3 и Invisible reCaptcha."
376
 
377
- #: includes/class-gglcptch-settings-tabs.php:318
378
  msgid "Additional Protective Measures"
379
  msgstr "Дополнительные Меры Защиты"
380
 
381
- #: includes/class-gglcptch-settings-tabs.php:322
382
  msgid "Score"
383
  msgstr "Количество очков"
384
 
385
- #: includes/class-gglcptch-settings-tabs.php:327
386
  #, php-format
387
  msgid "Set the minimum verification score from %s to %s (default is %s)."
388
  msgstr ""
389
  "Укажите пороговое значение, при котором проверка будет пройдена от %s до %s "
390
  "(по умолчанию %s)."
391
 
392
- #: includes/class-gglcptch-settings-tabs.php:331
393
  msgid "Hide reCaptcha for"
394
  msgstr "Спрятать reCaptcha для"
395
 
396
- #: includes/class-gglcptch-settings-tabs.php:349
397
  msgid "Allow List Notification"
398
  msgstr "Уведомление о нахождении в белом списке"
399
 
400
- #: includes/class-gglcptch-settings-tabs.php:352
401
  msgid "This message will be displayed instead of the reCaptcha."
402
  msgstr "Это сообщение будет отображено вместо поля reCaptcha."
403
 
404
- #: includes/class-gglcptch-settings-tabs.php:356
405
  msgid "Advanced Protection"
406
  msgstr "Усиленная защита"
407
 
408
- #: includes/class-gglcptch-settings-tabs.php:360
409
  msgid ""
410
  "Enable to keep submit button disabled until reCaptcha is loaded (do not use "
411
  "this option if you see \"Failed to load Google reCaptcha\" message)."
@@ -414,11 +418,11 @@ msgstr ""
414
  "не будет загружена reCaptcha (Не используйте эту опцию, если вы видите "
415
  "сообщение \"Не удалось загрузить Google reCaptcha\")."
416
 
417
- #: includes/class-gglcptch-settings-tabs.php:366
418
  msgid "Disabled Submit Button"
419
  msgstr "Отключенная кнопка подтверждения"
420
 
421
- #: includes/class-gglcptch-settings-tabs.php:371
422
  msgid ""
423
  "Enable to keep submit button disabled until user passes the reCaptcha test "
424
  "(for Version 2)."
@@ -426,7 +430,7 @@ msgstr ""
426
  "Включите, чтобы кнопка отправки оставалась отключенной до тех пор, пока "
427
  "пользователь не пройдет тест reCaptcha (для версии 2)."
428
 
429
- #: includes/class-gglcptch-settings-tabs.php:385
430
  msgid ""
431
  "reCaptcha version was changed. Please submit \"Test reCaptcha\" and "
432
  "regenerate Site and Secret keys if necessary."
@@ -434,11 +438,16 @@ msgstr ""
434
  "Версия reCaptcha была изменена. Пожалуйста, нажмите \"Тестирование reCaptcha"
435
  "\" и при необходимости обновите секретный ключ и ключ сайта."
436
 
437
- #: includes/class-gglcptch-settings-tabs.php:402
 
 
 
 
 
438
  msgid "reCaptcha Shortcode"
439
  msgstr "Шорткод reCaptcha"
440
 
441
- #: includes/class-gglcptch-settings-tabs.php:405
442
  msgid "Add reCaptcha to your posts or pages using the following shortcode:"
443
  msgstr ""
444
  "Добавьте reCaptcha в свои записи или страницы, используя следующий шорткод:"
@@ -467,7 +476,7 @@ msgstr "Testimonials"
467
  msgid "WordPress default"
468
  msgstr "Стандартных форм WordPress"
469
 
470
- #: includes/forms.php:47 includes/pro_banners.php:81
471
  msgid "External Plugins"
472
  msgstr "Внешние плагины"
473
 
@@ -611,15 +620,19 @@ msgstr "Форма регистрации плагина Ultimate Member"
611
  msgid "Ultimate Member Profile form"
612
  msgstr "Форма профиля плагина Ultimate Member"
613
 
614
- #: includes/pro_banners.php:183
 
 
 
 
615
  msgid "Language"
616
  msgstr "Язык"
617
 
618
- #: includes/pro_banners.php:191
619
  msgid "Multilanguage"
620
  msgstr "Multilanguage"
621
 
622
- #: includes/pro_banners.php:194
623
  msgid ""
624
  "Enable to switch language automatically on multilingual website using the "
625
  "Multilanguage plugin."
@@ -627,15 +640,15 @@ msgstr ""
627
  "Включить, чтобы переключить язык автоматически на многоязычном сайте, "
628
  "используя плагин Multilanguage."
629
 
630
- #: includes/pro_banners.php:206
631
  msgid "Size"
632
  msgstr "Размер"
633
 
634
- #: includes/pro_banners.php:210
635
  msgid "Normal"
636
  msgstr "Нормальный"
637
 
638
- #: includes/pro_banners.php:211
639
  msgid "Compact"
640
  msgstr "Компактный"
641
 
2
  msgstr ""
3
  "Project-Id-Version: reCaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-09-23 15:06+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
20
  "X-Poedit-SearchPathExcluded-0: bws_menu\n"
21
 
22
  #: google-captcha.php:39 google-captcha.php:49 google-captcha.php:520
23
+ #: includes/class-gglcptch-settings-tabs.php:147
24
  msgid "reCaptcha Settings"
25
  msgstr "Настройки reCaptcha"
26
 
27
+ #: google-captcha.php:50 google-captcha.php:1114 google-captcha.php:1127
28
  #: includes/class-gglcptch-settings-tabs.php:22
29
  msgid "Settings"
30
  msgstr "Настройки"
101
  msgid "plugin setting page"
102
  msgstr "странице настроек плагина"
103
 
104
+ #: google-captcha.php:788
105
+ msgid "Response is empty"
106
+ msgstr "Ответ отсутствует"
107
+
108
+ #: google-captcha.php:889 includes/forms.php:358
109
  msgid "Error"
110
  msgstr "Ошибка"
111
 
112
+ #: google-captcha.php:1014
113
  msgid "User response is missing."
114
  msgstr "Ответ пользователя отсутствует."
115
 
116
+ #: google-captcha.php:1016
117
  msgid "Secret Key is missing."
118
  msgstr "Секретный ключ отсутствует."
119
 
120
+ #: google-captcha.php:1019
121
  msgid "Secret Key is invalid."
122
  msgstr "Некорректный секретный ключ."
123
 
124
+ #: google-captcha.php:1020
125
  msgid "Check your domain configurations"
126
  msgstr "Проверьте настройки вашего домена"
127
 
128
+ #: google-captcha.php:1021
129
  msgid "and enter it again"
130
  msgstr "и введите его снова"
131
 
132
+ #: google-captcha.php:1023
133
  msgid "User response is invalid"
134
  msgstr "Некорректный ответ пользователя"
135
 
136
+ #: google-captcha.php:1024
137
  msgid "You have entered an incorrect reCAPTCHA value."
138
  msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
139
 
140
+ #: google-captcha.php:1025
141
  msgid ""
142
  "More than one reCAPTCHA has been found in the current form. Please remove "
143
  "all unnecessary reCAPTCHA fields to make it work properly."
145
  "В текущей форме найдено более одного блока reCAPTCHA. Пожалуйста, удалите "
146
  "все лишние блоки reCAPTCHA для дальнейшей корректной работы."
147
 
148
+ #: google-captcha.php:1027
149
  msgid "reCaptcha v3 test failed"
150
  msgstr "Тест reCaptcha v3 не пройден"
151
 
152
+ #: google-captcha.php:1065
153
  msgid "Please submit \"Test verification\""
154
  msgstr "Пожалуйста, нажмите кнопку \"Тестирование проверки\"."
155
 
156
+ #: google-captcha.php:1067
157
  msgid "Please complete the captcha and submit \"Test verification\""
158
  msgstr ""
159
  "Пожалуйста, заполните капчу и нажмите кнопку \"Тестирование проверки\"."
160
 
161
+ #: google-captcha.php:1073
162
  msgid "Test verification"
163
  msgstr "Тестирование проверки"
164
 
165
+ #: google-captcha.php:1094
166
  msgid "The verification is successfully completed."
167
  msgstr "Тестирование проверки успешно завершено."
168
 
169
+ #: google-captcha.php:1129
170
  msgid "FAQ"
171
  msgstr "FAQ"
172
 
173
+ #: google-captcha.php:1130
174
  msgid "Support"
175
  msgstr "Поддержка"
176
 
284
  msgid "Invisible"
285
  msgstr "Невидимая"
286
 
287
+ #: includes/class-gglcptch-settings-tabs.php:90
288
  msgid "Enter site key"
289
  msgstr "Введите ключ сайта"
290
 
291
+ #: includes/class-gglcptch-settings-tabs.php:91
292
+ #: includes/class-gglcptch-settings-tabs.php:98
293
  msgid "WARNING: The captcha will not be displayed until you fill key fields."
294
  msgstr ""
295
  "ПРЕДУПРЕЖДЕНИЕ: Google Captcha не будет отображаться пока вы не заполните "
296
  "поля с ключами."
297
 
298
+ #: includes/class-gglcptch-settings-tabs.php:97
299
  msgid "Enter secret key"
300
  msgstr "Введите секретный ключ"
301
 
302
+ #: includes/class-gglcptch-settings-tabs.php:135
303
  msgid "Settings saved."
304
  msgstr "Настройки сохранены."
305
 
306
+ #: includes/class-gglcptch-settings-tabs.php:150
307
  msgid "General"
308
  msgstr "Общее"
309
 
310
+ #: includes/class-gglcptch-settings-tabs.php:153
311
  msgid "reCaptcha Version"
312
  msgstr "Версия reCaptcha"
313
 
314
+ #: includes/class-gglcptch-settings-tabs.php:167
315
  #, php-format
316
  msgid ""
317
  "Register your domain name with Google reCaptcha service and add the keys to "
320
  "Зарегистрируйте свой сайт с помощью Google, чтобы получить требуемые API "
321
  "ключи и введите их ниже. %s Получить API ключи. %s"
322
 
323
+ #: includes/class-gglcptch-settings-tabs.php:171
324
  #, php-format
325
  msgid ""
326
  "If you do not want to create API keys use %s Captcha by BestWebSoft %s "
329
  "Если вы не хотите создавать API ключи используйте %s Captcha by BestWebSoft "
330
  "%s плагин."
331
 
332
+ #: includes/class-gglcptch-settings-tabs.php:189
333
  msgid "Test reCaptcha"
334
  msgstr "Тестировать reCaptcha"
335
 
336
+ #: includes/class-gglcptch-settings-tabs.php:195
337
  msgid "Enable reCaptcha for"
338
  msgstr "Включить reCaptcha для"
339
 
340
+ #: includes/class-gglcptch-settings-tabs.php:242
341
+ #: includes/class-gglcptch-settings-tabs.php:270
342
+ #: includes/class-gglcptch-settings-tabs.php:297 includes/pro_banners.php:20
343
  msgid "Close"
344
  msgstr "Закрыть"
345
 
346
+ #: includes/class-gglcptch-settings-tabs.php:253
347
  msgid "reCaptcha Domain"
348
  msgstr "Домен reCaptcha"
349
 
350
+ #: includes/class-gglcptch-settings-tabs.php:261
351
  msgid ""
352
  "If Google is not accessible or blocked in your country select other one."
353
  msgstr ""
354
  "Если Google недоступен или заблокирован в вашей стране выберите другой пункт."
355
 
356
+ #: includes/class-gglcptch-settings-tabs.php:279
357
  msgid "Appearance"
358
  msgstr "Внешний Вид"
359
 
360
+ #: includes/class-gglcptch-settings-tabs.php:283
361
  msgid "Theme"
362
  msgstr "Тема"
363
 
364
+ #: includes/class-gglcptch-settings-tabs.php:287
365
  msgid "Light"
366
  msgstr "Светлая"
367
 
368
+ #: includes/class-gglcptch-settings-tabs.php:288
369
  msgid "Dark"
370
  msgstr "Тёмная"
371
 
372
+ #: includes/class-gglcptch-settings-tabs.php:308
373
  msgid "Hide reCaptcha Badge"
374
  msgstr "Спрятать значок reCaptcha"
375
 
376
+ #: includes/class-gglcptch-settings-tabs.php:313
377
  msgid "Enable to hide reCaptcha Badge for Version 3 and Invisible reCaptcha."
378
  msgstr ""
379
  "Включите, чтобы скрыть значок reCaptcha для версии 3 и Invisible reCaptcha."
380
 
381
+ #: includes/class-gglcptch-settings-tabs.php:319
382
  msgid "Additional Protective Measures"
383
  msgstr "Дополнительные Меры Защиты"
384
 
385
+ #: includes/class-gglcptch-settings-tabs.php:323
386
  msgid "Score"
387
  msgstr "Количество очков"
388
 
389
+ #: includes/class-gglcptch-settings-tabs.php:328
390
  #, php-format
391
  msgid "Set the minimum verification score from %s to %s (default is %s)."
392
  msgstr ""
393
  "Укажите пороговое значение, при котором проверка будет пройдена от %s до %s "
394
  "(по умолчанию %s)."
395
 
396
+ #: includes/class-gglcptch-settings-tabs.php:332
397
  msgid "Hide reCaptcha for"
398
  msgstr "Спрятать reCaptcha для"
399
 
400
+ #: includes/class-gglcptch-settings-tabs.php:350
401
  msgid "Allow List Notification"
402
  msgstr "Уведомление о нахождении в белом списке"
403
 
404
+ #: includes/class-gglcptch-settings-tabs.php:353
405
  msgid "This message will be displayed instead of the reCaptcha."
406
  msgstr "Это сообщение будет отображено вместо поля reCaptcha."
407
 
408
+ #: includes/class-gglcptch-settings-tabs.php:357
409
  msgid "Advanced Protection"
410
  msgstr "Усиленная защита"
411
 
412
+ #: includes/class-gglcptch-settings-tabs.php:361
413
  msgid ""
414
  "Enable to keep submit button disabled until reCaptcha is loaded (do not use "
415
  "this option if you see \"Failed to load Google reCaptcha\" message)."
418
  "не будет загружена reCaptcha (Не используйте эту опцию, если вы видите "
419
  "сообщение \"Не удалось загрузить Google reCaptcha\")."
420
 
421
+ #: includes/class-gglcptch-settings-tabs.php:367
422
  msgid "Disabled Submit Button"
423
  msgstr "Отключенная кнопка подтверждения"
424
 
425
+ #: includes/class-gglcptch-settings-tabs.php:372
426
  msgid ""
427
  "Enable to keep submit button disabled until user passes the reCaptcha test "
428
  "(for Version 2)."
430
  "Включите, чтобы кнопка отправки оставалась отключенной до тех пор, пока "
431
  "пользователь не пройдет тест reCaptcha (для версии 2)."
432
 
433
+ #: includes/class-gglcptch-settings-tabs.php:386
434
  msgid ""
435
  "reCaptcha version was changed. Please submit \"Test reCaptcha\" and "
436
  "regenerate Site and Secret keys if necessary."
438
  "Версия reCaptcha была изменена. Пожалуйста, нажмите \"Тестирование reCaptcha"
439
  "\" и при необходимости обновите секретный ключ и ключ сайта."
440
 
441
+ #: includes/class-gglcptch-settings-tabs.php:396
442
+ #, php-format
443
+ msgid "ReCaptcha plugin is fully compliant with GDPR. %s Learn more %s"
444
+ msgstr "Плагин ReCaptcha полностью соответствует GDPR. %s Узнать больше %s"
445
+
446
+ #: includes/class-gglcptch-settings-tabs.php:411
447
  msgid "reCaptcha Shortcode"
448
  msgstr "Шорткод reCaptcha"
449
 
450
+ #: includes/class-gglcptch-settings-tabs.php:414
451
  msgid "Add reCaptcha to your posts or pages using the following shortcode:"
452
  msgstr ""
453
  "Добавьте reCaptcha в свои записи или страницы, используя следующий шорткод:"
476
  msgid "WordPress default"
477
  msgstr "Стандартных форм WordPress"
478
 
479
+ #: includes/forms.php:47 includes/pro_banners.php:82
480
  msgid "External Plugins"
481
  msgstr "Внешние плагины"
482
 
620
  msgid "Ultimate Member Profile form"
621
  msgstr "Форма профиля плагина Ultimate Member"
622
 
623
+ #: includes/pro_banners.php:78
624
+ msgid "Elementor Contact Form"
625
+ msgstr "Контактная форма плагина Elementor"
626
+
627
+ #: includes/pro_banners.php:185
628
  msgid "Language"
629
  msgstr "Язык"
630
 
631
+ #: includes/pro_banners.php:193
632
  msgid "Multilanguage"
633
  msgstr "Multilanguage"
634
 
635
+ #: includes/pro_banners.php:196
636
  msgid ""
637
  "Enable to switch language automatically on multilingual website using the "
638
  "Multilanguage plugin."
640
  "Включить, чтобы переключить язык автоматически на многоязычном сайте, "
641
  "используя плагин Multilanguage."
642
 
643
+ #: includes/pro_banners.php:208
644
  msgid "Size"
645
  msgstr "Размер"
646
 
647
+ #: includes/pro_banners.php:212
648
  msgid "Normal"
649
  msgstr "Нормальный"
650
 
651
+ #: includes/pro_banners.php:213
652
  msgid "Compact"
653
  msgstr "Компактный"
654
 
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: reCaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-07-30 15:37+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
@@ -20,11 +20,11 @@ msgstr ""
20
  "X-Poedit-SearchPathExcluded-0: bws_menu\n"
21
 
22
  #: google-captcha.php:39 google-captcha.php:49 google-captcha.php:520
23
- #: includes/class-gglcptch-settings-tabs.php:146
24
  msgid "reCaptcha Settings"
25
  msgstr "Налаштування reCaptcha"
26
 
27
- #: google-captcha.php:50 google-captcha.php:1109 google-captcha.php:1122
28
  #: includes/class-gglcptch-settings-tabs.php:22
29
  msgid "Settings"
30
  msgstr "Налаштування"
@@ -101,39 +101,43 @@ msgstr "і вставте їх у"
101
  msgid "plugin setting page"
102
  msgstr "сторінку налаштувань плагіну"
103
 
104
- #: google-captcha.php:884 includes/forms.php:358
 
 
 
 
105
  msgid "Error"
106
  msgstr "Помилка"
107
 
108
- #: google-captcha.php:1009
109
  msgid "User response is missing."
110
  msgstr "Відповідь користувача відсутня."
111
 
112
- #: google-captcha.php:1011
113
  msgid "Secret Key is missing."
114
  msgstr "Секретний ключ відсутній."
115
 
116
- #: google-captcha.php:1014
117
  msgid "Secret Key is invalid."
118
  msgstr "Секретний ключ некоректний."
119
 
120
- #: google-captcha.php:1015
121
  msgid "Check your domain configurations"
122
  msgstr "Перевірте конфігурацію вашого домену"
123
 
124
- #: google-captcha.php:1016
125
  msgid "and enter it again"
126
  msgstr "і введіть його знову"
127
 
128
- #: google-captcha.php:1018
129
  msgid "User response is invalid"
130
  msgstr "Некоректна відповідь користувача"
131
 
132
- #: google-captcha.php:1019
133
  msgid "You have entered an incorrect reCAPTCHA value."
134
  msgstr "Ви ввели невірне значення reCAPTCHA."
135
 
136
- #: google-captcha.php:1020
137
  msgid ""
138
  "More than one reCAPTCHA has been found in the current form. Please remove "
139
  "all unnecessary reCAPTCHA fields to make it work properly."
@@ -141,32 +145,32 @@ msgstr ""
141
  "В поточній формі знайдено більш ніж один блок reCAPTCHA. Будь-ласка видаліть "
142
  "усі зайві блоки reCAPTCHA для коректної подальшої роботи."
143
 
144
- #: google-captcha.php:1022
145
  msgid "reCaptcha v3 test failed"
146
  msgstr "Тест reCaptcha v3 не пройдений"
147
 
148
- #: google-captcha.php:1060
149
  msgid "Please submit \"Test verification\""
150
  msgstr "Будь ласка, натисніть кнопку \"Тестування перевірки\""
151
 
152
- #: google-captcha.php:1062
153
  msgid "Please complete the captcha and submit \"Test verification\""
154
  msgstr ""
155
  "Будь ласка, заповніть капчу і натисніть кнопку \"Тестування перевірки\""
156
 
157
- #: google-captcha.php:1068
158
  msgid "Test verification"
159
  msgstr "Тестування перевірки"
160
 
161
- #: google-captcha.php:1089
162
  msgid "The verification is successfully completed."
163
  msgstr "Перевірка завершена успішно."
164
 
165
- #: google-captcha.php:1124
166
  msgid "FAQ"
167
  msgstr "FAQ"
168
 
169
- #: google-captcha.php:1125
170
  msgid "Support"
171
  msgstr "Техпідтримка"
172
 
@@ -280,33 +284,33 @@ msgstr "Версія"
280
  msgid "Invisible"
281
  msgstr "Невидима"
282
 
283
- #: includes/class-gglcptch-settings-tabs.php:89
284
  msgid "Enter site key"
285
  msgstr "Введіть ключ сайту"
286
 
287
- #: includes/class-gglcptch-settings-tabs.php:90
288
- #: includes/class-gglcptch-settings-tabs.php:97
289
  msgid "WARNING: The captcha will not be displayed until you fill key fields."
290
  msgstr ""
291
  "УВАГА: Капча не буде відображатись, поки ви не заповните поля з ключами."
292
 
293
- #: includes/class-gglcptch-settings-tabs.php:96
294
  msgid "Enter secret key"
295
  msgstr "Введіть секретний ключ"
296
 
297
- #: includes/class-gglcptch-settings-tabs.php:134
298
  msgid "Settings saved."
299
  msgstr "Налаштування збережені."
300
 
301
- #: includes/class-gglcptch-settings-tabs.php:149
302
  msgid "General"
303
  msgstr "Загальне"
304
 
305
- #: includes/class-gglcptch-settings-tabs.php:152
306
  msgid "reCaptcha Version"
307
  msgstr "Версія reCaptcha"
308
 
309
- #: includes/class-gglcptch-settings-tabs.php:166
310
  #, php-format
311
  msgid ""
312
  "Register your domain name with Google reCaptcha service and add the keys to "
@@ -315,7 +319,7 @@ msgstr ""
315
  "Зареєструйте свій веб-сайт за допомогою Google reCaptcha, щоб отримати "
316
  "необхідні API ключі та введіть їх нижче. %s Отримати API ключі. %s"
317
 
318
- #: includes/class-gglcptch-settings-tabs.php:170
319
  #, php-format
320
  msgid ""
321
  "If you do not want to create API keys use %s Captcha by BestWebSoft %s "
@@ -324,88 +328,88 @@ msgstr ""
324
  "Якщо ви не хочете створювати ключі API, використовуйте %s Captcha by "
325
  "BestWebSoft %s плагін."
326
 
327
- #: includes/class-gglcptch-settings-tabs.php:188
328
  msgid "Test reCaptcha"
329
  msgstr "Тестування reCaptcha"
330
 
331
- #: includes/class-gglcptch-settings-tabs.php:194
332
  msgid "Enable reCaptcha for"
333
  msgstr "Включити reCaptcha для"
334
 
335
- #: includes/class-gglcptch-settings-tabs.php:241
336
- #: includes/class-gglcptch-settings-tabs.php:269
337
- #: includes/class-gglcptch-settings-tabs.php:296 includes/pro_banners.php:20
338
  msgid "Close"
339
  msgstr "Закрити"
340
 
341
- #: includes/class-gglcptch-settings-tabs.php:252
342
  msgid "reCaptcha Domain"
343
  msgstr "reCaptcha Домен"
344
 
345
- #: includes/class-gglcptch-settings-tabs.php:260
346
  msgid ""
347
  "If Google is not accessible or blocked in your country select other one."
348
  msgstr ""
349
  "Якщо Google недоступний або заблокований у вашій країні, виберіть інший "
350
  "пункт."
351
 
352
- #: includes/class-gglcptch-settings-tabs.php:278
353
  msgid "Appearance"
354
  msgstr "Зовнішній Вигляд"
355
 
356
- #: includes/class-gglcptch-settings-tabs.php:282
357
  msgid "Theme"
358
  msgstr "Тема"
359
 
360
- #: includes/class-gglcptch-settings-tabs.php:286
361
  msgid "Light"
362
  msgstr "Свiтла"
363
 
364
- #: includes/class-gglcptch-settings-tabs.php:287
365
  msgid "Dark"
366
  msgstr "Темна"
367
 
368
- #: includes/class-gglcptch-settings-tabs.php:307
369
  msgid "Hide reCaptcha Badge"
370
  msgstr "Сховати знак ReCaptcha"
371
 
372
- #: includes/class-gglcptch-settings-tabs.php:312
373
  msgid "Enable to hide reCaptcha Badge for Version 3 and Invisible reCaptcha."
374
  msgstr ""
375
  "Увімкніть, щоб приховати значок reCaptcha для версії 3 і Invisible reCaptcha."
376
 
377
- #: includes/class-gglcptch-settings-tabs.php:318
378
  msgid "Additional Protective Measures"
379
  msgstr "Додаткові Захисні Заходи"
380
 
381
- #: includes/class-gglcptch-settings-tabs.php:322
382
  msgid "Score"
383
  msgstr "Кількість очок"
384
 
385
- #: includes/class-gglcptch-settings-tabs.php:327
386
  #, php-format
387
  msgid "Set the minimum verification score from %s to %s (default is %s)."
388
  msgstr ""
389
  "Вкажіть граничне значення, при якому перевірка буде пройдена від %s до %s "
390
  "(за замовчуванням %s)."
391
 
392
- #: includes/class-gglcptch-settings-tabs.php:331
393
  msgid "Hide reCaptcha for"
394
  msgstr "Сховати ReCaptcha для"
395
 
396
- #: includes/class-gglcptch-settings-tabs.php:349
397
  msgid "Allow List Notification"
398
  msgstr "Повідомлення про знаходження у білому списку"
399
 
400
- #: includes/class-gglcptch-settings-tabs.php:352
401
  msgid "This message will be displayed instead of the reCaptcha."
402
  msgstr "Це повідомлення буде відображатися замість reCaptcha."
403
 
404
- #: includes/class-gglcptch-settings-tabs.php:356
405
  msgid "Advanced Protection"
406
  msgstr "Посилений захист"
407
 
408
- #: includes/class-gglcptch-settings-tabs.php:360
409
  msgid ""
410
  "Enable to keep submit button disabled until reCaptcha is loaded (do not use "
411
  "this option if you see \"Failed to load Google reCaptcha\" message)."
@@ -414,11 +418,11 @@ msgstr ""
414
  "не буде завантажена reCaptcha (Не використовуйте цю опцію, якщо ви бачите "
415
  "повідомлення \"Не вдалося завантажити Google reCaptcha\")."
416
 
417
- #: includes/class-gglcptch-settings-tabs.php:366
418
  msgid "Disabled Submit Button"
419
  msgstr "Відключена кнопка підтвердження"
420
 
421
- #: includes/class-gglcptch-settings-tabs.php:371
422
  msgid ""
423
  "Enable to keep submit button disabled until user passes the reCaptcha test "
424
  "(for Version 2)."
@@ -426,7 +430,7 @@ msgstr ""
426
  "Увімкніть, щоб кнопка відправки залишалася відключеною до тих пір, поки "
427
  "користувач не пройде тест reCaptcha (для версії 2)."
428
 
429
- #: includes/class-gglcptch-settings-tabs.php:385
430
  msgid ""
431
  "reCaptcha version was changed. Please submit \"Test reCaptcha\" and "
432
  "regenerate Site and Secret keys if necessary."
@@ -434,11 +438,16 @@ msgstr ""
434
  "Версію reCaptcha було змінено. Будь ласка, натисніть \"Тестування reCaptcha"
435
  "\" та оновіть секретний ключ та ключ сайту, якщо це необхідно."
436
 
437
- #: includes/class-gglcptch-settings-tabs.php:402
 
 
 
 
 
438
  msgid "reCaptcha Shortcode"
439
  msgstr "Шорткод reCaptcha"
440
 
441
- #: includes/class-gglcptch-settings-tabs.php:405
442
  msgid "Add reCaptcha to your posts or pages using the following shortcode:"
443
  msgstr ""
444
  "Додайте reCaptcha до своїх постів або сторінок за допомогою такого шорткоду:"
@@ -467,7 +476,7 @@ msgstr "Testimonials"
467
  msgid "WordPress default"
468
  msgstr "Стандартних форм WordPress"
469
 
470
- #: includes/forms.php:47 includes/pro_banners.php:81
471
  msgid "External Plugins"
472
  msgstr "Зовнішні плагіни"
473
 
@@ -611,15 +620,19 @@ msgstr "Форма реєстрації плагіна Ultimate Member"
611
  msgid "Ultimate Member Profile form"
612
  msgstr "Форма профілю плагіна Ultimate Member"
613
 
614
- #: includes/pro_banners.php:183
 
 
 
 
615
  msgid "Language"
616
  msgstr "Мова"
617
 
618
- #: includes/pro_banners.php:191
619
  msgid "Multilanguage"
620
  msgstr "Multilanguage"
621
 
622
- #: includes/pro_banners.php:194
623
  msgid ""
624
  "Enable to switch language automatically on multilingual website using the "
625
  "Multilanguage plugin."
@@ -627,15 +640,15 @@ msgstr ""
627
  "Увімкніть, щоб перемкнути мову автоматично на багатомовному сайті, "
628
  "використовуючи плагін Multilanguage."
629
 
630
- #: includes/pro_banners.php:206
631
  msgid "Size"
632
  msgstr "Розмір"
633
 
634
- #: includes/pro_banners.php:210
635
  msgid "Normal"
636
  msgstr "Нормальний"
637
 
638
- #: includes/pro_banners.php:211
639
  msgid "Compact"
640
  msgstr "Компактний"
641
 
2
  msgstr ""
3
  "Project-Id-Version: reCaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-09-23 15:05+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
20
  "X-Poedit-SearchPathExcluded-0: bws_menu\n"
21
 
22
  #: google-captcha.php:39 google-captcha.php:49 google-captcha.php:520
23
+ #: includes/class-gglcptch-settings-tabs.php:147
24
  msgid "reCaptcha Settings"
25
  msgstr "Налаштування reCaptcha"
26
 
27
+ #: google-captcha.php:50 google-captcha.php:1114 google-captcha.php:1127
28
  #: includes/class-gglcptch-settings-tabs.php:22
29
  msgid "Settings"
30
  msgstr "Налаштування"
101
  msgid "plugin setting page"
102
  msgstr "сторінку налаштувань плагіну"
103
 
104
+ #: google-captcha.php:788
105
+ msgid "Response is empty"
106
+ msgstr "Відповідь порожня"
107
+
108
+ #: google-captcha.php:889 includes/forms.php:358
109
  msgid "Error"
110
  msgstr "Помилка"
111
 
112
+ #: google-captcha.php:1014
113
  msgid "User response is missing."
114
  msgstr "Відповідь користувача відсутня."
115
 
116
+ #: google-captcha.php:1016
117
  msgid "Secret Key is missing."
118
  msgstr "Секретний ключ відсутній."
119
 
120
+ #: google-captcha.php:1019
121
  msgid "Secret Key is invalid."
122
  msgstr "Секретний ключ некоректний."
123
 
124
+ #: google-captcha.php:1020
125
  msgid "Check your domain configurations"
126
  msgstr "Перевірте конфігурацію вашого домену"
127
 
128
+ #: google-captcha.php:1021
129
  msgid "and enter it again"
130
  msgstr "і введіть його знову"
131
 
132
+ #: google-captcha.php:1023
133
  msgid "User response is invalid"
134
  msgstr "Некоректна відповідь користувача"
135
 
136
+ #: google-captcha.php:1024
137
  msgid "You have entered an incorrect reCAPTCHA value."
138
  msgstr "Ви ввели невірне значення reCAPTCHA."
139
 
140
+ #: google-captcha.php:1025
141
  msgid ""
142
  "More than one reCAPTCHA has been found in the current form. Please remove "
143
  "all unnecessary reCAPTCHA fields to make it work properly."
145
  "В поточній формі знайдено більш ніж один блок reCAPTCHA. Будь-ласка видаліть "
146
  "усі зайві блоки reCAPTCHA для коректної подальшої роботи."
147
 
148
+ #: google-captcha.php:1027
149
  msgid "reCaptcha v3 test failed"
150
  msgstr "Тест reCaptcha v3 не пройдений"
151
 
152
+ #: google-captcha.php:1065
153
  msgid "Please submit \"Test verification\""
154
  msgstr "Будь ласка, натисніть кнопку \"Тестування перевірки\""
155
 
156
+ #: google-captcha.php:1067
157
  msgid "Please complete the captcha and submit \"Test verification\""
158
  msgstr ""
159
  "Будь ласка, заповніть капчу і натисніть кнопку \"Тестування перевірки\""
160
 
161
+ #: google-captcha.php:1073
162
  msgid "Test verification"
163
  msgstr "Тестування перевірки"
164
 
165
+ #: google-captcha.php:1094
166
  msgid "The verification is successfully completed."
167
  msgstr "Перевірка завершена успішно."
168
 
169
+ #: google-captcha.php:1129
170
  msgid "FAQ"
171
  msgstr "FAQ"
172
 
173
+ #: google-captcha.php:1130
174
  msgid "Support"
175
  msgstr "Техпідтримка"
176
 
284
  msgid "Invisible"
285
  msgstr "Невидима"
286
 
287
+ #: includes/class-gglcptch-settings-tabs.php:90
288
  msgid "Enter site key"
289
  msgstr "Введіть ключ сайту"
290
 
291
+ #: includes/class-gglcptch-settings-tabs.php:91
292
+ #: includes/class-gglcptch-settings-tabs.php:98
293
  msgid "WARNING: The captcha will not be displayed until you fill key fields."
294
  msgstr ""
295
  "УВАГА: Капча не буде відображатись, поки ви не заповните поля з ключами."
296
 
297
+ #: includes/class-gglcptch-settings-tabs.php:97
298
  msgid "Enter secret key"
299
  msgstr "Введіть секретний ключ"
300
 
301
+ #: includes/class-gglcptch-settings-tabs.php:135
302
  msgid "Settings saved."
303
  msgstr "Налаштування збережені."
304
 
305
+ #: includes/class-gglcptch-settings-tabs.php:150
306
  msgid "General"
307
  msgstr "Загальне"
308
 
309
+ #: includes/class-gglcptch-settings-tabs.php:153
310
  msgid "reCaptcha Version"
311
  msgstr "Версія reCaptcha"
312
 
313
+ #: includes/class-gglcptch-settings-tabs.php:167
314
  #, php-format
315
  msgid ""
316
  "Register your domain name with Google reCaptcha service and add the keys to "
319
  "Зареєструйте свій веб-сайт за допомогою Google reCaptcha, щоб отримати "
320
  "необхідні API ключі та введіть їх нижче. %s Отримати API ключі. %s"
321
 
322
+ #: includes/class-gglcptch-settings-tabs.php:171
323
  #, php-format
324
  msgid ""
325
  "If you do not want to create API keys use %s Captcha by BestWebSoft %s "
328
  "Якщо ви не хочете створювати ключі API, використовуйте %s Captcha by "
329
  "BestWebSoft %s плагін."
330
 
331
+ #: includes/class-gglcptch-settings-tabs.php:189
332
  msgid "Test reCaptcha"
333
  msgstr "Тестування reCaptcha"
334
 
335
+ #: includes/class-gglcptch-settings-tabs.php:195
336
  msgid "Enable reCaptcha for"
337
  msgstr "Включити reCaptcha для"
338
 
339
+ #: includes/class-gglcptch-settings-tabs.php:242
340
+ #: includes/class-gglcptch-settings-tabs.php:270
341
+ #: includes/class-gglcptch-settings-tabs.php:297 includes/pro_banners.php:20
342
  msgid "Close"
343
  msgstr "Закрити"
344
 
345
+ #: includes/class-gglcptch-settings-tabs.php:253
346
  msgid "reCaptcha Domain"
347
  msgstr "reCaptcha Домен"
348
 
349
+ #: includes/class-gglcptch-settings-tabs.php:261
350
  msgid ""
351
  "If Google is not accessible or blocked in your country select other one."
352
  msgstr ""
353
  "Якщо Google недоступний або заблокований у вашій країні, виберіть інший "
354
  "пункт."
355
 
356
+ #: includes/class-gglcptch-settings-tabs.php:279
357
  msgid "Appearance"
358
  msgstr "Зовнішній Вигляд"
359
 
360
+ #: includes/class-gglcptch-settings-tabs.php:283
361
  msgid "Theme"
362
  msgstr "Тема"
363
 
364
+ #: includes/class-gglcptch-settings-tabs.php:287
365
  msgid "Light"
366
  msgstr "Свiтла"
367
 
368
+ #: includes/class-gglcptch-settings-tabs.php:288
369
  msgid "Dark"
370
  msgstr "Темна"
371
 
372
+ #: includes/class-gglcptch-settings-tabs.php:308
373
  msgid "Hide reCaptcha Badge"
374
  msgstr "Сховати знак ReCaptcha"
375
 
376
+ #: includes/class-gglcptch-settings-tabs.php:313
377
  msgid "Enable to hide reCaptcha Badge for Version 3 and Invisible reCaptcha."
378
  msgstr ""
379
  "Увімкніть, щоб приховати значок reCaptcha для версії 3 і Invisible reCaptcha."
380
 
381
+ #: includes/class-gglcptch-settings-tabs.php:319
382
  msgid "Additional Protective Measures"
383
  msgstr "Додаткові Захисні Заходи"
384
 
385
+ #: includes/class-gglcptch-settings-tabs.php:323
386
  msgid "Score"
387
  msgstr "Кількість очок"
388
 
389
+ #: includes/class-gglcptch-settings-tabs.php:328
390
  #, php-format
391
  msgid "Set the minimum verification score from %s to %s (default is %s)."
392
  msgstr ""
393
  "Вкажіть граничне значення, при якому перевірка буде пройдена від %s до %s "
394
  "(за замовчуванням %s)."
395
 
396
+ #: includes/class-gglcptch-settings-tabs.php:332
397
  msgid "Hide reCaptcha for"
398
  msgstr "Сховати ReCaptcha для"
399
 
400
+ #: includes/class-gglcptch-settings-tabs.php:350
401
  msgid "Allow List Notification"
402
  msgstr "Повідомлення про знаходження у білому списку"
403
 
404
+ #: includes/class-gglcptch-settings-tabs.php:353
405
  msgid "This message will be displayed instead of the reCaptcha."
406
  msgstr "Це повідомлення буде відображатися замість reCaptcha."
407
 
408
+ #: includes/class-gglcptch-settings-tabs.php:357
409
  msgid "Advanced Protection"
410
  msgstr "Посилений захист"
411
 
412
+ #: includes/class-gglcptch-settings-tabs.php:361
413
  msgid ""
414
  "Enable to keep submit button disabled until reCaptcha is loaded (do not use "
415
  "this option if you see \"Failed to load Google reCaptcha\" message)."
418
  "не буде завантажена reCaptcha (Не використовуйте цю опцію, якщо ви бачите "
419
  "повідомлення \"Не вдалося завантажити Google reCaptcha\")."
420
 
421
+ #: includes/class-gglcptch-settings-tabs.php:367
422
  msgid "Disabled Submit Button"
423
  msgstr "Відключена кнопка підтвердження"
424
 
425
+ #: includes/class-gglcptch-settings-tabs.php:372
426
  msgid ""
427
  "Enable to keep submit button disabled until user passes the reCaptcha test "
428
  "(for Version 2)."
430
  "Увімкніть, щоб кнопка відправки залишалася відключеною до тих пір, поки "
431
  "користувач не пройде тест reCaptcha (для версії 2)."
432
 
433
+ #: includes/class-gglcptch-settings-tabs.php:386
434
  msgid ""
435
  "reCaptcha version was changed. Please submit \"Test reCaptcha\" and "
436
  "regenerate Site and Secret keys if necessary."
438
  "Версію reCaptcha було змінено. Будь ласка, натисніть \"Тестування reCaptcha"
439
  "\" та оновіть секретний ключ та ключ сайту, якщо це необхідно."
440
 
441
+ #: includes/class-gglcptch-settings-tabs.php:396
442
+ #, php-format
443
+ msgid "ReCaptcha plugin is fully compliant with GDPR. %s Learn more %s"
444
+ msgstr ""
445
+
446
+ #: includes/class-gglcptch-settings-tabs.php:411
447
  msgid "reCaptcha Shortcode"
448
  msgstr "Шорткод reCaptcha"
449
 
450
+ #: includes/class-gglcptch-settings-tabs.php:414
451
  msgid "Add reCaptcha to your posts or pages using the following shortcode:"
452
  msgstr ""
453
  "Додайте reCaptcha до своїх постів або сторінок за допомогою такого шорткоду:"
476
  msgid "WordPress default"
477
  msgstr "Стандартних форм WordPress"
478
 
479
+ #: includes/forms.php:47 includes/pro_banners.php:82
480
  msgid "External Plugins"
481
  msgstr "Зовнішні плагіни"
482
 
620
  msgid "Ultimate Member Profile form"
621
  msgstr "Форма профілю плагіна Ultimate Member"
622
 
623
+ #: includes/pro_banners.php:78
624
+ msgid "Elementor Contact Form"
625
+ msgstr "Контактна форма Elementor"
626
+
627
+ #: includes/pro_banners.php:185
628
  msgid "Language"
629
  msgstr "Мова"
630
 
631
+ #: includes/pro_banners.php:193
632
  msgid "Multilanguage"
633
  msgstr "Multilanguage"
634
 
635
+ #: includes/pro_banners.php:196
636
  msgid ""
637
  "Enable to switch language automatically on multilingual website using the "
638
  "Multilanguage plugin."
640
  "Увімкніть, щоб перемкнути мову автоматично на багатомовному сайті, "
641
  "використовуючи плагін Multilanguage."
642
 
643
+ #: includes/pro_banners.php:208
644
  msgid "Size"
645
  msgstr "Розмір"
646
 
647
+ #: includes/pro_banners.php:212
648
  msgid "Normal"
649
  msgstr "Нормальний"
650
 
651
+ #: includes/pro_banners.php:213
652
  msgid "Compact"
653
  msgstr "Компактний"
654
 
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: 4.5
6
- Tested up to: 5.8
7
- Stable tag: 1.64
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -63,7 +63,8 @@ http://www.youtube.com/watch?v=L2BziEOL3Fg
63
  > * Ninja Forms
64
  > * Gravity Forms
65
  > * WPForms
66
- > * Caldera Forms [NEW]
 
67
  > * Compatible with WooCommerce:
68
  > * Login form
69
  > * Register form
@@ -274,6 +275,11 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
274
 
275
  == Changelog ==
276
 
 
 
 
 
 
277
  = V1.64 - 18.08.2021 =
278
  * Bugfix : 'use strict' was added.
279
  * Pro : The compatibility with Caldera Member has been added.
@@ -563,6 +569,11 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
563
 
564
  == Upgrade Notice ==
565
 
 
 
 
 
 
566
  = V1.64 =
567
  * New features added.
568
 
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: 4.5
6
+ Tested up to: 5.8.1
7
+ Stable tag: 1.65
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
63
  > * Ninja Forms
64
  > * Gravity Forms
65
  > * WPForms
66
+ > * Caldera Forms
67
+ > * Elementor Pro Contact Forms [NEW]
68
  > * Compatible with WooCommerce:
69
  > * Login form
70
  > * Register form
275
 
276
  == Changelog ==
277
 
278
+ = V1.65 - 01.10.2021 =
279
+ * Update : All functionality was updated for WordPress 5.8.1
280
+ * Update : BWS Panel section was updated.
281
+ * Pro : The compatibility with Elementor Pro Contact Form has been added.
282
+
283
  = V1.64 - 18.08.2021 =
284
  * Bugfix : 'use strict' was added.
285
  * Pro : The compatibility with Caldera Member has been added.
569
 
570
  == Upgrade Notice ==
571
 
572
+ = V1.65 =
573
+ * The compatibility with new WordPress version updated.
574
+ * Plugin optimization completed.
575
+ * New features added.
576
+
577
  = V1.64 =
578
  * New features added.
579