Google Captcha (reCAPTCHA) by BestWebSoft - Version 1.26

Version Description

  • 15.08.2016 =
  • Update : Hook's priority was changed for displaying captcha in the registration form.
  • Update : Compatible with JetPack.
Download this release

Release Info

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

Code changes from version 1.25 to 1.26

Files changed (47) hide show
  1. bws_menu/bws_functions.php +68 -25
  2. bws_menu/bws_menu.php +30 -24
  3. bws_menu/css/general_style.css +7 -6
  4. bws_menu/css/style.css +48 -16
  5. bws_menu/images/logo-white-min.png +0 -0
  6. bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
  7. bws_menu/languages/bestwebsoft-fr_FR.po +113 -113
  8. bws_menu/languages/bestwebsoft-pl_PL.mo +0 -0
  9. bws_menu/languages/bestwebsoft-pl_PL.po +107 -110
  10. bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
  11. bws_menu/languages/bestwebsoft-ru_RU.po +112 -112
  12. bws_menu/languages/bestwebsoft-uk.mo +0 -0
  13. bws_menu/languages/bestwebsoft-uk.po +112 -112
  14. css/style.css +7 -0
  15. google-captcha.php +174 -112
  16. js/script.js +1 -1
  17. languages/google-captcha-ar.mo +0 -0
  18. languages/google-captcha-ar.po +80 -76
  19. languages/google-captcha-bg_BG.mo +0 -0
  20. languages/google-captcha-bg_BG.po +79 -75
  21. languages/google-captcha-cs_CZ.mo +0 -0
  22. languages/google-captcha-cs_CZ.po +79 -75
  23. languages/google-captcha-de_DE.mo +0 -0
  24. languages/google-captcha-de_DE.po +79 -75
  25. languages/google-captcha-el.mo +0 -0
  26. languages/google-captcha-el.po +79 -75
  27. languages/google-captcha-es_ES.mo +0 -0
  28. languages/google-captcha-es_ES.po +79 -75
  29. languages/google-captcha-fa_IR.mo +0 -0
  30. languages/google-captcha-fa_IR.po +80 -76
  31. languages/google-captcha-fr_FR.mo +0 -0
  32. languages/google-captcha-fr_FR.po +79 -75
  33. languages/google-captcha-hi.mo +0 -0
  34. languages/google-captcha-hi.po +79 -75
  35. languages/google-captcha-it_IT.mo +0 -0
  36. languages/google-captcha-it_IT.po +79 -75
  37. languages/google-captcha-pl_PL.mo +0 -0
  38. languages/google-captcha-pl_PL.po +79 -75
  39. languages/google-captcha-pt_BR.mo +0 -0
  40. languages/google-captcha-pt_BR.po +79 -75
  41. languages/google-captcha-ru_RU.mo +0 -0
  42. languages/google-captcha-ru_RU.po +79 -75
  43. languages/google-captcha-uk.mo +0 -0
  44. languages/google-captcha-uk.po +80 -78
  45. languages/google-captcha-zh_TW.mo +0 -0
  46. languages/google-captcha-zh_TW.po +112 -69
  47. readme.txt +107 -56
bws_menu/bws_functions.php CHANGED
@@ -33,7 +33,7 @@ if ( ! function_exists ( 'bws_general_menu' ) ) {
33
  }
34
  }
35
 
36
- add_menu_page( 'BWS Panel', 'BWS Panel', 'manage_options', 'bws_panel', 'bws_add_menu_render', plugins_url( 'images/bestwebsoft-logo-white.svg', __FILE__ ), '1001' );
37
 
38
  add_submenu_page( 'bws_panel', __( 'Plugins', 'bestwebsoft' ), __( 'Plugins', 'bestwebsoft' ), 'manage_options', 'bws_panel', 'bws_add_menu_render' );
39
  add_submenu_page( 'bws_panel', __( 'Themes', 'bestwebsoft' ), __( 'Themes', 'bestwebsoft' ), 'manage_options', 'bws_themes', 'bws_add_menu_render' );
@@ -305,7 +305,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
305
  $to_send["plugins"][ $bws_license_plugin ]["bws_license_key"] = $bws_license_key;
306
  $to_send["plugins"][ $bws_license_plugin ]["bws_illegal_client"] = true;
307
  $options = array(
308
- 'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3 ),
309
  'body' => array( 'plugins' => serialize( $to_send ) ),
310
  'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) );
311
  $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
@@ -417,6 +417,9 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
417
  update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
418
  else
419
  update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
 
 
 
420
  }
421
  } else {
422
  $result['error'] = __( "Please, enter Your license key", 'bestwebsoft' );
@@ -558,6 +561,9 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
558
  $license_key = isset( $_POST['bws_license_key'] ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : '';
559
 
560
  if ( '' != $license_key ) {
 
 
 
561
  if ( ! function_exists( 'get_plugins' ) )
562
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
563
  $plugins_all = get_plugins();
@@ -597,7 +603,7 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
597
  else
598
  $result['message'] = __( 'The license key is valid.', 'bestwebsoft' );
599
 
600
- if ( isset( $value->time_out ) && $value->time_out != '' )
601
  $result['message'] .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
602
 
603
  if ( isset( $value->trial ) && $trial_plugin != false )
@@ -612,16 +618,25 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
612
  if ( empty( $result['error'] ) ) {
613
  if ( $bstwbsftwppdtplgns_options[ $plugin_basename ] != $license_key ) {
614
  $bstwbsftwppdtplgns_options[ $plugin_basename ] = $license_key;
615
- $bstwbsftwppdtplgns_options['time_out'][ $plugin_basename ] = $value->time_out;
616
- if ( is_multisite() )
617
- update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
618
- else
619
- update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
620
  $file = @fopen( dirname( dirname( __FILE__ ) ) . "/license_key.txt" , "w+" );
621
  if ( $file ) {
622
  @fwrite( $file, $license_key );
623
  @fclose( $file );
624
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
625
  }
626
  }
627
  }
@@ -657,37 +672,63 @@ if ( ! function_exists ( 'bws_check_pro_license_form' ) ) {
657
 
658
  if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
659
  function bws_plugin_update_row( $plugin_key, $link_slug = false, $free_plugin_name = false ) {
660
- global $bstwbsftwppdtplgns_options;
661
  $wp_list_table = _get_list_table( 'WP_Plugins_List_Table' );
662
  if ( isset( $bstwbsftwppdtplgns_options['wrong_license_key'][ $plugin_key ] ) ) {
663
- echo '<tr class="plugin-update-tr">
 
 
 
 
664
  <td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
665
- <div class="update-message" style="background-color: #FFEBE8; border-color: #CC0000;"><strong>' . __( 'WARNING: Illegal use notification', 'bestwebsoft' ) . '.</strong> ' . __( 'You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated.', 'bestwebsoft' ) . ' <a target="_blank" href="http://support.bestwebsoft.com/hc/en-us/articles/204240089">' . __( 'Learn More', 'bestwebsoft' ) . '</a></div>
 
 
 
 
 
 
666
  </td>
667
  </tr>';
668
  } elseif ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) && strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) < strtotime( date("m/d/Y") ) ) {
669
- echo '<tr class="plugin-update-tr">
 
 
 
 
670
  <td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
671
- <div class="update-message" style="color: #8C0000;">';
 
 
672
  if ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) && $link_slug != false ) {
673
  echo __( 'Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license', 'bestwebsoft' ) . ' - <a href="http://bestwebsoft.com/products/' . $link_slug .'/">http://bestwebsoft.com/products/' . $link_slug . '/</a>';
674
  } else {
675
  echo __( 'Your license has expired. To continue getting top-priority support and plugin updates you should extend it.', 'bestwebsoft' ) . ' <a target="_new" href="http://support.bestwebsoft.com/entries/53487136">' . __( "Learn more", 'bestwebsoft' ) . '</a>';
676
  }
 
 
677
  echo '</div>
678
  </td>
679
  </tr>';
680
  } elseif ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) ) {
681
- echo '<tr class="plugin-update-tr">
 
 
 
 
682
  <td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
683
- <div class="update-message" style="color: #8C0000;">';
684
- if ( $free_plugin_name != false ) {
685
- echo sprintf( __( 'Notice: You are using the Pro Trial license of %s plugin.', 'bestwebsoft' ), $free_plugin_name );
686
- } else {
687
- _e( 'Notice: You are using the Pro Trial license of plugin.', 'bestwebsoft' );
688
- }
689
- if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) )
690
- echo ' ' . __( "The Pro Trial license will expire on", 'bestwebsoft' ) . ' ' . $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] . '.';
 
 
 
 
691
  echo '</div>
692
  </td>
693
  </tr>';
@@ -1386,7 +1427,7 @@ if ( ! function_exists( 'bws_custom_code_tab' ) ) {
1386
  <?php if ( 'css' == $extension )
1387
  _e( 'These styles will be added to the header on all pages of your site.', 'bestwebsoft' );
1388
  else
1389
- printf( __( 'These PHP code will be hooked to the %s action and will be printed on front end only.', 'bestwebsoft' ), '<a href="http://codex.wordpress.org/Plugin_API/Action_Reference/init" target="_blank"><code>init</code></a>' ); ?>
1390
  </p>
1391
  <p><big>
1392
  <?php if ( ! file_exists( ${"real_{$extension}_file"} ) || ( is_writeable( ${"real_{$extension}_file"} ) ) ) {
@@ -1457,7 +1498,8 @@ if ( ! function_exists( 'bws_enqueue_custom_code_php' ) ) {
1457
  if ( ! $is_multisite && ! empty( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] ) ) {
1458
 
1459
  if ( file_exists( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] ) ) {
1460
- define( 'BWS_GLOBAL', true );
 
1461
  require_once( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] );
1462
  } else {
1463
  unset( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] );
@@ -1468,7 +1510,8 @@ if ( ! function_exists( 'bws_enqueue_custom_code_php' ) ) {
1468
  }
1469
  } elseif ( $is_multisite && ! empty( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.php'] ) ) {
1470
  if ( file_exists( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.php'] ) ) {
1471
- define( 'BWS_GLOBAL', true );
 
1472
  require_once( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.php'] );
1473
  } else {
1474
  unset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.php'] );
33
  }
34
  }
35
 
36
+ add_menu_page( 'BWS Panel', 'BWS Panel', 'manage_options', 'bws_panel', 'bws_add_menu_render', plugins_url( 'images/logo-white-min.png', __FILE__ ), '1001' );
37
 
38
  add_submenu_page( 'bws_panel', __( 'Plugins', 'bestwebsoft' ), __( 'Plugins', 'bestwebsoft' ), 'manage_options', 'bws_panel', 'bws_add_menu_render' );
39
  add_submenu_page( 'bws_panel', __( 'Themes', 'bestwebsoft' ), __( 'Themes', 'bestwebsoft' ), 'manage_options', 'bws_themes', 'bws_add_menu_render' );
305
  $to_send["plugins"][ $bws_license_plugin ]["bws_license_key"] = $bws_license_key;
306
  $to_send["plugins"][ $bws_license_plugin ]["bws_illegal_client"] = true;
307
  $options = array(
308
+ 'timeout' => ( ( defined( 'DOING_CRON' ) && DOING_CRON ) ? 30 : 3 ),
309
  'body' => array( 'plugins' => serialize( $to_send ) ),
310
  'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) );
311
  $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
417
  update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
418
  else
419
  update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
420
+
421
+ if ( ! empty( $result['pro_plugin_is_activated'] ) )
422
+ delete_transient( 'bws_plugins_update' );
423
  }
424
  } else {
425
  $result['error'] = __( "Please, enter Your license key", 'bestwebsoft' );
561
  $license_key = isset( $_POST['bws_license_key'] ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : '';
562
 
563
  if ( '' != $license_key ) {
564
+
565
+ delete_transient( 'bws_plugins_update' );
566
+
567
  if ( ! function_exists( 'get_plugins' ) )
568
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
569
  $plugins_all = get_plugins();
603
  else
604
  $result['message'] = __( 'The license key is valid.', 'bestwebsoft' );
605
 
606
+ if ( ! empty( $value->time_out ) )
607
  $result['message'] .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
608
 
609
  if ( isset( $value->trial ) && $trial_plugin != false )
618
  if ( empty( $result['error'] ) ) {
619
  if ( $bstwbsftwppdtplgns_options[ $plugin_basename ] != $license_key ) {
620
  $bstwbsftwppdtplgns_options[ $plugin_basename ] = $license_key;
621
+
 
 
 
 
622
  $file = @fopen( dirname( dirname( __FILE__ ) ) . "/license_key.txt" , "w+" );
623
  if ( $file ) {
624
  @fwrite( $file, $license_key );
625
  @fclose( $file );
626
  }
627
+ $update_option = true;
628
+ }
629
+
630
+ if ( $bstwbsftwppdtplgns_options['time_out'][ $plugin_basename ] != $value->time_out ) {
631
+ $bstwbsftwppdtplgns_options['time_out'][ $plugin_basename ] = $value->time_out;
632
+ $update_option = true;
633
+ }
634
+
635
+ if ( isset( $update_option ) ) {
636
+ if ( is_multisite() )
637
+ update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
638
+ else
639
+ update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
640
  }
641
  }
642
  }
672
 
673
  if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
674
  function bws_plugin_update_row( $plugin_key, $link_slug = false, $free_plugin_name = false ) {
675
+ global $bstwbsftwppdtplgns_options, $wp_version;
676
  $wp_list_table = _get_list_table( 'WP_Plugins_List_Table' );
677
  if ( isset( $bstwbsftwppdtplgns_options['wrong_license_key'][ $plugin_key ] ) ) {
678
+ $explode_plugin_key = explode( '/', $plugin_key );
679
+ $class = ( $wp_version >= 4.6 ) ? 'active' : '';
680
+ $style = ( $wp_version < 4.6 ) ? ' style="background-color: #FFEBE8;border-color: #CC0000;"' : '';
681
+ $div_class = ( $wp_version >= 4.6 ) ? ' notice inline notice-warning notice-alt' : '';
682
+ echo '<tr class="bws-plugin-update-tr plugin-update-tr ' . $class . '" id="' . $explode_plugin_key[0] . '-update" data-slug="' . $explode_plugin_key[0] . '" data-plugin="' . $plugin_key . '">
683
  <td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
684
+ <div class="update-message' . $div_class . '"' . $style . '>';
685
+ if ( $wp_version >= 4.6 )
686
+ echo '<p>';
687
+ echo '<strong>' . __( 'WARNING: Illegal use notification', 'bestwebsoft' ) . '.</strong> ' . __( 'You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated.', 'bestwebsoft' ) . ' <a target="_blank" href="http://support.bestwebsoft.com/hc/en-us/articles/204240089">' . __( 'Learn More', 'bestwebsoft' ) . '</a>';
688
+ if ( $wp_version >= 4.6 )
689
+ echo '</p>';
690
+ echo '</div>
691
  </td>
692
  </tr>';
693
  } elseif ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) && strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) < strtotime( date("m/d/Y") ) ) {
694
+ $explode_plugin_key = explode( '/', $plugin_key );
695
+ $class = ( $wp_version >= 4.6 ) ? 'active' : '';
696
+ $style = ( $wp_version < 4.6 ) ? ' style="color: #8C0000;"' : '';
697
+ $div_class = ( $wp_version >= 4.6 ) ? ' notice inline notice-warning notice-alt' : '';
698
+ echo '<tr class="bws-plugin-update-tr plugin-update-tr ' . $class . '" id="' . $explode_plugin_key[0] . '-update" data-slug="' . $explode_plugin_key[0] . '" data-plugin="' . $plugin_key . '">
699
  <td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
700
+ <div class="update-message' . $div_class . '"' . $style . '>';
701
+ if ( $wp_version >= 4.6 )
702
+ echo '<p>';
703
  if ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) && $link_slug != false ) {
704
  echo __( 'Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license', 'bestwebsoft' ) . ' - <a href="http://bestwebsoft.com/products/' . $link_slug .'/">http://bestwebsoft.com/products/' . $link_slug . '/</a>';
705
  } else {
706
  echo __( 'Your license has expired. To continue getting top-priority support and plugin updates you should extend it.', 'bestwebsoft' ) . ' <a target="_new" href="http://support.bestwebsoft.com/entries/53487136">' . __( "Learn more", 'bestwebsoft' ) . '</a>';
707
  }
708
+ if ( $wp_version >= 4.6 )
709
+ echo '</p>';
710
  echo '</div>
711
  </td>
712
  </tr>';
713
  } elseif ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) ) {
714
+ $explode_plugin_key = explode( '/', $plugin_key );
715
+ $class = ( $wp_version >= 4.6 ) ? 'active' : '';
716
+ $style = ( $wp_version < 4.6 ) ? ' style="color: #8C0000;"' : '';
717
+ $div_class = ( $wp_version >= 4.6 ) ? ' notice inline notice-warning notice-alt' : '';
718
+ echo '<tr class="bws-plugin-update-tr plugin-update-tr ' . $class . '" id="' . $explode_plugin_key[0] . '-update" data-slug="' . $explode_plugin_key[0] . '" data-plugin="' . $plugin_key . '">
719
  <td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
720
+ <div class="update-message' . $div_class . '"' . $style . '>';
721
+ if ( $wp_version >= 4.6 )
722
+ echo '<p>';
723
+ if ( $free_plugin_name != false ) {
724
+ echo sprintf( __( 'Notice: You are using the Pro Trial license of %s plugin.', 'bestwebsoft' ), $free_plugin_name );
725
+ } else {
726
+ _e( 'Notice: You are using the Pro Trial license of plugin.', 'bestwebsoft' );
727
+ }
728
+ if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) )
729
+ echo ' ' . __( "The Pro Trial license will expire on", 'bestwebsoft' ) . ' ' . $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] . '.';
730
+ if ( $wp_version >= 4.6 )
731
+ echo '</p>';
732
  echo '</div>
733
  </td>
734
  </tr>';
1427
  <?php if ( 'css' == $extension )
1428
  _e( 'These styles will be added to the header on all pages of your site.', 'bestwebsoft' );
1429
  else
1430
+ printf( __( 'This PHP code will be hooked to the %s action and will be printed on front end only.', 'bestwebsoft' ), '<a href="http://codex.wordpress.org/Plugin_API/Action_Reference/init" target="_blank"><code>init</code></a>' ); ?>
1431
  </p>
1432
  <p><big>
1433
  <?php if ( ! file_exists( ${"real_{$extension}_file"} ) || ( is_writeable( ${"real_{$extension}_file"} ) ) ) {
1498
  if ( ! $is_multisite && ! empty( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] ) ) {
1499
 
1500
  if ( file_exists( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] ) ) {
1501
+ if ( ! defined( 'BWS_GLOBAL' ) )
1502
+ define( 'BWS_GLOBAL', true );
1503
  require_once( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] );
1504
  } else {
1505
  unset( $bstwbsftwppdtplgns_options['custom_code']['bws-custom-code.php'] );
1510
  }
1511
  } elseif ( $is_multisite && ! empty( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.php'] ) ) {
1512
  if ( file_exists( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.php'] ) ) {
1513
+ if ( ! defined( 'BWS_GLOBAL' ) )
1514
+ define( 'BWS_GLOBAL', true );
1515
  require_once( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.php'] );
1516
  } else {
1517
  unset( $bstwbsftwppdtplgns_options['custom_code'][ $blog_id ]['bws-custom-code.php'] );
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 1.9.1
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
@@ -292,32 +292,34 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
292
  <?php if ( 'bws_panel' == $_GET['page'] && ! isset( $_POST['bws_plugin_action_submit'] ) ) { ?>
293
  <div class="bws-membership-wrap">
294
  <div class="bws-membership-backround"></div>
295
- <div class="bws-membership">
296
- <form method="post" action="">
 
 
297
  <?php if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) &&
298
  '5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
299
  $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
300
- <div>
301
  <input disabled="disabled" type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
302
- <input disabled="disabled" type="submit" class="bws-button" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
303
  </div>
304
- <div class="bws_error"><?php _e( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' ); ?></div>
305
  <?php } else { ?>
306
- <div>
307
- <input type="text" placeholder="<?php _e( 'Enter your license key', 'bestwebsoft' ); ?>" maxlength="100" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
308
- <input type="hidden" name="bws_license_plugin" value="<?php echo $bws_license_plugin; ?>" />
309
- <input type="hidden" name="bws_license_submit" value="submit" />
310
- <?php if ( empty( $plugins_array ) ) { ?>
311
- <input type="submit" class="bws-button" value="<?php _e( 'Activate Membership', 'bestwebsoft' ); ?>" />
312
- <?php } else { ?>
313
- <input type="submit" class="bws-button" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
314
- <?php } ?>
315
- <?php wp_nonce_field( plugin_basename(__FILE__), 'bws_license_nonce_name' ); ?>
316
  </div>
317
- <div class="bws_error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><?php echo $error; ?></div>
318
- <?php } ?>
 
 
 
 
 
 
 
319
  </form>
320
- <div class="bws-membership-link"><?php _e( 'Don’t have valid license key yet?', 'bestwebsoft' ); ?> <a target="_blank" href="http://bestwebsoft.com/membership/"><?php _e( 'Subscribe to Pro Membership Now', 'bestwebsoft' ); ?></a></div>
321
  </div>
322
  </div>
323
  <?php } ?>
@@ -598,8 +600,8 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
598
  </div>
599
  <?php }
600
  } else { ?>
601
- <div class="theme-browser">
602
- <div class="themes">
603
  <?php foreach ( $themes as $key => $theme ) {
604
  $installed_theme = wp_get_theme( $theme->slug ); ?>
605
  <div class="theme" tabindex="0">
@@ -611,9 +613,13 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
611
  <div class="theme-actions">
612
  <a class="button button-secondary preview install-theme-preview" href="<?php echo $theme->href; ?>" target="_blank"><?php esc_html_e( 'Learn More', 'bestwebsoft' ); ?></a>
613
  </div>
614
- <?php if ( $installed_theme->exists() ) { ?>
615
- <div class="theme-installed"><?php _e( 'Already Installed', 'bestwebsoft' ); ?></div>
616
- <?php } ?>
 
 
 
 
617
  </div>
618
  <?php } ?>
619
  <br class="clear" />
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 1.9.2
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
292
  <?php if ( 'bws_panel' == $_GET['page'] && ! isset( $_POST['bws_plugin_action_submit'] ) ) { ?>
293
  <div class="bws-membership-wrap">
294
  <div class="bws-membership-backround"></div>
295
+ <div class="bws-membership">
296
+ <div class="bws-membership-title"><?php printf( __( 'Get Access to %s+ Premium Plugins', 'bestwebsoft' ), '30' ); ?></div>
297
+ <form class="bws-membership-form" method="post" action="">
298
+ <span class="bws-membership-link"><a target="_blank" href="http://bestwebsoft.com/membership/"><?php _e( 'Subscribe to Pro Membership', 'bestwebsoft' ); ?></a> <?php _e( 'or', 'bestwebsoft' ); ?></span>
299
  <?php if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) &&
300
  '5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
301
  $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
302
+ <div class="bws_form_input_wrap">
303
  <input disabled="disabled" type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
304
+ <div class="bws_error"><?php _e( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' ); ?></div>
305
  </div>
306
+ <input disabled="disabled" type="submit" class="bws-button" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
307
  <?php } else { ?>
308
+ <div class="bws_form_input_wrap">
309
+ <input <?php if ( "" != $error ) echo "class=\"bws_input_error\""; ?> type="text" placeholder="<?php _e( 'Enter your license key', 'bestwebsoft' ); ?>" maxlength="100" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
310
+ <div class="bws_error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><?php echo $error; ?></div>
 
 
 
 
 
 
 
311
  </div>
312
+ <input type="hidden" name="bws_license_plugin" value="<?php echo $bws_license_plugin; ?>" />
313
+ <input type="hidden" name="bws_license_submit" value="submit" />
314
+ <?php if ( empty( $plugins_array ) ) { ?>
315
+ <input type="submit" class="bws-button" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
316
+ <?php } else { ?>
317
+ <input type="submit" class="bws-button" value="<?php _e( 'Check license key', 'bestwebsoft' ); ?>" />
318
+ <?php } ?>
319
+ <?php wp_nonce_field( plugin_basename(__FILE__), 'bws_license_nonce_name' ); ?>
320
+ <?php } ?>
321
  </form>
322
+ <div class="clear"></div>
323
  </div>
324
  </div>
325
  <?php } ?>
600
  </div>
601
  <?php }
602
  } else { ?>
603
+ <div class="theme-browser content-filterable rendered">
604
+ <div class="themes wp-clearfix">
605
  <?php foreach ( $themes as $key => $theme ) {
606
  $installed_theme = wp_get_theme( $theme->slug ); ?>
607
  <div class="theme" tabindex="0">
613
  <div class="theme-actions">
614
  <a class="button button-secondary preview install-theme-preview" href="<?php echo $theme->href; ?>" target="_blank"><?php esc_html_e( 'Learn More', 'bestwebsoft' ); ?></a>
615
  </div>
616
+ <?php if ( $installed_theme->exists() ) {
617
+ if ( $wp_version < '4.6' ) { ?>
618
+ <div class="theme-installed"><?php _e( 'Already Installed', 'bestwebsoft' ); ?></div>
619
+ <?php } else { ?>
620
+ <div class="notice notice-success notice-alt inline"><p><?php _e( 'Installed', 'bestwebsoft' ); ?></p></div>
621
+ <?php }
622
+ } ?>
623
  </div>
624
  <?php } ?>
625
  <br class="clear" />
bws_menu/css/general_style.css CHANGED
@@ -1,9 +1,3 @@
1
- #adminmenu #toplevel_page_bws_panel div.wp-menu-image img,
2
- .admin-color-classic #adminmenu #toplevel_page_bws_panel div.wp-menu-image img,
3
- #adminmenu #toplevel_page_bws_panel:hover div.wp-menu-image img,
4
- #adminmenu #toplevel_page_bws_panel.wp-has-current-submenu div.wp-menu-image img {
5
- width: 18px;
6
- }
7
  #adminmenu #toplevel_page_bws_panel .wp-submenu li:nth-child(4) a {
8
  border-bottom: 1px solid #444;
9
  padding-bottom: 12px;
@@ -502,4 +496,11 @@ span.bws_code {
502
  #bws_shortcode_content .title,
503
  #bws_shortcode_content .checkbox-title {
504
  white-space: normal;
 
 
 
 
 
 
 
505
  }
 
 
 
 
 
 
1
  #adminmenu #toplevel_page_bws_panel .wp-submenu li:nth-child(4) a {
2
  border-bottom: 1px solid #444;
3
  padding-bottom: 12px;
496
  #bws_shortcode_content .title,
497
  #bws_shortcode_content .checkbox-title {
498
  white-space: normal;
499
+ }
500
+ /* styles for notices (license has expired, Illegal use notification ond other) on the /plugins.php page */
501
+ .bws-plugin-update-tr .update-message {
502
+ margin-top: 0 !important;
503
+ }
504
+ .bws-plugin-update-tr .update-message :before {
505
+ content: '';
506
  }
bws_menu/css/style.css CHANGED
@@ -111,7 +111,6 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
111
  overflow: hidden;
112
  position: relative;
113
  margin: 20px 20px 0 20px;
114
- border-radius: 4px;
115
  }
116
  .bws-membership-backround {
117
  background-color: #000;
@@ -123,19 +122,30 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
123
  }
124
  .bws-membership {
125
  color: #fff;
126
- padding: 40px 10px 37px;
127
- text-align: center;
128
  z-index: 6;
129
  position: relative;
130
  }
131
- .bws-membership * {
132
- text-align: center;
 
 
 
 
 
 
 
 
 
 
 
 
133
  }
134
  .bws-membership input[type="text"] {
135
  border-radius: 3px;
136
  border: none;
137
- font-size: 16.14px;
138
- padding: 8px 20px 8px 10px;
139
  text-align: left;
140
  }
141
  .bws-membership .bws-button {
@@ -144,35 +154,39 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
144
  text-align: center;
145
  display: inline-block;
146
  text-decoration: none;
147
- font-size: 16px;
148
- font-weight: 600;
149
- padding: 8px 30px;
150
  border-radius: 3px;
151
  border: none;
152
  cursor: pointer;
 
153
  }
154
  .bws-membership-link {
155
- font-size: 14px;
156
  color: #999;
157
- font-style: italic;
158
- margin-top: 26px;
159
  }
160
  .bws-membership-link a {
161
  color: #fff;
162
  text-decoration: none;
163
  border-bottom: 1px solid #999;
 
164
  }
165
  .bws-membership-link a:hover {
166
  border-bottom: none;
167
  }
168
  .bws_error {
169
  color: #c5412b;
170
- margin-top: 5px;
171
  }
172
  .bws_error a {
173
  color: #fff;
174
  text-decoration: none;
175
  }
 
 
 
176
  /*
177
  * themes
178
  */
@@ -411,6 +425,14 @@ a.bws_donate {
411
  .bws-products {
412
  width: 370px;
413
  }
 
 
 
 
 
 
 
 
414
  }
415
  @media screen and (max-width: 782px) {
416
  .bws-header {
@@ -434,12 +456,22 @@ a.bws_donate {
434
  width: 100%;
435
  padding: 17px 20px 20px;
436
  }
 
 
 
 
 
 
 
 
437
  .bws-membership .bws-button,
 
438
  .bws-membership input[type="text"] {
439
  width: 100%;
 
440
  }
441
- .bws-membership input[type="text"] {
442
- margin-bottom: 8px;
443
  }
444
  .bws-filter {
445
  display: none;
111
  overflow: hidden;
112
  position: relative;
113
  margin: 20px 20px 0 20px;
 
114
  }
115
  .bws-membership-backround {
116
  background-color: #000;
122
  }
123
  .bws-membership {
124
  color: #fff;
125
+ padding: 23px 22px 23px 20px;
 
126
  z-index: 6;
127
  position: relative;
128
  }
129
+ .bws-membership-title {
130
+ font-size: 18px;
131
+ line-height: 30px;
132
+ font-weight: 600;
133
+ float: left;
134
+ }
135
+ .bws-membership-form {
136
+ float: right;
137
+ }
138
+ .bws-membership-form * {
139
+ vertical-align: top;
140
+ }
141
+ .bws_form_input_wrap {
142
+ display: inline-block;
143
  }
144
  .bws-membership input[type="text"] {
145
  border-radius: 3px;
146
  border: none;
147
+ font-size: 13px;
148
+ padding: 8px 19px 8px 9px;
149
  text-align: left;
150
  }
151
  .bws-membership .bws-button {
154
  text-align: center;
155
  display: inline-block;
156
  text-decoration: none;
157
+ font-size: 13px;
158
+ padding: 8px 9px;
 
159
  border-radius: 3px;
160
  border: none;
161
  cursor: pointer;
162
+ margin: 0 6px;
163
  }
164
  .bws-membership-link {
165
+ font-size: 15px;
166
  color: #999;
167
+ padding: 0 8px;
168
+ line-height: 27px;
169
  }
170
  .bws-membership-link a {
171
  color: #fff;
172
  text-decoration: none;
173
  border-bottom: 1px solid #999;
174
+ padding: 0 3px;
175
  }
176
  .bws-membership-link a:hover {
177
  border-bottom: none;
178
  }
179
  .bws_error {
180
  color: #c5412b;
181
+ margin-top: 1px;
182
  }
183
  .bws_error a {
184
  color: #fff;
185
  text-decoration: none;
186
  }
187
+ .bws_input_error {
188
+ border: 1px solid #c5412b !important;
189
+ }
190
  /*
191
  * themes
192
  */
425
  .bws-products {
426
  width: 370px;
427
  }
428
+ .bws-membership-title,
429
+ .bws-membership-form {
430
+ float: none;
431
+ text-align: center;
432
+ }
433
+ .bws-membership-title {
434
+ margin-bottom: 10px;
435
+ }
436
  }
437
  @media screen and (max-width: 782px) {
438
  .bws-header {
456
  width: 100%;
457
  padding: 17px 20px 20px;
458
  }
459
+ .bws-membership * {
460
+ text-align: center;
461
+ }
462
+ .bws-membership-title,
463
+ .bws-membership-link {
464
+ margin-bottom: 10px;
465
+ display: block;
466
+ }
467
  .bws-membership .bws-button,
468
+ .bws_form_input_wrap,
469
  .bws-membership input[type="text"] {
470
  width: 100%;
471
+ margin: 0;
472
  }
473
+ .bws-membership .bws-button {
474
+ margin-top: 8px;
475
  }
476
  .bws-filter {
477
  display: none;
bws_menu/images/logo-white-min.png ADDED
Binary file
bws_menu/languages/bestwebsoft-fr_FR.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-07-14 15:18+0300\n"
6
- "PO-Revision-Date: 2016-07-14 15:18+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
@@ -17,11 +17,11 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:328
21
  msgid "Plugins"
22
  msgstr "Extensions"
23
 
24
- #: bws_functions.php:39 bws_menu.php:283 bws_menu.php:579
25
  msgid "Themes"
26
  msgstr "Thèmes"
27
 
@@ -65,12 +65,12 @@ msgstr "Merci d'avoir installé"
65
  msgid "Let's get started"
66
  msgstr "Démarrer"
67
 
68
- #: bws_functions.php:120 bws_functions.php:153 bws_menu.php:525
69
- #: bws_menu.php:527
70
  msgid "Settings"
71
  msgstr "Réglages"
72
 
73
- #: bws_functions.php:122 bws_functions.php:479
74
  msgid "or"
75
  msgstr "ou"
76
 
@@ -79,7 +79,7 @@ msgid "Add New"
79
  msgstr "Ajouter"
80
 
81
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
82
- #: bws_functions.php:724 bws_functions.php:828
83
  msgid "Close notice"
84
  msgstr "Effacer l'avertissement"
85
 
@@ -113,7 +113,7 @@ msgstr ""
113
  "Étend les fonctionnalités classiques de l'extension avec des nouvelles "
114
  "options."
115
 
116
- #: bws_functions.php:222 bws_functions.php:665 bws_menu.php:595
117
  msgid "Learn More"
118
  msgstr "En savoir plus"
119
 
@@ -189,19 +189,19 @@ msgstr ""
189
  "peut-être installée qu'une seule fois."
190
 
191
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
192
- #: bws_menu.php:368 bws_menu.php:399 bws_menu.php:410
193
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
194
  msgstr ""
195
  "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
196
  "manuellement."
197
 
198
- #: bws_functions.php:361 bws_menu.php:385
199
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
200
  msgstr ""
201
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
202
  "manuellement."
203
 
204
- #: bws_functions.php:367 bws_menu.php:392
205
  msgid ""
206
  "Your server does not support either ZipArchive or Phar. Please, upload the "
207
  "plugin manually"
@@ -209,7 +209,7 @@ msgstr ""
209
  "Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
210
  "de télécharger l'extension manuellement."
211
 
212
- #: bws_functions.php:374 bws_menu.php:402
213
  msgid "UploadDir is not writable. Please, upload the plugin manually"
214
  msgstr ""
215
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
@@ -275,8 +275,8 @@ msgid "Start Your Free %s-Day Trial Now"
275
  msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
276
 
277
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
278
- #: bws_functions.php:532 bws_functions.php:1398 bws_menu.php:531
279
- #: bws_menu.php:540
280
  msgid "Activate"
281
  msgstr "Activé"
282
 
@@ -372,15 +372,15 @@ msgstr ""
372
  "l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de "
373
  "mot de passe perdu."
374
 
375
- #: bws_functions.php:651 bws_menu.php:302 bws_menu.php:313
376
  msgid "Check license key"
377
  msgstr "Vérifier la clé de licence"
378
 
379
- #: bws_functions.php:665
380
  msgid "WARNING: Illegal use notification"
381
  msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
382
 
383
- #: bws_functions.php:665
384
  msgid ""
385
  "You can use one license of the Pro plugin for one domain only. Please check "
386
  "and edit your license or domain if necessary using you personal Client Area. "
@@ -393,7 +393,7 @@ msgstr ""
393
  "de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue "
394
  "inactive."
395
 
396
- #: bws_functions.php:673
397
  msgid ""
398
  "Notice: Your Pro Trial license has expired. To continue using the plugin you "
399
  "should buy a Pro license"
@@ -401,7 +401,7 @@ msgstr ""
401
  "Votre licence d'évaluation est terminée. Pour continuer à disposer du "
402
  "support rapide et des mises à jour de l'extension vous devez la renouveler."
403
 
404
- #: bws_functions.php:675
405
  msgid ""
406
  "Your license has expired. To continue getting top-priority support and "
407
  "plugin updates you should extend it."
@@ -409,41 +409,41 @@ msgstr ""
409
  "Votre licence est terminée. Pour continuer à disposer du support rapide et "
410
  "des mises à jour de l'extension vous devez la renouveller."
411
 
412
- #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1353
413
  msgid "Learn more"
414
  msgstr "En savoir plus"
415
 
416
- #: bws_functions.php:685
417
  #, php-format
418
  msgid "Notice: You are using the Pro Trial license of %s plugin."
419
  msgstr ""
420
  "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
421
 
422
- #: bws_functions.php:687
423
  msgid "Notice: You are using the Pro Trial license of plugin."
424
  msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
425
 
426
- #: bws_functions.php:690
427
  msgid "The Pro Trial license will expire on"
428
  msgstr "La licence PRO d'évaluation expirera le"
429
 
430
- #: bws_functions.php:728
431
  msgid "You license for"
432
  msgstr "Votre licence pour"
433
 
434
- #: bws_functions.php:728
435
  msgid "expires on"
436
  msgstr "se termine le"
437
 
438
- #: bws_functions.php:728
439
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
440
  msgstr "et vous ne disposerez plus du support rapide et des mises à jour."
441
 
442
- #: bws_functions.php:823
443
  msgid "Thank you for choosing"
444
  msgstr "Merci d'avoir choisi"
445
 
446
- #: bws_functions.php:824
447
  msgid ""
448
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
449
  "we'd love to hear about it!"
@@ -451,23 +451,23 @@ msgstr ""
451
  "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
452
  "souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
453
 
454
- #: bws_functions.php:825
455
  msgid "Suggest a Feature"
456
  msgstr "Proposer une fonctionnalité"
457
 
458
- #: bws_functions.php:841
459
  msgid "Notice"
460
  msgstr "Avertissement"
461
 
462
- #: bws_functions.php:841
463
  msgid "The plugin's settings have been changed."
464
  msgstr "Les paramètres de l'extension ont été modifiés."
465
 
466
- #: bws_functions.php:842 bws_functions.php:1409
467
  msgid "Save Changes"
468
  msgstr "Sauvegarder les modifications"
469
 
470
- #: bws_functions.php:856
471
  msgid ""
472
  "You can always look at premium options by clicking on the \"Show Pro features"
473
  "\" in the \"Go PRO\" tab"
@@ -475,124 +475,124 @@ msgstr ""
475
  "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
476
  "\"Voir les fonctionnalités de la version PRO\" dans l'onglet Passer PRO"
477
 
478
- #: bws_functions.php:985
479
  msgid "Add shortcode"
480
  msgstr "Ajouter le code court"
481
 
482
- #: bws_functions.php:985
483
  msgid "Add BestWebSoft plugins' shortcodes using this button."
484
  msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
485
 
486
- #: bws_functions.php:1034
487
  msgid "Close"
488
  msgstr "Fermer"
489
 
490
- #: bws_functions.php:1126
491
  msgid "Restore all plugin settings to defaults"
492
  msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
493
 
494
- #: bws_functions.php:1128
495
  msgid "Restore settings"
496
  msgstr "Remettre les paramètres"
497
 
498
- #: bws_functions.php:1139
499
  msgid "Are you sure you want to restore all settings by default?"
500
  msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
501
 
502
- #: bws_functions.php:1142
503
  msgid "Yes, restore all settings"
504
  msgstr "Oui, remettre les valeurs par défaut"
505
 
506
- #: bws_functions.php:1143
507
  msgid "No, go back to the settings page"
508
  msgstr "Non, retourner à la page des paramètres"
509
 
510
- #: bws_functions.php:1189
511
  msgid "Plugin"
512
  msgstr "Extension"
513
 
514
- #: bws_functions.php:1198
515
  msgid "Shortcode settings"
516
  msgstr "Paramètres du code court"
517
 
518
- #: bws_functions.php:1203
519
  msgid "The shortcode will be inserted"
520
  msgstr "Le code court sera inséré"
521
 
522
- #: bws_functions.php:1208
523
  msgid "Insert"
524
  msgstr "Insérer"
525
 
526
- #: bws_functions.php:1241
527
  msgid "Visit Help Center"
528
  msgstr "Visiter le site du support"
529
 
530
- #: bws_functions.php:1246
531
  msgid "FAQ"
532
  msgstr "FAQ"
533
 
534
- #: bws_functions.php:1252
535
  msgid "For more information:"
536
  msgstr "Pour plus d'informations&nbsp;:"
537
 
538
- #: bws_functions.php:1253
539
  msgid "Documentation"
540
  msgstr "Documentation"
541
 
542
- #: bws_functions.php:1254
543
  msgid "Video Instructions"
544
  msgstr "Vidéo explicative"
545
 
546
- #: bws_functions.php:1255
547
  msgid "Submit a Request"
548
  msgstr "Soumettre une requête"
549
 
550
- #: bws_functions.php:1266
551
  msgid "You do not have sufficient permissions to edit plugins for this site."
552
  msgstr ""
553
  "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
554
 
555
- #: bws_functions.php:1317 bws_functions.php:1344
556
  #, php-format
557
  msgid "File %s edited successfully."
558
  msgstr "Le fichier %s a été modifié avec succès."
559
 
560
- #: bws_functions.php:1319 bws_functions.php:1346
561
  msgid "Not enough permissions to create or update the file"
562
  msgstr "Pas assez de droits pour créer ou modifier le fichier"
563
 
564
- #: bws_functions.php:1349
565
  msgid "Not enough permissions to create the file"
566
  msgstr "Pas assez de droits pour créer le fichier"
567
 
568
- #: bws_functions.php:1387
569
  msgid "These styles will be added to the header on all pages of your site."
570
  msgstr ""
571
  "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
572
 
573
- #: bws_functions.php:1389
574
- #, php-format
575
  msgid ""
576
- "These PHP code will be hooked to the %s action and will be printed on front "
577
  "end only."
578
  msgstr ""
579
  "Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
580
  "partie publique."
581
 
582
- #: bws_functions.php:1393
583
  msgid "Editing"
584
  msgstr "Modifier"
585
 
586
- #: bws_functions.php:1395
587
  msgid "Browsing"
588
  msgstr "Parcourir"
589
 
590
- #: bws_functions.php:1402
591
  #, php-format
592
  msgid "Learn more about %s"
593
  msgstr "En savoir plus sur %s"
594
 
595
- #: bws_functions.php:1413
596
  #, php-format
597
  msgid ""
598
  "You need to make this files writable before you can save your changes. See "
@@ -752,7 +752,7 @@ msgstr "Merci de nous avoir contacté."
752
  msgid "Sorry, email message could not be delivered."
753
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
754
 
755
- #: bws_menu.php:286 bws_menu.php:626
756
  msgid "System status"
757
  msgstr "Etat du système"
758
 
@@ -768,28 +768,25 @@ msgstr "Gérer les licences et les adhésions"
768
  msgid "Client Area"
769
  msgstr "Espace client"
770
 
771
- #: bws_menu.php:307
772
- msgid "Enter your license key"
773
- msgstr "Merci de saisir votre clé de licence"
774
-
775
- #: bws_menu.php:311
776
- msgid "Activate Membership"
777
- msgstr "Activer l'adhésion"
778
-
779
- #: bws_menu.php:320
780
- msgid "Don’t have valid license key yet?"
781
- msgstr "Vous n'avez pas encore de licence valide ?"
782
 
783
- #: bws_menu.php:320
784
  #, fuzzy
785
- msgid "Subscribe to Pro Membership Now"
786
  msgstr "Souscrire une adhésion PRO"
787
 
788
- #: bws_menu.php:329
 
 
 
 
789
  msgid "Upload Plugin"
790
  msgstr "Charger l'extension"
791
 
792
- #: bws_menu.php:333
793
  #, php-format
794
  msgid ""
795
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -802,7 +799,7 @@ msgstr ""
802
  "sent&#8221;, des problèmes avec les flux de syndication ou autres, essayez "
803
  "de désactiver l'extension ou supprimer l'extension."
804
 
805
- #: bws_menu.php:335
806
  msgid ""
807
  "Plugin could not be activated because it triggered a <strong>fatal error</"
808
  "strong>."
@@ -810,126 +807,126 @@ msgstr ""
810
  "L'extension ne peut pas être activée car une <strong>erreur fatale</strong> "
811
  "a été détectée."
812
 
813
- #: bws_menu.php:338
814
  msgid "Plugin <strong>activated</strong>."
815
  msgstr "Extension <strong>activée</strong>."
816
 
817
- #: bws_menu.php:345
818
  msgid "Installing Plugin"
819
  msgstr "Extensions installées"
820
 
821
- #: bws_menu.php:351
822
  msgid "Downloading install package from"
823
  msgstr "Télécharger le paquet d'installation depuis"
824
 
825
- #: bws_menu.php:376
826
  msgid "Unpacking the package"
827
  msgstr "Décompresser le paquet"
828
 
829
- #: bws_menu.php:381 bws_menu.php:389
830
  msgid "Installing the plugin"
831
  msgstr "Installer l'extension"
832
 
833
- #: bws_menu.php:395
834
  msgid "Successfully installed the plugin"
835
  msgstr "Extension installée avec succès"
836
 
837
- #: bws_menu.php:407
838
  msgid "Activate Plugin"
839
  msgstr "Activer l'extension"
840
 
841
- #: bws_menu.php:407 bws_menu.php:413
842
  msgid "Return to BestWebSoft Panel"
843
  msgstr "Retourner à l'administration BestWebSoft"
844
 
845
- #: bws_menu.php:417 bws_menu.php:432 bws_menu.php:561
846
  msgid "All"
847
  msgstr "Tous"
848
 
849
- #: bws_menu.php:418
850
  msgid "Installed"
851
  msgstr "Installé"
852
 
853
- #: bws_menu.php:419
854
  msgid "Not Installed"
855
  msgstr "Non installé"
856
 
857
- #: bws_menu.php:425
858
  msgid "Filter results"
859
  msgstr "Filtrer les résultats"
860
 
861
- #: bws_menu.php:428 bws_menu.php:557
862
  msgid "Category"
863
  msgstr "Catégorie"
864
 
865
- #: bws_menu.php:492
866
  #, fuzzy
867
  msgid "Not installed"
868
  msgstr "Non installé"
869
 
870
- #: bws_menu.php:496
871
  msgid "Renew to get updates"
872
  msgstr "Se réabonner pour avoir les mises à jour"
873
 
874
- #: bws_menu.php:499
875
  #, php-format
876
  msgid "Update to v %s"
877
  msgstr "Mettre à jour avec la version %s"
878
 
879
- #: bws_menu.php:511 bws_menu.php:534 bws_menu.php:543
880
  msgid "Install Now"
881
  msgstr "Installer maintenant"
882
 
883
- #: bws_menu.php:517
884
  msgid "Upgrade to Pro"
885
  msgstr "Passer à la version PRO"
886
 
887
- #: bws_menu.php:521
888
  msgid "Donate"
889
  msgstr "Don"
890
 
891
- #: bws_menu.php:531 bws_menu.php:540
892
  msgid "Activate this plugin"
893
  msgstr "Activer cette extension"
894
 
895
- #: bws_menu.php:543
896
  msgid "Install this plugin"
897
  msgstr "Installer cette extension"
898
 
899
- #: bws_menu.php:552
900
  msgid "Nothing found. Try another criteria."
901
  msgstr "Pas de réponse. essayer d'autres critères."
902
 
903
- #: bws_menu.php:589 bws_menu.php:609
904
  #, php-format
905
  msgid "By %s"
906
  msgstr "Par %s"
907
 
908
- #: bws_menu.php:615
909
  msgid "Already Installed"
910
  msgstr "Déjà installé"
911
 
912
- #: bws_menu.php:623
913
  msgid "Browse Free WordPress Themes"
914
  msgstr "Parcourir les thèmes gratuits pour WordPress"
915
 
916
- #: bws_menu.php:632
917
  msgid "Send to support"
918
  msgstr "Envoyé au support"
919
 
920
- #: bws_menu.php:639
921
  msgid "Send to custom email &#187;"
922
  msgstr "Envoyer un e-mail spécifique &#187;"
923
 
924
- #: bws_menu.php:646
925
  msgid "Environment"
926
  msgstr "Environnent"
927
 
928
- #: bws_menu.php:657
929
  msgid "Active Plugins"
930
  msgstr "Extensions actives"
931
 
932
- #: bws_menu.php:670
933
  msgid "Inactive Plugins"
934
  msgstr "Extensions inactives"
935
 
@@ -969,8 +966,11 @@ msgstr "Utilitaires"
969
  msgid "Other"
970
  msgstr "Autre"
971
 
972
- #~ msgid "Get Access to %s+ Premium Plugins"
973
- #~ msgstr "Accéder à plus de %s extension premiums"
 
 
 
974
 
975
  #~ msgid ""
976
  #~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-08-04 15:44+0300\n"
6
+ "PO-Revision-Date: 2016-08-04 15:44+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
17
  "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
21
  msgid "Plugins"
22
  msgstr "Extensions"
23
 
24
+ #: bws_functions.php:39 bws_menu.php:283 bws_menu.php:581
25
  msgid "Themes"
26
  msgstr "Thèmes"
27
 
65
  msgid "Let's get started"
66
  msgstr "Démarrer"
67
 
68
+ #: bws_functions.php:120 bws_functions.php:153 bws_menu.php:527
69
+ #: bws_menu.php:529
70
  msgid "Settings"
71
  msgstr "Réglages"
72
 
73
+ #: bws_functions.php:122 bws_functions.php:479 bws_menu.php:298
74
  msgid "or"
75
  msgstr "ou"
76
 
79
  msgstr "Ajouter"
80
 
81
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
82
+ #: bws_functions.php:727 bws_functions.php:831
83
  msgid "Close notice"
84
  msgstr "Effacer l'avertissement"
85
 
113
  "Étend les fonctionnalités classiques de l'extension avec des nouvelles "
114
  "options."
115
 
116
+ #: bws_functions.php:222 bws_functions.php:666 bws_menu.php:597
117
  msgid "Learn More"
118
  msgstr "En savoir plus"
119
 
189
  "peut-être installée qu'une seule fois."
190
 
191
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
192
+ #: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
193
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
194
  msgstr ""
195
  "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
196
  "manuellement."
197
 
198
+ #: bws_functions.php:361 bws_menu.php:387
199
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
200
  msgstr ""
201
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
202
  "manuellement."
203
 
204
+ #: bws_functions.php:367 bws_menu.php:394
205
  msgid ""
206
  "Your server does not support either ZipArchive or Phar. Please, upload the "
207
  "plugin manually"
209
  "Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
210
  "de télécharger l'extension manuellement."
211
 
212
+ #: bws_functions.php:374 bws_menu.php:404
213
  msgid "UploadDir is not writable. Please, upload the plugin manually"
214
  msgstr ""
215
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
275
  msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
276
 
277
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
278
+ #: bws_functions.php:532 bws_functions.php:1401 bws_menu.php:315
279
+ #: bws_menu.php:533 bws_menu.php:542
280
  msgid "Activate"
281
  msgstr "Activé"
282
 
372
  "l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de "
373
  "mot de passe perdu."
374
 
375
+ #: bws_functions.php:651 bws_menu.php:306 bws_menu.php:317
376
  msgid "Check license key"
377
  msgstr "Vérifier la clé de licence"
378
 
379
+ #: bws_functions.php:666
380
  msgid "WARNING: Illegal use notification"
381
  msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
382
 
383
+ #: bws_functions.php:666
384
  msgid ""
385
  "You can use one license of the Pro plugin for one domain only. Please check "
386
  "and edit your license or domain if necessary using you personal Client Area. "
393
  "de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue "
394
  "inactive."
395
 
396
+ #: bws_functions.php:675
397
  msgid ""
398
  "Notice: Your Pro Trial license has expired. To continue using the plugin you "
399
  "should buy a Pro license"
401
  "Votre licence d'évaluation est terminée. Pour continuer à disposer du "
402
  "support rapide et des mises à jour de l'extension vous devez la renouveler."
403
 
404
+ #: bws_functions.php:677
405
  msgid ""
406
  "Your license has expired. To continue getting top-priority support and "
407
  "plugin updates you should extend it."
409
  "Votre licence est terminée. Pour continuer à disposer du support rapide et "
410
  "des mises à jour de l'extension vous devez la renouveller."
411
 
412
+ #: bws_functions.php:677 bws_functions.php:731 bws_functions.php:1356
413
  msgid "Learn more"
414
  msgstr "En savoir plus"
415
 
416
+ #: bws_functions.php:688
417
  #, php-format
418
  msgid "Notice: You are using the Pro Trial license of %s plugin."
419
  msgstr ""
420
  "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
421
 
422
+ #: bws_functions.php:690
423
  msgid "Notice: You are using the Pro Trial license of plugin."
424
  msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
425
 
426
+ #: bws_functions.php:693
427
  msgid "The Pro Trial license will expire on"
428
  msgstr "La licence PRO d'évaluation expirera le"
429
 
430
+ #: bws_functions.php:731
431
  msgid "You license for"
432
  msgstr "Votre licence pour"
433
 
434
+ #: bws_functions.php:731
435
  msgid "expires on"
436
  msgstr "se termine le"
437
 
438
+ #: bws_functions.php:731
439
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
440
  msgstr "et vous ne disposerez plus du support rapide et des mises à jour."
441
 
442
+ #: bws_functions.php:826
443
  msgid "Thank you for choosing"
444
  msgstr "Merci d'avoir choisi"
445
 
446
+ #: bws_functions.php:827
447
  msgid ""
448
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
449
  "we'd love to hear about it!"
451
  "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
452
  "souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
453
 
454
+ #: bws_functions.php:828
455
  msgid "Suggest a Feature"
456
  msgstr "Proposer une fonctionnalité"
457
 
458
+ #: bws_functions.php:844
459
  msgid "Notice"
460
  msgstr "Avertissement"
461
 
462
+ #: bws_functions.php:844
463
  msgid "The plugin's settings have been changed."
464
  msgstr "Les paramètres de l'extension ont été modifiés."
465
 
466
+ #: bws_functions.php:845 bws_functions.php:1412
467
  msgid "Save Changes"
468
  msgstr "Sauvegarder les modifications"
469
 
470
+ #: bws_functions.php:859
471
  msgid ""
472
  "You can always look at premium options by clicking on the \"Show Pro features"
473
  "\" in the \"Go PRO\" tab"
475
  "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
476
  "\"Voir les fonctionnalités de la version PRO\" dans l'onglet Passer PRO"
477
 
478
+ #: bws_functions.php:988
479
  msgid "Add shortcode"
480
  msgstr "Ajouter le code court"
481
 
482
+ #: bws_functions.php:988
483
  msgid "Add BestWebSoft plugins' shortcodes using this button."
484
  msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
485
 
486
+ #: bws_functions.php:1037
487
  msgid "Close"
488
  msgstr "Fermer"
489
 
490
+ #: bws_functions.php:1129
491
  msgid "Restore all plugin settings to defaults"
492
  msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
493
 
494
+ #: bws_functions.php:1131
495
  msgid "Restore settings"
496
  msgstr "Remettre les paramètres"
497
 
498
+ #: bws_functions.php:1142
499
  msgid "Are you sure you want to restore all settings by default?"
500
  msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
501
 
502
+ #: bws_functions.php:1145
503
  msgid "Yes, restore all settings"
504
  msgstr "Oui, remettre les valeurs par défaut"
505
 
506
+ #: bws_functions.php:1146
507
  msgid "No, go back to the settings page"
508
  msgstr "Non, retourner à la page des paramètres"
509
 
510
+ #: bws_functions.php:1192
511
  msgid "Plugin"
512
  msgstr "Extension"
513
 
514
+ #: bws_functions.php:1201
515
  msgid "Shortcode settings"
516
  msgstr "Paramètres du code court"
517
 
518
+ #: bws_functions.php:1206
519
  msgid "The shortcode will be inserted"
520
  msgstr "Le code court sera inséré"
521
 
522
+ #: bws_functions.php:1211
523
  msgid "Insert"
524
  msgstr "Insérer"
525
 
526
+ #: bws_functions.php:1244
527
  msgid "Visit Help Center"
528
  msgstr "Visiter le site du support"
529
 
530
+ #: bws_functions.php:1249
531
  msgid "FAQ"
532
  msgstr "FAQ"
533
 
534
+ #: bws_functions.php:1255
535
  msgid "For more information:"
536
  msgstr "Pour plus d'informations&nbsp;:"
537
 
538
+ #: bws_functions.php:1256
539
  msgid "Documentation"
540
  msgstr "Documentation"
541
 
542
+ #: bws_functions.php:1257
543
  msgid "Video Instructions"
544
  msgstr "Vidéo explicative"
545
 
546
+ #: bws_functions.php:1258
547
  msgid "Submit a Request"
548
  msgstr "Soumettre une requête"
549
 
550
+ #: bws_functions.php:1269
551
  msgid "You do not have sufficient permissions to edit plugins for this site."
552
  msgstr ""
553
  "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
554
 
555
+ #: bws_functions.php:1320 bws_functions.php:1347
556
  #, php-format
557
  msgid "File %s edited successfully."
558
  msgstr "Le fichier %s a été modifié avec succès."
559
 
560
+ #: bws_functions.php:1322 bws_functions.php:1349
561
  msgid "Not enough permissions to create or update the file"
562
  msgstr "Pas assez de droits pour créer ou modifier le fichier"
563
 
564
+ #: bws_functions.php:1352
565
  msgid "Not enough permissions to create the file"
566
  msgstr "Pas assez de droits pour créer le fichier"
567
 
568
+ #: bws_functions.php:1390
569
  msgid "These styles will be added to the header on all pages of your site."
570
  msgstr ""
571
  "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
572
 
573
+ #: bws_functions.php:1392
574
+ #, fuzzy, php-format
575
  msgid ""
576
+ "This PHP code will be hooked to the %s action and will be printed on front "
577
  "end only."
578
  msgstr ""
579
  "Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
580
  "partie publique."
581
 
582
+ #: bws_functions.php:1396
583
  msgid "Editing"
584
  msgstr "Modifier"
585
 
586
+ #: bws_functions.php:1398
587
  msgid "Browsing"
588
  msgstr "Parcourir"
589
 
590
+ #: bws_functions.php:1405
591
  #, php-format
592
  msgid "Learn more about %s"
593
  msgstr "En savoir plus sur %s"
594
 
595
+ #: bws_functions.php:1416
596
  #, php-format
597
  msgid ""
598
  "You need to make this files writable before you can save your changes. See "
752
  msgid "Sorry, email message could not be delivered."
753
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
754
 
755
+ #: bws_menu.php:286 bws_menu.php:632
756
  msgid "System status"
757
  msgstr "Etat du système"
758
 
768
  msgid "Client Area"
769
  msgstr "Espace client"
770
 
771
+ #: bws_menu.php:296
772
+ #, php-format
773
+ msgid "Get Access to %s+ Premium Plugins"
774
+ msgstr "Accéder à plus de %s extension premiums"
 
 
 
 
 
 
 
775
 
776
+ #: bws_menu.php:298
777
  #, fuzzy
778
+ msgid "Subscribe to Pro Membership"
779
  msgstr "Souscrire une adhésion PRO"
780
 
781
+ #: bws_menu.php:309
782
+ msgid "Enter your license key"
783
+ msgstr "Merci de saisir votre clé de licence"
784
+
785
+ #: bws_menu.php:331
786
  msgid "Upload Plugin"
787
  msgstr "Charger l'extension"
788
 
789
+ #: bws_menu.php:335
790
  #, php-format
791
  msgid ""
792
  "The plugin generated %d characters of <strong>unexpected output</strong> "
799
  "sent&#8221;, des problèmes avec les flux de syndication ou autres, essayez "
800
  "de désactiver l'extension ou supprimer l'extension."
801
 
802
+ #: bws_menu.php:337
803
  msgid ""
804
  "Plugin could not be activated because it triggered a <strong>fatal error</"
805
  "strong>."
807
  "L'extension ne peut pas être activée car une <strong>erreur fatale</strong> "
808
  "a été détectée."
809
 
810
+ #: bws_menu.php:340
811
  msgid "Plugin <strong>activated</strong>."
812
  msgstr "Extension <strong>activée</strong>."
813
 
814
+ #: bws_menu.php:347
815
  msgid "Installing Plugin"
816
  msgstr "Extensions installées"
817
 
818
+ #: bws_menu.php:353
819
  msgid "Downloading install package from"
820
  msgstr "Télécharger le paquet d'installation depuis"
821
 
822
+ #: bws_menu.php:378
823
  msgid "Unpacking the package"
824
  msgstr "Décompresser le paquet"
825
 
826
+ #: bws_menu.php:383 bws_menu.php:391
827
  msgid "Installing the plugin"
828
  msgstr "Installer l'extension"
829
 
830
+ #: bws_menu.php:397
831
  msgid "Successfully installed the plugin"
832
  msgstr "Extension installée avec succès"
833
 
834
+ #: bws_menu.php:409
835
  msgid "Activate Plugin"
836
  msgstr "Activer l'extension"
837
 
838
+ #: bws_menu.php:409 bws_menu.php:415
839
  msgid "Return to BestWebSoft Panel"
840
  msgstr "Retourner à l'administration BestWebSoft"
841
 
842
+ #: bws_menu.php:419 bws_menu.php:434 bws_menu.php:563
843
  msgid "All"
844
  msgstr "Tous"
845
 
846
+ #: bws_menu.php:420 bws_menu.php:620
847
  msgid "Installed"
848
  msgstr "Installé"
849
 
850
+ #: bws_menu.php:421
851
  msgid "Not Installed"
852
  msgstr "Non installé"
853
 
854
+ #: bws_menu.php:427
855
  msgid "Filter results"
856
  msgstr "Filtrer les résultats"
857
 
858
+ #: bws_menu.php:430 bws_menu.php:559
859
  msgid "Category"
860
  msgstr "Catégorie"
861
 
862
+ #: bws_menu.php:494
863
  #, fuzzy
864
  msgid "Not installed"
865
  msgstr "Non installé"
866
 
867
+ #: bws_menu.php:498
868
  msgid "Renew to get updates"
869
  msgstr "Se réabonner pour avoir les mises à jour"
870
 
871
+ #: bws_menu.php:501
872
  #, php-format
873
  msgid "Update to v %s"
874
  msgstr "Mettre à jour avec la version %s"
875
 
876
+ #: bws_menu.php:513 bws_menu.php:536 bws_menu.php:545
877
  msgid "Install Now"
878
  msgstr "Installer maintenant"
879
 
880
+ #: bws_menu.php:519
881
  msgid "Upgrade to Pro"
882
  msgstr "Passer à la version PRO"
883
 
884
+ #: bws_menu.php:523
885
  msgid "Donate"
886
  msgstr "Don"
887
 
888
+ #: bws_menu.php:533 bws_menu.php:542
889
  msgid "Activate this plugin"
890
  msgstr "Activer cette extension"
891
 
892
+ #: bws_menu.php:545
893
  msgid "Install this plugin"
894
  msgstr "Installer cette extension"
895
 
896
+ #: bws_menu.php:554
897
  msgid "Nothing found. Try another criteria."
898
  msgstr "Pas de réponse. essayer d'autres critères."
899
 
900
+ #: bws_menu.php:591 bws_menu.php:611
901
  #, php-format
902
  msgid "By %s"
903
  msgstr "Par %s"
904
 
905
+ #: bws_menu.php:618
906
  msgid "Already Installed"
907
  msgstr "Déjà installé"
908
 
909
+ #: bws_menu.php:629
910
  msgid "Browse Free WordPress Themes"
911
  msgstr "Parcourir les thèmes gratuits pour WordPress"
912
 
913
+ #: bws_menu.php:638
914
  msgid "Send to support"
915
  msgstr "Envoyé au support"
916
 
917
+ #: bws_menu.php:645
918
  msgid "Send to custom email &#187;"
919
  msgstr "Envoyer un e-mail spécifique &#187;"
920
 
921
+ #: bws_menu.php:652
922
  msgid "Environment"
923
  msgstr "Environnent"
924
 
925
+ #: bws_menu.php:663
926
  msgid "Active Plugins"
927
  msgstr "Extensions actives"
928
 
929
+ #: bws_menu.php:676
930
  msgid "Inactive Plugins"
931
  msgstr "Extensions inactives"
932
 
966
  msgid "Other"
967
  msgstr "Autre"
968
 
969
+ #~ msgid "Activate Membership"
970
+ #~ msgstr "Activer l'adhésion"
971
+
972
+ #~ msgid "Don’t have valid license key yet?"
973
+ #~ msgstr "Vous n'avez pas encore de licence valide ?"
974
 
975
  #~ msgid ""
976
  #~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
bws_menu/languages/bestwebsoft-pl_PL.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-07-14 15:18+0300\n"
6
- "PO-Revision-Date: 2016-07-14 15:18+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
9
  "Language: pl_PL\n"
@@ -18,11 +18,11 @@ msgstr ""
18
  "|| n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:328
22
  msgid "Plugins"
23
  msgstr "Wtyczki"
24
 
25
- #: bws_functions.php:39 bws_menu.php:283 bws_menu.php:579
26
  msgid "Themes"
27
  msgstr "Motywy"
28
 
@@ -67,12 +67,12 @@ msgstr "Dziękujemy za instalację"
67
  msgid "Let's get started"
68
  msgstr "Zaczynajmny"
69
 
70
- #: bws_functions.php:120 bws_functions.php:153 bws_menu.php:525
71
- #: bws_menu.php:527
72
  msgid "Settings"
73
  msgstr "Ustawienia"
74
 
75
- #: bws_functions.php:122 bws_functions.php:479
76
  msgid "or"
77
  msgstr "lub"
78
 
@@ -81,7 +81,7 @@ msgid "Add New"
81
  msgstr "Dodaj nowy"
82
 
83
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
84
- #: bws_functions.php:724 bws_functions.php:828
85
  msgid "Close notice"
86
  msgstr "Zamknij powiadomienie"
87
 
@@ -116,7 +116,7 @@ msgstr "wersji!"
116
  msgid "Extend standard plugin functionality with new great options."
117
  msgstr "Rozszerz podstawowe funkcje wtyczki o nowe wspaniałe opcje."
118
 
119
- #: bws_functions.php:222 bws_functions.php:665 bws_menu.php:595
120
  msgid "Learn More"
121
  msgstr "Dowiedz się więcej"
122
 
@@ -188,26 +188,26 @@ msgstr ""
188
  "może być wykorzystana tylko raz."
189
 
190
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
191
- #: bws_menu.php:368 bws_menu.php:399 bws_menu.php:410
192
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
193
  msgstr ""
194
  "Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
195
  "manualnie"
196
 
197
- #: bws_functions.php:361 bws_menu.php:385
198
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
199
  msgstr ""
200
  "Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
201
  "manualnie"
202
 
203
- #: bws_functions.php:367 bws_menu.php:392
204
  msgid ""
205
  "Your server does not support either ZipArchive or Phar. Please, upload the "
206
  "plugin manually"
207
  msgstr ""
208
  "Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę manualnie"
209
 
210
- #: bws_functions.php:374 bws_menu.php:402
211
  msgid "UploadDir is not writable. Please, upload the plugin manually"
212
  msgstr ""
213
  "Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
@@ -271,8 +271,8 @@ msgid "Start Your Free %s-Day Trial Now"
271
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
272
 
273
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
274
- #: bws_functions.php:532 bws_functions.php:1398 bws_menu.php:531
275
- #: bws_menu.php:540
276
  msgid "Activate"
277
  msgstr "Aktywuj"
278
 
@@ -360,15 +360,15 @@ msgstr ""
360
  "(login to adres email podany przy zakupie). Jeśli to koniczne użyj opcji "
361
  "\"Zgubiłeś swoje hasło?\"."
362
 
363
- #: bws_functions.php:651 bws_menu.php:302 bws_menu.php:313
364
  msgid "Check license key"
365
  msgstr "Sprawdź klucz licencji"
366
 
367
- #: bws_functions.php:665
368
  msgid "WARNING: Illegal use notification"
369
  msgstr "UWAGA: Odnotowano nielegalne użycie"
370
 
371
- #: bws_functions.php:665
372
  msgid ""
373
  "You can use one license of the Pro plugin for one domain only. Please check "
374
  "and edit your license or domain if necessary using you personal Client Area. "
@@ -380,7 +380,7 @@ msgstr ""
380
  "Panel Klienta. Zalecamy rozwiązanie tego problemu w przeciągu 24 godzin, w "
381
  "przeciwnym wypadku wersja PRO zostanie zablokowana."
382
 
383
- #: bws_functions.php:673
384
  msgid ""
385
  "Notice: Your Pro Trial license has expired. To continue using the plugin you "
386
  "should buy a Pro license"
@@ -388,7 +388,7 @@ msgstr ""
388
  "Uwaga: Testowa wersja PRO niestety wygasła. Aby kontynuować korzystanie z "
389
  "naszej wtyczki powinieneś zakupić klucz licencji."
390
 
391
- #: bws_functions.php:675
392
  msgid ""
393
  "Your license has expired. To continue getting top-priority support and "
394
  "plugin updates you should extend it."
@@ -396,65 +396,65 @@ msgstr ""
396
  "Twoja licencja wygasła. Aby podtrzymać szybki dostęp do pomocy i "
397
  "aktualizacji powinieneś przedłużyć licencję."
398
 
399
- #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1353
400
  msgid "Learn more"
401
  msgstr "Dowiedz się więcej"
402
 
403
- #: bws_functions.php:685
404
  #, php-format
405
  msgid "Notice: You are using the Pro Trial license of %s plugin."
406
  msgstr "Uwaga: Wykorzystujesz próbną licencję wersji PRO dla %s."
407
 
408
- #: bws_functions.php:687
409
  msgid "Notice: You are using the Pro Trial license of plugin."
410
  msgstr "Uwaga: Wykorzystywana jest próbna licencja wtyczki."
411
 
412
- #: bws_functions.php:690
413
  msgid "The Pro Trial license will expire on"
414
  msgstr "Licencja próbna wygaśnie"
415
 
416
- #: bws_functions.php:728
417
  msgid "You license for"
418
  msgstr "Twoja licencja na"
419
 
420
- #: bws_functions.php:728
421
  msgid "expires on"
422
  msgstr "wygasa"
423
 
424
- #: bws_functions.php:728
425
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
426
  msgstr ""
427
  "zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
428
  "AKTUALIZACJI."
429
 
430
- #: bws_functions.php:823
431
  #, fuzzy
432
  msgid "Thank you for choosing"
433
  msgstr "Dziękujemy za instalację"
434
 
435
- #: bws_functions.php:824
436
  msgid ""
437
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
438
  "we'd love to hear about it!"
439
  msgstr ""
440
 
441
- #: bws_functions.php:825
442
  msgid "Suggest a Feature"
443
  msgstr ""
444
 
445
- #: bws_functions.php:841
446
  msgid "Notice"
447
  msgstr "Uwaga"
448
 
449
- #: bws_functions.php:841
450
  msgid "The plugin's settings have been changed."
451
  msgstr "Ustawienia wtyczki zostały zmienione."
452
 
453
- #: bws_functions.php:842 bws_functions.php:1409
454
  msgid "Save Changes"
455
  msgstr "Zapisz zmiany"
456
 
457
- #: bws_functions.php:856
458
  msgid ""
459
  "You can always look at premium options by clicking on the \"Show Pro features"
460
  "\" in the \"Go PRO\" tab"
@@ -462,124 +462,124 @@ msgstr ""
462
  "Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
463
  "PRO\" w zakładce \"Go PRO\""
464
 
465
- #: bws_functions.php:985
466
  #, fuzzy
467
  msgid "Add shortcode"
468
  msgstr "Dodaj BWS Shortcode"
469
 
470
- #: bws_functions.php:985
471
  msgid "Add BestWebSoft plugins' shortcodes using this button."
472
  msgstr ""
473
 
474
- #: bws_functions.php:1034
475
  msgid "Close"
476
  msgstr "Zamknij"
477
 
478
- #: bws_functions.php:1126
479
  msgid "Restore all plugin settings to defaults"
480
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
481
 
482
- #: bws_functions.php:1128
483
  msgid "Restore settings"
484
  msgstr "Przywróć ustawienia"
485
 
486
- #: bws_functions.php:1139
487
  msgid "Are you sure you want to restore all settings by default?"
488
  msgstr ""
489
  "Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
490
  "domyślnych?"
491
 
492
- #: bws_functions.php:1142
493
  msgid "Yes, restore all settings"
494
  msgstr "Tak, przywróć wszystkie ustawienia"
495
 
496
- #: bws_functions.php:1143
497
  msgid "No, go back to the settings page"
498
  msgstr "Nie, wróć do ustawień"
499
 
500
- #: bws_functions.php:1189
501
  msgid "Plugin"
502
  msgstr "Wtyczka"
503
 
504
- #: bws_functions.php:1198
505
  msgid "Shortcode settings"
506
  msgstr "Ustawienia shortcode"
507
 
508
- #: bws_functions.php:1203
509
  msgid "The shortcode will be inserted"
510
  msgstr "Shortcode zostanie umieszczony"
511
 
512
- #: bws_functions.php:1208
513
  msgid "Insert"
514
  msgstr "Umieść"
515
 
516
- #: bws_functions.php:1241
517
  msgid "Visit Help Center"
518
  msgstr ""
519
 
520
- #: bws_functions.php:1246
521
  msgid "FAQ"
522
  msgstr "FAQ"
523
 
524
- #: bws_functions.php:1252
525
  msgid "For more information:"
526
  msgstr ""
527
 
528
- #: bws_functions.php:1253
529
  msgid "Documentation"
530
  msgstr ""
531
 
532
- #: bws_functions.php:1254
533
  msgid "Video Instructions"
534
  msgstr ""
535
 
536
- #: bws_functions.php:1255
537
  #, fuzzy
538
  msgid "Submit a Request"
539
  msgstr "送信ボタン"
540
 
541
- #: bws_functions.php:1266
542
  msgid "You do not have sufficient permissions to edit plugins for this site."
543
  msgstr ""
544
 
545
- #: bws_functions.php:1317 bws_functions.php:1344
546
  #, php-format
547
  msgid "File %s edited successfully."
548
  msgstr ""
549
 
550
- #: bws_functions.php:1319 bws_functions.php:1346
551
  msgid "Not enough permissions to create or update the file"
552
  msgstr ""
553
 
554
- #: bws_functions.php:1349
555
  msgid "Not enough permissions to create the file"
556
  msgstr ""
557
 
558
- #: bws_functions.php:1387
559
  msgid "These styles will be added to the header on all pages of your site."
560
  msgstr ""
561
 
562
- #: bws_functions.php:1389
563
  #, php-format
564
  msgid ""
565
- "These PHP code will be hooked to the %s action and will be printed on front "
566
  "end only."
567
  msgstr ""
568
 
569
- #: bws_functions.php:1393
570
  msgid "Editing"
571
  msgstr ""
572
 
573
- #: bws_functions.php:1395
574
  msgid "Browsing"
575
  msgstr ""
576
 
577
- #: bws_functions.php:1402
578
  #, fuzzy, php-format
579
  msgid "Learn more about %s"
580
  msgstr "Dowiedz się więcej"
581
 
582
- #: bws_functions.php:1413
583
  #, php-format
584
  msgid ""
585
  "You need to make this files writable before you can save your changes. See "
@@ -736,7 +736,7 @@ msgstr "Dziękujemy za kontakt."
736
  msgid "Sorry, email message could not be delivered."
737
  msgstr "Przepraszamy, wiadomość nie została dostarczona."
738
 
739
- #: bws_menu.php:286 bws_menu.php:626
740
  msgid "System status"
741
  msgstr "Status systemu"
742
 
@@ -753,30 +753,27 @@ msgstr ""
753
  msgid "Client Area"
754
  msgstr "Panel Klienta"
755
 
756
- #: bws_menu.php:307
757
- #, fuzzy
758
- msgid "Enter your license key"
759
- msgstr "Podaj klucz licencji"
760
 
761
- #: bws_menu.php:311
762
  #, fuzzy
763
- msgid "Activate Membership"
764
  msgstr "有効なテーマ"
765
 
766
- #: bws_menu.php:320
767
- msgid "Don’t have valid license key yet?"
768
- msgstr ""
769
-
770
- #: bws_menu.php:320
771
- msgid "Subscribe to Pro Membership Now"
772
- msgstr ""
773
 
774
- #: bws_menu.php:329
775
  #, fuzzy
776
  msgid "Upload Plugin"
777
  msgstr "Wtyczka"
778
 
779
- #: bws_menu.php:333
780
  #, php-format
781
  msgid ""
782
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -785,139 +782,139 @@ msgid ""
785
  "or removing this plugin."
786
  msgstr ""
787
 
788
- #: bws_menu.php:335
789
  msgid ""
790
  "Plugin could not be activated because it triggered a <strong>fatal error</"
791
  "strong>."
792
  msgstr ""
793
 
794
- #: bws_menu.php:338
795
  msgid "Plugin <strong>activated</strong>."
796
  msgstr ""
797
 
798
- #: bws_menu.php:345
799
  #, fuzzy
800
  msgid "Installing Plugin"
801
  msgstr "Zainstalowane"
802
 
803
- #: bws_menu.php:351
804
  msgid "Downloading install package from"
805
  msgstr ""
806
 
807
- #: bws_menu.php:376
808
  msgid "Unpacking the package"
809
  msgstr ""
810
 
811
- #: bws_menu.php:381 bws_menu.php:389
812
  #, fuzzy
813
  msgid "Installing the plugin"
814
  msgstr "Zainstalowane"
815
 
816
- #: bws_menu.php:395
817
  #, fuzzy
818
  msgid "Successfully installed the plugin"
819
  msgstr "Zainstalowane"
820
 
821
- #: bws_menu.php:407
822
  #, fuzzy
823
  msgid "Activate Plugin"
824
  msgstr "Aktywne wtyczki"
825
 
826
- #: bws_menu.php:407 bws_menu.php:413
827
  msgid "Return to BestWebSoft Panel"
828
  msgstr ""
829
 
830
- #: bws_menu.php:417 bws_menu.php:432 bws_menu.php:561
831
  msgid "All"
832
  msgstr "Wszystko"
833
 
834
- #: bws_menu.php:418
835
  msgid "Installed"
836
  msgstr "Zainstalowane"
837
 
838
- #: bws_menu.php:419
839
  #, fuzzy
840
  msgid "Not Installed"
841
  msgstr "Zainstalowane"
842
 
843
- #: bws_menu.php:425
844
  msgid "Filter results"
845
  msgstr ""
846
 
847
- #: bws_menu.php:428 bws_menu.php:557
848
  msgid "Category"
849
  msgstr ""
850
 
851
- #: bws_menu.php:492
852
  #, fuzzy
853
  msgid "Not installed"
854
  msgstr "Zainstalowane"
855
 
856
- #: bws_menu.php:496
857
  #, fuzzy
858
  msgid "Renew to get updates"
859
  msgstr "ページに転送"
860
 
861
- #: bws_menu.php:499
862
  #, fuzzy, php-format
863
  msgid "Update to v %s"
864
  msgstr "Aktualizuj do wersji %s"
865
 
866
- #: bws_menu.php:511 bws_menu.php:534 bws_menu.php:543
867
  msgid "Install Now"
868
  msgstr "Instaluj teraz"
869
 
870
- #: bws_menu.php:517
871
  msgid "Upgrade to Pro"
872
  msgstr ""
873
 
874
- #: bws_menu.php:521
875
  msgid "Donate"
876
  msgstr ""
877
 
878
- #: bws_menu.php:531 bws_menu.php:540
879
  msgid "Activate this plugin"
880
  msgstr "Aktywuj wtyczkę"
881
 
882
- #: bws_menu.php:543
883
  #, fuzzy
884
  msgid "Install this plugin"
885
  msgstr "Zainstalowane"
886
 
887
- #: bws_menu.php:552
888
  msgid "Nothing found. Try another criteria."
889
  msgstr ""
890
 
891
- #: bws_menu.php:589 bws_menu.php:609
892
  #, php-format
893
  msgid "By %s"
894
  msgstr "Od %s"
895
 
896
- #: bws_menu.php:615
897
  msgid "Already Installed"
898
  msgstr "Zainstalowane"
899
 
900
- #: bws_menu.php:623
901
  msgid "Browse Free WordPress Themes"
902
  msgstr ""
903
 
904
- #: bws_menu.php:632
905
  msgid "Send to support"
906
  msgstr "Wyślij do supportu"
907
 
908
- #: bws_menu.php:639
909
  msgid "Send to custom email &#187;"
910
  msgstr "Prześlij na własny adres &#187;"
911
 
912
- #: bws_menu.php:646
913
  msgid "Environment"
914
  msgstr "Środowisko"
915
 
916
- #: bws_menu.php:657
917
  msgid "Active Plugins"
918
  msgstr "Aktywne wtyczki"
919
 
920
- #: bws_menu.php:670
921
  msgid "Inactive Plugins"
922
  msgstr "Nieaktywne wtyczki"
923
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-08-04 15:44+0300\n"
6
+ "PO-Revision-Date: 2016-08-04 15:44+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
9
  "Language: pl_PL\n"
18
  "|| n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
22
  msgid "Plugins"
23
  msgstr "Wtyczki"
24
 
25
+ #: bws_functions.php:39 bws_menu.php:283 bws_menu.php:581
26
  msgid "Themes"
27
  msgstr "Motywy"
28
 
67
  msgid "Let's get started"
68
  msgstr "Zaczynajmny"
69
 
70
+ #: bws_functions.php:120 bws_functions.php:153 bws_menu.php:527
71
+ #: bws_menu.php:529
72
  msgid "Settings"
73
  msgstr "Ustawienia"
74
 
75
+ #: bws_functions.php:122 bws_functions.php:479 bws_menu.php:298
76
  msgid "or"
77
  msgstr "lub"
78
 
81
  msgstr "Dodaj nowy"
82
 
83
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
84
+ #: bws_functions.php:727 bws_functions.php:831
85
  msgid "Close notice"
86
  msgstr "Zamknij powiadomienie"
87
 
116
  msgid "Extend standard plugin functionality with new great options."
117
  msgstr "Rozszerz podstawowe funkcje wtyczki o nowe wspaniałe opcje."
118
 
119
+ #: bws_functions.php:222 bws_functions.php:666 bws_menu.php:597
120
  msgid "Learn More"
121
  msgstr "Dowiedz się więcej"
122
 
188
  "może być wykorzystana tylko raz."
189
 
190
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
191
+ #: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
192
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
193
  msgstr ""
194
  "Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
195
  "manualnie"
196
 
197
+ #: bws_functions.php:361 bws_menu.php:387
198
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
199
  msgstr ""
200
  "Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
201
  "manualnie"
202
 
203
+ #: bws_functions.php:367 bws_menu.php:394
204
  msgid ""
205
  "Your server does not support either ZipArchive or Phar. Please, upload the "
206
  "plugin manually"
207
  msgstr ""
208
  "Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę manualnie"
209
 
210
+ #: bws_functions.php:374 bws_menu.php:404
211
  msgid "UploadDir is not writable. Please, upload the plugin manually"
212
  msgstr ""
213
  "Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
271
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
272
 
273
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
274
+ #: bws_functions.php:532 bws_functions.php:1401 bws_menu.php:315
275
+ #: bws_menu.php:533 bws_menu.php:542
276
  msgid "Activate"
277
  msgstr "Aktywuj"
278
 
360
  "(login to adres email podany przy zakupie). Jeśli to koniczne użyj opcji "
361
  "\"Zgubiłeś swoje hasło?\"."
362
 
363
+ #: bws_functions.php:651 bws_menu.php:306 bws_menu.php:317
364
  msgid "Check license key"
365
  msgstr "Sprawdź klucz licencji"
366
 
367
+ #: bws_functions.php:666
368
  msgid "WARNING: Illegal use notification"
369
  msgstr "UWAGA: Odnotowano nielegalne użycie"
370
 
371
+ #: bws_functions.php:666
372
  msgid ""
373
  "You can use one license of the Pro plugin for one domain only. Please check "
374
  "and edit your license or domain if necessary using you personal Client Area. "
380
  "Panel Klienta. Zalecamy rozwiązanie tego problemu w przeciągu 24 godzin, w "
381
  "przeciwnym wypadku wersja PRO zostanie zablokowana."
382
 
383
+ #: bws_functions.php:675
384
  msgid ""
385
  "Notice: Your Pro Trial license has expired. To continue using the plugin you "
386
  "should buy a Pro license"
388
  "Uwaga: Testowa wersja PRO niestety wygasła. Aby kontynuować korzystanie z "
389
  "naszej wtyczki powinieneś zakupić klucz licencji."
390
 
391
+ #: bws_functions.php:677
392
  msgid ""
393
  "Your license has expired. To continue getting top-priority support and "
394
  "plugin updates you should extend it."
396
  "Twoja licencja wygasła. Aby podtrzymać szybki dostęp do pomocy i "
397
  "aktualizacji powinieneś przedłużyć licencję."
398
 
399
+ #: bws_functions.php:677 bws_functions.php:731 bws_functions.php:1356
400
  msgid "Learn more"
401
  msgstr "Dowiedz się więcej"
402
 
403
+ #: bws_functions.php:688
404
  #, php-format
405
  msgid "Notice: You are using the Pro Trial license of %s plugin."
406
  msgstr "Uwaga: Wykorzystujesz próbną licencję wersji PRO dla %s."
407
 
408
+ #: bws_functions.php:690
409
  msgid "Notice: You are using the Pro Trial license of plugin."
410
  msgstr "Uwaga: Wykorzystywana jest próbna licencja wtyczki."
411
 
412
+ #: bws_functions.php:693
413
  msgid "The Pro Trial license will expire on"
414
  msgstr "Licencja próbna wygaśnie"
415
 
416
+ #: bws_functions.php:731
417
  msgid "You license for"
418
  msgstr "Twoja licencja na"
419
 
420
+ #: bws_functions.php:731
421
  msgid "expires on"
422
  msgstr "wygasa"
423
 
424
+ #: bws_functions.php:731
425
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
426
  msgstr ""
427
  "zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
428
  "AKTUALIZACJI."
429
 
430
+ #: bws_functions.php:826
431
  #, fuzzy
432
  msgid "Thank you for choosing"
433
  msgstr "Dziękujemy za instalację"
434
 
435
+ #: bws_functions.php:827
436
  msgid ""
437
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
438
  "we'd love to hear about it!"
439
  msgstr ""
440
 
441
+ #: bws_functions.php:828
442
  msgid "Suggest a Feature"
443
  msgstr ""
444
 
445
+ #: bws_functions.php:844
446
  msgid "Notice"
447
  msgstr "Uwaga"
448
 
449
+ #: bws_functions.php:844
450
  msgid "The plugin's settings have been changed."
451
  msgstr "Ustawienia wtyczki zostały zmienione."
452
 
453
+ #: bws_functions.php:845 bws_functions.php:1412
454
  msgid "Save Changes"
455
  msgstr "Zapisz zmiany"
456
 
457
+ #: bws_functions.php:859
458
  msgid ""
459
  "You can always look at premium options by clicking on the \"Show Pro features"
460
  "\" in the \"Go PRO\" tab"
462
  "Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
463
  "PRO\" w zakładce \"Go PRO\""
464
 
465
+ #: bws_functions.php:988
466
  #, fuzzy
467
  msgid "Add shortcode"
468
  msgstr "Dodaj BWS Shortcode"
469
 
470
+ #: bws_functions.php:988
471
  msgid "Add BestWebSoft plugins' shortcodes using this button."
472
  msgstr ""
473
 
474
+ #: bws_functions.php:1037
475
  msgid "Close"
476
  msgstr "Zamknij"
477
 
478
+ #: bws_functions.php:1129
479
  msgid "Restore all plugin settings to defaults"
480
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
481
 
482
+ #: bws_functions.php:1131
483
  msgid "Restore settings"
484
  msgstr "Przywróć ustawienia"
485
 
486
+ #: bws_functions.php:1142
487
  msgid "Are you sure you want to restore all settings by default?"
488
  msgstr ""
489
  "Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
490
  "domyślnych?"
491
 
492
+ #: bws_functions.php:1145
493
  msgid "Yes, restore all settings"
494
  msgstr "Tak, przywróć wszystkie ustawienia"
495
 
496
+ #: bws_functions.php:1146
497
  msgid "No, go back to the settings page"
498
  msgstr "Nie, wróć do ustawień"
499
 
500
+ #: bws_functions.php:1192
501
  msgid "Plugin"
502
  msgstr "Wtyczka"
503
 
504
+ #: bws_functions.php:1201
505
  msgid "Shortcode settings"
506
  msgstr "Ustawienia shortcode"
507
 
508
+ #: bws_functions.php:1206
509
  msgid "The shortcode will be inserted"
510
  msgstr "Shortcode zostanie umieszczony"
511
 
512
+ #: bws_functions.php:1211
513
  msgid "Insert"
514
  msgstr "Umieść"
515
 
516
+ #: bws_functions.php:1244
517
  msgid "Visit Help Center"
518
  msgstr ""
519
 
520
+ #: bws_functions.php:1249
521
  msgid "FAQ"
522
  msgstr "FAQ"
523
 
524
+ #: bws_functions.php:1255
525
  msgid "For more information:"
526
  msgstr ""
527
 
528
+ #: bws_functions.php:1256
529
  msgid "Documentation"
530
  msgstr ""
531
 
532
+ #: bws_functions.php:1257
533
  msgid "Video Instructions"
534
  msgstr ""
535
 
536
+ #: bws_functions.php:1258
537
  #, fuzzy
538
  msgid "Submit a Request"
539
  msgstr "送信ボタン"
540
 
541
+ #: bws_functions.php:1269
542
  msgid "You do not have sufficient permissions to edit plugins for this site."
543
  msgstr ""
544
 
545
+ #: bws_functions.php:1320 bws_functions.php:1347
546
  #, php-format
547
  msgid "File %s edited successfully."
548
  msgstr ""
549
 
550
+ #: bws_functions.php:1322 bws_functions.php:1349
551
  msgid "Not enough permissions to create or update the file"
552
  msgstr ""
553
 
554
+ #: bws_functions.php:1352
555
  msgid "Not enough permissions to create the file"
556
  msgstr ""
557
 
558
+ #: bws_functions.php:1390
559
  msgid "These styles will be added to the header on all pages of your site."
560
  msgstr ""
561
 
562
+ #: bws_functions.php:1392
563
  #, php-format
564
  msgid ""
565
+ "This PHP code will be hooked to the %s action and will be printed on front "
566
  "end only."
567
  msgstr ""
568
 
569
+ #: bws_functions.php:1396
570
  msgid "Editing"
571
  msgstr ""
572
 
573
+ #: bws_functions.php:1398
574
  msgid "Browsing"
575
  msgstr ""
576
 
577
+ #: bws_functions.php:1405
578
  #, fuzzy, php-format
579
  msgid "Learn more about %s"
580
  msgstr "Dowiedz się więcej"
581
 
582
+ #: bws_functions.php:1416
583
  #, php-format
584
  msgid ""
585
  "You need to make this files writable before you can save your changes. See "
736
  msgid "Sorry, email message could not be delivered."
737
  msgstr "Przepraszamy, wiadomość nie została dostarczona."
738
 
739
+ #: bws_menu.php:286 bws_menu.php:632
740
  msgid "System status"
741
  msgstr "Status systemu"
742
 
753
  msgid "Client Area"
754
  msgstr "Panel Klienta"
755
 
756
+ #: bws_menu.php:296
757
+ #, php-format
758
+ msgid "Get Access to %s+ Premium Plugins"
759
+ msgstr ""
760
 
761
+ #: bws_menu.php:298
762
  #, fuzzy
763
+ msgid "Subscribe to Pro Membership"
764
  msgstr "有効なテーマ"
765
 
766
+ #: bws_menu.php:309
767
+ #, fuzzy
768
+ msgid "Enter your license key"
769
+ msgstr "Podaj klucz licencji"
 
 
 
770
 
771
+ #: bws_menu.php:331
772
  #, fuzzy
773
  msgid "Upload Plugin"
774
  msgstr "Wtyczka"
775
 
776
+ #: bws_menu.php:335
777
  #, php-format
778
  msgid ""
779
  "The plugin generated %d characters of <strong>unexpected output</strong> "
782
  "or removing this plugin."
783
  msgstr ""
784
 
785
+ #: bws_menu.php:337
786
  msgid ""
787
  "Plugin could not be activated because it triggered a <strong>fatal error</"
788
  "strong>."
789
  msgstr ""
790
 
791
+ #: bws_menu.php:340
792
  msgid "Plugin <strong>activated</strong>."
793
  msgstr ""
794
 
795
+ #: bws_menu.php:347
796
  #, fuzzy
797
  msgid "Installing Plugin"
798
  msgstr "Zainstalowane"
799
 
800
+ #: bws_menu.php:353
801
  msgid "Downloading install package from"
802
  msgstr ""
803
 
804
+ #: bws_menu.php:378
805
  msgid "Unpacking the package"
806
  msgstr ""
807
 
808
+ #: bws_menu.php:383 bws_menu.php:391
809
  #, fuzzy
810
  msgid "Installing the plugin"
811
  msgstr "Zainstalowane"
812
 
813
+ #: bws_menu.php:397
814
  #, fuzzy
815
  msgid "Successfully installed the plugin"
816
  msgstr "Zainstalowane"
817
 
818
+ #: bws_menu.php:409
819
  #, fuzzy
820
  msgid "Activate Plugin"
821
  msgstr "Aktywne wtyczki"
822
 
823
+ #: bws_menu.php:409 bws_menu.php:415
824
  msgid "Return to BestWebSoft Panel"
825
  msgstr ""
826
 
827
+ #: bws_menu.php:419 bws_menu.php:434 bws_menu.php:563
828
  msgid "All"
829
  msgstr "Wszystko"
830
 
831
+ #: bws_menu.php:420 bws_menu.php:620
832
  msgid "Installed"
833
  msgstr "Zainstalowane"
834
 
835
+ #: bws_menu.php:421
836
  #, fuzzy
837
  msgid "Not Installed"
838
  msgstr "Zainstalowane"
839
 
840
+ #: bws_menu.php:427
841
  msgid "Filter results"
842
  msgstr ""
843
 
844
+ #: bws_menu.php:430 bws_menu.php:559
845
  msgid "Category"
846
  msgstr ""
847
 
848
+ #: bws_menu.php:494
849
  #, fuzzy
850
  msgid "Not installed"
851
  msgstr "Zainstalowane"
852
 
853
+ #: bws_menu.php:498
854
  #, fuzzy
855
  msgid "Renew to get updates"
856
  msgstr "ページに転送"
857
 
858
+ #: bws_menu.php:501
859
  #, fuzzy, php-format
860
  msgid "Update to v %s"
861
  msgstr "Aktualizuj do wersji %s"
862
 
863
+ #: bws_menu.php:513 bws_menu.php:536 bws_menu.php:545
864
  msgid "Install Now"
865
  msgstr "Instaluj teraz"
866
 
867
+ #: bws_menu.php:519
868
  msgid "Upgrade to Pro"
869
  msgstr ""
870
 
871
+ #: bws_menu.php:523
872
  msgid "Donate"
873
  msgstr ""
874
 
875
+ #: bws_menu.php:533 bws_menu.php:542
876
  msgid "Activate this plugin"
877
  msgstr "Aktywuj wtyczkę"
878
 
879
+ #: bws_menu.php:545
880
  #, fuzzy
881
  msgid "Install this plugin"
882
  msgstr "Zainstalowane"
883
 
884
+ #: bws_menu.php:554
885
  msgid "Nothing found. Try another criteria."
886
  msgstr ""
887
 
888
+ #: bws_menu.php:591 bws_menu.php:611
889
  #, php-format
890
  msgid "By %s"
891
  msgstr "Od %s"
892
 
893
+ #: bws_menu.php:618
894
  msgid "Already Installed"
895
  msgstr "Zainstalowane"
896
 
897
+ #: bws_menu.php:629
898
  msgid "Browse Free WordPress Themes"
899
  msgstr ""
900
 
901
+ #: bws_menu.php:638
902
  msgid "Send to support"
903
  msgstr "Wyślij do supportu"
904
 
905
+ #: bws_menu.php:645
906
  msgid "Send to custom email &#187;"
907
  msgstr "Prześlij na własny adres &#187;"
908
 
909
+ #: bws_menu.php:652
910
  msgid "Environment"
911
  msgstr "Środowisko"
912
 
913
+ #: bws_menu.php:663
914
  msgid "Active Plugins"
915
  msgstr "Aktywne wtyczki"
916
 
917
+ #: bws_menu.php:676
918
  msgid "Inactive Plugins"
919
  msgstr "Nieaktywne wtyczki"
920
 
bws_menu/languages/bestwebsoft-ru_RU.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-07-14 15:18+0300\n"
6
- "PO-Revision-Date: 2016-07-14 15:18+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -16,11 +16,11 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:328
20
  msgid "Plugins"
21
  msgstr "Плагины"
22
 
23
- #: bws_functions.php:39 bws_menu.php:283 bws_menu.php:579
24
  msgid "Themes"
25
  msgstr "Темы"
26
 
@@ -64,12 +64,12 @@ msgstr "Спасибо за установку"
64
  msgid "Let's get started"
65
  msgstr "Давайте начнем"
66
 
67
- #: bws_functions.php:120 bws_functions.php:153 bws_menu.php:525
68
- #: bws_menu.php:527
69
  msgid "Settings"
70
  msgstr "Настройки"
71
 
72
- #: bws_functions.php:122 bws_functions.php:479
73
  msgid "or"
74
  msgstr "или"
75
 
@@ -78,7 +78,7 @@ msgid "Add New"
78
  msgstr "Добавить"
79
 
80
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
81
- #: bws_functions.php:724 bws_functions.php:828
82
  msgid "Close notice"
83
  msgstr "Закрыть"
84
 
@@ -110,7 +110,7 @@ msgstr "версии!"
110
  msgid "Extend standard plugin functionality with new great options."
111
  msgstr "Расширяет возможности стандартного функционала плагина."
112
 
113
- #: bws_functions.php:222 bws_functions.php:665 bws_menu.php:595
114
  msgid "Learn More"
115
  msgstr "Подробнее"
116
 
@@ -184,16 +184,16 @@ msgstr ""
184
  "лицензия может быть установлена только один раз."
185
 
186
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
187
- #: bws_menu.php:368 bws_menu.php:399 bws_menu.php:410
188
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
189
  msgstr ""
190
  "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
191
 
192
- #: bws_functions.php:361 bws_menu.php:385
193
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
194
  msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
195
 
196
- #: bws_functions.php:367 bws_menu.php:392
197
  msgid ""
198
  "Your server does not support either ZipArchive or Phar. Please, upload the "
199
  "plugin manually"
@@ -201,7 +201,7 @@ msgstr ""
201
  "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. "
202
  "Пожалуйста, загрузите плагин вручную"
203
 
204
- #: bws_functions.php:374 bws_menu.php:402
205
  msgid "UploadDir is not writable. Please, upload the plugin manually"
206
  msgstr ""
207
  "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
@@ -262,8 +262,8 @@ msgid "Start Your Free %s-Day Trial Now"
262
  msgstr "Попробуйте %s-дневную Trial версию бесплатно"
263
 
264
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
265
- #: bws_functions.php:532 bws_functions.php:1398 bws_menu.php:531
266
- #: bws_menu.php:540
267
  msgid "Activate"
268
  msgstr "Активировать"
269
 
@@ -349,15 +349,15 @@ msgstr ""
349
  "(ваше имя пользователя - это емейл, указанный при покупке). При "
350
  "необходимости нажмите \"Забыли пароль?\"."
351
 
352
- #: bws_functions.php:651 bws_menu.php:302 bws_menu.php:313
353
  msgid "Check license key"
354
  msgstr "Проверка лицензионного ключа"
355
 
356
- #: bws_functions.php:665
357
  msgid "WARNING: Illegal use notification"
358
  msgstr "ВНИМАНИЕ: уведомление о незаконном использовании"
359
 
360
- #: bws_functions.php:665
361
  msgid ""
362
  "You can use one license of the Pro plugin for one domain only. Please check "
363
  "and edit your license or domain if necessary using you personal Client Area. "
@@ -369,7 +369,7 @@ msgstr ""
369
  "используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить "
370
  "проблему в течение 24 часов, в противном случае плагин будет деактивирован."
371
 
372
- #: bws_functions.php:673
373
  msgid ""
374
  "Notice: Your Pro Trial license has expired. To continue using the plugin you "
375
  "should buy a Pro license"
@@ -377,7 +377,7 @@ msgstr ""
377
  "Внимание: Срок действия Pro Trial версии истек. Чтобы продолжить "
378
  "пользоваться плагином, пожалуйста, приобретите лицензию Pro"
379
 
380
- #: bws_functions.php:675
381
  msgid ""
382
  "Your license has expired. To continue getting top-priority support and "
383
  "plugin updates you should extend it."
@@ -386,40 +386,40 @@ msgstr ""
386
  "плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно "
387
  "продлить лицензию."
388
 
389
- #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1353
390
  msgid "Learn more"
391
  msgstr "Подробнее"
392
 
393
- #: bws_functions.php:685
394
  #, php-format
395
  msgid "Notice: You are using the Pro Trial license of %s plugin."
396
  msgstr "Внимание: Вы используете Pro Trial версию плагина %s."
397
 
398
- #: bws_functions.php:687
399
  msgid "Notice: You are using the Pro Trial license of plugin."
400
  msgstr "Внимание: Вы используете Pro Trial версию плагина."
401
 
402
- #: bws_functions.php:690
403
  msgid "The Pro Trial license will expire on"
404
  msgstr "Ваша лицензия Pro Trial версии плагина истекает"
405
 
406
- #: bws_functions.php:728
407
  msgid "You license for"
408
  msgstr "Ваш лицензионный ключ для"
409
 
410
- #: bws_functions.php:728
411
  msgid "expires on"
412
  msgstr "истекает"
413
 
414
- #: bws_functions.php:728
415
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
416
  msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
417
 
418
- #: bws_functions.php:823
419
  msgid "Thank you for choosing"
420
  msgstr "Спасибо за выбор"
421
 
422
- #: bws_functions.php:824
423
  msgid ""
424
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
425
  "we'd love to hear about it!"
@@ -428,23 +428,23 @@ msgstr ""
428
  "функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
429
  "новых идей!"
430
 
431
- #: bws_functions.php:825
432
  msgid "Suggest a Feature"
433
  msgstr "Предложить функционал"
434
 
435
- #: bws_functions.php:841
436
  msgid "Notice"
437
  msgstr "Внимание"
438
 
439
- #: bws_functions.php:841
440
  msgid "The plugin's settings have been changed."
441
  msgstr "Настройки плагина были изменены"
442
 
443
- #: bws_functions.php:842 bws_functions.php:1409
444
  msgid "Save Changes"
445
  msgstr "Сохранить изменения"
446
 
447
- #: bws_functions.php:856
448
  msgid ""
449
  "You can always look at premium options by clicking on the \"Show Pro features"
450
  "\" in the \"Go PRO\" tab"
@@ -452,125 +452,125 @@ msgstr ""
452
  "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Показать Pro "
453
  "опции\" на вкладке \"Перейти на PRO\""
454
 
455
- #: bws_functions.php:985
456
  msgid "Add shortcode"
457
  msgstr "Добавить шорткод"
458
 
459
- #: bws_functions.php:985
460
  msgid "Add BestWebSoft plugins' shortcodes using this button."
461
  msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
462
 
463
- #: bws_functions.php:1034
464
  msgid "Close"
465
  msgstr "Закрыть"
466
 
467
- #: bws_functions.php:1126
468
  msgid "Restore all plugin settings to defaults"
469
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
470
 
471
- #: bws_functions.php:1128
472
  msgid "Restore settings"
473
  msgstr "Восстановить настройки"
474
 
475
- #: bws_functions.php:1139
476
  msgid "Are you sure you want to restore all settings by default?"
477
  msgstr ""
478
  "Вы уверены что хотите восстановить все настройки плагина к настройкам по "
479
  "умолчанию?"
480
 
481
- #: bws_functions.php:1142
482
  msgid "Yes, restore all settings"
483
  msgstr "Да, восстановить все настройки"
484
 
485
- #: bws_functions.php:1143
486
  msgid "No, go back to the settings page"
487
  msgstr "Нет, вернуться на страницу настроек"
488
 
489
- #: bws_functions.php:1189
490
  msgid "Plugin"
491
  msgstr "Плагин"
492
 
493
- #: bws_functions.php:1198
494
  msgid "Shortcode settings"
495
  msgstr "Настройки шорткода"
496
 
497
- #: bws_functions.php:1203
498
  msgid "The shortcode will be inserted"
499
  msgstr "Будет вставлен шорткод"
500
 
501
- #: bws_functions.php:1208
502
  msgid "Insert"
503
  msgstr "Вставить"
504
 
505
- #: bws_functions.php:1241
506
  msgid "Visit Help Center"
507
  msgstr "Перейти в Help Center"
508
 
509
- #: bws_functions.php:1246
510
  msgid "FAQ"
511
  msgstr "FAQ"
512
 
513
- #: bws_functions.php:1252
514
  msgid "For more information:"
515
  msgstr "Для дополнительной информации:"
516
 
517
- #: bws_functions.php:1253
518
  msgid "Documentation"
519
  msgstr "Документация"
520
 
521
- #: bws_functions.php:1254
522
  msgid "Video Instructions"
523
  msgstr "Видео инструкции"
524
 
525
- #: bws_functions.php:1255
526
  msgid "Submit a Request"
527
  msgstr "Отправить запрос"
528
 
529
- #: bws_functions.php:1266
530
  msgid "You do not have sufficient permissions to edit plugins for this site."
531
  msgstr ""
532
  "У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
533
 
534
- #: bws_functions.php:1317 bws_functions.php:1344
535
  #, php-format
536
  msgid "File %s edited successfully."
537
  msgstr "Файл %s успешно изменён."
538
 
539
- #: bws_functions.php:1319 bws_functions.php:1346
540
  msgid "Not enough permissions to create or update the file"
541
  msgstr "Не достаточно прав для создания или обновления файла"
542
 
543
- #: bws_functions.php:1349
544
  msgid "Not enough permissions to create the file"
545
  msgstr "Не достаточно прав для создания файла"
546
 
547
- #: bws_functions.php:1387
548
  msgid "These styles will be added to the header on all pages of your site."
549
  msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
550
 
551
- #: bws_functions.php:1389
552
  #, php-format
553
  msgid ""
554
- "These PHP code will be hooked to the %s action and will be printed on front "
555
  "end only."
556
  msgstr ""
557
  "Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
558
  "фронтенде."
559
 
560
- #: bws_functions.php:1393
561
  msgid "Editing"
562
  msgstr "Редактирование"
563
 
564
- #: bws_functions.php:1395
565
  msgid "Browsing"
566
  msgstr "Просмотр"
567
 
568
- #: bws_functions.php:1402
569
  #, php-format
570
  msgid "Learn more about %s"
571
  msgstr "Подробнее о %s"
572
 
573
- #: bws_functions.php:1413
574
  #, php-format
575
  msgid ""
576
  "You need to make this files writable before you can save your changes. See "
@@ -727,7 +727,7 @@ msgstr "Спасибо что связались с нами."
727
  msgid "Sorry, email message could not be delivered."
728
  msgstr "Извините, ваш емейл не может быть отправлен."
729
 
730
- #: bws_menu.php:286 bws_menu.php:626
731
  msgid "System status"
732
  msgstr "Системная информация"
733
 
@@ -743,27 +743,24 @@ msgstr "Управление купленными лицензиями и под
743
  msgid "Client Area"
744
  msgstr "Client Area"
745
 
746
- #: bws_menu.php:307
747
- msgid "Enter your license key"
748
- msgstr "Ваш лицензионный ключ"
749
-
750
- #: bws_menu.php:311
751
- msgid "Activate Membership"
752
- msgstr "Активировать Membership"
753
 
754
- #: bws_menu.php:320
755
- msgid "Don’t have valid license key yet?"
756
- msgstr "Нет действующего лицензионного ключа?"
757
 
758
- #: bws_menu.php:320
759
- msgid "Subscribe to Pro Membership Now"
760
- msgstr "Подписаться на Pro Membership Сейчас"
761
 
762
- #: bws_menu.php:329
763
  msgid "Upload Plugin"
764
  msgstr "Добавить новый"
765
 
766
- #: bws_menu.php:333
767
  #, php-format
768
  msgid ""
769
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -776,7 +773,7 @@ msgstr ""
776
  "проблемы с RSS-лентами или другие неполадки, попробуйте деактивировать или "
777
  "удалить этот плагин."
778
 
779
- #: bws_menu.php:335
780
  msgid ""
781
  "Plugin could not be activated because it triggered a <strong>fatal error</"
782
  "strong>."
@@ -784,125 +781,125 @@ msgstr ""
784
  "Плагин не может быть активирован, поскольку он вызвал <strong>фатальную "
785
  "ошибку</strong>."
786
 
787
- #: bws_menu.php:338
788
  msgid "Plugin <strong>activated</strong>."
789
  msgstr "Плагин <strong>активировано</strong>."
790
 
791
- #: bws_menu.php:345
792
  msgid "Installing Plugin"
793
  msgstr "Установка плагина"
794
 
795
- #: bws_menu.php:351
796
  msgid "Downloading install package from"
797
  msgstr "Скачивание установочного пакета из"
798
 
799
- #: bws_menu.php:376
800
  msgid "Unpacking the package"
801
  msgstr "Распаковка пакета"
802
 
803
- #: bws_menu.php:381 bws_menu.php:389
804
  msgid "Installing the plugin"
805
  msgstr "Установка плагина"
806
 
807
- #: bws_menu.php:395
808
  msgid "Successfully installed the plugin"
809
  msgstr "Успешно установлен плагин"
810
 
811
- #: bws_menu.php:407
812
  msgid "Activate Plugin"
813
  msgstr "Активировать плагин"
814
 
815
- #: bws_menu.php:407 bws_menu.php:413
816
  msgid "Return to BestWebSoft Panel"
817
  msgstr "Возврат к BestWebSoft Panel"
818
 
819
- #: bws_menu.php:417 bws_menu.php:432 bws_menu.php:561
820
  msgid "All"
821
  msgstr "Все"
822
 
823
- #: bws_menu.php:418
824
  msgid "Installed"
825
  msgstr "Установленные"
826
 
827
- #: bws_menu.php:419
828
  msgid "Not Installed"
829
  msgstr "Не установленные"
830
 
831
- #: bws_menu.php:425
832
  msgid "Filter results"
833
  msgstr "Фильтр результатов"
834
 
835
- #: bws_menu.php:428 bws_menu.php:557
836
  msgid "Category"
837
  msgstr "Категория"
838
 
839
- #: bws_menu.php:492
840
  msgid "Not installed"
841
  msgstr "Не установлен"
842
 
843
- #: bws_menu.php:496
844
  msgid "Renew to get updates"
845
  msgstr "Продлить для обновления"
846
 
847
- #: bws_menu.php:499
848
  #, php-format
849
  msgid "Update to v %s"
850
  msgstr "Обновить до версии %s"
851
 
852
- #: bws_menu.php:511 bws_menu.php:534 bws_menu.php:543
853
  msgid "Install Now"
854
  msgstr "Установить"
855
 
856
- #: bws_menu.php:517
857
  msgid "Upgrade to Pro"
858
  msgstr "Обновиться на Pro"
859
 
860
- #: bws_menu.php:521
861
  msgid "Donate"
862
  msgstr "Пожертвовать"
863
 
864
- #: bws_menu.php:531 bws_menu.php:540
865
  msgid "Activate this plugin"
866
  msgstr "Активировать плагин"
867
 
868
- #: bws_menu.php:543
869
  msgid "Install this plugin"
870
  msgstr "Установить этот плагин"
871
 
872
- #: bws_menu.php:552
873
  msgid "Nothing found. Try another criteria."
874
  msgstr "Ничего не найдено. Попробуйте другие критерии."
875
 
876
- #: bws_menu.php:589 bws_menu.php:609
877
  #, php-format
878
  msgid "By %s"
879
  msgstr "%s"
880
 
881
- #: bws_menu.php:615
882
  msgid "Already Installed"
883
  msgstr "Уже установлена"
884
 
885
- #: bws_menu.php:623
886
  msgid "Browse Free WordPress Themes"
887
  msgstr "Обзор бесплатных WordPress тем"
888
 
889
- #: bws_menu.php:632
890
  msgid "Send to support"
891
  msgstr "Отправить в тех. поддержку"
892
 
893
- #: bws_menu.php:639
894
  msgid "Send to custom email &#187;"
895
  msgstr "Отправить на емейл &#187;"
896
 
897
- #: bws_menu.php:646
898
  msgid "Environment"
899
  msgstr "Системная среда"
900
 
901
- #: bws_menu.php:657
902
  msgid "Active Plugins"
903
  msgstr "Активированные плагины"
904
 
905
- #: bws_menu.php:670
906
  msgid "Inactive Plugins"
907
  msgstr "Неактивированные плагины"
908
 
@@ -942,8 +939,11 @@ msgstr "Утилиты"
942
  msgid "Other"
943
  msgstr "Другое"
944
 
945
- #~ msgid "Get Access to %s+ Premium Plugins"
946
- #~ msgstr "Получить Доступ к %s+ Премиум Плагинам"
 
 
 
947
 
948
  #~ msgid ""
949
  #~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-08-04 15:44+0300\n"
6
+ "PO-Revision-Date: 2016-08-04 15:44+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
20
  msgid "Plugins"
21
  msgstr "Плагины"
22
 
23
+ #: bws_functions.php:39 bws_menu.php:283 bws_menu.php:581
24
  msgid "Themes"
25
  msgstr "Темы"
26
 
64
  msgid "Let's get started"
65
  msgstr "Давайте начнем"
66
 
67
+ #: bws_functions.php:120 bws_functions.php:153 bws_menu.php:527
68
+ #: bws_menu.php:529
69
  msgid "Settings"
70
  msgstr "Настройки"
71
 
72
+ #: bws_functions.php:122 bws_functions.php:479 bws_menu.php:298
73
  msgid "or"
74
  msgstr "или"
75
 
78
  msgstr "Добавить"
79
 
80
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
81
+ #: bws_functions.php:727 bws_functions.php:831
82
  msgid "Close notice"
83
  msgstr "Закрыть"
84
 
110
  msgid "Extend standard plugin functionality with new great options."
111
  msgstr "Расширяет возможности стандартного функционала плагина."
112
 
113
+ #: bws_functions.php:222 bws_functions.php:666 bws_menu.php:597
114
  msgid "Learn More"
115
  msgstr "Подробнее"
116
 
184
  "лицензия может быть установлена только один раз."
185
 
186
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
187
+ #: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
188
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
189
  msgstr ""
190
  "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
191
 
192
+ #: bws_functions.php:361 bws_menu.php:387
193
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
194
  msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
195
 
196
+ #: bws_functions.php:367 bws_menu.php:394
197
  msgid ""
198
  "Your server does not support either ZipArchive or Phar. Please, upload the "
199
  "plugin manually"
201
  "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. "
202
  "Пожалуйста, загрузите плагин вручную"
203
 
204
+ #: bws_functions.php:374 bws_menu.php:404
205
  msgid "UploadDir is not writable. Please, upload the plugin manually"
206
  msgstr ""
207
  "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
262
  msgstr "Попробуйте %s-дневную Trial версию бесплатно"
263
 
264
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
265
+ #: bws_functions.php:532 bws_functions.php:1401 bws_menu.php:315
266
+ #: bws_menu.php:533 bws_menu.php:542
267
  msgid "Activate"
268
  msgstr "Активировать"
269
 
349
  "(ваше имя пользователя - это емейл, указанный при покупке). При "
350
  "необходимости нажмите \"Забыли пароль?\"."
351
 
352
+ #: bws_functions.php:651 bws_menu.php:306 bws_menu.php:317
353
  msgid "Check license key"
354
  msgstr "Проверка лицензионного ключа"
355
 
356
+ #: bws_functions.php:666
357
  msgid "WARNING: Illegal use notification"
358
  msgstr "ВНИМАНИЕ: уведомление о незаконном использовании"
359
 
360
+ #: bws_functions.php:666
361
  msgid ""
362
  "You can use one license of the Pro plugin for one domain only. Please check "
363
  "and edit your license or domain if necessary using you personal Client Area. "
369
  "используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить "
370
  "проблему в течение 24 часов, в противном случае плагин будет деактивирован."
371
 
372
+ #: bws_functions.php:675
373
  msgid ""
374
  "Notice: Your Pro Trial license has expired. To continue using the plugin you "
375
  "should buy a Pro license"
377
  "Внимание: Срок действия Pro Trial версии истек. Чтобы продолжить "
378
  "пользоваться плагином, пожалуйста, приобретите лицензию Pro"
379
 
380
+ #: bws_functions.php:677
381
  msgid ""
382
  "Your license has expired. To continue getting top-priority support and "
383
  "plugin updates you should extend it."
386
  "плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно "
387
  "продлить лицензию."
388
 
389
+ #: bws_functions.php:677 bws_functions.php:731 bws_functions.php:1356
390
  msgid "Learn more"
391
  msgstr "Подробнее"
392
 
393
+ #: bws_functions.php:688
394
  #, php-format
395
  msgid "Notice: You are using the Pro Trial license of %s plugin."
396
  msgstr "Внимание: Вы используете Pro Trial версию плагина %s."
397
 
398
+ #: bws_functions.php:690
399
  msgid "Notice: You are using the Pro Trial license of plugin."
400
  msgstr "Внимание: Вы используете Pro Trial версию плагина."
401
 
402
+ #: bws_functions.php:693
403
  msgid "The Pro Trial license will expire on"
404
  msgstr "Ваша лицензия Pro Trial версии плагина истекает"
405
 
406
+ #: bws_functions.php:731
407
  msgid "You license for"
408
  msgstr "Ваш лицензионный ключ для"
409
 
410
+ #: bws_functions.php:731
411
  msgid "expires on"
412
  msgstr "истекает"
413
 
414
+ #: bws_functions.php:731
415
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
416
  msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
417
 
418
+ #: bws_functions.php:826
419
  msgid "Thank you for choosing"
420
  msgstr "Спасибо за выбор"
421
 
422
+ #: bws_functions.php:827
423
  msgid ""
424
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
425
  "we'd love to hear about it!"
428
  "функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
429
  "новых идей!"
430
 
431
+ #: bws_functions.php:828
432
  msgid "Suggest a Feature"
433
  msgstr "Предложить функционал"
434
 
435
+ #: bws_functions.php:844
436
  msgid "Notice"
437
  msgstr "Внимание"
438
 
439
+ #: bws_functions.php:844
440
  msgid "The plugin's settings have been changed."
441
  msgstr "Настройки плагина были изменены"
442
 
443
+ #: bws_functions.php:845 bws_functions.php:1412
444
  msgid "Save Changes"
445
  msgstr "Сохранить изменения"
446
 
447
+ #: bws_functions.php:859
448
  msgid ""
449
  "You can always look at premium options by clicking on the \"Show Pro features"
450
  "\" in the \"Go PRO\" tab"
452
  "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Показать Pro "
453
  "опции\" на вкладке \"Перейти на PRO\""
454
 
455
+ #: bws_functions.php:988
456
  msgid "Add shortcode"
457
  msgstr "Добавить шорткод"
458
 
459
+ #: bws_functions.php:988
460
  msgid "Add BestWebSoft plugins' shortcodes using this button."
461
  msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
462
 
463
+ #: bws_functions.php:1037
464
  msgid "Close"
465
  msgstr "Закрыть"
466
 
467
+ #: bws_functions.php:1129
468
  msgid "Restore all plugin settings to defaults"
469
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
470
 
471
+ #: bws_functions.php:1131
472
  msgid "Restore settings"
473
  msgstr "Восстановить настройки"
474
 
475
+ #: bws_functions.php:1142
476
  msgid "Are you sure you want to restore all settings by default?"
477
  msgstr ""
478
  "Вы уверены что хотите восстановить все настройки плагина к настройкам по "
479
  "умолчанию?"
480
 
481
+ #: bws_functions.php:1145
482
  msgid "Yes, restore all settings"
483
  msgstr "Да, восстановить все настройки"
484
 
485
+ #: bws_functions.php:1146
486
  msgid "No, go back to the settings page"
487
  msgstr "Нет, вернуться на страницу настроек"
488
 
489
+ #: bws_functions.php:1192
490
  msgid "Plugin"
491
  msgstr "Плагин"
492
 
493
+ #: bws_functions.php:1201
494
  msgid "Shortcode settings"
495
  msgstr "Настройки шорткода"
496
 
497
+ #: bws_functions.php:1206
498
  msgid "The shortcode will be inserted"
499
  msgstr "Будет вставлен шорткод"
500
 
501
+ #: bws_functions.php:1211
502
  msgid "Insert"
503
  msgstr "Вставить"
504
 
505
+ #: bws_functions.php:1244
506
  msgid "Visit Help Center"
507
  msgstr "Перейти в Help Center"
508
 
509
+ #: bws_functions.php:1249
510
  msgid "FAQ"
511
  msgstr "FAQ"
512
 
513
+ #: bws_functions.php:1255
514
  msgid "For more information:"
515
  msgstr "Для дополнительной информации:"
516
 
517
+ #: bws_functions.php:1256
518
  msgid "Documentation"
519
  msgstr "Документация"
520
 
521
+ #: bws_functions.php:1257
522
  msgid "Video Instructions"
523
  msgstr "Видео инструкции"
524
 
525
+ #: bws_functions.php:1258
526
  msgid "Submit a Request"
527
  msgstr "Отправить запрос"
528
 
529
+ #: bws_functions.php:1269
530
  msgid "You do not have sufficient permissions to edit plugins for this site."
531
  msgstr ""
532
  "У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
533
 
534
+ #: bws_functions.php:1320 bws_functions.php:1347
535
  #, php-format
536
  msgid "File %s edited successfully."
537
  msgstr "Файл %s успешно изменён."
538
 
539
+ #: bws_functions.php:1322 bws_functions.php:1349
540
  msgid "Not enough permissions to create or update the file"
541
  msgstr "Не достаточно прав для создания или обновления файла"
542
 
543
+ #: bws_functions.php:1352
544
  msgid "Not enough permissions to create the file"
545
  msgstr "Не достаточно прав для создания файла"
546
 
547
+ #: bws_functions.php:1390
548
  msgid "These styles will be added to the header on all pages of your site."
549
  msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
550
 
551
+ #: bws_functions.php:1392
552
  #, php-format
553
  msgid ""
554
+ "This PHP code will be hooked to the %s action and will be printed on front "
555
  "end only."
556
  msgstr ""
557
  "Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
558
  "фронтенде."
559
 
560
+ #: bws_functions.php:1396
561
  msgid "Editing"
562
  msgstr "Редактирование"
563
 
564
+ #: bws_functions.php:1398
565
  msgid "Browsing"
566
  msgstr "Просмотр"
567
 
568
+ #: bws_functions.php:1405
569
  #, php-format
570
  msgid "Learn more about %s"
571
  msgstr "Подробнее о %s"
572
 
573
+ #: bws_functions.php:1416
574
  #, php-format
575
  msgid ""
576
  "You need to make this files writable before you can save your changes. See "
727
  msgid "Sorry, email message could not be delivered."
728
  msgstr "Извините, ваш емейл не может быть отправлен."
729
 
730
+ #: bws_menu.php:286 bws_menu.php:632
731
  msgid "System status"
732
  msgstr "Системная информация"
733
 
743
  msgid "Client Area"
744
  msgstr "Client Area"
745
 
746
+ #: bws_menu.php:296
747
+ #, php-format
748
+ msgid "Get Access to %s+ Premium Plugins"
749
+ msgstr "Получить Доступ к %s+ Премиум Плагинам"
 
 
 
750
 
751
+ #: bws_menu.php:298
752
+ msgid "Subscribe to Pro Membership"
753
+ msgstr "Подписаться на Pro Membership"
754
 
755
+ #: bws_menu.php:309
756
+ msgid "Enter your license key"
757
+ msgstr "Ваш лицензионный ключ"
758
 
759
+ #: bws_menu.php:331
760
  msgid "Upload Plugin"
761
  msgstr "Добавить новый"
762
 
763
+ #: bws_menu.php:335
764
  #, php-format
765
  msgid ""
766
  "The plugin generated %d characters of <strong>unexpected output</strong> "
773
  "проблемы с RSS-лентами или другие неполадки, попробуйте деактивировать или "
774
  "удалить этот плагин."
775
 
776
+ #: bws_menu.php:337
777
  msgid ""
778
  "Plugin could not be activated because it triggered a <strong>fatal error</"
779
  "strong>."
781
  "Плагин не может быть активирован, поскольку он вызвал <strong>фатальную "
782
  "ошибку</strong>."
783
 
784
+ #: bws_menu.php:340
785
  msgid "Plugin <strong>activated</strong>."
786
  msgstr "Плагин <strong>активировано</strong>."
787
 
788
+ #: bws_menu.php:347
789
  msgid "Installing Plugin"
790
  msgstr "Установка плагина"
791
 
792
+ #: bws_menu.php:353
793
  msgid "Downloading install package from"
794
  msgstr "Скачивание установочного пакета из"
795
 
796
+ #: bws_menu.php:378
797
  msgid "Unpacking the package"
798
  msgstr "Распаковка пакета"
799
 
800
+ #: bws_menu.php:383 bws_menu.php:391
801
  msgid "Installing the plugin"
802
  msgstr "Установка плагина"
803
 
804
+ #: bws_menu.php:397
805
  msgid "Successfully installed the plugin"
806
  msgstr "Успешно установлен плагин"
807
 
808
+ #: bws_menu.php:409
809
  msgid "Activate Plugin"
810
  msgstr "Активировать плагин"
811
 
812
+ #: bws_menu.php:409 bws_menu.php:415
813
  msgid "Return to BestWebSoft Panel"
814
  msgstr "Возврат к BestWebSoft Panel"
815
 
816
+ #: bws_menu.php:419 bws_menu.php:434 bws_menu.php:563
817
  msgid "All"
818
  msgstr "Все"
819
 
820
+ #: bws_menu.php:420 bws_menu.php:620
821
  msgid "Installed"
822
  msgstr "Установленные"
823
 
824
+ #: bws_menu.php:421
825
  msgid "Not Installed"
826
  msgstr "Не установленные"
827
 
828
+ #: bws_menu.php:427
829
  msgid "Filter results"
830
  msgstr "Фильтр результатов"
831
 
832
+ #: bws_menu.php:430 bws_menu.php:559
833
  msgid "Category"
834
  msgstr "Категория"
835
 
836
+ #: bws_menu.php:494
837
  msgid "Not installed"
838
  msgstr "Не установлен"
839
 
840
+ #: bws_menu.php:498
841
  msgid "Renew to get updates"
842
  msgstr "Продлить для обновления"
843
 
844
+ #: bws_menu.php:501
845
  #, php-format
846
  msgid "Update to v %s"
847
  msgstr "Обновить до версии %s"
848
 
849
+ #: bws_menu.php:513 bws_menu.php:536 bws_menu.php:545
850
  msgid "Install Now"
851
  msgstr "Установить"
852
 
853
+ #: bws_menu.php:519
854
  msgid "Upgrade to Pro"
855
  msgstr "Обновиться на Pro"
856
 
857
+ #: bws_menu.php:523
858
  msgid "Donate"
859
  msgstr "Пожертвовать"
860
 
861
+ #: bws_menu.php:533 bws_menu.php:542
862
  msgid "Activate this plugin"
863
  msgstr "Активировать плагин"
864
 
865
+ #: bws_menu.php:545
866
  msgid "Install this plugin"
867
  msgstr "Установить этот плагин"
868
 
869
+ #: bws_menu.php:554
870
  msgid "Nothing found. Try another criteria."
871
  msgstr "Ничего не найдено. Попробуйте другие критерии."
872
 
873
+ #: bws_menu.php:591 bws_menu.php:611
874
  #, php-format
875
  msgid "By %s"
876
  msgstr "%s"
877
 
878
+ #: bws_menu.php:618
879
  msgid "Already Installed"
880
  msgstr "Уже установлена"
881
 
882
+ #: bws_menu.php:629
883
  msgid "Browse Free WordPress Themes"
884
  msgstr "Обзор бесплатных WordPress тем"
885
 
886
+ #: bws_menu.php:638
887
  msgid "Send to support"
888
  msgstr "Отправить в тех. поддержку"
889
 
890
+ #: bws_menu.php:645
891
  msgid "Send to custom email &#187;"
892
  msgstr "Отправить на емейл &#187;"
893
 
894
+ #: bws_menu.php:652
895
  msgid "Environment"
896
  msgstr "Системная среда"
897
 
898
+ #: bws_menu.php:663
899
  msgid "Active Plugins"
900
  msgstr "Активированные плагины"
901
 
902
+ #: bws_menu.php:676
903
  msgid "Inactive Plugins"
904
  msgstr "Неактивированные плагины"
905
 
939
  msgid "Other"
940
  msgstr "Другое"
941
 
942
+ #~ msgid "Activate Membership"
943
+ #~ msgstr "Активировать Membership"
944
+
945
+ #~ msgid "Don’t have valid license key yet?"
946
+ #~ msgstr "Нет действующего лицензионного ключа?"
947
 
948
  #~ msgid ""
949
  #~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
bws_menu/languages/bestwebsoft-uk.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-uk.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-07-14 15:18+0300\n"
6
- "PO-Revision-Date: 2016-07-14 15:19+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -16,11 +16,11 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:328
20
  msgid "Plugins"
21
  msgstr "Плагіни"
22
 
23
- #: bws_functions.php:39 bws_menu.php:283 bws_menu.php:579
24
  msgid "Themes"
25
  msgstr "Теми"
26
 
@@ -64,12 +64,12 @@ msgstr "Дякуємо, що встановили"
64
  msgid "Let's get started"
65
  msgstr "Розпочнемо"
66
 
67
- #: bws_functions.php:120 bws_functions.php:153 bws_menu.php:525
68
- #: bws_menu.php:527
69
  msgid "Settings"
70
  msgstr "Налаштування"
71
 
72
- #: bws_functions.php:122 bws_functions.php:479
73
  msgid "or"
74
  msgstr "або"
75
 
@@ -78,7 +78,7 @@ msgid "Add New"
78
  msgstr "Додати"
79
 
80
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
81
- #: bws_functions.php:724 bws_functions.php:828
82
  msgid "Close notice"
83
  msgstr "Закрити"
84
 
@@ -110,7 +110,7 @@ msgstr "версії!"
110
  msgid "Extend standard plugin functionality with new great options."
111
  msgstr "Розширює можливості стандартного функціоналу плагіна."
112
 
113
- #: bws_functions.php:222 bws_functions.php:665 bws_menu.php:595
114
  msgid "Learn More"
115
  msgstr "Дізнатись більше"
116
 
@@ -183,16 +183,16 @@ msgstr ""
183
  "версії плагіну можна використати лише один раз."
184
 
185
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
186
- #: bws_menu.php:368 bws_menu.php:399 bws_menu.php:410
187
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
188
  msgstr ""
189
  "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
190
 
191
- #: bws_functions.php:361 bws_menu.php:385
192
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
193
  msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
194
 
195
- #: bws_functions.php:367 bws_menu.php:392
196
  msgid ""
197
  "Your server does not support either ZipArchive or Phar. Please, upload the "
198
  "plugin manually"
@@ -200,7 +200,7 @@ msgstr ""
200
  "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
201
  "вручну"
202
 
203
- #: bws_functions.php:374 bws_menu.php:402
204
  msgid "UploadDir is not writable. Please, upload the plugin manually"
205
  msgstr ""
206
  "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
@@ -262,8 +262,8 @@ msgid "Start Your Free %s-Day Trial Now"
262
  msgstr "Спробуйте %s-денну тріал версію безкоштовно"
263
 
264
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
265
- #: bws_functions.php:532 bws_functions.php:1398 bws_menu.php:531
266
- #: bws_menu.php:540
267
  msgid "Activate"
268
  msgstr "Активувати"
269
 
@@ -349,15 +349,15 @@ msgstr ""
349
  "(ваше ім'я користувача - це емейл, який ви вказували при купівлі). При "
350
  "необхідності, будь ласка, відправте запит на відновлення вашого паролю."
351
 
352
- #: bws_functions.php:651 bws_menu.php:302 bws_menu.php:313
353
  msgid "Check license key"
354
  msgstr "Перевірте ліцензійний ключ"
355
 
356
- #: bws_functions.php:665
357
  msgid "WARNING: Illegal use notification"
358
  msgstr "УВАГА: виявлено несанкціоноване використання плагіну"
359
 
360
- #: bws_functions.php:665
361
  msgid ""
362
  "You can use one license of the Pro plugin for one domain only. Please check "
363
  "and edit your license or domain if necessary using you personal Client Area. "
@@ -369,7 +369,7 @@ msgstr ""
369
  "вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання "
370
  "протягом 24 годин, інакше плагін буде деактивовано."
371
 
372
- #: bws_functions.php:673
373
  msgid ""
374
  "Notice: Your Pro Trial license has expired. To continue using the plugin you "
375
  "should buy a Pro license"
@@ -377,7 +377,7 @@ msgstr ""
377
  "Увага: Термін дії тріал періоду Pro версії плагіну скінчився. Щоб продовжити "
378
  "користуватись плагіном, будь ласка, придбайте ліцензію Pro"
379
 
380
- #: bws_functions.php:675
381
  msgid ""
382
  "Your license has expired. To continue getting top-priority support and "
383
  "plugin updates you should extend it."
@@ -385,42 +385,42 @@ msgstr ""
385
  "Строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у "
386
  "майбутньому, вам слід подовжити ліцензію."
387
 
388
- #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1353
389
  msgid "Learn more"
390
  msgstr "Дізнатись більше"
391
 
392
- #: bws_functions.php:685
393
  #, php-format
394
  msgid "Notice: You are using the Pro Trial license of %s plugin."
395
  msgstr "Увага: Ви використовуєте тріал Pro версію плагіну %s."
396
 
397
- #: bws_functions.php:687
398
  msgid "Notice: You are using the Pro Trial license of plugin."
399
  msgstr "Увага: Ви використовуєте тріал Pro версію плагіну."
400
 
401
- #: bws_functions.php:690
402
  msgid "The Pro Trial license will expire on"
403
  msgstr "Тріал період Pro версії плагіну закінчується"
404
 
405
- #: bws_functions.php:728
406
  msgid "You license for"
407
  msgstr "Ваша ліцензія для"
408
 
409
- #: bws_functions.php:728
410
  msgid "expires on"
411
  msgstr "витікає"
412
 
413
- #: bws_functions.php:728
414
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
415
  msgstr ""
416
  "та ви більше не будете отримувати першочергову технічну підтримку та "
417
  "оновлення."
418
 
419
- #: bws_functions.php:823
420
  msgid "Thank you for choosing"
421
  msgstr "Дякуємо, що обрали"
422
 
423
- #: bws_functions.php:824
424
  msgid ""
425
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
426
  "we'd love to hear about it!"
@@ -429,23 +429,23 @@ msgstr ""
429
  "функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
430
  "нових ідей!"
431
 
432
- #: bws_functions.php:825
433
  msgid "Suggest a Feature"
434
  msgstr "Запропонувати функціонал"
435
 
436
- #: bws_functions.php:841
437
  msgid "Notice"
438
  msgstr "Зауважте"
439
 
440
- #: bws_functions.php:841
441
  msgid "The plugin's settings have been changed."
442
  msgstr "Налаштування плагіну змінено."
443
 
444
- #: bws_functions.php:842 bws_functions.php:1409
445
  msgid "Save Changes"
446
  msgstr "Зберегти зміни"
447
 
448
- #: bws_functions.php:856
449
  msgid ""
450
  "You can always look at premium options by clicking on the \"Show Pro features"
451
  "\" in the \"Go PRO\" tab"
@@ -453,121 +453,121 @@ msgstr ""
453
  "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку "
454
  "\"Показати Pro особливост\" на вкладці \"Перейти на PRO\""
455
 
456
- #: bws_functions.php:985
457
  msgid "Add shortcode"
458
  msgstr "Додати шорткод"
459
 
460
- #: bws_functions.php:985
461
  msgid "Add BestWebSoft plugins' shortcodes using this button."
462
  msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
463
 
464
- #: bws_functions.php:1034
465
  msgid "Close"
466
  msgstr "Закрити"
467
 
468
- #: bws_functions.php:1126
469
  msgid "Restore all plugin settings to defaults"
470
  msgstr "Скинути налаштування плагіну до стандартних"
471
 
472
- #: bws_functions.php:1128
473
  msgid "Restore settings"
474
  msgstr "Скинути налаштування"
475
 
476
- #: bws_functions.php:1139
477
  msgid "Are you sure you want to restore all settings by default?"
478
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
479
 
480
- #: bws_functions.php:1142
481
  msgid "Yes, restore all settings"
482
  msgstr "Так, скинути налаштування"
483
 
484
- #: bws_functions.php:1143
485
  msgid "No, go back to the settings page"
486
  msgstr "Ні, повернутись назад на сторінку налаштувань"
487
 
488
- #: bws_functions.php:1189
489
  msgid "Plugin"
490
  msgstr "Плагін"
491
 
492
- #: bws_functions.php:1198
493
  msgid "Shortcode settings"
494
  msgstr "Налаштування шорткоду"
495
 
496
- #: bws_functions.php:1203
497
  msgid "The shortcode will be inserted"
498
  msgstr "Буде вставлено шорткод"
499
 
500
- #: bws_functions.php:1208
501
  msgid "Insert"
502
  msgstr "Вставити"
503
 
504
- #: bws_functions.php:1241
505
  msgid "Visit Help Center"
506
  msgstr "Перейти в Help Center"
507
 
508
- #: bws_functions.php:1246
509
  msgid "FAQ"
510
  msgstr "FAQ"
511
 
512
- #: bws_functions.php:1252
513
  msgid "For more information:"
514
  msgstr "Для отримання додаткової інформації:"
515
 
516
- #: bws_functions.php:1253
517
  msgid "Documentation"
518
  msgstr "Документація"
519
 
520
- #: bws_functions.php:1254
521
  msgid "Video Instructions"
522
  msgstr "Відео інструкції"
523
 
524
- #: bws_functions.php:1255
525
  msgid "Submit a Request"
526
  msgstr "Надіслати запит"
527
 
528
- #: bws_functions.php:1266
529
  msgid "You do not have sufficient permissions to edit plugins for this site."
530
  msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
531
 
532
- #: bws_functions.php:1317 bws_functions.php:1344
533
  #, php-format
534
  msgid "File %s edited successfully."
535
  msgstr "Файл %s успішно відредаговано."
536
 
537
- #: bws_functions.php:1319 bws_functions.php:1346
538
  msgid "Not enough permissions to create or update the file"
539
  msgstr "У Вас недостатньо дозволів для створення або поновлення файлу"
540
 
541
- #: bws_functions.php:1349
542
  msgid "Not enough permissions to create the file"
543
  msgstr "У Вас недостатньо дозволів для створення файлу"
544
 
545
- #: bws_functions.php:1387
546
  msgid "These styles will be added to the header on all pages of your site."
547
  msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
548
 
549
- #: bws_functions.php:1389
550
  #, php-format
551
  msgid ""
552
- "These PHP code will be hooked to the %s action and will be printed on front "
553
  "end only."
554
  msgstr ""
555
  "Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
556
 
557
- #: bws_functions.php:1393
558
  msgid "Editing"
559
  msgstr "Редагування"
560
 
561
- #: bws_functions.php:1395
562
  msgid "Browsing"
563
  msgstr "Огляд"
564
 
565
- #: bws_functions.php:1402
566
  #, php-format
567
  msgid "Learn more about %s"
568
  msgstr "Дізнатись більше про %s"
569
 
570
- #: bws_functions.php:1413
571
  #, php-format
572
  msgid ""
573
  "You need to make this files writable before you can save your changes. See "
@@ -724,7 +724,7 @@ msgstr "Дякуємо, що звернулись до нас."
724
  msgid "Sorry, email message could not be delivered."
725
  msgstr "Вибачте, ваше емейл не може бути доставлено"
726
 
727
- #: bws_menu.php:286 bws_menu.php:626
728
  msgid "System status"
729
  msgstr "Системна інформація"
730
 
@@ -740,27 +740,24 @@ msgstr "Управління придбаними ліцензіями і під
740
  msgid "Client Area"
741
  msgstr "Client Area"
742
 
743
- #: bws_menu.php:307
744
- msgid "Enter your license key"
745
- msgstr "Ваш ліцензійний ключ"
746
-
747
- #: bws_menu.php:311
748
- msgid "Activate Membership"
749
- msgstr "Активувати Membership"
750
 
751
- #: bws_menu.php:320
752
- msgid "Don’t have valid license key yet?"
753
- msgstr "Немає чинного ліцензійного ключа?"
754
 
755
- #: bws_menu.php:320
756
- msgid "Subscribe to Pro Membership Now"
757
- msgstr "Підписатися на Pro Membership Зараз"
758
 
759
- #: bws_menu.php:329
760
  msgid "Upload Plugin"
761
  msgstr "Завантажити плагін"
762
 
763
- #: bws_menu.php:333
764
  #, php-format
765
  msgid ""
766
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -773,7 +770,7 @@ msgstr ""
773
  "надіслані&#8221;, проблеми з каналами чи інші неполадки, спробуйте вимкнути "
774
  "чи видалити цей плагін."
775
 
776
- #: bws_menu.php:335
777
  msgid ""
778
  "Plugin could not be activated because it triggered a <strong>fatal error</"
779
  "strong>."
@@ -781,125 +778,125 @@ msgstr ""
781
  "Плагін не вдалося активувати, бо він спричинив <strong>критичну помилку</"
782
  "strong>."
783
 
784
- #: bws_menu.php:338
785
  msgid "Plugin <strong>activated</strong>."
786
  msgstr "Плагін <strong>активовано</strong>."
787
 
788
- #: bws_menu.php:345
789
  msgid "Installing Plugin"
790
  msgstr "Встановлення плагіну"
791
 
792
- #: bws_menu.php:351
793
  msgid "Downloading install package from"
794
  msgstr "Завантаження встановлюючого пакунку з"
795
 
796
- #: bws_menu.php:376
797
  msgid "Unpacking the package"
798
  msgstr "Розпакування пакета"
799
 
800
- #: bws_menu.php:381 bws_menu.php:389
801
  msgid "Installing the plugin"
802
  msgstr "Встановлення плагіну"
803
 
804
- #: bws_menu.php:395
805
  msgid "Successfully installed the plugin"
806
  msgstr "Успішно встановлено плагін"
807
 
808
- #: bws_menu.php:407
809
  msgid "Activate Plugin"
810
  msgstr "Активувати плагін"
811
 
812
- #: bws_menu.php:407 bws_menu.php:413
813
  msgid "Return to BestWebSoft Panel"
814
  msgstr "Назад до BestWebSoft Panel"
815
 
816
- #: bws_menu.php:417 bws_menu.php:432 bws_menu.php:561
817
  msgid "All"
818
  msgstr "Всі"
819
 
820
- #: bws_menu.php:418
821
  msgid "Installed"
822
  msgstr "Встановлені"
823
 
824
- #: bws_menu.php:419
825
  msgid "Not Installed"
826
  msgstr "Не встановлені"
827
 
828
- #: bws_menu.php:425
829
  msgid "Filter results"
830
  msgstr "Фільтр результатів"
831
 
832
- #: bws_menu.php:428 bws_menu.php:557
833
  msgid "Category"
834
  msgstr "Категорія"
835
 
836
- #: bws_menu.php:492
837
  msgid "Not installed"
838
  msgstr "Не встановлен"
839
 
840
- #: bws_menu.php:496
841
  msgid "Renew to get updates"
842
  msgstr "Продовжити для поновлення"
843
 
844
- #: bws_menu.php:499
845
  #, php-format
846
  msgid "Update to v %s"
847
  msgstr "Оновити до версії %s"
848
 
849
- #: bws_menu.php:511 bws_menu.php:534 bws_menu.php:543
850
  msgid "Install Now"
851
  msgstr "Встановити"
852
 
853
- #: bws_menu.php:517
854
  msgid "Upgrade to Pro"
855
  msgstr "Оновитися на Pro"
856
 
857
- #: bws_menu.php:521
858
  msgid "Donate"
859
  msgstr "Пожертвувати"
860
 
861
- #: bws_menu.php:531 bws_menu.php:540
862
  msgid "Activate this plugin"
863
  msgstr "Активувати плагін"
864
 
865
- #: bws_menu.php:543
866
  msgid "Install this plugin"
867
  msgstr "Встановити плагін"
868
 
869
- #: bws_menu.php:552
870
  msgid "Nothing found. Try another criteria."
871
  msgstr "Нічого не знайдено. Спробуйте інші критерії."
872
 
873
- #: bws_menu.php:589 bws_menu.php:609
874
  #, php-format
875
  msgid "By %s"
876
  msgstr "За %s"
877
 
878
- #: bws_menu.php:615
879
  msgid "Already Installed"
880
  msgstr "Уже встановлено %s"
881
 
882
- #: bws_menu.php:623
883
  msgid "Browse Free WordPress Themes"
884
  msgstr "Огляд безкоштовних WordPress тем"
885
 
886
- #: bws_menu.php:632
887
  msgid "Send to support"
888
  msgstr "Відправити службі тех. підтримки"
889
 
890
- #: bws_menu.php:639
891
  msgid "Send to custom email &#187;"
892
  msgstr "Відправити на електронну адресу &#187;"
893
 
894
- #: bws_menu.php:646
895
  msgid "Environment"
896
  msgstr "Системне оточення"
897
 
898
- #: bws_menu.php:657
899
  msgid "Active Plugins"
900
  msgstr "Активні плагіни"
901
 
902
- #: bws_menu.php:670
903
  msgid "Inactive Plugins"
904
  msgstr "Не активні плагіни"
905
 
@@ -939,8 +936,11 @@ msgstr "Утиліти"
939
  msgid "Other"
940
  msgstr "Інше"
941
 
942
- #~ msgid "Get Access to %s+ Premium Plugins"
943
- #~ msgstr "Отримати Доступ до %s+ Преміум Плагинам"
 
 
 
944
 
945
  #~ msgid ""
946
  #~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-08-04 15:44+0300\n"
6
+ "PO-Revision-Date: 2016-08-04 15:44+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
20
  msgid "Plugins"
21
  msgstr "Плагіни"
22
 
23
+ #: bws_functions.php:39 bws_menu.php:283 bws_menu.php:581
24
  msgid "Themes"
25
  msgstr "Теми"
26
 
64
  msgid "Let's get started"
65
  msgstr "Розпочнемо"
66
 
67
+ #: bws_functions.php:120 bws_functions.php:153 bws_menu.php:527
68
+ #: bws_menu.php:529
69
  msgid "Settings"
70
  msgstr "Налаштування"
71
 
72
+ #: bws_functions.php:122 bws_functions.php:479 bws_menu.php:298
73
  msgid "or"
74
  msgstr "або"
75
 
78
  msgstr "Додати"
79
 
80
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
81
+ #: bws_functions.php:727 bws_functions.php:831
82
  msgid "Close notice"
83
  msgstr "Закрити"
84
 
110
  msgid "Extend standard plugin functionality with new great options."
111
  msgstr "Розширює можливості стандартного функціоналу плагіна."
112
 
113
+ #: bws_functions.php:222 bws_functions.php:666 bws_menu.php:597
114
  msgid "Learn More"
115
  msgstr "Дізнатись більше"
116
 
183
  "версії плагіну можна використати лише один раз."
184
 
185
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
186
+ #: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
187
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
188
  msgstr ""
189
  "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
190
 
191
+ #: bws_functions.php:361 bws_menu.php:387
192
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
193
  msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
194
 
195
+ #: bws_functions.php:367 bws_menu.php:394
196
  msgid ""
197
  "Your server does not support either ZipArchive or Phar. Please, upload the "
198
  "plugin manually"
200
  "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
201
  "вручну"
202
 
203
+ #: bws_functions.php:374 bws_menu.php:404
204
  msgid "UploadDir is not writable. Please, upload the plugin manually"
205
  msgstr ""
206
  "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
262
  msgstr "Спробуйте %s-денну тріал версію безкоштовно"
263
 
264
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
265
+ #: bws_functions.php:532 bws_functions.php:1401 bws_menu.php:315
266
+ #: bws_menu.php:533 bws_menu.php:542
267
  msgid "Activate"
268
  msgstr "Активувати"
269
 
349
  "(ваше ім'я користувача - це емейл, який ви вказували при купівлі). При "
350
  "необхідності, будь ласка, відправте запит на відновлення вашого паролю."
351
 
352
+ #: bws_functions.php:651 bws_menu.php:306 bws_menu.php:317
353
  msgid "Check license key"
354
  msgstr "Перевірте ліцензійний ключ"
355
 
356
+ #: bws_functions.php:666
357
  msgid "WARNING: Illegal use notification"
358
  msgstr "УВАГА: виявлено несанкціоноване використання плагіну"
359
 
360
+ #: bws_functions.php:666
361
  msgid ""
362
  "You can use one license of the Pro plugin for one domain only. Please check "
363
  "and edit your license or domain if necessary using you personal Client Area. "
369
  "вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання "
370
  "протягом 24 годин, інакше плагін буде деактивовано."
371
 
372
+ #: bws_functions.php:675
373
  msgid ""
374
  "Notice: Your Pro Trial license has expired. To continue using the plugin you "
375
  "should buy a Pro license"
377
  "Увага: Термін дії тріал періоду Pro версії плагіну скінчився. Щоб продовжити "
378
  "користуватись плагіном, будь ласка, придбайте ліцензію Pro"
379
 
380
+ #: bws_functions.php:677
381
  msgid ""
382
  "Your license has expired. To continue getting top-priority support and "
383
  "plugin updates you should extend it."
385
  "Строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у "
386
  "майбутньому, вам слід подовжити ліцензію."
387
 
388
+ #: bws_functions.php:677 bws_functions.php:731 bws_functions.php:1356
389
  msgid "Learn more"
390
  msgstr "Дізнатись більше"
391
 
392
+ #: bws_functions.php:688
393
  #, php-format
394
  msgid "Notice: You are using the Pro Trial license of %s plugin."
395
  msgstr "Увага: Ви використовуєте тріал Pro версію плагіну %s."
396
 
397
+ #: bws_functions.php:690
398
  msgid "Notice: You are using the Pro Trial license of plugin."
399
  msgstr "Увага: Ви використовуєте тріал Pro версію плагіну."
400
 
401
+ #: bws_functions.php:693
402
  msgid "The Pro Trial license will expire on"
403
  msgstr "Тріал період Pro версії плагіну закінчується"
404
 
405
+ #: bws_functions.php:731
406
  msgid "You license for"
407
  msgstr "Ваша ліцензія для"
408
 
409
+ #: bws_functions.php:731
410
  msgid "expires on"
411
  msgstr "витікає"
412
 
413
+ #: bws_functions.php:731
414
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
415
  msgstr ""
416
  "та ви більше не будете отримувати першочергову технічну підтримку та "
417
  "оновлення."
418
 
419
+ #: bws_functions.php:826
420
  msgid "Thank you for choosing"
421
  msgstr "Дякуємо, що обрали"
422
 
423
+ #: bws_functions.php:827
424
  msgid ""
425
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
426
  "we'd love to hear about it!"
429
  "функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
430
  "нових ідей!"
431
 
432
+ #: bws_functions.php:828
433
  msgid "Suggest a Feature"
434
  msgstr "Запропонувати функціонал"
435
 
436
+ #: bws_functions.php:844
437
  msgid "Notice"
438
  msgstr "Зауважте"
439
 
440
+ #: bws_functions.php:844
441
  msgid "The plugin's settings have been changed."
442
  msgstr "Налаштування плагіну змінено."
443
 
444
+ #: bws_functions.php:845 bws_functions.php:1412
445
  msgid "Save Changes"
446
  msgstr "Зберегти зміни"
447
 
448
+ #: bws_functions.php:859
449
  msgid ""
450
  "You can always look at premium options by clicking on the \"Show Pro features"
451
  "\" in the \"Go PRO\" tab"
453
  "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку "
454
  "\"Показати Pro особливост\" на вкладці \"Перейти на PRO\""
455
 
456
+ #: bws_functions.php:988
457
  msgid "Add shortcode"
458
  msgstr "Додати шорткод"
459
 
460
+ #: bws_functions.php:988
461
  msgid "Add BestWebSoft plugins' shortcodes using this button."
462
  msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
463
 
464
+ #: bws_functions.php:1037
465
  msgid "Close"
466
  msgstr "Закрити"
467
 
468
+ #: bws_functions.php:1129
469
  msgid "Restore all plugin settings to defaults"
470
  msgstr "Скинути налаштування плагіну до стандартних"
471
 
472
+ #: bws_functions.php:1131
473
  msgid "Restore settings"
474
  msgstr "Скинути налаштування"
475
 
476
+ #: bws_functions.php:1142
477
  msgid "Are you sure you want to restore all settings by default?"
478
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
479
 
480
+ #: bws_functions.php:1145
481
  msgid "Yes, restore all settings"
482
  msgstr "Так, скинути налаштування"
483
 
484
+ #: bws_functions.php:1146
485
  msgid "No, go back to the settings page"
486
  msgstr "Ні, повернутись назад на сторінку налаштувань"
487
 
488
+ #: bws_functions.php:1192
489
  msgid "Plugin"
490
  msgstr "Плагін"
491
 
492
+ #: bws_functions.php:1201
493
  msgid "Shortcode settings"
494
  msgstr "Налаштування шорткоду"
495
 
496
+ #: bws_functions.php:1206
497
  msgid "The shortcode will be inserted"
498
  msgstr "Буде вставлено шорткод"
499
 
500
+ #: bws_functions.php:1211
501
  msgid "Insert"
502
  msgstr "Вставити"
503
 
504
+ #: bws_functions.php:1244
505
  msgid "Visit Help Center"
506
  msgstr "Перейти в Help Center"
507
 
508
+ #: bws_functions.php:1249
509
  msgid "FAQ"
510
  msgstr "FAQ"
511
 
512
+ #: bws_functions.php:1255
513
  msgid "For more information:"
514
  msgstr "Для отримання додаткової інформації:"
515
 
516
+ #: bws_functions.php:1256
517
  msgid "Documentation"
518
  msgstr "Документація"
519
 
520
+ #: bws_functions.php:1257
521
  msgid "Video Instructions"
522
  msgstr "Відео інструкції"
523
 
524
+ #: bws_functions.php:1258
525
  msgid "Submit a Request"
526
  msgstr "Надіслати запит"
527
 
528
+ #: bws_functions.php:1269
529
  msgid "You do not have sufficient permissions to edit plugins for this site."
530
  msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
531
 
532
+ #: bws_functions.php:1320 bws_functions.php:1347
533
  #, php-format
534
  msgid "File %s edited successfully."
535
  msgstr "Файл %s успішно відредаговано."
536
 
537
+ #: bws_functions.php:1322 bws_functions.php:1349
538
  msgid "Not enough permissions to create or update the file"
539
  msgstr "У Вас недостатньо дозволів для створення або поновлення файлу"
540
 
541
+ #: bws_functions.php:1352
542
  msgid "Not enough permissions to create the file"
543
  msgstr "У Вас недостатньо дозволів для створення файлу"
544
 
545
+ #: bws_functions.php:1390
546
  msgid "These styles will be added to the header on all pages of your site."
547
  msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
548
 
549
+ #: bws_functions.php:1392
550
  #, php-format
551
  msgid ""
552
+ "This PHP code will be hooked to the %s action and will be printed on front "
553
  "end only."
554
  msgstr ""
555
  "Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
556
 
557
+ #: bws_functions.php:1396
558
  msgid "Editing"
559
  msgstr "Редагування"
560
 
561
+ #: bws_functions.php:1398
562
  msgid "Browsing"
563
  msgstr "Огляд"
564
 
565
+ #: bws_functions.php:1405
566
  #, php-format
567
  msgid "Learn more about %s"
568
  msgstr "Дізнатись більше про %s"
569
 
570
+ #: bws_functions.php:1416
571
  #, php-format
572
  msgid ""
573
  "You need to make this files writable before you can save your changes. See "
724
  msgid "Sorry, email message could not be delivered."
725
  msgstr "Вибачте, ваше емейл не може бути доставлено"
726
 
727
+ #: bws_menu.php:286 bws_menu.php:632
728
  msgid "System status"
729
  msgstr "Системна інформація"
730
 
740
  msgid "Client Area"
741
  msgstr "Client Area"
742
 
743
+ #: bws_menu.php:296
744
+ #, php-format
745
+ msgid "Get Access to %s+ Premium Plugins"
746
+ msgstr "Отримати Доступ до %s+ Преміум Плагинам"
 
 
 
747
 
748
+ #: bws_menu.php:298
749
+ msgid "Subscribe to Pro Membership"
750
+ msgstr "Підписатися на Pro Membership"
751
 
752
+ #: bws_menu.php:309
753
+ msgid "Enter your license key"
754
+ msgstr "Ваш ліцензійний ключ"
755
 
756
+ #: bws_menu.php:331
757
  msgid "Upload Plugin"
758
  msgstr "Завантажити плагін"
759
 
760
+ #: bws_menu.php:335
761
  #, php-format
762
  msgid ""
763
  "The plugin generated %d characters of <strong>unexpected output</strong> "
770
  "надіслані&#8221;, проблеми з каналами чи інші неполадки, спробуйте вимкнути "
771
  "чи видалити цей плагін."
772
 
773
+ #: bws_menu.php:337
774
  msgid ""
775
  "Plugin could not be activated because it triggered a <strong>fatal error</"
776
  "strong>."
778
  "Плагін не вдалося активувати, бо він спричинив <strong>критичну помилку</"
779
  "strong>."
780
 
781
+ #: bws_menu.php:340
782
  msgid "Plugin <strong>activated</strong>."
783
  msgstr "Плагін <strong>активовано</strong>."
784
 
785
+ #: bws_menu.php:347
786
  msgid "Installing Plugin"
787
  msgstr "Встановлення плагіну"
788
 
789
+ #: bws_menu.php:353
790
  msgid "Downloading install package from"
791
  msgstr "Завантаження встановлюючого пакунку з"
792
 
793
+ #: bws_menu.php:378
794
  msgid "Unpacking the package"
795
  msgstr "Розпакування пакета"
796
 
797
+ #: bws_menu.php:383 bws_menu.php:391
798
  msgid "Installing the plugin"
799
  msgstr "Встановлення плагіну"
800
 
801
+ #: bws_menu.php:397
802
  msgid "Successfully installed the plugin"
803
  msgstr "Успішно встановлено плагін"
804
 
805
+ #: bws_menu.php:409
806
  msgid "Activate Plugin"
807
  msgstr "Активувати плагін"
808
 
809
+ #: bws_menu.php:409 bws_menu.php:415
810
  msgid "Return to BestWebSoft Panel"
811
  msgstr "Назад до BestWebSoft Panel"
812
 
813
+ #: bws_menu.php:419 bws_menu.php:434 bws_menu.php:563
814
  msgid "All"
815
  msgstr "Всі"
816
 
817
+ #: bws_menu.php:420 bws_menu.php:620
818
  msgid "Installed"
819
  msgstr "Встановлені"
820
 
821
+ #: bws_menu.php:421
822
  msgid "Not Installed"
823
  msgstr "Не встановлені"
824
 
825
+ #: bws_menu.php:427
826
  msgid "Filter results"
827
  msgstr "Фільтр результатів"
828
 
829
+ #: bws_menu.php:430 bws_menu.php:559
830
  msgid "Category"
831
  msgstr "Категорія"
832
 
833
+ #: bws_menu.php:494
834
  msgid "Not installed"
835
  msgstr "Не встановлен"
836
 
837
+ #: bws_menu.php:498
838
  msgid "Renew to get updates"
839
  msgstr "Продовжити для поновлення"
840
 
841
+ #: bws_menu.php:501
842
  #, php-format
843
  msgid "Update to v %s"
844
  msgstr "Оновити до версії %s"
845
 
846
+ #: bws_menu.php:513 bws_menu.php:536 bws_menu.php:545
847
  msgid "Install Now"
848
  msgstr "Встановити"
849
 
850
+ #: bws_menu.php:519
851
  msgid "Upgrade to Pro"
852
  msgstr "Оновитися на Pro"
853
 
854
+ #: bws_menu.php:523
855
  msgid "Donate"
856
  msgstr "Пожертвувати"
857
 
858
+ #: bws_menu.php:533 bws_menu.php:542
859
  msgid "Activate this plugin"
860
  msgstr "Активувати плагін"
861
 
862
+ #: bws_menu.php:545
863
  msgid "Install this plugin"
864
  msgstr "Встановити плагін"
865
 
866
+ #: bws_menu.php:554
867
  msgid "Nothing found. Try another criteria."
868
  msgstr "Нічого не знайдено. Спробуйте інші критерії."
869
 
870
+ #: bws_menu.php:591 bws_menu.php:611
871
  #, php-format
872
  msgid "By %s"
873
  msgstr "За %s"
874
 
875
+ #: bws_menu.php:618
876
  msgid "Already Installed"
877
  msgstr "Уже встановлено %s"
878
 
879
+ #: bws_menu.php:629
880
  msgid "Browse Free WordPress Themes"
881
  msgstr "Огляд безкоштовних WordPress тем"
882
 
883
+ #: bws_menu.php:638
884
  msgid "Send to support"
885
  msgstr "Відправити службі тех. підтримки"
886
 
887
+ #: bws_menu.php:645
888
  msgid "Send to custom email &#187;"
889
  msgstr "Відправити на електронну адресу &#187;"
890
 
891
+ #: bws_menu.php:652
892
  msgid "Environment"
893
  msgstr "Системне оточення"
894
 
895
+ #: bws_menu.php:663
896
  msgid "Active Plugins"
897
  msgstr "Активні плагіни"
898
 
899
+ #: bws_menu.php:676
900
  msgid "Inactive Plugins"
901
  msgstr "Не активні плагіни"
902
 
936
  msgid "Other"
937
  msgstr "Інше"
938
 
939
+ #~ msgid "Activate Membership"
940
+ #~ msgstr "Активувати Membership"
941
+
942
+ #~ msgid "Don’t have valid license key yet?"
943
+ #~ msgstr "Немає чинного ліцензійного ключа?"
944
 
945
  #~ msgid ""
946
  #~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
css/style.css CHANGED
@@ -7,10 +7,17 @@
7
  #gglcptch-keys input[type=text] {
8
  max-width: 350px;
9
  width: 100%;
 
10
  }
11
  .gglcptch_verified {
12
  color: #03AA03;
13
  }
14
  .gglcptch_error_msg {
15
  color: #dc3232;
 
 
 
 
 
 
16
  }
7
  #gglcptch-keys input[type=text] {
8
  max-width: 350px;
9
  width: 100%;
10
+ display: inline-block;
11
  }
12
  .gglcptch_verified {
13
  color: #03AA03;
14
  }
15
  .gglcptch_error_msg {
16
  color: #dc3232;
17
+ }
18
+ @media only screen and ( max-width: 782px ) {
19
+ #gglcptch-keys input[type=text] {
20
+ width: 90%;
21
+ max-width: initial;
22
+ }
23
  }
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.25
10
  Author URI: http://bestwebsoft.com/
11
  License: GPLv3 or later
12
  */
@@ -31,7 +31,7 @@ License: GPLv3 or later
31
  if ( ! function_exists( 'gglcptch_admin_menu' ) ) {
32
  function gglcptch_admin_menu() {
33
  bws_general_menu();
34
- $gglcptch_settings = add_submenu_page( 'bws_panel', __( 'Google Captcha Settings', 'google-captcha' ), 'Google Captcha', 'manage_options', 'google-captcha.php', 'gglcptch_settings_page' );
35
  add_action( 'load-' . $gglcptch_settings, 'gglcptch_add_tabs' );
36
  }
37
  }
@@ -45,7 +45,7 @@ if ( ! function_exists( 'gglcptch_plugins_loaded' ) ) {
45
 
46
  if ( ! function_exists( 'gglcptch_init' ) ) {
47
  function gglcptch_init() {
48
- global $gglcptch_plugin_info;
49
 
50
  require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
51
  bws_include_init( plugin_basename( __FILE__ ) );
@@ -57,7 +57,59 @@ if ( ! function_exists( 'gglcptch_init' ) ) {
57
  }
58
 
59
  /* Function check if plugin is compatible with current WP version */
60
- bws_wp_min_version_check( plugin_basename( __FILE__ ), $gglcptch_plugin_info, '3.8', '3.1' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  }
62
  }
63
 
@@ -65,13 +117,9 @@ if ( ! function_exists( 'gglcptch_admin_init' ) ) {
65
  function gglcptch_admin_init() {
66
  global $bws_plugin_info, $gglcptch_plugin_info, $bws_shortcode_list;
67
 
68
- if ( ! isset( $bws_plugin_info ) || empty( $bws_plugin_info ) )
69
  $bws_plugin_info = array( 'id' => '109', 'version' => $gglcptch_plugin_info["Version"] );
70
 
71
- /* Call register settings function */
72
- if ( isset( $_GET['page'] ) && "google-captcha.php" == $_GET['page'] )
73
- register_gglcptch_settings();
74
-
75
  /* add google captcha to global $bws_shortcode_list */
76
  $bws_shortcode_list['gglcptch'] = array( 'name' => 'Google Captcha (reCAPTCHA)' );
77
  }
@@ -143,7 +191,7 @@ if ( ! function_exists( 'gglcptch_add_scripts' ) ) {
143
  global $gglcptch_options;
144
 
145
  if ( empty( $gglcptch_options ) )
146
- $gglcptch_options = get_option( 'gglcptch_options' );
147
 
148
  if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] )
149
  gglcptch_remove_dublicate_scripts();
@@ -160,9 +208,10 @@ if ( ! function_exists( 'gglcptch_add_scripts' ) ) {
160
  'error' => "<strong>" . __( 'Warning', 'google-captcha' ) . ":</strong>&nbsp;" . __( 'It has been found more than one reCAPTCHA in current form. In this case reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA blocks.', 'google-captcha' )
161
  ),
162
  'vars' => array(
163
- 'ajaxurl' => admin_url( 'admin-ajax.php' ),
164
- 'error_msg' => __( 'Error: You have entered an incorrect reCAPTCHA value.', 'google-captcha' ),
165
- 'nonce' => wp_create_nonce( 'gglcptch_recaptcha_nonce' )
 
166
  )
167
  ) );
168
  }
@@ -182,9 +231,30 @@ if ( ! function_exists( 'gglcptch_add_async_attribute' ) ) {
182
  /* Google catpcha settings */
183
  if ( ! function_exists( 'register_gglcptch_settings' ) ) {
184
  function register_gglcptch_settings() {
185
- global $gglcptch_options, $bws_plugin_info, $gglcptch_plugin_info, $gglcptch_default_options;
186
 
187
- $gglcptch_default_options = array(
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
188
  'public_key' => '',
189
  'private_key' => '',
190
  'login_form' => '1',
@@ -203,25 +273,10 @@ if ( ! function_exists( 'register_gglcptch_settings' ) ) {
203
 
204
  if ( function_exists( 'get_editable_roles' ) ) {
205
  foreach ( get_editable_roles() as $role => $fields ) {
206
- $gglcptch_default_options[ $role ] = '0';
207
  }
208
  }
209
-
210
- /* Install the option defaults */
211
- if ( ! get_option( 'gglcptch_options' ) )
212
- add_option( 'gglcptch_options', $gglcptch_default_options );
213
- /* Get options from the database */
214
- $gglcptch_options = get_option( 'gglcptch_options' );
215
-
216
- /* Array merge incase this version has added new options */
217
- if ( ! isset( $gglcptch_options['plugin_option_version'] ) || $gglcptch_options['plugin_option_version'] != $gglcptch_plugin_info["Version"] ) {
218
- $gglcptch_default_options['display_settings_notice'] = 0;
219
- $gglcptch_options = array_merge( $gglcptch_default_options, $gglcptch_options );
220
- $gglcptch_options['plugin_option_version'] = $gglcptch_plugin_info["Version"];
221
- /* show pro features */
222
- $gglcptch_options['hide_premium_options'] = array();
223
- update_option( 'gglcptch_options', $gglcptch_options );
224
- }
225
  }
226
  }
227
 
@@ -257,9 +312,9 @@ if ( ! function_exists( 'gglcptch_plugin_status' ) ) {
257
  }
258
 
259
  /* Display settings page */
260
- if ( ! function_exists( 'gglcptch_settings_page' ) ) {
261
- function gglcptch_settings_page() {
262
- global $gglcptch_options, $gglcptch_plugin_info, $wp_version, $gglcptch_default_options;
263
 
264
  $plugin_basename = plugin_basename( __FILE__ );
265
  $message = $error = '';
@@ -353,7 +408,7 @@ if ( ! function_exists( 'gglcptch_settings_page' ) ) {
353
  }
354
 
355
  if ( isset( $_REQUEST['bws_restore_confirm'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
356
- $gglcptch_options = $gglcptch_default_options;
357
  update_option( 'gglcptch_options', $gglcptch_options );
358
  $message = __( 'All plugin settings were restored.', 'google-captcha' );
359
  }
@@ -425,7 +480,7 @@ if ( ! function_exists( 'gglcptch_settings_page' ) ) {
425
  </table>
426
  <?php if ( ! empty( $gglcptch_options['public_key'] ) && ! empty( $gglcptch_options['private_key'] ) ) { ?>
427
  <p id="gglcptch-test-keys" class="submit hide-if-no-js">
428
- <a class="button button-primary" href="<?php echo add_query_arg( array( '_wpnonce' => wp_create_nonce( 'gglcptch-test-keys' ) , 'action' => 'gglcptch-test-keys' ), admin_url( 'admin-ajax.php' ) ); ?>"><?php _e( 'Test Keys' , 'google-captcha' ); ?></a>
429
  </p>
430
  <?php } ?>
431
  <h3><?php _e( 'Options', 'google-captcha' ); ?></h3>
@@ -466,11 +521,14 @@ if ( ! function_exists( 'gglcptch_settings_page' ) ) {
466
  } elseif ( 'not_installed' == $gglcptch_plugin['status'] ) {
467
  $gglcptch_attrs = 'disabled="disabled"';
468
  $gglcptch_plugin_notice = sprintf( __( 'You should %s to use this functionality', 'google-captcha' ),
469
- sprintf( '<a href="http://bestwebsoft.com/products/contact-form/?k=d70b58e1739ab4857d675fed2213cedc&pn=75&v=%s&wp_v=%s">%s %s</a>', $gglcptch_plugin_info["Version"], $wp_version, __( 'download', 'google-captcha' ), $gglcptch_plugin_name )
470
  );
471
  }
 
 
 
472
  if ( '1' == $gglcptch_options['contact_form'] && $gglcptch_attrs == '' ) {
473
- $gglcptch_attrs .= ' checked="checked"';
474
  } ?>
475
  <label><input type="checkbox" <?php echo $gglcptch_attrs; ?> name="gglcptch_contact_form" value="contact_form" /> <?php echo $gglcptch_plugin_name; ?></label>
476
  <div class="bws_help_box dashicons dashicons-editor-help" style="vertical-align: middle;"><div class="bws_hidden_help_text"><img src="<?php echo plugins_url( 'google-captcha/images'); ?>/contact_form.jpg" title="<?php echo $gglcptch_plugin_name; ?>" alt="<?php echo $gglcptch_plugin_name; ?>"></div></div>
@@ -629,7 +687,7 @@ if ( ! function_exists( 'gglcptch_check_role' ) ) {
629
  if ( ! empty( $current_user->roles[0] ) ) {
630
  $role = $current_user->roles[0];
631
  if ( empty( $gglcptch_options ) )
632
- $gglcptch_options = get_option( 'gglcptch_options' );
633
  return isset( $gglcptch_options[ $role ] ) && '1' == $gglcptch_options[ $role ] ? true : false;
634
  } else
635
  return false;
@@ -642,7 +700,7 @@ if ( ! function_exists( 'gglcptch_display' ) ) {
642
  global $gglcptch_options, $gglcptch_count;
643
 
644
  if ( empty( $gglcptch_options ) )
645
- $gglcptch_options = get_option( 'gglcptch_options' );
646
 
647
  if ( ! $gglcptch_count )
648
  $gglcptch_count = 1;
@@ -727,8 +785,11 @@ if ( ! function_exists( 'gglcptch_check' ) ) {
727
  function gglcptch_check( $debug = false ) {
728
  global $gglcptch_options;
729
 
730
- $publickey = $gglcptch_options['public_key'];
731
- $privatekey = $gglcptch_options['private_key'];
 
 
 
732
 
733
  if ( ! $privatekey || ! $publickey ) {
734
  return array(
@@ -865,26 +926,49 @@ if ( ! function_exists( 'gglcptch_login_check' ) ) {
865
 
866
  /* Check google captcha in BWS Contact Form */
867
  if ( ! function_exists( 'gglcptch_recaptcha_check' ) ) {
868
- function gglcptch_recaptcha_check( $display_error = true ) {
869
  /**
870
  * this condition is necessary for compatibility
871
  * with Contact Form ( Free and Pro ) by BestWebsoft plugins versions
872
  * that use $_POST as parameter for hook ( old versions )
873
  * apply_filters( 'cntctfrmpr_check_form', $_POST );
874
  * @deprecated since 1.22
875
- * @todo remove after some while
876
  */
877
- if ( is_array( $display_error ) )
878
- $display_error = false;
 
 
 
 
879
 
880
  $result = gglcptch_check();
881
 
882
-
883
  if ( $result['response'] || $result['reason'] == 'ERROR_NO_KEYS' )
884
  return true;
885
 
886
- return $display_error ? '<strong>' . __( 'Error', 'google-captcha' ) . '</strong>:&nbsp;' . __( 'You have entered an incorrect reCAPTCHA value', 'google-captcha' ) . '.' : false;
887
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
888
  }
889
  }
890
 
@@ -961,8 +1045,22 @@ if ( ! function_exists( 'gglcptch_commentform_check' ) ) {
961
 
962
  /* display google captcha in Contact form */
963
  if ( ! function_exists( 'gglcptch_cf_display' ) ) {
964
- function gglcptch_cf_display( $error_message, $content = "" ) {
965
- return $content . gglcptch_display();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
966
  }
967
  }
968
 
@@ -994,6 +1092,7 @@ if ( ! function_exists( 'gglcptch_test_keys_verification' ) ) {
994
  function gglcptch_test_keys_verification() {
995
  if ( isset( $_REQUEST['_wpnonce'] ) && wp_verify_nonce( $_REQUEST['_wpnonce'] , $_REQUEST['action'] ) ) {
996
  $result = gglcptch_check( true );
 
997
  if ( ! $result['response'] ) {
998
  $errors = array(
999
  /* custom error */
@@ -1020,13 +1119,12 @@ if ( ! function_exists( 'gglcptch_test_keys_verification' ) ) {
1020
 
1021
  if ( isset( $result['reason'] ) ) {
1022
  foreach ( (array)$result['reason'] as $error ) { ?>
1023
- <div class="error gglcptch-test-results"><p><?php echo $errors[ $error ]; ?></p></div>
1024
  <?php }
1025
  }
1026
  } else { ?>
1027
  <div class="updated gglcptch-test-results"><p><?php _e( 'The verification is successfully completed.','google-captcha' ); ?></p></div>
1028
- <?php
1029
- $gglcptch_options = get_option( 'gglcptch_options' );
1030
  $gglcptch_options['keys_verified'] = true;
1031
  update_option( 'gglcptch_options', $gglcptch_options );
1032
  }
@@ -1052,8 +1150,7 @@ if ( ! function_exists( 'gglcptch_action_links' ) ) {
1052
  }
1053
 
1054
  if ( ! function_exists( 'gglcptch_shortcode_button_content' ) ) {
1055
- function gglcptch_shortcode_button_content( $content ) {
1056
- global $wp_version; ?>
1057
  <div id="gglcptch" style="display:none;">
1058
  <input class="bws_default_shortcode" type="hidden" name="default" value="[bws_google_captcha]" />
1059
  </div>
@@ -1077,6 +1174,9 @@ if ( ! function_exists ( 'gglcptch_plugin_banner' ) ) {
1077
  function gglcptch_plugin_banner() {
1078
  global $hook_suffix, $gglcptch_plugin_info, $gglcptch_options;
1079
  if ( 'plugins.php' == $hook_suffix ) {
 
 
 
1080
  if ( empty( $gglcptch_options['public_key'] ) || empty( $gglcptch_options['private_key'] ) ) { ?>
1081
  <div class="error">
1082
  <p>
@@ -1118,17 +1218,25 @@ if ( ! function_exists( 'gglcptch_add_tabs' ) ) {
1118
  if ( ! function_exists( 'gglcptch_delete_options' ) ) {
1119
  function gglcptch_delete_options() {
1120
  global $wpdb;
1121
- if ( function_exists( 'is_multisite' ) && is_multisite() ) {
1122
- $old_blog = $wpdb->blogid;
1123
- /* Get all blog ids */
1124
- $blogids = $wpdb->get_col( "SELECT `blog_id` FROM $wpdb->blogs" );
1125
- foreach ( $blogids as $blog_id ) {
1126
- switch_to_blog( $blog_id );
 
 
 
 
 
 
 
 
 
 
 
1127
  delete_option( 'gglcptch_options' );
1128
  }
1129
- switch_to_blog( $old_blog );
1130
- } else {
1131
- delete_option( 'gglcptch_options' );
1132
  }
1133
 
1134
  require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
@@ -1137,52 +1245,6 @@ if ( ! function_exists( 'gglcptch_delete_options' ) ) {
1137
  }
1138
  }
1139
 
1140
- global $gglcptch_options;
1141
- $gglcptch_options = get_option( 'gglcptch_options' );
1142
- if ( empty( $gglcptch_options ) ) {
1143
- register_gglcptch_settings();
1144
- $gglcptch_options = get_option( 'gglcptch_options' );
1145
- }
1146
-
1147
- /* Add hooks */
1148
- if ( '1' == $gglcptch_options['login_form'] || '1' == $gglcptch_options['reset_pwd_form'] || '1' == $gglcptch_options['registration_form'] ) {
1149
- add_action( 'login_enqueue_scripts', 'gglcptch_add_styles' );
1150
-
1151
- if ( '1' == $gglcptch_options['login_form'] ) {
1152
- add_action( 'login_form', 'gglcptch_login_display' );
1153
- add_action( 'authenticate', 'gglcptch_login_check', 21, 1 );
1154
- }
1155
-
1156
- if ( '1' == $gglcptch_options['reset_pwd_form'] ) {
1157
- add_action( 'lostpassword_form', 'gglcptch_login_display' );
1158
- add_action( 'allow_password_reset', 'gglcptch_lostpassword_check' );
1159
- }
1160
-
1161
- if ( '1' == $gglcptch_options['registration_form'] ) {
1162
- if ( ! is_multisite() ) {
1163
- add_action( 'register_form', 'gglcptch_login_display' );
1164
- add_action( 'registration_errors', 'gglcptch_lostpassword_check' );
1165
- } else {
1166
- add_action( 'signup_extra_fields', 'gglcptch_signup_display' );
1167
- add_action( 'signup_blogform', 'gglcptch_signup_display' );
1168
- add_filter( 'wpmu_validate_user_signup', 'gglcptch_signup_check' );
1169
- }
1170
- }
1171
- }
1172
-
1173
- if ( '1' == $gglcptch_options['comments_form'] ) {
1174
- add_action( 'comment_form_after_fields', 'gglcptch_commentform_display' );
1175
- add_action( 'comment_form_logged_in_after', 'gglcptch_commentform_display' );
1176
- add_action( 'pre_comment_on_post', 'gglcptch_commentform_check' );
1177
- }
1178
-
1179
- if ( '1' == $gglcptch_options['contact_form'] ) {
1180
- add_filter( 'cntctfrm_display_captcha', 'gglcptch_cf_display', 10, 2 );
1181
- add_filter( 'cntctfrmpr_display_captcha', 'gglcptch_cf_display', 10, 2 );
1182
- add_filter( 'cntctfrm_check_form', 'gglcptch_recaptcha_check' );
1183
- add_filter( 'cntctfrmpr_check_form', 'gglcptch_recaptcha_check' );
1184
- }
1185
-
1186
  add_action( 'admin_menu', 'gglcptch_admin_menu' );
1187
 
1188
  add_action( 'init', 'gglcptch_init' );
6
  Author: BestWebSoft
7
  Text Domain: google-captcha
8
  Domain Path: /languages
9
+ Version: 1.26
10
  Author URI: http://bestwebsoft.com/
11
  License: GPLv3 or later
12
  */
31
  if ( ! function_exists( 'gglcptch_admin_menu' ) ) {
32
  function gglcptch_admin_menu() {
33
  bws_general_menu();
34
+ $gglcptch_settings = add_submenu_page( 'bws_panel', __( 'Google Captcha Settings', 'google-captcha' ), 'Google Captcha', 'manage_options', 'google-captcha.php', 'gglcptch_add_settings_page' );
35
  add_action( 'load-' . $gglcptch_settings, 'gglcptch_add_tabs' );
36
  }
37
  }
45
 
46
  if ( ! function_exists( 'gglcptch_init' ) ) {
47
  function gglcptch_init() {
48
+ global $gglcptch_plugin_info, $gglcptch_options;
49
 
50
  require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
51
  bws_include_init( plugin_basename( __FILE__ ) );
57
  }
58
 
59
  /* Function check if plugin is compatible with current WP version */
60
+ bws_wp_min_version_check( plugin_basename( __FILE__ ), $gglcptch_plugin_info, '3.8' );
61
+
62
+ /* Call register settings function */
63
+ if ( ! ( $is_admin = is_admin() ) || ( isset( $_GET['page'] ) && 'google-captcha.php' == $_GET['page'] ) )
64
+ register_gglcptch_settings();
65
+
66
+ /* Add hooks */
67
+ if ( ! $is_admin ) {
68
+ /* Add hooks */
69
+ if ( '1' == $gglcptch_options['login_form'] || '1' == $gglcptch_options['reset_pwd_form'] || '1' == $gglcptch_options['registration_form'] ) {
70
+ add_action( 'login_enqueue_scripts', 'gglcptch_add_styles' );
71
+
72
+ if ( '1' == $gglcptch_options['login_form'] ) {
73
+ add_action( 'login_form', 'gglcptch_login_display' );
74
+ add_action( 'authenticate', 'gglcptch_login_check', 21, 1 );
75
+ }
76
+
77
+ if ( '1' == $gglcptch_options['reset_pwd_form'] ) {
78
+ add_action( 'lostpassword_form', 'gglcptch_login_display' );
79
+ add_action( 'allow_password_reset', 'gglcptch_lostpassword_check' );
80
+ }
81
+
82
+ if ( '1' == $gglcptch_options['registration_form'] ) {
83
+ if ( ! is_multisite() ) {
84
+ add_action( 'register_form', 'gglcptch_login_display', 99 );
85
+ add_action( 'registration_errors', 'gglcptch_lostpassword_check' );
86
+ } else {
87
+ add_action( 'signup_extra_fields', 'gglcptch_signup_display' );
88
+ add_action( 'signup_blogform', 'gglcptch_signup_display' );
89
+ add_filter( 'wpmu_validate_user_signup', 'gglcptch_signup_check' );
90
+ }
91
+ }
92
+ }
93
+
94
+ if ( '1' == $gglcptch_options['comments_form'] ) {
95
+ add_action( 'comment_form_after_fields', 'gglcptch_commentform_display' );
96
+ add_action( 'comment_form_logged_in_after', 'gglcptch_commentform_display' );
97
+ add_action( 'pre_comment_on_post', 'gglcptch_commentform_check' );
98
+ }
99
+
100
+ if ( '1' == $gglcptch_options['contact_form'] ) {
101
+ add_filter( 'cntctfrm_display_captcha', 'gglcptch_cf_display', 10, 2 );
102
+ add_filter( 'cntctfrm_check_form', 'gglcptch_recaptcha_check' );
103
+ /**
104
+ * this filters are necessary for compatibility
105
+ * with old Contact Form Pro by BestWebsoft versions
106
+ * @deprecated since 1.0.4
107
+ * @todo remove after 25.02.2017
108
+ */
109
+ add_filter( 'cntctfrmpr_display_captcha', 'gglcptch_cf_display', 10, 2 );
110
+ add_filter( 'cntctfrmpr_check_form', 'gglcptch_recaptcha_check' );
111
+ }
112
+ }
113
  }
114
  }
115
 
117
  function gglcptch_admin_init() {
118
  global $bws_plugin_info, $gglcptch_plugin_info, $bws_shortcode_list;
119
 
120
+ if ( empty( $bws_plugin_info ) )
121
  $bws_plugin_info = array( 'id' => '109', 'version' => $gglcptch_plugin_info["Version"] );
122
 
 
 
 
 
123
  /* add google captcha to global $bws_shortcode_list */
124
  $bws_shortcode_list['gglcptch'] = array( 'name' => 'Google Captcha (reCAPTCHA)' );
125
  }
191
  global $gglcptch_options;
192
 
193
  if ( empty( $gglcptch_options ) )
194
+ register_gglcptch_settings();
195
 
196
  if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] )
197
  gglcptch_remove_dublicate_scripts();
208
  'error' => "<strong>" . __( 'Warning', 'google-captcha' ) . ":</strong>&nbsp;" . __( 'It has been found more than one reCAPTCHA in current form. In this case reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA blocks.', 'google-captcha' )
209
  ),
210
  'vars' => array(
211
+ 'ajaxurl' => admin_url( 'admin-ajax.php' ),
212
+ 'error_msg' => __( 'Error: You have entered an incorrect reCAPTCHA value.', 'google-captcha' ),
213
+ 'nonce' => wp_create_nonce( 'gglcptch_recaptcha_nonce' ),
214
+ 'visibility' => ( 'login_footer' == current_filter() ) ? true : false
215
  )
216
  ) );
217
  }
231
  /* Google catpcha settings */
232
  if ( ! function_exists( 'register_gglcptch_settings' ) ) {
233
  function register_gglcptch_settings() {
234
+ global $gglcptch_options, $bws_plugin_info, $gglcptch_plugin_info;
235
 
236
+ /* Install the option defaults */
237
+ if ( ! get_option( 'gglcptch_options' ) )
238
+ add_option( 'gglcptch_options', gglcptch_get_default_options() );
239
+ /* Get options from the database */
240
+ $gglcptch_options = get_option( 'gglcptch_options' );
241
+
242
+ /* Array merge incase this version has added new options */
243
+ if ( ! isset( $gglcptch_options['plugin_option_version'] ) || $gglcptch_options['plugin_option_version'] != $gglcptch_plugin_info["Version"] ) {
244
+ $gglcptch_options = array_merge( gglcptch_get_default_options(), $gglcptch_options );
245
+ $gglcptch_options['plugin_option_version'] = $gglcptch_plugin_info["Version"];
246
+ /* show pro features */
247
+ $gglcptch_options['hide_premium_options'] = array();
248
+ update_option( 'gglcptch_options', $gglcptch_options );
249
+ }
250
+ }
251
+ }
252
+
253
+ if ( ! function_exists( 'gglcptch_get_default_options' ) ) {
254
+ function gglcptch_get_default_options() {
255
+ global $gglcptch_plugin_info;
256
+
257
+ $default_options = array(
258
  'public_key' => '',
259
  'private_key' => '',
260
  'login_form' => '1',
273
 
274
  if ( function_exists( 'get_editable_roles' ) ) {
275
  foreach ( get_editable_roles() as $role => $fields ) {
276
+ $default_options[ $role ] = '0';
277
  }
278
  }
279
+ return $default_options;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
280
  }
281
  }
282
 
312
  }
313
 
314
  /* Display settings page */
315
+ if ( ! function_exists( 'gglcptch_add_settings_page' ) ) {
316
+ function gglcptch_add_settings_page() {
317
+ global $gglcptch_options, $gglcptch_plugin_info, $wp_version;
318
 
319
  $plugin_basename = plugin_basename( __FILE__ );
320
  $message = $error = '';
408
  }
409
 
410
  if ( isset( $_REQUEST['bws_restore_confirm'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
411
+ $gglcptch_options = gglcptch_get_default_options();
412
  update_option( 'gglcptch_options', $gglcptch_options );
413
  $message = __( 'All plugin settings were restored.', 'google-captcha' );
414
  }
480
  </table>
481
  <?php if ( ! empty( $gglcptch_options['public_key'] ) && ! empty( $gglcptch_options['private_key'] ) ) { ?>
482
  <p id="gglcptch-test-keys" class="submit hide-if-no-js">
483
+ <a class="button button-secondary" href="<?php echo add_query_arg( array( '_wpnonce' => wp_create_nonce( 'gglcptch-test-keys' ) , 'action' => 'gglcptch-test-keys' ), admin_url( 'admin-ajax.php' ) ); ?>"><?php _e( 'Test Keys' , 'google-captcha' ); ?></a>
484
  </p>
485
  <?php } ?>
486
  <h3><?php _e( 'Options', 'google-captcha' ); ?></h3>
521
  } elseif ( 'not_installed' == $gglcptch_plugin['status'] ) {
522
  $gglcptch_attrs = 'disabled="disabled"';
523
  $gglcptch_plugin_notice = sprintf( __( 'You should %s to use this functionality', 'google-captcha' ),
524
+ sprintf( '<a href="http://bestwebsoft.com/products/contact-form/?k=0a750deb99a8e5296a5432f4c9cb9b55&pn=75&v=%s&wp_v=%s">%s %s</a>', $gglcptch_plugin_info["Version"], $wp_version, __( 'download', 'google-captcha' ), $gglcptch_plugin_name )
525
  );
526
  }
527
+ if ( $gglcptch_attrs == '' && ( is_plugin_active( 'contact-form-multi-pro/contact-form-multi-pro.php' ) || is_plugin_active( 'contact-form-multi/contact-form-multi.php' ) ) )
528
+ $gglcptch_plugin_notice = ' (' . __( 'Check off for adding captcha to forms on their settings pages.', 'google-captcha' ) . ')';
529
+
530
  if ( '1' == $gglcptch_options['contact_form'] && $gglcptch_attrs == '' ) {
531
+ $gglcptch_attrs .= ' checked="checked"';
532
  } ?>
533
  <label><input type="checkbox" <?php echo $gglcptch_attrs; ?> name="gglcptch_contact_form" value="contact_form" /> <?php echo $gglcptch_plugin_name; ?></label>
534
  <div class="bws_help_box dashicons dashicons-editor-help" style="vertical-align: middle;"><div class="bws_hidden_help_text"><img src="<?php echo plugins_url( 'google-captcha/images'); ?>/contact_form.jpg" title="<?php echo $gglcptch_plugin_name; ?>" alt="<?php echo $gglcptch_plugin_name; ?>"></div></div>
687
  if ( ! empty( $current_user->roles[0] ) ) {
688
  $role = $current_user->roles[0];
689
  if ( empty( $gglcptch_options ) )
690
+ register_gglcptch_settings();
691
  return isset( $gglcptch_options[ $role ] ) && '1' == $gglcptch_options[ $role ] ? true : false;
692
  } else
693
  return false;
700
  global $gglcptch_options, $gglcptch_count;
701
 
702
  if ( empty( $gglcptch_options ) )
703
+ register_gglcptch_settings();
704
 
705
  if ( ! $gglcptch_count )
706
  $gglcptch_count = 1;
785
  function gglcptch_check( $debug = false ) {
786
  global $gglcptch_options;
787
 
788
+ if ( empty( $gglcptch_options ) )
789
+ register_gglcptch_settings();
790
+
791
+ $publickey = $gglcptch_options['public_key'];
792
+ $privatekey = $gglcptch_options['private_key'];
793
 
794
  if ( ! $privatekey || ! $publickey ) {
795
  return array(
926
 
927
  /* Check google captcha in BWS Contact Form */
928
  if ( ! function_exists( 'gglcptch_recaptcha_check' ) ) {
929
+ function gglcptch_recaptcha_check( $allow = true ) {
930
  /**
931
  * this condition is necessary for compatibility
932
  * with Contact Form ( Free and Pro ) by BestWebsoft plugins versions
933
  * that use $_POST as parameter for hook ( old versions )
934
  * apply_filters( 'cntctfrmpr_check_form', $_POST );
935
  * @deprecated since 1.22
936
+ * @todo remove after 25.02.2017
937
  */
938
+ if ( is_array( $allow ) ) {
939
+ $allow = false;
940
+ $old_cf_version = true;
941
+ } else /* end @todo */ if ( ! $allow || is_string( $allow ) || is_wp_error( $allow ) ) {
942
+ return $allow;
943
+ }
944
 
945
  $result = gglcptch_check();
946
 
 
947
  if ( $result['response'] || $result['reason'] == 'ERROR_NO_KEYS' )
948
  return true;
949
 
950
+ /**
951
+ * @deprecated since 1.22
952
+ * @todo remove after 25.02.2017
953
+ */
954
+ if ( isset( $old_cf_version ) ) {
955
+ return false;
956
+ } else /* end @todo */ {
957
+ $error_message = '<strong>' . __( 'Error', 'google-captcha' ) . '</strong>:&nbsp;' . __( 'You have entered an incorrect reCAPTCHA value.', 'google-captcha' );
958
+ /**
959
+ * Function 'cntctfrm_handle_captcha_filters' was added in Contact Form 4.0.2 (Free and Pro)
960
+ * remove this condition. WP_Error is correct object for return.
961
+ * @deprecated since 1.26
962
+ * @todo remove after 01.08.2017
963
+ */
964
+ if ( function_exists( 'cntctfrm_handle_captcha_filters' ) ) {
965
+ $allow = new WP_Error();
966
+ $allow->add( 'gglcptch_error', $error_message );
967
+ } else {
968
+ $allow = $error_message;
969
+ }
970
+ }
971
+ return $allow;
972
  }
973
  }
974
 
1045
 
1046
  /* display google captcha in Contact form */
1047
  if ( ! function_exists( 'gglcptch_cf_display' ) ) {
1048
+ function gglcptch_cf_display( $content, $form_slug = "" ) {
1049
+ /**
1050
+ * this are necessary for compatibility
1051
+ * with old Contact Form Free and Pro by BestWebsoft versions.
1052
+ * correct return - $content = $content . gglcptch_display();
1053
+ * @since 1.26
1054
+ * @todo remove after 1.03.2017
1055
+ */
1056
+ if ( is_string( $content ) )
1057
+ $content = $content . gglcptch_display();
1058
+ elseif ( is_array( $content ) )
1059
+ $content = gglcptch_display();
1060
+ else
1061
+ $content = $form_slug . gglcptch_display();
1062
+
1063
+ return $content;
1064
  }
1065
  }
1066
 
1092
  function gglcptch_test_keys_verification() {
1093
  if ( isset( $_REQUEST['_wpnonce'] ) && wp_verify_nonce( $_REQUEST['_wpnonce'] , $_REQUEST['action'] ) ) {
1094
  $result = gglcptch_check( true );
1095
+
1096
  if ( ! $result['response'] ) {
1097
  $errors = array(
1098
  /* custom error */
1119
 
1120
  if ( isset( $result['reason'] ) ) {
1121
  foreach ( (array)$result['reason'] as $error ) { ?>
1122
+ <div class="error gglcptch-test-results"><p><?php echo $error; ?></p></div>
1123
  <?php }
1124
  }
1125
  } else { ?>
1126
  <div class="updated gglcptch-test-results"><p><?php _e( 'The verification is successfully completed.','google-captcha' ); ?></p></div>
1127
+ <?php $gglcptch_options = get_option( 'gglcptch_options' );
 
1128
  $gglcptch_options['keys_verified'] = true;
1129
  update_option( 'gglcptch_options', $gglcptch_options );
1130
  }
1150
  }
1151
 
1152
  if ( ! function_exists( 'gglcptch_shortcode_button_content' ) ) {
1153
+ function gglcptch_shortcode_button_content( $content ) { ?>
 
1154
  <div id="gglcptch" style="display:none;">
1155
  <input class="bws_default_shortcode" type="hidden" name="default" value="[bws_google_captcha]" />
1156
  </div>
1174
  function gglcptch_plugin_banner() {
1175
  global $hook_suffix, $gglcptch_plugin_info, $gglcptch_options;
1176
  if ( 'plugins.php' == $hook_suffix ) {
1177
+ if ( empty( $gglcptch_options ) )
1178
+ register_gglcptch_settings();
1179
+
1180
  if ( empty( $gglcptch_options['public_key'] ) || empty( $gglcptch_options['private_key'] ) ) { ?>
1181
  <div class="error">
1182
  <p>
1218
  if ( ! function_exists( 'gglcptch_delete_options' ) ) {
1219
  function gglcptch_delete_options() {
1220
  global $wpdb;
1221
+
1222
+ if ( ! function_exists( 'get_plugins' ) )
1223
+ require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
1224
+
1225
+ $all_plugins = get_plugins();
1226
+
1227
+ if ( ! array_key_exists( 'google-captcha-pro/google-captcha-pro.php', $all_plugins ) ) {
1228
+ if ( function_exists( 'is_multisite' ) && is_multisite() ) {
1229
+ $old_blog = $wpdb->blogid;
1230
+ /* Get all blog ids */
1231
+ $blogids = $wpdb->get_col( "SELECT `blog_id` FROM $wpdb->blogs" );
1232
+ foreach ( $blogids as $blog_id ) {
1233
+ switch_to_blog( $blog_id );
1234
+ delete_option( 'gglcptch_options' );
1235
+ }
1236
+ switch_to_blog( $old_blog );
1237
+ } else {
1238
  delete_option( 'gglcptch_options' );
1239
  }
 
 
 
1240
  }
1241
 
1242
  require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
1245
  }
1246
  }
1247
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1248
  add_action( 'admin_menu', 'gglcptch_admin_menu' );
1249
 
1250
  add_action( 'init', 'gglcptch_init' );
js/script.js CHANGED
@@ -7,7 +7,7 @@
7
  */
8
  $( '.gglcptch_v1, .gglcptch_v2' ).each( function() {
9
  var container = $( this ).find( '.gglcptch_recaptcha' ).attr( 'id' );
10
- if ( $( this ).is( ':visible' ) )
11
  gglcptch.display( container );
12
  });
13
 
7
  */
8
  $( '.gglcptch_v1, .gglcptch_v2' ).each( function() {
9
  var container = $( this ).find( '.gglcptch_recaptcha' ).attr( 'id' );
10
+ if ( gglcptch.vars.visibility || $( this ).is( ':visible' ) )
11
  gglcptch.display( container );
12
  });
13
 
languages/google-captcha-ar.mo CHANGED
Binary file
languages/google-captcha-ar.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-04-05 17:13+0300\n"
6
- "PO-Revision-Date: 2016-04-05 17:13+0300\n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: SAID MOULLA <mor0cc0@live.com >\n"
9
  "Language: uk\n"
@@ -21,98 +21,98 @@ msgstr ""
21
  "X-Loco-Target-Locale: uk_UA\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
- #: google-captcha.php:34 google-captcha.php:367
25
  msgid "Google Captcha Settings"
26
  msgstr "إعدادات Google Captcha"
27
 
28
- #: google-captcha.php:154
29
  msgid "Warning"
30
  msgstr ""
31
 
32
- #: google-captcha.php:154
33
  msgid ""
34
  "It has been found more than one reCAPTCHA in current form. In this case "
35
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
36
  "blocks."
37
  msgstr ""
38
 
39
- #: google-captcha.php:158
40
  #, fuzzy
41
  msgid "Error: You have entered an incorrect reCAPTCHA value."
42
  msgstr "خطأ: لقد أدخلت قيمة كابتشا بشكل خاطئ."
43
 
44
- #: google-captcha.php:272
45
  msgid "Normal"
46
  msgstr ""
47
 
48
- #: google-captcha.php:273
49
  msgid "Compact"
50
  msgstr ""
51
 
52
- #: google-captcha.php:279
53
  msgid "Site key"
54
  msgstr "مفتاح الموقع"
55
 
56
- #: google-captcha.php:284
57
  msgid "Secret Key"
58
  msgstr "المفتاح السري"
59
 
60
- #: google-captcha.php:292
61
  msgid "Login form"
62
  msgstr "فورم تسجيل الدخول"
63
 
64
- #: google-captcha.php:293
65
  msgid "Registration form"
66
  msgstr "فورم التسجيل"
67
 
68
- #: google-captcha.php:294
69
  msgid "Reset password form"
70
  msgstr "فورم إعادة تعيين كلمة السر"
71
 
72
- #: google-captcha.php:295
73
  msgid "Comments form"
74
  msgstr "فورم التعليقات"
75
 
76
- #: google-captcha.php:314
77
  msgid "Enter site key"
78
  msgstr "أدخل مفتاح الموقع"
79
 
80
- #: google-captcha.php:315 google-captcha.php:321
81
  msgid "WARNING: The captcha will not display while you don't fill key fields."
82
  msgstr "تحذير: الكابتشا لن تعمل في حالة عدم إدخال المفاتيح."
83
 
84
- #: google-captcha.php:320
85
  msgid "Enter secret key"
86
  msgstr "أدخل المفتاح السري"
87
 
88
- #: google-captcha.php:346
89
  msgid "Settings saved"
90
  msgstr "تم حفظ الإعدادات"
91
 
92
- #: google-captcha.php:352
93
  #, fuzzy
94
  msgid "All plugin settings were restored."
95
  msgstr "صفحة إعدادات الإضافة"
96
 
97
- #: google-captcha.php:369 google-captcha.php:1040 google-captcha.php:1073
98
  msgid "Settings"
99
  msgstr "إعدادات"
100
 
101
- #: google-captcha.php:370
102
  msgid "Custom code"
103
  msgstr ""
104
 
105
- #: google-captcha.php:371
106
  msgid "Go PRO"
107
  msgstr ""
108
 
109
- #: google-captcha.php:376
110
  msgid ""
111
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
112
  "version 1 features."
113
  msgstr ""
114
 
115
- #: google-captcha.php:391
116
  #, fuzzy, php-format
117
  msgid ""
118
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -121,7 +121,7 @@ msgstr ""
121
  "إذا كنت ترغب في إضافة Google Captcha إلى الفورم، فقط قم بنسخ ولصق هذا الكود "
122
  "في المقال أو الصفحة."
123
 
124
- #: google-captcha.php:397
125
  #, php-format
126
  msgid ""
127
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -130,165 +130,169 @@ msgid ""
130
  "your own form , please use the shortcode %s"
131
  msgstr ""
132
 
133
- #: google-captcha.php:405
134
  msgid "Authentication"
135
  msgstr "المصادقة"
136
 
137
- #: google-captcha.php:406
138
  #, fuzzy, php-format
139
  msgid "Before you are able to do something, you must to register %shere%s"
140
  msgstr "قبل التفكير في عمل أي شيء، لابد من التسجيل %s من هنا %s"
141
 
142
- #: google-captcha.php:407
143
  msgid "Enter site key and secret key, that you get after registration."
144
  msgstr "أدخل مفتاح الموقع والمفتاح السري، الذي حصلت عليه بعد التسجيل."
145
 
146
- #: google-captcha.php:422
147
  #, fuzzy
148
  msgid "Test Keys"
149
  msgstr "المفتاح السري"
150
 
151
- #: google-captcha.php:425
152
  msgid "Options"
153
  msgstr "خيارات"
154
 
155
- #: google-captcha.php:428
156
  msgid "Enable reCAPTCHA for"
157
  msgstr ""
158
 
159
- #: google-captcha.php:432
160
  msgid "WordPress default"
161
  msgstr ""
162
 
163
- #: google-captcha.php:441
164
  msgid "This option is available only for network or for main blog"
165
  msgstr ""
166
 
167
- #: google-captcha.php:449
168
  msgid "Plugins"
169
  msgstr ""
170
 
171
- #: google-captcha.php:457 google-captcha.php:462
172
  #, php-format
173
  msgid "You should %s to use this functionality"
174
  msgstr ""
175
 
176
- #: google-captcha.php:458
177
  msgid "activate"
178
  msgstr ""
179
 
180
- #: google-captcha.php:458
181
  msgid "for network"
182
  msgstr ""
183
 
184
- #: google-captcha.php:463
185
  msgid "download"
186
  msgstr ""
187
 
188
- #: google-captcha.php:475 google-captcha.php:552
 
 
 
 
189
  msgid "Close"
190
  msgstr ""
191
 
192
- #: google-captcha.php:487 google-captcha.php:588
193
  msgid "Unlock premium options by upgrading to Pro version"
194
  msgstr ""
195
 
196
- #: google-captcha.php:490 google-captcha.php:591
197
  msgid "Learn More"
198
  msgstr ""
199
 
200
- #: google-captcha.php:496
201
  #, php-format
202
  msgid ""
203
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
204
  msgstr ""
205
 
206
- #: google-captcha.php:496 google-captcha.php:1074
207
  msgid "FAQ"
208
  msgstr "أسئلة شائعة"
209
 
210
- #: google-captcha.php:501
211
  #, fuzzy
212
  msgid "Hide reCAPTCHA in Comments form for"
213
  msgstr "لنسخة reCAPTCHA"
214
 
215
- #: google-captcha.php:513
216
  #, fuzzy
217
  msgid "reCAPTCHA version"
218
  msgstr "نسخة reCAPTCHA:"
219
 
220
- #: google-captcha.php:516 google-captcha.php:517 google-captcha.php:518
221
- #: google-captcha.php:519
222
  msgid "version"
223
  msgstr "النسخة"
224
 
225
- #: google-captcha.php:525 google-captcha.php:538
226
  #, fuzzy
227
  msgid "reCAPTCHA theme"
228
  msgstr "نسخة reCAPTCHA:"
229
 
230
- #: google-captcha.php:526 google-captcha.php:539 google-captcha.php:570
231
  #, fuzzy
232
  msgid "for version"
233
  msgstr "النسخة"
234
 
235
- #: google-captcha.php:556
236
  #, fuzzy
237
  msgid "reCAPTCHA language"
238
  msgstr "نسخة reCAPTCHA:"
239
 
240
- #: google-captcha.php:563
241
  msgid "Use the current site language"
242
  msgstr ""
243
 
244
- #: google-captcha.php:563
245
  msgid "Using"
246
  msgstr ""
247
 
248
- #: google-captcha.php:569
249
  #, fuzzy
250
  msgid "reCAPTCHA size"
251
  msgstr "نسخة reCAPTCHA:"
252
 
253
- #: google-captcha.php:598
254
  msgid "Save Changes"
255
  msgstr "حفظ التغييرات"
256
 
257
- #: google-captcha.php:652 google-captcha.php:1090
258
  msgid "To use Google Captcha you must get the keys from"
259
  msgstr "لتفعيل Google Captcha لابد من الحصول على المفاتيح من"
260
 
261
- #: google-captcha.php:653 google-captcha.php:1091
262
  msgid "here"
263
  msgstr "هنا"
264
 
265
- #: google-captcha.php:654 google-captcha.php:1092
266
  msgid "and enter them on the"
267
  msgstr "ثم أدخلهم في"
268
 
269
- #: google-captcha.php:656 google-captcha.php:1094
270
  msgid "plugin setting page"
271
  msgstr "صفحة إعدادات الإضافة"
272
 
273
- #: google-captcha.php:842 google-captcha.php:880
274
  msgid "Error"
275
  msgstr "خطأ"
276
 
277
- #: google-captcha.php:842
278
  #, fuzzy
279
  msgid "You have entered an incorrect reCAPTCHA value."
280
  msgstr "لقد أدخلت قيمة كابتشا بشكل خاطئ"
281
 
282
- #: google-captcha.php:880 google-captcha.php:897 google-captcha.php:926
 
 
 
 
283
  #, fuzzy
284
  msgid "You have entered an incorrect reCAPTCHA value"
285
  msgstr "لقد أدخلت قيمة كابتشا بشكل خاطئ"
286
 
287
- #: google-captcha.php:897 google-captcha.php:926 google-captcha.php:952
288
- msgid "ERROR"
289
- msgstr ""
290
-
291
- #: google-captcha.php:952
292
  #, fuzzy
293
  msgid ""
294
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -296,44 +300,44 @@ msgid ""
296
  msgstr ""
297
  "خطأ: لقد أدخلت قيمة كابتشا بشكل خاطئ. اضغط زر الرجوع في المتصفح وحاول مجددا."
298
 
299
- #: google-captcha.php:976
300
  msgid "Please, complete the captcha and submit \"Test verification\""
301
  msgstr ""
302
 
303
- #: google-captcha.php:980
304
  msgid "Test verification"
305
  msgstr ""
306
 
307
- #: google-captcha.php:994 google-captcha.php:1003
308
  msgid "The user response was missing."
309
  msgstr ""
310
 
311
- #: google-captcha.php:996
312
  msgid "The Secret Key is missing."
313
  msgstr ""
314
 
315
- #: google-captcha.php:999 google-captcha.php:1008
316
  msgid "The Secret Key is invalid"
317
  msgstr ""
318
 
319
- #: google-captcha.php:1000 google-captcha.php:1009
320
  msgid "Check your domain configuration"
321
  msgstr ""
322
 
323
- #: google-captcha.php:1001 google-captcha.php:1010
324
  #, fuzzy
325
  msgid "and enter it again"
326
  msgstr "ثم أدخلهم في"
327
 
328
- #: google-captcha.php:1004 google-captcha.php:1012
329
  msgid "The user response is invalid."
330
  msgstr ""
331
 
332
- #: google-captcha.php:1021
333
  msgid "The verification is successfully completed."
334
  msgstr ""
335
 
336
- #: google-captcha.php:1075
337
  msgid "Support"
338
  msgstr "الدعم الفني"
339
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-25 11:33+0300\n"
6
+ "PO-Revision-Date: 2016-07-25 11:33+0300\n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: SAID MOULLA <mor0cc0@live.com >\n"
9
  "Language: uk\n"
21
  "X-Loco-Target-Locale: uk_UA\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
+ #: google-captcha.php:34 google-captcha.php:422
25
  msgid "Google Captcha Settings"
26
  msgstr "إعدادات Google Captcha"
27
 
28
+ #: google-captcha.php:202
29
  msgid "Warning"
30
  msgstr ""
31
 
32
+ #: google-captcha.php:202
33
  msgid ""
34
  "It has been found more than one reCAPTCHA in current form. In this case "
35
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
36
  "blocks."
37
  msgstr ""
38
 
39
+ #: google-captcha.php:206
40
  #, fuzzy
41
  msgid "Error: You have entered an incorrect reCAPTCHA value."
42
  msgstr "خطأ: لقد أدخلت قيمة كابتشا بشكل خاطئ."
43
 
44
+ #: google-captcha.php:327
45
  msgid "Normal"
46
  msgstr ""
47
 
48
+ #: google-captcha.php:328
49
  msgid "Compact"
50
  msgstr ""
51
 
52
+ #: google-captcha.php:334
53
  msgid "Site key"
54
  msgstr "مفتاح الموقع"
55
 
56
+ #: google-captcha.php:339
57
  msgid "Secret Key"
58
  msgstr "المفتاح السري"
59
 
60
+ #: google-captcha.php:347
61
  msgid "Login form"
62
  msgstr "فورم تسجيل الدخول"
63
 
64
+ #: google-captcha.php:348
65
  msgid "Registration form"
66
  msgstr "فورم التسجيل"
67
 
68
+ #: google-captcha.php:349
69
  msgid "Reset password form"
70
  msgstr "فورم إعادة تعيين كلمة السر"
71
 
72
+ #: google-captcha.php:350
73
  msgid "Comments form"
74
  msgstr "فورم التعليقات"
75
 
76
+ #: google-captcha.php:369
77
  msgid "Enter site key"
78
  msgstr "أدخل مفتاح الموقع"
79
 
80
+ #: google-captcha.php:370 google-captcha.php:376
81
  msgid "WARNING: The captcha will not display while you don't fill key fields."
82
  msgstr "تحذير: الكابتشا لن تعمل في حالة عدم إدخال المفاتيح."
83
 
84
+ #: google-captcha.php:375
85
  msgid "Enter secret key"
86
  msgstr "أدخل المفتاح السري"
87
 
88
+ #: google-captcha.php:401
89
  msgid "Settings saved"
90
  msgstr "تم حفظ الإعدادات"
91
 
92
+ #: google-captcha.php:407
93
  #, fuzzy
94
  msgid "All plugin settings were restored."
95
  msgstr "صفحة إعدادات الإضافة"
96
 
97
+ #: google-captcha.php:424 google-captcha.php:1128 google-captcha.php:1150
98
  msgid "Settings"
99
  msgstr "إعدادات"
100
 
101
+ #: google-captcha.php:425
102
  msgid "Custom code"
103
  msgstr ""
104
 
105
+ #: google-captcha.php:426
106
  msgid "Go PRO"
107
  msgstr ""
108
 
109
+ #: google-captcha.php:431
110
  msgid ""
111
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
112
  "version 1 features."
113
  msgstr ""
114
 
115
+ #: google-captcha.php:446
116
  #, fuzzy, php-format
117
  msgid ""
118
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
121
  "إذا كنت ترغب في إضافة Google Captcha إلى الفورم، فقط قم بنسخ ولصق هذا الكود "
122
  "في المقال أو الصفحة."
123
 
124
+ #: google-captcha.php:452
125
  #, php-format
126
  msgid ""
127
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
130
  "your own form , please use the shortcode %s"
131
  msgstr ""
132
 
133
+ #: google-captcha.php:460
134
  msgid "Authentication"
135
  msgstr "المصادقة"
136
 
137
+ #: google-captcha.php:461
138
  #, fuzzy, php-format
139
  msgid "Before you are able to do something, you must to register %shere%s"
140
  msgstr "قبل التفكير في عمل أي شيء، لابد من التسجيل %s من هنا %s"
141
 
142
+ #: google-captcha.php:462
143
  msgid "Enter site key and secret key, that you get after registration."
144
  msgstr "أدخل مفتاح الموقع والمفتاح السري، الذي حصلت عليه بعد التسجيل."
145
 
146
+ #: google-captcha.php:477
147
  #, fuzzy
148
  msgid "Test Keys"
149
  msgstr "المفتاح السري"
150
 
151
+ #: google-captcha.php:480
152
  msgid "Options"
153
  msgstr "خيارات"
154
 
155
+ #: google-captcha.php:483
156
  msgid "Enable reCAPTCHA for"
157
  msgstr ""
158
 
159
+ #: google-captcha.php:487
160
  msgid "WordPress default"
161
  msgstr ""
162
 
163
+ #: google-captcha.php:496
164
  msgid "This option is available only for network or for main blog"
165
  msgstr ""
166
 
167
+ #: google-captcha.php:504
168
  msgid "Plugins"
169
  msgstr ""
170
 
171
+ #: google-captcha.php:512 google-captcha.php:517
172
  #, php-format
173
  msgid "You should %s to use this functionality"
174
  msgstr ""
175
 
176
+ #: google-captcha.php:513
177
  msgid "activate"
178
  msgstr ""
179
 
180
+ #: google-captcha.php:513
181
  msgid "for network"
182
  msgstr ""
183
 
184
+ #: google-captcha.php:518
185
  msgid "download"
186
  msgstr ""
187
 
188
+ #: google-captcha.php:522
189
+ msgid "Check off for adding captcha to forms on their settings pages."
190
+ msgstr ""
191
+
192
+ #: google-captcha.php:533 google-captcha.php:610
193
  msgid "Close"
194
  msgstr ""
195
 
196
+ #: google-captcha.php:545 google-captcha.php:646
197
  msgid "Unlock premium options by upgrading to Pro version"
198
  msgstr ""
199
 
200
+ #: google-captcha.php:548 google-captcha.php:649
201
  msgid "Learn More"
202
  msgstr ""
203
 
204
+ #: google-captcha.php:554
205
  #, php-format
206
  msgid ""
207
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
208
  msgstr ""
209
 
210
+ #: google-captcha.php:554 google-captcha.php:1151
211
  msgid "FAQ"
212
  msgstr "أسئلة شائعة"
213
 
214
+ #: google-captcha.php:559
215
  #, fuzzy
216
  msgid "Hide reCAPTCHA in Comments form for"
217
  msgstr "لنسخة reCAPTCHA"
218
 
219
+ #: google-captcha.php:571
220
  #, fuzzy
221
  msgid "reCAPTCHA version"
222
  msgstr "نسخة reCAPTCHA:"
223
 
224
+ #: google-captcha.php:574 google-captcha.php:575 google-captcha.php:576
225
+ #: google-captcha.php:577
226
  msgid "version"
227
  msgstr "النسخة"
228
 
229
+ #: google-captcha.php:583 google-captcha.php:596
230
  #, fuzzy
231
  msgid "reCAPTCHA theme"
232
  msgstr "نسخة reCAPTCHA:"
233
 
234
+ #: google-captcha.php:584 google-captcha.php:597 google-captcha.php:628
235
  #, fuzzy
236
  msgid "for version"
237
  msgstr "النسخة"
238
 
239
+ #: google-captcha.php:614
240
  #, fuzzy
241
  msgid "reCAPTCHA language"
242
  msgstr "نسخة reCAPTCHA:"
243
 
244
+ #: google-captcha.php:621
245
  msgid "Use the current site language"
246
  msgstr ""
247
 
248
+ #: google-captcha.php:621
249
  msgid "Using"
250
  msgstr ""
251
 
252
+ #: google-captcha.php:627
253
  #, fuzzy
254
  msgid "reCAPTCHA size"
255
  msgstr "نسخة reCAPTCHA:"
256
 
257
+ #: google-captcha.php:656
258
  msgid "Save Changes"
259
  msgstr "حفظ التغييرات"
260
 
261
+ #: google-captcha.php:710 google-captcha.php:1167
262
  msgid "To use Google Captcha you must get the keys from"
263
  msgstr "لتفعيل Google Captcha لابد من الحصول على المفاتيح من"
264
 
265
+ #: google-captcha.php:711 google-captcha.php:1168
266
  msgid "here"
267
  msgstr "هنا"
268
 
269
+ #: google-captcha.php:712 google-captcha.php:1169
270
  msgid "and enter them on the"
271
  msgstr "ثم أدخلهم في"
272
 
273
+ #: google-captcha.php:714 google-captcha.php:1171
274
  msgid "plugin setting page"
275
  msgstr "صفحة إعدادات الإضافة"
276
 
277
+ #: google-captcha.php:900 google-captcha.php:948
278
  msgid "Error"
279
  msgstr "خطأ"
280
 
281
+ #: google-captcha.php:900 google-captcha.php:948
282
  #, fuzzy
283
  msgid "You have entered an incorrect reCAPTCHA value."
284
  msgstr "لقد أدخلت قيمة كابتشا بشكل خاطئ"
285
 
286
+ #: google-captcha.php:978 google-captcha.php:1007 google-captcha.php:1033
287
+ msgid "ERROR"
288
+ msgstr ""
289
+
290
+ #: google-captcha.php:978 google-captcha.php:1007
291
  #, fuzzy
292
  msgid "You have entered an incorrect reCAPTCHA value"
293
  msgstr "لقد أدخلت قيمة كابتشا بشكل خاطئ"
294
 
295
+ #: google-captcha.php:1033
 
 
 
 
296
  #, fuzzy
297
  msgid ""
298
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
300
  msgstr ""
301
  "خطأ: لقد أدخلت قيمة كابتشا بشكل خاطئ. اضغط زر الرجوع في المتصفح وحاول مجددا."
302
 
303
+ #: google-captcha.php:1064
304
  msgid "Please, complete the captcha and submit \"Test verification\""
305
  msgstr ""
306
 
307
+ #: google-captcha.php:1068
308
  msgid "Test verification"
309
  msgstr ""
310
 
311
+ #: google-captcha.php:1082 google-captcha.php:1091
312
  msgid "The user response was missing."
313
  msgstr ""
314
 
315
+ #: google-captcha.php:1084
316
  msgid "The Secret Key is missing."
317
  msgstr ""
318
 
319
+ #: google-captcha.php:1087 google-captcha.php:1096
320
  msgid "The Secret Key is invalid"
321
  msgstr ""
322
 
323
+ #: google-captcha.php:1088 google-captcha.php:1097
324
  msgid "Check your domain configuration"
325
  msgstr ""
326
 
327
+ #: google-captcha.php:1089 google-captcha.php:1098
328
  #, fuzzy
329
  msgid "and enter it again"
330
  msgstr "ثم أدخلهم في"
331
 
332
+ #: google-captcha.php:1092 google-captcha.php:1100
333
  msgid "The user response is invalid."
334
  msgstr ""
335
 
336
+ #: google-captcha.php:1109
337
  msgid "The verification is successfully completed."
338
  msgstr ""
339
 
340
+ #: google-captcha.php:1152
341
  msgid "Support"
342
  msgstr "الدعم الفني"
343
 
languages/google-captcha-bg_BG.mo CHANGED
Binary file
languages/google-captcha-bg_BG.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: 2016-04-05 17:13+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Yasen Georgiev <me@ygeorgiev.com>\n"
@@ -16,100 +16,100 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: google-captcha.php:34 google-captcha.php:367
20
  msgid "Google Captcha Settings"
21
  msgstr "Настройки на Google Captcha"
22
 
23
- #: google-captcha.php:154
24
  msgid "Warning"
25
  msgstr ""
26
 
27
- #: google-captcha.php:154
28
  msgid ""
29
  "It has been found more than one reCAPTCHA in current form. In this case "
30
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
31
  "blocks."
32
  msgstr ""
33
 
34
- #: google-captcha.php:158
35
  #, fuzzy
36
  msgid "Error: You have entered an incorrect reCAPTCHA value."
37
  msgstr "Грешка: Въвели сте невалиден анти-спам код."
38
 
39
- #: google-captcha.php:272
40
  msgid "Normal"
41
  msgstr ""
42
 
43
- #: google-captcha.php:273
44
  msgid "Compact"
45
  msgstr ""
46
 
47
- #: google-captcha.php:279
48
  msgid "Site key"
49
  msgstr "Ключ"
50
 
51
- #: google-captcha.php:284
52
  msgid "Secret Key"
53
  msgstr "Секретен ключ"
54
 
55
- #: google-captcha.php:292
56
  msgid "Login form"
57
  msgstr "Форма за вход"
58
 
59
- #: google-captcha.php:293
60
  msgid "Registration form"
61
  msgstr "Форма регистрация"
62
 
63
- #: google-captcha.php:294
64
  msgid "Reset password form"
65
  msgstr "Форма за възстановяване на парола"
66
 
67
- #: google-captcha.php:295
68
  msgid "Comments form"
69
  msgstr "Форма за коментиране"
70
 
71
- #: google-captcha.php:314
72
  msgid "Enter site key"
73
  msgstr "Въведете ключ"
74
 
75
- #: google-captcha.php:315 google-captcha.php:321
76
  msgid "WARNING: The captcha will not display while you don't fill key fields."
77
  msgstr ""
78
  "ПРЕДУПРЕЖДЕНИЕ: Google Captcha няма да се покаже докато не въведете "
79
  "ключовите полета."
80
 
81
- #: google-captcha.php:320
82
  msgid "Enter secret key"
83
  msgstr "Въведете секретен ключ"
84
 
85
- #: google-captcha.php:346
86
  msgid "Settings saved"
87
  msgstr "Настройките бяха запазени успешно."
88
 
89
- #: google-captcha.php:352
90
  #, fuzzy
91
  msgid "All plugin settings were restored."
92
  msgstr "настройките на плъгина"
93
 
94
- #: google-captcha.php:369 google-captcha.php:1040 google-captcha.php:1073
95
  msgid "Settings"
96
  msgstr "Настройки"
97
 
98
- #: google-captcha.php:370
99
  msgid "Custom code"
100
  msgstr ""
101
 
102
- #: google-captcha.php:371
103
  msgid "Go PRO"
104
  msgstr ""
105
 
106
- #: google-captcha.php:376
107
  msgid ""
108
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
109
  "version 1 features."
110
  msgstr ""
111
 
112
- #: google-captcha.php:391
113
  #, fuzzy, php-format
114
  msgid ""
115
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -118,7 +118,7 @@ msgstr ""
118
  "Ако искате да добавите Google Captcha към Ваша собствена форма, проста "
119
  "копирайте и поставете този код на желаната публикация или страница:"
120
 
121
- #: google-captcha.php:397
122
  #, php-format
123
  msgid ""
124
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -127,169 +127,173 @@ msgid ""
127
  "your own form , please use the shortcode %s"
128
  msgstr ""
129
 
130
- #: google-captcha.php:405
131
  msgid "Authentication"
132
  msgstr "Идентификация"
133
 
134
- #: google-captcha.php:406
135
  #, fuzzy, php-format
136
  msgid "Before you are able to do something, you must to register %shere%s"
137
  msgstr "Преди да можете да направите нещо, трябва да се %sрегистрирате%s."
138
 
139
- #: google-captcha.php:407
140
  msgid "Enter site key and secret key, that you get after registration."
141
  msgstr ""
142
  "Въведете ключ и секретен ключ, който взимате след регистрация в Google "
143
  "Captcha."
144
 
145
- #: google-captcha.php:422
146
  #, fuzzy
147
  msgid "Test Keys"
148
  msgstr "Секретен ключ"
149
 
150
- #: google-captcha.php:425
151
  msgid "Options"
152
  msgstr "Опции"
153
 
154
- #: google-captcha.php:428
155
  msgid "Enable reCAPTCHA for"
156
  msgstr ""
157
 
158
- #: google-captcha.php:432
159
  msgid "WordPress default"
160
  msgstr ""
161
 
162
- #: google-captcha.php:441
163
  msgid "This option is available only for network or for main blog"
164
  msgstr ""
165
 
166
- #: google-captcha.php:449
167
  #, fuzzy
168
  msgid "Plugins"
169
  msgstr "Страница с плъгини"
170
 
171
- #: google-captcha.php:457 google-captcha.php:462
172
  #, php-format
173
  msgid "You should %s to use this functionality"
174
  msgstr ""
175
 
176
- #: google-captcha.php:458
177
  #, fuzzy
178
  msgid "activate"
179
  msgstr "Активировать Contact form"
180
 
181
- #: google-captcha.php:458
182
  msgid "for network"
183
  msgstr ""
184
 
185
- #: google-captcha.php:463
186
  msgid "download"
187
  msgstr ""
188
 
189
- #: google-captcha.php:475 google-captcha.php:552
 
 
 
 
190
  msgid "Close"
191
  msgstr ""
192
 
193
- #: google-captcha.php:487 google-captcha.php:588
194
  msgid "Unlock premium options by upgrading to Pro version"
195
  msgstr ""
196
 
197
- #: google-captcha.php:490 google-captcha.php:591
198
  msgid "Learn More"
199
  msgstr ""
200
 
201
- #: google-captcha.php:496
202
  #, php-format
203
  msgid ""
204
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
205
  msgstr ""
206
 
207
- #: google-captcha.php:496 google-captcha.php:1074
208
  msgid "FAQ"
209
  msgstr "ЧЗВ"
210
 
211
- #: google-captcha.php:501
212
  #, fuzzy
213
  msgid "Hide reCAPTCHA in Comments form for"
214
  msgstr "за reCAPTCHA версия"
215
 
216
- #: google-captcha.php:513
217
  #, fuzzy
218
  msgid "reCAPTCHA version"
219
  msgstr "Версия на reCAPTCHA:"
220
 
221
- #: google-captcha.php:516 google-captcha.php:517 google-captcha.php:518
222
- #: google-captcha.php:519
223
  msgid "version"
224
  msgstr "версия"
225
 
226
- #: google-captcha.php:525 google-captcha.php:538
227
  #, fuzzy
228
  msgid "reCAPTCHA theme"
229
  msgstr "Версия на reCAPTCHA:"
230
 
231
- #: google-captcha.php:526 google-captcha.php:539 google-captcha.php:570
232
  #, fuzzy
233
  msgid "for version"
234
  msgstr "версия"
235
 
236
- #: google-captcha.php:556
237
  #, fuzzy
238
  msgid "reCAPTCHA language"
239
  msgstr "Версия на reCAPTCHA:"
240
 
241
- #: google-captcha.php:563
242
  msgid "Use the current site language"
243
  msgstr ""
244
 
245
- #: google-captcha.php:563
246
  msgid "Using"
247
  msgstr ""
248
 
249
- #: google-captcha.php:569
250
  #, fuzzy
251
  msgid "reCAPTCHA size"
252
  msgstr "Версия на reCAPTCHA:"
253
 
254
- #: google-captcha.php:598
255
  msgid "Save Changes"
256
  msgstr "Запази промените"
257
 
258
- #: google-captcha.php:652 google-captcha.php:1090
259
  msgid "To use Google Captcha you must get the keys from"
260
  msgstr "За да използвате Google Captcha трябва да вземете ключовете от"
261
 
262
- #: google-captcha.php:653 google-captcha.php:1091
263
  msgid "here"
264
  msgstr "тук"
265
 
266
- #: google-captcha.php:654 google-captcha.php:1092
267
  msgid "and enter them on the"
268
  msgstr "и да ги въведете в"
269
 
270
- #: google-captcha.php:656 google-captcha.php:1094
271
  msgid "plugin setting page"
272
  msgstr "настройките на плъгина"
273
 
274
- #: google-captcha.php:842 google-captcha.php:880
275
  msgid "Error"
276
  msgstr ""
277
 
278
- #: google-captcha.php:842
279
  #, fuzzy
280
  msgid "You have entered an incorrect reCAPTCHA value."
281
  msgstr "Грешка: Въвели сте невалиден анти-спам код."
282
 
283
- #: google-captcha.php:880 google-captcha.php:897 google-captcha.php:926
 
 
 
 
284
  #, fuzzy
285
  msgid "You have entered an incorrect reCAPTCHA value"
286
  msgstr "Грешка: Въвели сте невалиден анти-спам код."
287
 
288
- #: google-captcha.php:897 google-captcha.php:926 google-captcha.php:952
289
- msgid "ERROR"
290
- msgstr ""
291
-
292
- #: google-captcha.php:952
293
  #, fuzzy
294
  msgid ""
295
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -298,44 +302,44 @@ msgstr ""
298
  "Грешка: Въвели сте невалиден анти-спам код. Натиснете бутона НАЗАД в "
299
  "браузъра и опитайте отново."
300
 
301
- #: google-captcha.php:976
302
  msgid "Please, complete the captcha and submit \"Test verification\""
303
  msgstr ""
304
 
305
- #: google-captcha.php:980
306
  msgid "Test verification"
307
  msgstr ""
308
 
309
- #: google-captcha.php:994 google-captcha.php:1003
310
  msgid "The user response was missing."
311
  msgstr ""
312
 
313
- #: google-captcha.php:996
314
  msgid "The Secret Key is missing."
315
  msgstr ""
316
 
317
- #: google-captcha.php:999 google-captcha.php:1008
318
  msgid "The Secret Key is invalid"
319
  msgstr ""
320
 
321
- #: google-captcha.php:1000 google-captcha.php:1009
322
  msgid "Check your domain configuration"
323
  msgstr ""
324
 
325
- #: google-captcha.php:1001 google-captcha.php:1010
326
  #, fuzzy
327
  msgid "and enter it again"
328
  msgstr "и да ги въведете в"
329
 
330
- #: google-captcha.php:1004 google-captcha.php:1012
331
  msgid "The user response is invalid."
332
  msgstr ""
333
 
334
- #: google-captcha.php:1021
335
  msgid "The verification is successfully completed."
336
  msgstr ""
337
 
338
- #: google-captcha.php:1075
339
  msgid "Support"
340
  msgstr "Поддръжка"
341
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-25 11:33+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Yasen Georgiev <me@ygeorgiev.com>\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: google-captcha.php:34 google-captcha.php:422
20
  msgid "Google Captcha Settings"
21
  msgstr "Настройки на Google Captcha"
22
 
23
+ #: google-captcha.php:202
24
  msgid "Warning"
25
  msgstr ""
26
 
27
+ #: google-captcha.php:202
28
  msgid ""
29
  "It has been found more than one reCAPTCHA in current form. In this case "
30
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
31
  "blocks."
32
  msgstr ""
33
 
34
+ #: google-captcha.php:206
35
  #, fuzzy
36
  msgid "Error: You have entered an incorrect reCAPTCHA value."
37
  msgstr "Грешка: Въвели сте невалиден анти-спам код."
38
 
39
+ #: google-captcha.php:327
40
  msgid "Normal"
41
  msgstr ""
42
 
43
+ #: google-captcha.php:328
44
  msgid "Compact"
45
  msgstr ""
46
 
47
+ #: google-captcha.php:334
48
  msgid "Site key"
49
  msgstr "Ключ"
50
 
51
+ #: google-captcha.php:339
52
  msgid "Secret Key"
53
  msgstr "Секретен ключ"
54
 
55
+ #: google-captcha.php:347
56
  msgid "Login form"
57
  msgstr "Форма за вход"
58
 
59
+ #: google-captcha.php:348
60
  msgid "Registration form"
61
  msgstr "Форма регистрация"
62
 
63
+ #: google-captcha.php:349
64
  msgid "Reset password form"
65
  msgstr "Форма за възстановяване на парола"
66
 
67
+ #: google-captcha.php:350
68
  msgid "Comments form"
69
  msgstr "Форма за коментиране"
70
 
71
+ #: google-captcha.php:369
72
  msgid "Enter site key"
73
  msgstr "Въведете ключ"
74
 
75
+ #: google-captcha.php:370 google-captcha.php:376
76
  msgid "WARNING: The captcha will not display while you don't fill key fields."
77
  msgstr ""
78
  "ПРЕДУПРЕЖДЕНИЕ: Google Captcha няма да се покаже докато не въведете "
79
  "ключовите полета."
80
 
81
+ #: google-captcha.php:375
82
  msgid "Enter secret key"
83
  msgstr "Въведете секретен ключ"
84
 
85
+ #: google-captcha.php:401
86
  msgid "Settings saved"
87
  msgstr "Настройките бяха запазени успешно."
88
 
89
+ #: google-captcha.php:407
90
  #, fuzzy
91
  msgid "All plugin settings were restored."
92
  msgstr "настройките на плъгина"
93
 
94
+ #: google-captcha.php:424 google-captcha.php:1128 google-captcha.php:1150
95
  msgid "Settings"
96
  msgstr "Настройки"
97
 
98
+ #: google-captcha.php:425
99
  msgid "Custom code"
100
  msgstr ""
101
 
102
+ #: google-captcha.php:426
103
  msgid "Go PRO"
104
  msgstr ""
105
 
106
+ #: google-captcha.php:431
107
  msgid ""
108
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
109
  "version 1 features."
110
  msgstr ""
111
 
112
+ #: google-captcha.php:446
113
  #, fuzzy, php-format
114
  msgid ""
115
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
118
  "Ако искате да добавите Google Captcha към Ваша собствена форма, проста "
119
  "копирайте и поставете този код на желаната публикация или страница:"
120
 
121
+ #: google-captcha.php:452
122
  #, php-format
123
  msgid ""
124
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
127
  "your own form , please use the shortcode %s"
128
  msgstr ""
129
 
130
+ #: google-captcha.php:460
131
  msgid "Authentication"
132
  msgstr "Идентификация"
133
 
134
+ #: google-captcha.php:461
135
  #, fuzzy, php-format
136
  msgid "Before you are able to do something, you must to register %shere%s"
137
  msgstr "Преди да можете да направите нещо, трябва да се %sрегистрирате%s."
138
 
139
+ #: google-captcha.php:462
140
  msgid "Enter site key and secret key, that you get after registration."
141
  msgstr ""
142
  "Въведете ключ и секретен ключ, който взимате след регистрация в Google "
143
  "Captcha."
144
 
145
+ #: google-captcha.php:477
146
  #, fuzzy
147
  msgid "Test Keys"
148
  msgstr "Секретен ключ"
149
 
150
+ #: google-captcha.php:480
151
  msgid "Options"
152
  msgstr "Опции"
153
 
154
+ #: google-captcha.php:483
155
  msgid "Enable reCAPTCHA for"
156
  msgstr ""
157
 
158
+ #: google-captcha.php:487
159
  msgid "WordPress default"
160
  msgstr ""
161
 
162
+ #: google-captcha.php:496
163
  msgid "This option is available only for network or for main blog"
164
  msgstr ""
165
 
166
+ #: google-captcha.php:504
167
  #, fuzzy
168
  msgid "Plugins"
169
  msgstr "Страница с плъгини"
170
 
171
+ #: google-captcha.php:512 google-captcha.php:517
172
  #, php-format
173
  msgid "You should %s to use this functionality"
174
  msgstr ""
175
 
176
+ #: google-captcha.php:513
177
  #, fuzzy
178
  msgid "activate"
179
  msgstr "Активировать Contact form"
180
 
181
+ #: google-captcha.php:513
182
  msgid "for network"
183
  msgstr ""
184
 
185
+ #: google-captcha.php:518
186
  msgid "download"
187
  msgstr ""
188
 
189
+ #: google-captcha.php:522
190
+ msgid "Check off for adding captcha to forms on their settings pages."
191
+ msgstr ""
192
+
193
+ #: google-captcha.php:533 google-captcha.php:610
194
  msgid "Close"
195
  msgstr ""
196
 
197
+ #: google-captcha.php:545 google-captcha.php:646
198
  msgid "Unlock premium options by upgrading to Pro version"
199
  msgstr ""
200
 
201
+ #: google-captcha.php:548 google-captcha.php:649
202
  msgid "Learn More"
203
  msgstr ""
204
 
205
+ #: google-captcha.php:554
206
  #, php-format
207
  msgid ""
208
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
209
  msgstr ""
210
 
211
+ #: google-captcha.php:554 google-captcha.php:1151
212
  msgid "FAQ"
213
  msgstr "ЧЗВ"
214
 
215
+ #: google-captcha.php:559
216
  #, fuzzy
217
  msgid "Hide reCAPTCHA in Comments form for"
218
  msgstr "за reCAPTCHA версия"
219
 
220
+ #: google-captcha.php:571
221
  #, fuzzy
222
  msgid "reCAPTCHA version"
223
  msgstr "Версия на reCAPTCHA:"
224
 
225
+ #: google-captcha.php:574 google-captcha.php:575 google-captcha.php:576
226
+ #: google-captcha.php:577
227
  msgid "version"
228
  msgstr "версия"
229
 
230
+ #: google-captcha.php:583 google-captcha.php:596
231
  #, fuzzy
232
  msgid "reCAPTCHA theme"
233
  msgstr "Версия на reCAPTCHA:"
234
 
235
+ #: google-captcha.php:584 google-captcha.php:597 google-captcha.php:628
236
  #, fuzzy
237
  msgid "for version"
238
  msgstr "версия"
239
 
240
+ #: google-captcha.php:614
241
  #, fuzzy
242
  msgid "reCAPTCHA language"
243
  msgstr "Версия на reCAPTCHA:"
244
 
245
+ #: google-captcha.php:621
246
  msgid "Use the current site language"
247
  msgstr ""
248
 
249
+ #: google-captcha.php:621
250
  msgid "Using"
251
  msgstr ""
252
 
253
+ #: google-captcha.php:627
254
  #, fuzzy
255
  msgid "reCAPTCHA size"
256
  msgstr "Версия на reCAPTCHA:"
257
 
258
+ #: google-captcha.php:656
259
  msgid "Save Changes"
260
  msgstr "Запази промените"
261
 
262
+ #: google-captcha.php:710 google-captcha.php:1167
263
  msgid "To use Google Captcha you must get the keys from"
264
  msgstr "За да използвате Google Captcha трябва да вземете ключовете от"
265
 
266
+ #: google-captcha.php:711 google-captcha.php:1168
267
  msgid "here"
268
  msgstr "тук"
269
 
270
+ #: google-captcha.php:712 google-captcha.php:1169
271
  msgid "and enter them on the"
272
  msgstr "и да ги въведете в"
273
 
274
+ #: google-captcha.php:714 google-captcha.php:1171
275
  msgid "plugin setting page"
276
  msgstr "настройките на плъгина"
277
 
278
+ #: google-captcha.php:900 google-captcha.php:948
279
  msgid "Error"
280
  msgstr ""
281
 
282
+ #: google-captcha.php:900 google-captcha.php:948
283
  #, fuzzy
284
  msgid "You have entered an incorrect reCAPTCHA value."
285
  msgstr "Грешка: Въвели сте невалиден анти-спам код."
286
 
287
+ #: google-captcha.php:978 google-captcha.php:1007 google-captcha.php:1033
288
+ msgid "ERROR"
289
+ msgstr ""
290
+
291
+ #: google-captcha.php:978 google-captcha.php:1007
292
  #, fuzzy
293
  msgid "You have entered an incorrect reCAPTCHA value"
294
  msgstr "Грешка: Въвели сте невалиден анти-спам код."
295
 
296
+ #: google-captcha.php:1033
 
 
 
 
297
  #, fuzzy
298
  msgid ""
299
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
302
  "Грешка: Въвели сте невалиден анти-спам код. Натиснете бутона НАЗАД в "
303
  "браузъра и опитайте отново."
304
 
305
+ #: google-captcha.php:1064
306
  msgid "Please, complete the captcha and submit \"Test verification\""
307
  msgstr ""
308
 
309
+ #: google-captcha.php:1068
310
  msgid "Test verification"
311
  msgstr ""
312
 
313
+ #: google-captcha.php:1082 google-captcha.php:1091
314
  msgid "The user response was missing."
315
  msgstr ""
316
 
317
+ #: google-captcha.php:1084
318
  msgid "The Secret Key is missing."
319
  msgstr ""
320
 
321
+ #: google-captcha.php:1087 google-captcha.php:1096
322
  msgid "The Secret Key is invalid"
323
  msgstr ""
324
 
325
+ #: google-captcha.php:1088 google-captcha.php:1097
326
  msgid "Check your domain configuration"
327
  msgstr ""
328
 
329
+ #: google-captcha.php:1089 google-captcha.php:1098
330
  #, fuzzy
331
  msgid "and enter it again"
332
  msgstr "и да ги въведете в"
333
 
334
+ #: google-captcha.php:1092 google-captcha.php:1100
335
  msgid "The user response is invalid."
336
  msgstr ""
337
 
338
+ #: google-captcha.php:1109
339
  msgid "The verification is successfully completed."
340
  msgstr ""
341
 
342
+ #: google-captcha.php:1152
343
  msgid "Support"
344
  msgstr "Поддръжка"
345
 
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: 2016-04-05 17:13+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
@@ -16,90 +16,90 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: google-captcha.php:34 google-captcha.php:367
20
  msgid "Google Captcha Settings"
21
  msgstr "Nastavení Google Captcha"
22
 
23
- #: google-captcha.php:154
24
  msgid "Warning"
25
  msgstr ""
26
 
27
- #: google-captcha.php:154
28
  msgid ""
29
  "It has been found more than one reCAPTCHA in current form. In this case "
30
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
31
  "blocks."
32
  msgstr ""
33
 
34
- #: google-captcha.php:158
35
  msgid "Error: You have entered an incorrect reCAPTCHA value."
36
  msgstr "Chyba: Zadali jste nesprávnou hodnotu reCAPTCHA ."
37
 
38
- #: google-captcha.php:272
39
  msgid "Normal"
40
  msgstr "Normální"
41
 
42
- #: google-captcha.php:273
43
  msgid "Compact"
44
  msgstr "Kompaktní"
45
 
46
- #: google-captcha.php:279
47
  msgid "Site key"
48
  msgstr "Klíč serveru"
49
 
50
- #: google-captcha.php:284
51
  msgid "Secret Key"
52
  msgstr "Tajný klíč:"
53
 
54
- #: google-captcha.php:292
55
  msgid "Login form"
56
  msgstr "Přihlašovací formulář"
57
 
58
- #: google-captcha.php:293
59
  msgid "Registration form"
60
  msgstr "Registrační formulář"
61
 
62
- #: google-captcha.php:294
63
  msgid "Reset password form"
64
  msgstr "Formulář pro resetování hesla "
65
 
66
- #: google-captcha.php:295
67
  msgid "Comments form"
68
  msgstr "Formulář komentářů"
69
 
70
- #: google-captcha.php:314
71
  msgid "Enter site key"
72
  msgstr "Zadejte klíč serveru"
73
 
74
- #: google-captcha.php:315 google-captcha.php:321
75
  msgid "WARNING: The captcha will not display while you don't fill key fields."
76
  msgstr "VAROVÁNÍ: Captcha se nezobrazí, když nejsou vyplněná pole s klíči."
77
 
78
- #: google-captcha.php:320
79
  msgid "Enter secret key"
80
  msgstr "Zadejte tajný klíč"
81
 
82
- #: google-captcha.php:346
83
  msgid "Settings saved"
84
  msgstr "Nastavení uloženo"
85
 
86
- #: google-captcha.php:352
87
  msgid "All plugin settings were restored."
88
  msgstr "Výchozí nastavení pluginu bylo obnoveno."
89
 
90
- #: google-captcha.php:369 google-captcha.php:1040 google-captcha.php:1073
91
  msgid "Settings"
92
  msgstr "Nastavení"
93
 
94
- #: google-captcha.php:370
95
  msgid "Custom code"
96
  msgstr ""
97
 
98
- #: google-captcha.php:371
99
  msgid "Go PRO"
100
  msgstr "Získat verzi Pro"
101
 
102
- #: google-captcha.php:376
103
  msgid ""
104
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
105
  "version 1 features."
@@ -107,7 +107,7 @@ msgstr ""
107
  "Pouze jeden reCAPTCHA lze zobrazit na stránce, to souvisí s funkcí verze 1 "
108
  "reCAPTCHA."
109
 
110
- #: google-captcha.php:391
111
  #, php-format
112
  msgid ""
113
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -116,7 +116,7 @@ msgstr ""
116
  "Pokud byste chtěli přidat Google Captcha (reCAPTCHA) na vaše stránky nebo "
117
  "příspěvku, použijte tlačítko %s"
118
 
119
- #: google-captcha.php:397
120
  #, php-format
121
  msgid ""
122
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -129,75 +129,79 @@ msgstr ""
129
  "Pokud tlačítko není zobrazeno, nebo chcete přidat Google Captcha (reCAPTCHA) "
130
  "na vlastním formuláři, použijte shortcode %s"
131
 
132
- #: google-captcha.php:405
133
  msgid "Authentication"
134
  msgstr "Autentizace"
135
 
136
- #: google-captcha.php:406
137
  #, php-format
138
  msgid "Before you are able to do something, you must to register %shere%s"
139
  msgstr ""
140
  "Nejdříve, než budete schopni něco udělat, musíte se zaregistrovat % szde %s"
141
 
142
- #: google-captcha.php:407
143
  msgid "Enter site key and secret key, that you get after registration."
144
  msgstr "Zadejte klíč serveru a tajný klíč, které obdržíte po registraci."
145
 
146
- #: google-captcha.php:422
147
  #, fuzzy
148
  msgid "Test Keys"
149
  msgstr "Tajný klíč:"
150
 
151
- #: google-captcha.php:425
152
  msgid "Options"
153
  msgstr "Možnosti"
154
 
155
- #: google-captcha.php:428
156
  msgid "Enable reCAPTCHA for"
157
  msgstr "Povolit reCAPTCHA pro"
158
 
159
- #: google-captcha.php:432
160
  msgid "WordPress default"
161
  msgstr "Výchozí WordPress"
162
 
163
- #: google-captcha.php:441
164
  msgid "This option is available only for network or for main blog"
165
  msgstr "Tato možnost je k dispozici pouze pro síť nebo pro hlavní blog"
166
 
167
- #: google-captcha.php:449
168
  msgid "Plugins"
169
  msgstr "Pluginy"
170
 
171
- #: google-captcha.php:457 google-captcha.php:462
172
  #, php-format
173
  msgid "You should %s to use this functionality"
174
  msgstr "Měli byste použít tuto %s funkci"
175
 
176
- #: google-captcha.php:458
177
  msgid "activate"
178
  msgstr "Aktivování"
179
 
180
- #: google-captcha.php:458
181
  msgid "for network"
182
  msgstr "pro síť"
183
 
184
- #: google-captcha.php:463
185
  msgid "download"
186
  msgstr "stáhnout"
187
 
188
- #: google-captcha.php:475 google-captcha.php:552
 
 
 
 
189
  msgid "Close"
190
  msgstr "Zavřít"
191
 
192
- #: google-captcha.php:487 google-captcha.php:588
193
  msgid "Unlock premium options by upgrading to Pro version"
194
  msgstr "Odemknout prémiové možnosti po aktualizaci na verzi Pro"
195
 
196
- #: google-captcha.php:490 google-captcha.php:591
197
  msgid "Learn More"
198
  msgstr "Více informací"
199
 
200
- #: google-captcha.php:496
201
  #, php-format
202
  msgid ""
203
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
@@ -205,85 +209,85 @@ msgstr ""
205
  "Pokud byste chtěli přidat Google Captcha (reCAPTCHA) do vlastního formuláře "
206
  "viz %s"
207
 
208
- #: google-captcha.php:496 google-captcha.php:1074
209
  msgid "FAQ"
210
  msgstr "Často kladené otázky"
211
 
212
- #: google-captcha.php:501
213
  msgid "Hide reCAPTCHA in Comments form for"
214
  msgstr "Skrýt reCAPTCHA ve formuláři komentářů pro"
215
 
216
- #: google-captcha.php:513
217
  msgid "reCAPTCHA version"
218
  msgstr "Verze reCAPTCHA "
219
 
220
- #: google-captcha.php:516 google-captcha.php:517 google-captcha.php:518
221
- #: google-captcha.php:519
222
  msgid "version"
223
  msgstr "verze"
224
 
225
- #: google-captcha.php:525 google-captcha.php:538
226
  msgid "reCAPTCHA theme"
227
  msgstr "Vzhled reCAPTCHA"
228
 
229
- #: google-captcha.php:526 google-captcha.php:539 google-captcha.php:570
230
  msgid "for version"
231
  msgstr "pro verzi"
232
 
233
- #: google-captcha.php:556
234
  msgid "reCAPTCHA language"
235
  msgstr "reCAPTCHA jazyk"
236
 
237
- #: google-captcha.php:563
238
  msgid "Use the current site language"
239
  msgstr "Použít aktuální jazyk webu"
240
 
241
- #: google-captcha.php:563
242
  msgid "Using"
243
  msgstr "Použití"
244
 
245
- #: google-captcha.php:569
246
  msgid "reCAPTCHA size"
247
  msgstr "Velikost reCAPTCHA "
248
 
249
- #: google-captcha.php:598
250
  msgid "Save Changes"
251
  msgstr "Uložit změny"
252
 
253
- #: google-captcha.php:652 google-captcha.php:1090
254
  msgid "To use Google Captcha you must get the keys from"
255
  msgstr "Chcete-li použít Google Captcha musíte získat klíče z"
256
 
257
- #: google-captcha.php:653 google-captcha.php:1091
258
  msgid "here"
259
  msgstr "zde"
260
 
261
- #: google-captcha.php:654 google-captcha.php:1092
262
  msgid "and enter them on the"
263
  msgstr "a zadejte je v"
264
 
265
- #: google-captcha.php:656 google-captcha.php:1094
266
  msgid "plugin setting page"
267
  msgstr "stránka nastavení pluginu"
268
 
269
- #: google-captcha.php:842 google-captcha.php:880
270
  msgid "Error"
271
  msgstr "Chyba"
272
 
273
- #: google-captcha.php:842
274
  msgid "You have entered an incorrect reCAPTCHA value."
275
  msgstr "Zadali jste nesprávnou hodnotu reCAPTCHA ."
276
 
277
- #: google-captcha.php:880 google-captcha.php:897 google-captcha.php:926
 
 
 
 
278
  #, fuzzy
279
  msgid "You have entered an incorrect reCAPTCHA value"
280
  msgstr "Zadali jste nesprávnou hodnotu reCAPTCHA ."
281
 
282
- #: google-captcha.php:897 google-captcha.php:926 google-captcha.php:952
283
- msgid "ERROR"
284
- msgstr ""
285
-
286
- #: google-captcha.php:952
287
  msgid ""
288
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
289
  "browser, and try again."
@@ -291,44 +295,44 @@ msgstr ""
291
  "Zadali jste nesprávnou hodnotu reCAPTCHA . Klepněte na tlačítko zpět ve "
292
  "vašem prohlížeči a opakujte akci."
293
 
294
- #: google-captcha.php:976
295
  msgid "Please, complete the captcha and submit \"Test verification\""
296
  msgstr ""
297
 
298
- #: google-captcha.php:980
299
  msgid "Test verification"
300
  msgstr ""
301
 
302
- #: google-captcha.php:994 google-captcha.php:1003
303
  msgid "The user response was missing."
304
  msgstr ""
305
 
306
- #: google-captcha.php:996
307
  msgid "The Secret Key is missing."
308
  msgstr ""
309
 
310
- #: google-captcha.php:999 google-captcha.php:1008
311
  msgid "The Secret Key is invalid"
312
  msgstr ""
313
 
314
- #: google-captcha.php:1000 google-captcha.php:1009
315
  msgid "Check your domain configuration"
316
  msgstr ""
317
 
318
- #: google-captcha.php:1001 google-captcha.php:1010
319
  #, fuzzy
320
  msgid "and enter it again"
321
  msgstr "a zadejte je v"
322
 
323
- #: google-captcha.php:1004 google-captcha.php:1012
324
  msgid "The user response is invalid."
325
  msgstr ""
326
 
327
- #: google-captcha.php:1021
328
  msgid "The verification is successfully completed."
329
  msgstr ""
330
 
331
- #: google-captcha.php:1075
332
  msgid "Support"
333
  msgstr "Podpora"
334
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-25 11:33+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: google-captcha.php:34 google-captcha.php:422
20
  msgid "Google Captcha Settings"
21
  msgstr "Nastavení Google Captcha"
22
 
23
+ #: google-captcha.php:202
24
  msgid "Warning"
25
  msgstr ""
26
 
27
+ #: google-captcha.php:202
28
  msgid ""
29
  "It has been found more than one reCAPTCHA in current form. In this case "
30
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
31
  "blocks."
32
  msgstr ""
33
 
34
+ #: google-captcha.php:206
35
  msgid "Error: You have entered an incorrect reCAPTCHA value."
36
  msgstr "Chyba: Zadali jste nesprávnou hodnotu reCAPTCHA ."
37
 
38
+ #: google-captcha.php:327
39
  msgid "Normal"
40
  msgstr "Normální"
41
 
42
+ #: google-captcha.php:328
43
  msgid "Compact"
44
  msgstr "Kompaktní"
45
 
46
+ #: google-captcha.php:334
47
  msgid "Site key"
48
  msgstr "Klíč serveru"
49
 
50
+ #: google-captcha.php:339
51
  msgid "Secret Key"
52
  msgstr "Tajný klíč:"
53
 
54
+ #: google-captcha.php:347
55
  msgid "Login form"
56
  msgstr "Přihlašovací formulář"
57
 
58
+ #: google-captcha.php:348
59
  msgid "Registration form"
60
  msgstr "Registrační formulář"
61
 
62
+ #: google-captcha.php:349
63
  msgid "Reset password form"
64
  msgstr "Formulář pro resetování hesla "
65
 
66
+ #: google-captcha.php:350
67
  msgid "Comments form"
68
  msgstr "Formulář komentářů"
69
 
70
+ #: google-captcha.php:369
71
  msgid "Enter site key"
72
  msgstr "Zadejte klíč serveru"
73
 
74
+ #: google-captcha.php:370 google-captcha.php:376
75
  msgid "WARNING: The captcha will not display while you don't fill key fields."
76
  msgstr "VAROVÁNÍ: Captcha se nezobrazí, když nejsou vyplněná pole s klíči."
77
 
78
+ #: google-captcha.php:375
79
  msgid "Enter secret key"
80
  msgstr "Zadejte tajný klíč"
81
 
82
+ #: google-captcha.php:401
83
  msgid "Settings saved"
84
  msgstr "Nastavení uloženo"
85
 
86
+ #: google-captcha.php:407
87
  msgid "All plugin settings were restored."
88
  msgstr "Výchozí nastavení pluginu bylo obnoveno."
89
 
90
+ #: google-captcha.php:424 google-captcha.php:1128 google-captcha.php:1150
91
  msgid "Settings"
92
  msgstr "Nastavení"
93
 
94
+ #: google-captcha.php:425
95
  msgid "Custom code"
96
  msgstr ""
97
 
98
+ #: google-captcha.php:426
99
  msgid "Go PRO"
100
  msgstr "Získat verzi Pro"
101
 
102
+ #: google-captcha.php:431
103
  msgid ""
104
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
105
  "version 1 features."
107
  "Pouze jeden reCAPTCHA lze zobrazit na stránce, to souvisí s funkcí verze 1 "
108
  "reCAPTCHA."
109
 
110
+ #: google-captcha.php:446
111
  #, php-format
112
  msgid ""
113
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
116
  "Pokud byste chtěli přidat Google Captcha (reCAPTCHA) na vaše stránky nebo "
117
  "příspěvku, použijte tlačítko %s"
118
 
119
+ #: google-captcha.php:452
120
  #, php-format
121
  msgid ""
122
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
129
  "Pokud tlačítko není zobrazeno, nebo chcete přidat Google Captcha (reCAPTCHA) "
130
  "na vlastním formuláři, použijte shortcode %s"
131
 
132
+ #: google-captcha.php:460
133
  msgid "Authentication"
134
  msgstr "Autentizace"
135
 
136
+ #: google-captcha.php:461
137
  #, php-format
138
  msgid "Before you are able to do something, you must to register %shere%s"
139
  msgstr ""
140
  "Nejdříve, než budete schopni něco udělat, musíte se zaregistrovat % szde %s"
141
 
142
+ #: google-captcha.php:462
143
  msgid "Enter site key and secret key, that you get after registration."
144
  msgstr "Zadejte klíč serveru a tajný klíč, které obdržíte po registraci."
145
 
146
+ #: google-captcha.php:477
147
  #, fuzzy
148
  msgid "Test Keys"
149
  msgstr "Tajný klíč:"
150
 
151
+ #: google-captcha.php:480
152
  msgid "Options"
153
  msgstr "Možnosti"
154
 
155
+ #: google-captcha.php:483
156
  msgid "Enable reCAPTCHA for"
157
  msgstr "Povolit reCAPTCHA pro"
158
 
159
+ #: google-captcha.php:487
160
  msgid "WordPress default"
161
  msgstr "Výchozí WordPress"
162
 
163
+ #: google-captcha.php:496
164
  msgid "This option is available only for network or for main blog"
165
  msgstr "Tato možnost je k dispozici pouze pro síť nebo pro hlavní blog"
166
 
167
+ #: google-captcha.php:504
168
  msgid "Plugins"
169
  msgstr "Pluginy"
170
 
171
+ #: google-captcha.php:512 google-captcha.php:517
172
  #, php-format
173
  msgid "You should %s to use this functionality"
174
  msgstr "Měli byste použít tuto %s funkci"
175
 
176
+ #: google-captcha.php:513
177
  msgid "activate"
178
  msgstr "Aktivování"
179
 
180
+ #: google-captcha.php:513
181
  msgid "for network"
182
  msgstr "pro síť"
183
 
184
+ #: google-captcha.php:518
185
  msgid "download"
186
  msgstr "stáhnout"
187
 
188
+ #: google-captcha.php:522
189
+ msgid "Check off for adding captcha to forms on their settings pages."
190
+ msgstr ""
191
+
192
+ #: google-captcha.php:533 google-captcha.php:610
193
  msgid "Close"
194
  msgstr "Zavřít"
195
 
196
+ #: google-captcha.php:545 google-captcha.php:646
197
  msgid "Unlock premium options by upgrading to Pro version"
198
  msgstr "Odemknout prémiové možnosti po aktualizaci na verzi Pro"
199
 
200
+ #: google-captcha.php:548 google-captcha.php:649
201
  msgid "Learn More"
202
  msgstr "Více informací"
203
 
204
+ #: google-captcha.php:554
205
  #, php-format
206
  msgid ""
207
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
209
  "Pokud byste chtěli přidat Google Captcha (reCAPTCHA) do vlastního formuláře "
210
  "viz %s"
211
 
212
+ #: google-captcha.php:554 google-captcha.php:1151
213
  msgid "FAQ"
214
  msgstr "Často kladené otázky"
215
 
216
+ #: google-captcha.php:559
217
  msgid "Hide reCAPTCHA in Comments form for"
218
  msgstr "Skrýt reCAPTCHA ve formuláři komentářů pro"
219
 
220
+ #: google-captcha.php:571
221
  msgid "reCAPTCHA version"
222
  msgstr "Verze reCAPTCHA "
223
 
224
+ #: google-captcha.php:574 google-captcha.php:575 google-captcha.php:576
225
+ #: google-captcha.php:577
226
  msgid "version"
227
  msgstr "verze"
228
 
229
+ #: google-captcha.php:583 google-captcha.php:596
230
  msgid "reCAPTCHA theme"
231
  msgstr "Vzhled reCAPTCHA"
232
 
233
+ #: google-captcha.php:584 google-captcha.php:597 google-captcha.php:628
234
  msgid "for version"
235
  msgstr "pro verzi"
236
 
237
+ #: google-captcha.php:614
238
  msgid "reCAPTCHA language"
239
  msgstr "reCAPTCHA jazyk"
240
 
241
+ #: google-captcha.php:621
242
  msgid "Use the current site language"
243
  msgstr "Použít aktuální jazyk webu"
244
 
245
+ #: google-captcha.php:621
246
  msgid "Using"
247
  msgstr "Použití"
248
 
249
+ #: google-captcha.php:627
250
  msgid "reCAPTCHA size"
251
  msgstr "Velikost reCAPTCHA "
252
 
253
+ #: google-captcha.php:656
254
  msgid "Save Changes"
255
  msgstr "Uložit změny"
256
 
257
+ #: google-captcha.php:710 google-captcha.php:1167
258
  msgid "To use Google Captcha you must get the keys from"
259
  msgstr "Chcete-li použít Google Captcha musíte získat klíče z"
260
 
261
+ #: google-captcha.php:711 google-captcha.php:1168
262
  msgid "here"
263
  msgstr "zde"
264
 
265
+ #: google-captcha.php:712 google-captcha.php:1169
266
  msgid "and enter them on the"
267
  msgstr "a zadejte je v"
268
 
269
+ #: google-captcha.php:714 google-captcha.php:1171
270
  msgid "plugin setting page"
271
  msgstr "stránka nastavení pluginu"
272
 
273
+ #: google-captcha.php:900 google-captcha.php:948
274
  msgid "Error"
275
  msgstr "Chyba"
276
 
277
+ #: google-captcha.php:900 google-captcha.php:948
278
  msgid "You have entered an incorrect reCAPTCHA value."
279
  msgstr "Zadali jste nesprávnou hodnotu reCAPTCHA ."
280
 
281
+ #: google-captcha.php:978 google-captcha.php:1007 google-captcha.php:1033
282
+ msgid "ERROR"
283
+ msgstr ""
284
+
285
+ #: google-captcha.php:978 google-captcha.php:1007
286
  #, fuzzy
287
  msgid "You have entered an incorrect reCAPTCHA value"
288
  msgstr "Zadali jste nesprávnou hodnotu reCAPTCHA ."
289
 
290
+ #: google-captcha.php:1033
 
 
 
 
291
  msgid ""
292
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
293
  "browser, and try again."
295
  "Zadali jste nesprávnou hodnotu reCAPTCHA . Klepněte na tlačítko zpět ve "
296
  "vašem prohlížeči a opakujte akci."
297
 
298
+ #: google-captcha.php:1064
299
  msgid "Please, complete the captcha and submit \"Test verification\""
300
  msgstr ""
301
 
302
+ #: google-captcha.php:1068
303
  msgid "Test verification"
304
  msgstr ""
305
 
306
+ #: google-captcha.php:1082 google-captcha.php:1091
307
  msgid "The user response was missing."
308
  msgstr ""
309
 
310
+ #: google-captcha.php:1084
311
  msgid "The Secret Key is missing."
312
  msgstr ""
313
 
314
+ #: google-captcha.php:1087 google-captcha.php:1096
315
  msgid "The Secret Key is invalid"
316
  msgstr ""
317
 
318
+ #: google-captcha.php:1088 google-captcha.php:1097
319
  msgid "Check your domain configuration"
320
  msgstr ""
321
 
322
+ #: google-captcha.php:1089 google-captcha.php:1098
323
  #, fuzzy
324
  msgid "and enter it again"
325
  msgstr "a zadejte je v"
326
 
327
+ #: google-captcha.php:1092 google-captcha.php:1100
328
  msgid "The user response is invalid."
329
  msgstr ""
330
 
331
+ #: google-captcha.php:1109
332
  msgid "The verification is successfully completed."
333
  msgstr ""
334
 
335
+ #: google-captcha.php:1152
336
  msgid "Support"
337
  msgstr "Podpora"
338
 
languages/google-captcha-de_DE.mo CHANGED
Binary file
languages/google-captcha-de_DE.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: 2016-04-05 17:14+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Fred Zimmer <fred.zimmer@medienconsulting.at>\n"
@@ -17,100 +17,100 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:34 google-captcha.php:367
21
  msgid "Google Captcha Settings"
22
  msgstr "Google Captcha-Einstellungen"
23
 
24
- #: google-captcha.php:154
25
  msgid "Warning"
26
  msgstr ""
27
 
28
- #: google-captcha.php:154
29
  msgid ""
30
  "It has been found more than one reCAPTCHA in current form. In this case "
31
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
32
  "blocks."
33
  msgstr ""
34
 
35
- #: google-captcha.php:158
36
  #, fuzzy
37
  msgid "Error: You have entered an incorrect reCAPTCHA value."
38
  msgstr "Fehler: Sie haben den CAPTCHA nicht korrekt eingegeben."
39
 
40
- #: google-captcha.php:272
41
  msgid "Normal"
42
  msgstr ""
43
 
44
- #: google-captcha.php:273
45
  msgid "Compact"
46
  msgstr ""
47
 
48
- #: google-captcha.php:279
49
  msgid "Site key"
50
  msgstr "Site-Schlüssel"
51
 
52
- #: google-captcha.php:284
53
  msgid "Secret Key"
54
  msgstr "Geheimer Schlüssel"
55
 
56
- #: google-captcha.php:292
57
  msgid "Login form"
58
  msgstr "Login Formular"
59
 
60
- #: google-captcha.php:293
61
  msgid "Registration form"
62
  msgstr "Registrierungsformular"
63
 
64
- #: google-captcha.php:294
65
  msgid "Reset password form"
66
  msgstr "Passwort Forumlar zurücksetzen"
67
 
68
- #: google-captcha.php:295
69
  msgid "Comments form"
70
  msgstr "Kommentarformular"
71
 
72
- #: google-captcha.php:314
73
  msgid "Enter site key"
74
  msgstr "Geben Sie den Site-Schlüssel ein"
75
 
76
- #: google-captcha.php:315 google-captcha.php:321
77
  msgid "WARNING: The captcha will not display while you don't fill key fields."
78
  msgstr ""
79
  "WARNUNG: das CAPTCHA wird nicht angezeigt wenn die Schlüsselfelder nicht "
80
  "ausgefüllt sind!"
81
 
82
- #: google-captcha.php:320
83
  msgid "Enter secret key"
84
  msgstr "Geben Sie den geheimen Schlüssel ein"
85
 
86
- #: google-captcha.php:346
87
  msgid "Settings saved"
88
  msgstr "Einstellungen gespeichert"
89
 
90
- #: google-captcha.php:352
91
  #, fuzzy
92
  msgid "All plugin settings were restored."
93
  msgstr "Plugin Einstellungsseite"
94
 
95
- #: google-captcha.php:369 google-captcha.php:1040 google-captcha.php:1073
96
  msgid "Settings"
97
  msgstr "Einstellungen"
98
 
99
- #: google-captcha.php:370
100
  msgid "Custom code"
101
  msgstr ""
102
 
103
- #: google-captcha.php:371
104
  msgid "Go PRO"
105
  msgstr ""
106
 
107
- #: google-captcha.php:376
108
  msgid ""
109
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
110
  "version 1 features."
111
  msgstr ""
112
 
113
- #: google-captcha.php:391
114
  #, fuzzy, php-format
115
  msgid ""
116
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -119,7 +119,7 @@ msgstr ""
119
  "Wenn Sie Ihrem eigenen Formular Google CAPTCHA hinzufügen wollen, dann "
120
  "kopieren Sie diesen Shortcode in Ihren Beitrag oder Seite"
121
 
122
- #: google-captcha.php:397
123
  #, php-format
124
  msgid ""
125
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -128,171 +128,175 @@ msgid ""
128
  "your own form , please use the shortcode %s"
129
  msgstr ""
130
 
131
- #: google-captcha.php:405
132
  msgid "Authentication"
133
  msgstr "Authentifizierung"
134
 
135
- #: google-captcha.php:406
136
  #, fuzzy, php-format
137
  msgid "Before you are able to do something, you must to register %shere%s"
138
  msgstr "Bevor Sie etwas tun können, müssen Sie %s hier %s registrieren"
139
 
140
- #: google-captcha.php:407
141
  msgid "Enter site key and secret key, that you get after registration."
142
  msgstr ""
143
  "Geben Sie den Site- und Geheimen Schlüssel ein, den Sie nach der "
144
  "Registrierung erhalten werden."
145
 
146
- #: google-captcha.php:422
147
  #, fuzzy
148
  msgid "Test Keys"
149
  msgstr "Geheimer Schlüssel"
150
 
151
- #: google-captcha.php:425
152
  msgid "Options"
153
  msgstr "Optionen"
154
 
155
- #: google-captcha.php:428
156
  msgid "Enable reCAPTCHA for"
157
  msgstr ""
158
 
159
- #: google-captcha.php:432
160
  msgid "WordPress default"
161
  msgstr ""
162
 
163
- #: google-captcha.php:441
164
  msgid "This option is available only for network or for main blog"
165
  msgstr ""
166
 
167
- #: google-captcha.php:449
168
  #, fuzzy
169
  msgid "Plugins"
170
  msgstr "Plugins Seite"
171
 
172
- #: google-captcha.php:457 google-captcha.php:462
173
  #, php-format
174
  msgid "You should %s to use this functionality"
175
  msgstr ""
176
 
177
- #: google-captcha.php:458
178
  #, fuzzy
179
  msgid "activate"
180
  msgstr "Oberfläche aktivieren"
181
 
182
- #: google-captcha.php:458
183
  msgid "for network"
184
  msgstr ""
185
 
186
- #: google-captcha.php:463
187
  msgid "download"
188
  msgstr ""
189
 
190
- #: google-captcha.php:475 google-captcha.php:552
 
 
 
 
191
  msgid "Close"
192
  msgstr ""
193
 
194
- #: google-captcha.php:487 google-captcha.php:588
195
  msgid "Unlock premium options by upgrading to Pro version"
196
  msgstr ""
197
 
198
- #: google-captcha.php:490 google-captcha.php:591
199
  msgid "Learn More"
200
  msgstr ""
201
 
202
- #: google-captcha.php:496
203
  #, php-format
204
  msgid ""
205
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
206
  msgstr ""
207
 
208
- #: google-captcha.php:496 google-captcha.php:1074
209
  msgid "FAQ"
210
  msgstr "FAQ"
211
 
212
- #: google-captcha.php:501
213
  #, fuzzy
214
  msgid "Hide reCAPTCHA in Comments form for"
215
  msgstr "für ReCAPTCHA-version"
216
 
217
- #: google-captcha.php:513
218
  #, fuzzy
219
  msgid "reCAPTCHA version"
220
  msgstr "ReCAPTCHA Version:"
221
 
222
- #: google-captcha.php:516 google-captcha.php:517 google-captcha.php:518
223
- #: google-captcha.php:519
224
  msgid "version"
225
  msgstr "Version"
226
 
227
- #: google-captcha.php:525 google-captcha.php:538
228
  #, fuzzy
229
  msgid "reCAPTCHA theme"
230
  msgstr "ReCAPTCHA Version:"
231
 
232
- #: google-captcha.php:526 google-captcha.php:539 google-captcha.php:570
233
  #, fuzzy
234
  msgid "for version"
235
  msgstr "Version"
236
 
237
- #: google-captcha.php:556
238
  #, fuzzy
239
  msgid "reCAPTCHA language"
240
  msgstr "ReCAPTCHA Version:"
241
 
242
- #: google-captcha.php:563
243
  msgid "Use the current site language"
244
  msgstr ""
245
 
246
- #: google-captcha.php:563
247
  msgid "Using"
248
  msgstr ""
249
 
250
- #: google-captcha.php:569
251
  #, fuzzy
252
  msgid "reCAPTCHA size"
253
  msgstr "ReCAPTCHA Version:"
254
 
255
- #: google-captcha.php:598
256
  msgid "Save Changes"
257
  msgstr "Änderungen speichern"
258
 
259
- #: google-captcha.php:652 google-captcha.php:1090
260
  msgid "To use Google Captcha you must get the keys from"
261
  msgstr ""
262
  "Um Google Catpcha verwenden zu können, müssen Sie sich die Schlüssel holen "
263
  "bei"
264
 
265
- #: google-captcha.php:653 google-captcha.php:1091
266
  msgid "here"
267
  msgstr "hier"
268
 
269
- #: google-captcha.php:654 google-captcha.php:1092
270
  msgid "and enter them on the"
271
  msgstr "und geben Sie sie ein auf"
272
 
273
- #: google-captcha.php:656 google-captcha.php:1094
274
  msgid "plugin setting page"
275
  msgstr "Plugin Einstellungsseite"
276
 
277
- #: google-captcha.php:842 google-captcha.php:880
278
  msgid "Error"
279
  msgstr "Fehler"
280
 
281
- #: google-captcha.php:842
282
  #, fuzzy
283
  msgid "You have entered an incorrect reCAPTCHA value."
284
  msgstr "Sie haben den CAPTCHA nicht korrekt eingegeben."
285
 
286
- #: google-captcha.php:880 google-captcha.php:897 google-captcha.php:926
 
 
 
 
287
  #, fuzzy
288
  msgid "You have entered an incorrect reCAPTCHA value"
289
  msgstr "Sie haben den CAPTCHA nicht korrekt eingegeben."
290
 
291
- #: google-captcha.php:897 google-captcha.php:926 google-captcha.php:952
292
- msgid "ERROR"
293
- msgstr ""
294
-
295
- #: google-captcha.php:952
296
  #, fuzzy
297
  msgid ""
298
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -301,44 +305,44 @@ msgstr ""
301
  "Fehler: Sie haben den CAPTCHA nicht korrekt eingegeben. Klicken Sie auf den "
302
  "\"zurück\" Knopf im Browser und versuchen Sie es nochmal."
303
 
304
- #: google-captcha.php:976
305
  msgid "Please, complete the captcha and submit \"Test verification\""
306
  msgstr ""
307
 
308
- #: google-captcha.php:980
309
  msgid "Test verification"
310
  msgstr ""
311
 
312
- #: google-captcha.php:994 google-captcha.php:1003
313
  msgid "The user response was missing."
314
  msgstr ""
315
 
316
- #: google-captcha.php:996
317
  msgid "The Secret Key is missing."
318
  msgstr ""
319
 
320
- #: google-captcha.php:999 google-captcha.php:1008
321
  msgid "The Secret Key is invalid"
322
  msgstr ""
323
 
324
- #: google-captcha.php:1000 google-captcha.php:1009
325
  msgid "Check your domain configuration"
326
  msgstr ""
327
 
328
- #: google-captcha.php:1001 google-captcha.php:1010
329
  #, fuzzy
330
  msgid "and enter it again"
331
  msgstr "und geben Sie sie ein auf"
332
 
333
- #: google-captcha.php:1004 google-captcha.php:1012
334
  msgid "The user response is invalid."
335
  msgstr ""
336
 
337
- #: google-captcha.php:1021
338
  msgid "The verification is successfully completed."
339
  msgstr ""
340
 
341
- #: google-captcha.php:1075
342
  msgid "Support"
343
  msgstr "Support"
344
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-25 11:33+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Fred Zimmer <fred.zimmer@medienconsulting.at>\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: google-captcha.php:34 google-captcha.php:422
21
  msgid "Google Captcha Settings"
22
  msgstr "Google Captcha-Einstellungen"
23
 
24
+ #: google-captcha.php:202
25
  msgid "Warning"
26
  msgstr ""
27
 
28
+ #: google-captcha.php:202
29
  msgid ""
30
  "It has been found more than one reCAPTCHA in current form. In this case "
31
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
32
  "blocks."
33
  msgstr ""
34
 
35
+ #: google-captcha.php:206
36
  #, fuzzy
37
  msgid "Error: You have entered an incorrect reCAPTCHA value."
38
  msgstr "Fehler: Sie haben den CAPTCHA nicht korrekt eingegeben."
39
 
40
+ #: google-captcha.php:327
41
  msgid "Normal"
42
  msgstr ""
43
 
44
+ #: google-captcha.php:328
45
  msgid "Compact"
46
  msgstr ""
47
 
48
+ #: google-captcha.php:334
49
  msgid "Site key"
50
  msgstr "Site-Schlüssel"
51
 
52
+ #: google-captcha.php:339
53
  msgid "Secret Key"
54
  msgstr "Geheimer Schlüssel"
55
 
56
+ #: google-captcha.php:347
57
  msgid "Login form"
58
  msgstr "Login Formular"
59
 
60
+ #: google-captcha.php:348
61
  msgid "Registration form"
62
  msgstr "Registrierungsformular"
63
 
64
+ #: google-captcha.php:349
65
  msgid "Reset password form"
66
  msgstr "Passwort Forumlar zurücksetzen"
67
 
68
+ #: google-captcha.php:350
69
  msgid "Comments form"
70
  msgstr "Kommentarformular"
71
 
72
+ #: google-captcha.php:369
73
  msgid "Enter site key"
74
  msgstr "Geben Sie den Site-Schlüssel ein"
75
 
76
+ #: google-captcha.php:370 google-captcha.php:376
77
  msgid "WARNING: The captcha will not display while you don't fill key fields."
78
  msgstr ""
79
  "WARNUNG: das CAPTCHA wird nicht angezeigt wenn die Schlüsselfelder nicht "
80
  "ausgefüllt sind!"
81
 
82
+ #: google-captcha.php:375
83
  msgid "Enter secret key"
84
  msgstr "Geben Sie den geheimen Schlüssel ein"
85
 
86
+ #: google-captcha.php:401
87
  msgid "Settings saved"
88
  msgstr "Einstellungen gespeichert"
89
 
90
+ #: google-captcha.php:407
91
  #, fuzzy
92
  msgid "All plugin settings were restored."
93
  msgstr "Plugin Einstellungsseite"
94
 
95
+ #: google-captcha.php:424 google-captcha.php:1128 google-captcha.php:1150
96
  msgid "Settings"
97
  msgstr "Einstellungen"
98
 
99
+ #: google-captcha.php:425
100
  msgid "Custom code"
101
  msgstr ""
102
 
103
+ #: google-captcha.php:426
104
  msgid "Go PRO"
105
  msgstr ""
106
 
107
+ #: google-captcha.php:431
108
  msgid ""
109
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
110
  "version 1 features."
111
  msgstr ""
112
 
113
+ #: google-captcha.php:446
114
  #, fuzzy, php-format
115
  msgid ""
116
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
119
  "Wenn Sie Ihrem eigenen Formular Google CAPTCHA hinzufügen wollen, dann "
120
  "kopieren Sie diesen Shortcode in Ihren Beitrag oder Seite"
121
 
122
+ #: google-captcha.php:452
123
  #, php-format
124
  msgid ""
125
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
128
  "your own form , please use the shortcode %s"
129
  msgstr ""
130
 
131
+ #: google-captcha.php:460
132
  msgid "Authentication"
133
  msgstr "Authentifizierung"
134
 
135
+ #: google-captcha.php:461
136
  #, fuzzy, php-format
137
  msgid "Before you are able to do something, you must to register %shere%s"
138
  msgstr "Bevor Sie etwas tun können, müssen Sie %s hier %s registrieren"
139
 
140
+ #: google-captcha.php:462
141
  msgid "Enter site key and secret key, that you get after registration."
142
  msgstr ""
143
  "Geben Sie den Site- und Geheimen Schlüssel ein, den Sie nach der "
144
  "Registrierung erhalten werden."
145
 
146
+ #: google-captcha.php:477
147
  #, fuzzy
148
  msgid "Test Keys"
149
  msgstr "Geheimer Schlüssel"
150
 
151
+ #: google-captcha.php:480
152
  msgid "Options"
153
  msgstr "Optionen"
154
 
155
+ #: google-captcha.php:483
156
  msgid "Enable reCAPTCHA for"
157
  msgstr ""
158
 
159
+ #: google-captcha.php:487
160
  msgid "WordPress default"
161
  msgstr ""
162
 
163
+ #: google-captcha.php:496
164
  msgid "This option is available only for network or for main blog"
165
  msgstr ""
166
 
167
+ #: google-captcha.php:504
168
  #, fuzzy
169
  msgid "Plugins"
170
  msgstr "Plugins Seite"
171
 
172
+ #: google-captcha.php:512 google-captcha.php:517
173
  #, php-format
174
  msgid "You should %s to use this functionality"
175
  msgstr ""
176
 
177
+ #: google-captcha.php:513
178
  #, fuzzy
179
  msgid "activate"
180
  msgstr "Oberfläche aktivieren"
181
 
182
+ #: google-captcha.php:513
183
  msgid "for network"
184
  msgstr ""
185
 
186
+ #: google-captcha.php:518
187
  msgid "download"
188
  msgstr ""
189
 
190
+ #: google-captcha.php:522
191
+ msgid "Check off for adding captcha to forms on their settings pages."
192
+ msgstr ""
193
+
194
+ #: google-captcha.php:533 google-captcha.php:610
195
  msgid "Close"
196
  msgstr ""
197
 
198
+ #: google-captcha.php:545 google-captcha.php:646
199
  msgid "Unlock premium options by upgrading to Pro version"
200
  msgstr ""
201
 
202
+ #: google-captcha.php:548 google-captcha.php:649
203
  msgid "Learn More"
204
  msgstr ""
205
 
206
+ #: google-captcha.php:554
207
  #, php-format
208
  msgid ""
209
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
210
  msgstr ""
211
 
212
+ #: google-captcha.php:554 google-captcha.php:1151
213
  msgid "FAQ"
214
  msgstr "FAQ"
215
 
216
+ #: google-captcha.php:559
217
  #, fuzzy
218
  msgid "Hide reCAPTCHA in Comments form for"
219
  msgstr "für ReCAPTCHA-version"
220
 
221
+ #: google-captcha.php:571
222
  #, fuzzy
223
  msgid "reCAPTCHA version"
224
  msgstr "ReCAPTCHA Version:"
225
 
226
+ #: google-captcha.php:574 google-captcha.php:575 google-captcha.php:576
227
+ #: google-captcha.php:577
228
  msgid "version"
229
  msgstr "Version"
230
 
231
+ #: google-captcha.php:583 google-captcha.php:596
232
  #, fuzzy
233
  msgid "reCAPTCHA theme"
234
  msgstr "ReCAPTCHA Version:"
235
 
236
+ #: google-captcha.php:584 google-captcha.php:597 google-captcha.php:628
237
  #, fuzzy
238
  msgid "for version"
239
  msgstr "Version"
240
 
241
+ #: google-captcha.php:614
242
  #, fuzzy
243
  msgid "reCAPTCHA language"
244
  msgstr "ReCAPTCHA Version:"
245
 
246
+ #: google-captcha.php:621
247
  msgid "Use the current site language"
248
  msgstr ""
249
 
250
+ #: google-captcha.php:621
251
  msgid "Using"
252
  msgstr ""
253
 
254
+ #: google-captcha.php:627
255
  #, fuzzy
256
  msgid "reCAPTCHA size"
257
  msgstr "ReCAPTCHA Version:"
258
 
259
+ #: google-captcha.php:656
260
  msgid "Save Changes"
261
  msgstr "Änderungen speichern"
262
 
263
+ #: google-captcha.php:710 google-captcha.php:1167
264
  msgid "To use Google Captcha you must get the keys from"
265
  msgstr ""
266
  "Um Google Catpcha verwenden zu können, müssen Sie sich die Schlüssel holen "
267
  "bei"
268
 
269
+ #: google-captcha.php:711 google-captcha.php:1168
270
  msgid "here"
271
  msgstr "hier"
272
 
273
+ #: google-captcha.php:712 google-captcha.php:1169
274
  msgid "and enter them on the"
275
  msgstr "und geben Sie sie ein auf"
276
 
277
+ #: google-captcha.php:714 google-captcha.php:1171
278
  msgid "plugin setting page"
279
  msgstr "Plugin Einstellungsseite"
280
 
281
+ #: google-captcha.php:900 google-captcha.php:948
282
  msgid "Error"
283
  msgstr "Fehler"
284
 
285
+ #: google-captcha.php:900 google-captcha.php:948
286
  #, fuzzy
287
  msgid "You have entered an incorrect reCAPTCHA value."
288
  msgstr "Sie haben den CAPTCHA nicht korrekt eingegeben."
289
 
290
+ #: google-captcha.php:978 google-captcha.php:1007 google-captcha.php:1033
291
+ msgid "ERROR"
292
+ msgstr ""
293
+
294
+ #: google-captcha.php:978 google-captcha.php:1007
295
  #, fuzzy
296
  msgid "You have entered an incorrect reCAPTCHA value"
297
  msgstr "Sie haben den CAPTCHA nicht korrekt eingegeben."
298
 
299
+ #: google-captcha.php:1033
 
 
 
 
300
  #, fuzzy
301
  msgid ""
302
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
305
  "Fehler: Sie haben den CAPTCHA nicht korrekt eingegeben. Klicken Sie auf den "
306
  "\"zurück\" Knopf im Browser und versuchen Sie es nochmal."
307
 
308
+ #: google-captcha.php:1064
309
  msgid "Please, complete the captcha and submit \"Test verification\""
310
  msgstr ""
311
 
312
+ #: google-captcha.php:1068
313
  msgid "Test verification"
314
  msgstr ""
315
 
316
+ #: google-captcha.php:1082 google-captcha.php:1091
317
  msgid "The user response was missing."
318
  msgstr ""
319
 
320
+ #: google-captcha.php:1084
321
  msgid "The Secret Key is missing."
322
  msgstr ""
323
 
324
+ #: google-captcha.php:1087 google-captcha.php:1096
325
  msgid "The Secret Key is invalid"
326
  msgstr ""
327
 
328
+ #: google-captcha.php:1088 google-captcha.php:1097
329
  msgid "Check your domain configuration"
330
  msgstr ""
331
 
332
+ #: google-captcha.php:1089 google-captcha.php:1098
333
  #, fuzzy
334
  msgid "and enter it again"
335
  msgstr "und geben Sie sie ein auf"
336
 
337
+ #: google-captcha.php:1092 google-captcha.php:1100
338
  msgid "The user response is invalid."
339
  msgstr ""
340
 
341
+ #: google-captcha.php:1109
342
  msgid "The verification is successfully completed."
343
  msgstr ""
344
 
345
+ #: google-captcha.php:1152
346
  msgid "Support"
347
  msgstr "Support"
348
 
languages/google-captcha-el.mo CHANGED
Binary file
languages/google-captcha-el.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: 2016-04-05 17:14+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Dimitris Karantonis\n"
@@ -16,100 +16,100 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: google-captcha.php:34 google-captcha.php:367
20
  msgid "Google Captcha Settings"
21
  msgstr "Ρυθμίσεις Google Captcha"
22
 
23
- #: google-captcha.php:154
24
  msgid "Warning"
25
  msgstr ""
26
 
27
- #: google-captcha.php:154
28
  msgid ""
29
  "It has been found more than one reCAPTCHA in current form. In this case "
30
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
31
  "blocks."
32
  msgstr ""
33
 
34
- #: google-captcha.php:158
35
  #, fuzzy
36
  msgid "Error: You have entered an incorrect reCAPTCHA value."
37
  msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
38
 
39
- #: google-captcha.php:272
40
  msgid "Normal"
41
  msgstr ""
42
 
43
- #: google-captcha.php:273
44
  msgid "Compact"
45
  msgstr ""
46
 
47
- #: google-captcha.php:279
48
  msgid "Site key"
49
  msgstr "Κλειδί ιστοσελίδας"
50
 
51
- #: google-captcha.php:284
52
  msgid "Secret Key"
53
  msgstr "Μυστικό κλειδί"
54
 
55
- #: google-captcha.php:292
56
  msgid "Login form"
57
  msgstr "Φόρμα εισόδου"
58
 
59
- #: google-captcha.php:293
60
  msgid "Registration form"
61
  msgstr "Φόρμα εγγραφής"
62
 
63
- #: google-captcha.php:294
64
  msgid "Reset password form"
65
  msgstr "Φόρμα ανάκτησης κωδικού πρόσβασης"
66
 
67
- #: google-captcha.php:295
68
  msgid "Comments form"
69
  msgstr "Φόρμα για σχόλια"
70
 
71
- #: google-captcha.php:314
72
  msgid "Enter site key"
73
  msgstr "Εισάγετε το κλειδί της ιστοσελίδας"
74
 
75
- #: google-captcha.php:315 google-captcha.php:321
76
  msgid "WARNING: The captcha will not display while you don't fill key fields."
77
  msgstr ""
78
  "ΠΡΟΣΟΧΗ: Το captcha δεν θα εμφανιστεί εάν δεν συμπληρώσετε τα κλειδιά στα "
79
  "πεδία."
80
 
81
- #: google-captcha.php:320
82
  msgid "Enter secret key"
83
  msgstr "Εισάγετε το μυστικό κλειδί"
84
 
85
- #: google-captcha.php:346
86
  msgid "Settings saved"
87
  msgstr "Οι ρυμθίσεις αποθηκεύτηκαν"
88
 
89
- #: google-captcha.php:352
90
  #, fuzzy
91
  msgid "All plugin settings were restored."
92
  msgstr "σελίδα ρυθμίσεων της επέκτασης"
93
 
94
- #: google-captcha.php:369 google-captcha.php:1040 google-captcha.php:1073
95
  msgid "Settings"
96
  msgstr "Ρυθμίσεις"
97
 
98
- #: google-captcha.php:370
99
  msgid "Custom code"
100
  msgstr ""
101
 
102
- #: google-captcha.php:371
103
  msgid "Go PRO"
104
  msgstr ""
105
 
106
- #: google-captcha.php:376
107
  msgid ""
108
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
109
  "version 1 features."
110
  msgstr ""
111
 
112
- #: google-captcha.php:391
113
  #, fuzzy, php-format
114
  msgid ""
115
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -119,7 +119,7 @@ msgstr ""
119
  "αντιγράψτε και επικολλήστε αυτό το σύντομο κωδικό στη δημοσίευση ή στη "
120
  "σελίδα σας:"
121
 
122
- #: google-captcha.php:397
123
  #, php-format
124
  msgid ""
125
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -128,171 +128,175 @@ msgid ""
128
  "your own form , please use the shortcode %s"
129
  msgstr ""
130
 
131
- #: google-captcha.php:405
132
  msgid "Authentication"
133
  msgstr "Πιστοποίηση"
134
 
135
- #: google-captcha.php:406
136
  #, fuzzy, php-format
137
  msgid "Before you are able to do something, you must to register %shere%s"
138
  msgstr ""
139
  "Πριν να είστε σε θέση να κάνετε κάτι, θα πρέπει να εγγραφείτε %s εδώ %s"
140
 
141
- #: google-captcha.php:407
142
  msgid "Enter site key and secret key, that you get after registration."
143
  msgstr ""
144
  "Πληκτρολογήστε το κλειδί της ιστοσελίδας και το μυστικό κλειδί, τα οποία "
145
  "παραλάβατε μετά την εγγραφή."
146
 
147
- #: google-captcha.php:422
148
  #, fuzzy
149
  msgid "Test Keys"
150
  msgstr "Μυστικό κλειδί"
151
 
152
- #: google-captcha.php:425
153
  msgid "Options"
154
  msgstr "Επιλογές"
155
 
156
- #: google-captcha.php:428
157
  msgid "Enable reCAPTCHA for"
158
  msgstr ""
159
 
160
- #: google-captcha.php:432
161
  msgid "WordPress default"
162
  msgstr ""
163
 
164
- #: google-captcha.php:441
165
  msgid "This option is available only for network or for main blog"
166
  msgstr ""
167
 
168
- #: google-captcha.php:449
169
  #, fuzzy
170
  msgid "Plugins"
171
  msgstr "Σελίδα επεκτάσεων"
172
 
173
- #: google-captcha.php:457 google-captcha.php:462
174
  #, php-format
175
  msgid "You should %s to use this functionality"
176
  msgstr ""
177
 
178
- #: google-captcha.php:458
179
  #, fuzzy
180
  msgid "activate"
181
  msgstr "Активировать Contact form"
182
 
183
- #: google-captcha.php:458
184
  msgid "for network"
185
  msgstr ""
186
 
187
- #: google-captcha.php:463
188
  msgid "download"
189
  msgstr ""
190
 
191
- #: google-captcha.php:475 google-captcha.php:552
 
 
 
 
192
  msgid "Close"
193
  msgstr ""
194
 
195
- #: google-captcha.php:487 google-captcha.php:588
196
  msgid "Unlock premium options by upgrading to Pro version"
197
  msgstr ""
198
 
199
- #: google-captcha.php:490 google-captcha.php:591
200
  msgid "Learn More"
201
  msgstr ""
202
 
203
- #: google-captcha.php:496
204
  #, php-format
205
  msgid ""
206
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
207
  msgstr ""
208
 
209
- #: google-captcha.php:496 google-captcha.php:1074
210
  msgid "FAQ"
211
  msgstr "Συχνές Ερωτήσεις"
212
 
213
- #: google-captcha.php:501
214
  #, fuzzy
215
  msgid "Hide reCAPTCHA in Comments form for"
216
  msgstr "για την έκδοση reCAPTCHA"
217
 
218
- #: google-captcha.php:513
219
  #, fuzzy
220
  msgid "reCAPTCHA version"
221
  msgstr "Έκδοση reCAPTCHA:"
222
 
223
- #: google-captcha.php:516 google-captcha.php:517 google-captcha.php:518
224
- #: google-captcha.php:519
225
  msgid "version"
226
  msgstr "έκδοση"
227
 
228
- #: google-captcha.php:525 google-captcha.php:538
229
  #, fuzzy
230
  msgid "reCAPTCHA theme"
231
  msgstr "Έκδοση reCAPTCHA:"
232
 
233
- #: google-captcha.php:526 google-captcha.php:539 google-captcha.php:570
234
  #, fuzzy
235
  msgid "for version"
236
  msgstr "έκδοση"
237
 
238
- #: google-captcha.php:556
239
  #, fuzzy
240
  msgid "reCAPTCHA language"
241
  msgstr "Έκδοση reCAPTCHA:"
242
 
243
- #: google-captcha.php:563
244
  msgid "Use the current site language"
245
  msgstr ""
246
 
247
- #: google-captcha.php:563
248
  msgid "Using"
249
  msgstr ""
250
 
251
- #: google-captcha.php:569
252
  #, fuzzy
253
  msgid "reCAPTCHA size"
254
  msgstr "Έκδοση reCAPTCHA:"
255
 
256
- #: google-captcha.php:598
257
  msgid "Save Changes"
258
  msgstr "Αποθήκευση αλλαγών"
259
 
260
- #: google-captcha.php:652 google-captcha.php:1090
261
  msgid "To use Google Captcha you must get the keys from"
262
  msgstr ""
263
  "Για να χρησιμοποιήσετε το Google Captcha θα πρέπει να πάρετε τα κλειδιά από"
264
 
265
- #: google-captcha.php:653 google-captcha.php:1091
266
  msgid "here"
267
  msgstr "εδώ"
268
 
269
- #: google-captcha.php:654 google-captcha.php:1092
270
  msgid "and enter them on the"
271
  msgstr "και να τα εισάγετε στη"
272
 
273
- #: google-captcha.php:656 google-captcha.php:1094
274
  msgid "plugin setting page"
275
  msgstr "σελίδα ρυθμίσεων της επέκτασης"
276
 
277
- #: google-captcha.php:842 google-captcha.php:880
278
  msgid "Error"
279
  msgstr ""
280
 
281
- #: google-captcha.php:842
282
  #, fuzzy
283
  msgid "You have entered an incorrect reCAPTCHA value."
284
  msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
285
 
286
- #: google-captcha.php:880 google-captcha.php:897 google-captcha.php:926
 
 
 
 
287
  #, fuzzy
288
  msgid "You have entered an incorrect reCAPTCHA value"
289
  msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
290
 
291
- #: google-captcha.php:897 google-captcha.php:926 google-captcha.php:952
292
- msgid "ERROR"
293
- msgstr ""
294
-
295
- #: google-captcha.php:952
296
  #, fuzzy
297
  msgid ""
298
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -301,44 +305,44 @@ msgstr ""
301
  "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA. Κάντε κλικ στο κουμπί Πίσω "
302
  "στον περιηγητή σας, και δοκιμάστε ξανά."
303
 
304
- #: google-captcha.php:976
305
  msgid "Please, complete the captcha and submit \"Test verification\""
306
  msgstr ""
307
 
308
- #: google-captcha.php:980
309
  msgid "Test verification"
310
  msgstr ""
311
 
312
- #: google-captcha.php:994 google-captcha.php:1003
313
  msgid "The user response was missing."
314
  msgstr ""
315
 
316
- #: google-captcha.php:996
317
  msgid "The Secret Key is missing."
318
  msgstr ""
319
 
320
- #: google-captcha.php:999 google-captcha.php:1008
321
  msgid "The Secret Key is invalid"
322
  msgstr ""
323
 
324
- #: google-captcha.php:1000 google-captcha.php:1009
325
  msgid "Check your domain configuration"
326
  msgstr ""
327
 
328
- #: google-captcha.php:1001 google-captcha.php:1010
329
  #, fuzzy
330
  msgid "and enter it again"
331
  msgstr "και να τα εισάγετε στη"
332
 
333
- #: google-captcha.php:1004 google-captcha.php:1012
334
  msgid "The user response is invalid."
335
  msgstr ""
336
 
337
- #: google-captcha.php:1021
338
  msgid "The verification is successfully completed."
339
  msgstr ""
340
 
341
- #: google-captcha.php:1075
342
  msgid "Support"
343
  msgstr "Υποστήριξη"
344
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-25 11:33+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Dimitris Karantonis\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: google-captcha.php:34 google-captcha.php:422
20
  msgid "Google Captcha Settings"
21
  msgstr "Ρυθμίσεις Google Captcha"
22
 
23
+ #: google-captcha.php:202
24
  msgid "Warning"
25
  msgstr ""
26
 
27
+ #: google-captcha.php:202
28
  msgid ""
29
  "It has been found more than one reCAPTCHA in current form. In this case "
30
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
31
  "blocks."
32
  msgstr ""
33
 
34
+ #: google-captcha.php:206
35
  #, fuzzy
36
  msgid "Error: You have entered an incorrect reCAPTCHA value."
37
  msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
38
 
39
+ #: google-captcha.php:327
40
  msgid "Normal"
41
  msgstr ""
42
 
43
+ #: google-captcha.php:328
44
  msgid "Compact"
45
  msgstr ""
46
 
47
+ #: google-captcha.php:334
48
  msgid "Site key"
49
  msgstr "Κλειδί ιστοσελίδας"
50
 
51
+ #: google-captcha.php:339
52
  msgid "Secret Key"
53
  msgstr "Μυστικό κλειδί"
54
 
55
+ #: google-captcha.php:347
56
  msgid "Login form"
57
  msgstr "Φόρμα εισόδου"
58
 
59
+ #: google-captcha.php:348
60
  msgid "Registration form"
61
  msgstr "Φόρμα εγγραφής"
62
 
63
+ #: google-captcha.php:349
64
  msgid "Reset password form"
65
  msgstr "Φόρμα ανάκτησης κωδικού πρόσβασης"
66
 
67
+ #: google-captcha.php:350
68
  msgid "Comments form"
69
  msgstr "Φόρμα για σχόλια"
70
 
71
+ #: google-captcha.php:369
72
  msgid "Enter site key"
73
  msgstr "Εισάγετε το κλειδί της ιστοσελίδας"
74
 
75
+ #: google-captcha.php:370 google-captcha.php:376
76
  msgid "WARNING: The captcha will not display while you don't fill key fields."
77
  msgstr ""
78
  "ΠΡΟΣΟΧΗ: Το captcha δεν θα εμφανιστεί εάν δεν συμπληρώσετε τα κλειδιά στα "
79
  "πεδία."
80
 
81
+ #: google-captcha.php:375
82
  msgid "Enter secret key"
83
  msgstr "Εισάγετε το μυστικό κλειδί"
84
 
85
+ #: google-captcha.php:401
86
  msgid "Settings saved"
87
  msgstr "Οι ρυμθίσεις αποθηκεύτηκαν"
88
 
89
+ #: google-captcha.php:407
90
  #, fuzzy
91
  msgid "All plugin settings were restored."
92
  msgstr "σελίδα ρυθμίσεων της επέκτασης"
93
 
94
+ #: google-captcha.php:424 google-captcha.php:1128 google-captcha.php:1150
95
  msgid "Settings"
96
  msgstr "Ρυθμίσεις"
97
 
98
+ #: google-captcha.php:425
99
  msgid "Custom code"
100
  msgstr ""
101
 
102
+ #: google-captcha.php:426
103
  msgid "Go PRO"
104
  msgstr ""
105
 
106
+ #: google-captcha.php:431
107
  msgid ""
108
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
109
  "version 1 features."
110
  msgstr ""
111
 
112
+ #: google-captcha.php:446
113
  #, fuzzy, php-format
114
  msgid ""
115
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
119
  "αντιγράψτε και επικολλήστε αυτό το σύντομο κωδικό στη δημοσίευση ή στη "
120
  "σελίδα σας:"
121
 
122
+ #: google-captcha.php:452
123
  #, php-format
124
  msgid ""
125
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
128
  "your own form , please use the shortcode %s"
129
  msgstr ""
130
 
131
+ #: google-captcha.php:460
132
  msgid "Authentication"
133
  msgstr "Πιστοποίηση"
134
 
135
+ #: google-captcha.php:461
136
  #, fuzzy, php-format
137
  msgid "Before you are able to do something, you must to register %shere%s"
138
  msgstr ""
139
  "Πριν να είστε σε θέση να κάνετε κάτι, θα πρέπει να εγγραφείτε %s εδώ %s"
140
 
141
+ #: google-captcha.php:462
142
  msgid "Enter site key and secret key, that you get after registration."
143
  msgstr ""
144
  "Πληκτρολογήστε το κλειδί της ιστοσελίδας και το μυστικό κλειδί, τα οποία "
145
  "παραλάβατε μετά την εγγραφή."
146
 
147
+ #: google-captcha.php:477
148
  #, fuzzy
149
  msgid "Test Keys"
150
  msgstr "Μυστικό κλειδί"
151
 
152
+ #: google-captcha.php:480
153
  msgid "Options"
154
  msgstr "Επιλογές"
155
 
156
+ #: google-captcha.php:483
157
  msgid "Enable reCAPTCHA for"
158
  msgstr ""
159
 
160
+ #: google-captcha.php:487
161
  msgid "WordPress default"
162
  msgstr ""
163
 
164
+ #: google-captcha.php:496
165
  msgid "This option is available only for network or for main blog"
166
  msgstr ""
167
 
168
+ #: google-captcha.php:504
169
  #, fuzzy
170
  msgid "Plugins"
171
  msgstr "Σελίδα επεκτάσεων"
172
 
173
+ #: google-captcha.php:512 google-captcha.php:517
174
  #, php-format
175
  msgid "You should %s to use this functionality"
176
  msgstr ""
177
 
178
+ #: google-captcha.php:513
179
  #, fuzzy
180
  msgid "activate"
181
  msgstr "Активировать Contact form"
182
 
183
+ #: google-captcha.php:513
184
  msgid "for network"
185
  msgstr ""
186
 
187
+ #: google-captcha.php:518
188
  msgid "download"
189
  msgstr ""
190
 
191
+ #: google-captcha.php:522
192
+ msgid "Check off for adding captcha to forms on their settings pages."
193
+ msgstr ""
194
+
195
+ #: google-captcha.php:533 google-captcha.php:610
196
  msgid "Close"
197
  msgstr ""
198
 
199
+ #: google-captcha.php:545 google-captcha.php:646
200
  msgid "Unlock premium options by upgrading to Pro version"
201
  msgstr ""
202
 
203
+ #: google-captcha.php:548 google-captcha.php:649
204
  msgid "Learn More"
205
  msgstr ""
206
 
207
+ #: google-captcha.php:554
208
  #, php-format
209
  msgid ""
210
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
211
  msgstr ""
212
 
213
+ #: google-captcha.php:554 google-captcha.php:1151
214
  msgid "FAQ"
215
  msgstr "Συχνές Ερωτήσεις"
216
 
217
+ #: google-captcha.php:559
218
  #, fuzzy
219
  msgid "Hide reCAPTCHA in Comments form for"
220
  msgstr "για την έκδοση reCAPTCHA"
221
 
222
+ #: google-captcha.php:571
223
  #, fuzzy
224
  msgid "reCAPTCHA version"
225
  msgstr "Έκδοση reCAPTCHA:"
226
 
227
+ #: google-captcha.php:574 google-captcha.php:575 google-captcha.php:576
228
+ #: google-captcha.php:577
229
  msgid "version"
230
  msgstr "έκδοση"
231
 
232
+ #: google-captcha.php:583 google-captcha.php:596
233
  #, fuzzy
234
  msgid "reCAPTCHA theme"
235
  msgstr "Έκδοση reCAPTCHA:"
236
 
237
+ #: google-captcha.php:584 google-captcha.php:597 google-captcha.php:628
238
  #, fuzzy
239
  msgid "for version"
240
  msgstr "έκδοση"
241
 
242
+ #: google-captcha.php:614
243
  #, fuzzy
244
  msgid "reCAPTCHA language"
245
  msgstr "Έκδοση reCAPTCHA:"
246
 
247
+ #: google-captcha.php:621
248
  msgid "Use the current site language"
249
  msgstr ""
250
 
251
+ #: google-captcha.php:621
252
  msgid "Using"
253
  msgstr ""
254
 
255
+ #: google-captcha.php:627
256
  #, fuzzy
257
  msgid "reCAPTCHA size"
258
  msgstr "Έκδοση reCAPTCHA:"
259
 
260
+ #: google-captcha.php:656
261
  msgid "Save Changes"
262
  msgstr "Αποθήκευση αλλαγών"
263
 
264
+ #: google-captcha.php:710 google-captcha.php:1167
265
  msgid "To use Google Captcha you must get the keys from"
266
  msgstr ""
267
  "Για να χρησιμοποιήσετε το Google Captcha θα πρέπει να πάρετε τα κλειδιά από"
268
 
269
+ #: google-captcha.php:711 google-captcha.php:1168
270
  msgid "here"
271
  msgstr "εδώ"
272
 
273
+ #: google-captcha.php:712 google-captcha.php:1169
274
  msgid "and enter them on the"
275
  msgstr "και να τα εισάγετε στη"
276
 
277
+ #: google-captcha.php:714 google-captcha.php:1171
278
  msgid "plugin setting page"
279
  msgstr "σελίδα ρυθμίσεων της επέκτασης"
280
 
281
+ #: google-captcha.php:900 google-captcha.php:948
282
  msgid "Error"
283
  msgstr ""
284
 
285
+ #: google-captcha.php:900 google-captcha.php:948
286
  #, fuzzy
287
  msgid "You have entered an incorrect reCAPTCHA value."
288
  msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
289
 
290
+ #: google-captcha.php:978 google-captcha.php:1007 google-captcha.php:1033
291
+ msgid "ERROR"
292
+ msgstr ""
293
+
294
+ #: google-captcha.php:978 google-captcha.php:1007
295
  #, fuzzy
296
  msgid "You have entered an incorrect reCAPTCHA value"
297
  msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
298
 
299
+ #: google-captcha.php:1033
 
 
 
 
300
  #, fuzzy
301
  msgid ""
302
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
305
  "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA. Κάντε κλικ στο κουμπί Πίσω "
306
  "στον περιηγητή σας, και δοκιμάστε ξανά."
307
 
308
+ #: google-captcha.php:1064
309
  msgid "Please, complete the captcha and submit \"Test verification\""
310
  msgstr ""
311
 
312
+ #: google-captcha.php:1068
313
  msgid "Test verification"
314
  msgstr ""
315
 
316
+ #: google-captcha.php:1082 google-captcha.php:1091
317
  msgid "The user response was missing."
318
  msgstr ""
319
 
320
+ #: google-captcha.php:1084
321
  msgid "The Secret Key is missing."
322
  msgstr ""
323
 
324
+ #: google-captcha.php:1087 google-captcha.php:1096
325
  msgid "The Secret Key is invalid"
326
  msgstr ""
327
 
328
+ #: google-captcha.php:1088 google-captcha.php:1097
329
  msgid "Check your domain configuration"
330
  msgstr ""
331
 
332
+ #: google-captcha.php:1089 google-captcha.php:1098
333
  #, fuzzy
334
  msgid "and enter it again"
335
  msgstr "και να τα εισάγετε στη"
336
 
337
+ #: google-captcha.php:1092 google-captcha.php:1100
338
  msgid "The user response is invalid."
339
  msgstr ""
340
 
341
+ #: google-captcha.php:1109
342
  msgid "The verification is successfully completed."
343
  msgstr ""
344
 
345
+ #: google-captcha.php:1152
346
  msgid "Support"
347
  msgstr "Υποστήριξη"
348
 
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: 2016-04-05 17:14+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Cloudzeroxyz <cloudzeroxyz@gmail.com>\n"
@@ -17,102 +17,102 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:34 google-captcha.php:367
21
  msgid "Google Captcha Settings"
22
  msgstr "Googe Captcha Ajustes"
23
 
24
- #: google-captcha.php:154
25
  msgid "Warning"
26
  msgstr ""
27
 
28
- #: google-captcha.php:154
29
  msgid ""
30
  "It has been found more than one reCAPTCHA in current form. In this case "
31
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
32
  "blocks."
33
  msgstr ""
34
 
35
- #: google-captcha.php:158
36
  #, fuzzy
37
  msgid "Error: You have entered an incorrect reCAPTCHA value."
38
  msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
39
 
40
- #: google-captcha.php:272
41
  msgid "Normal"
42
  msgstr ""
43
 
44
- #: google-captcha.php:273
45
  msgid "Compact"
46
  msgstr ""
47
 
48
- #: google-captcha.php:279
49
  msgid "Site key"
50
  msgstr ""
51
 
52
- #: google-captcha.php:284
53
  msgid "Secret Key"
54
  msgstr ""
55
 
56
- #: google-captcha.php:292
57
  msgid "Login form"
58
  msgstr "Formulario de acceso"
59
 
60
- #: google-captcha.php:293
61
  msgid "Registration form"
62
  msgstr "Formulario de registro"
63
 
64
- #: google-captcha.php:294
65
  msgid "Reset password form"
66
  msgstr "Formulario de restablecimiento de contraseña"
67
 
68
- #: google-captcha.php:295
69
  msgid "Comments form"
70
  msgstr "Formulario de comentarios"
71
 
72
- #: google-captcha.php:314
73
  #, fuzzy
74
  msgid "Enter site key"
75
  msgstr "Introduce la clave privada"
76
 
77
- #: google-captcha.php:315 google-captcha.php:321
78
  msgid "WARNING: The captcha will not display while you don't fill key fields."
79
  msgstr ""
80
  "ADVERTENCIA: El Captcha no se mostrará mientras usted no llene los campos "
81
  "clave."
82
 
83
- #: google-captcha.php:320
84
  #, fuzzy
85
  msgid "Enter secret key"
86
  msgstr "Introduce la clave privada"
87
 
88
- #: google-captcha.php:346
89
  msgid "Settings saved"
90
  msgstr "Configuración guardada"
91
 
92
- #: google-captcha.php:352
93
  #, fuzzy
94
  msgid "All plugin settings were restored."
95
  msgstr "página de configuración de plugin"
96
 
97
- #: google-captcha.php:369 google-captcha.php:1040 google-captcha.php:1073
98
  msgid "Settings"
99
  msgstr "Ajustes"
100
 
101
- #: google-captcha.php:370
102
  msgid "Custom code"
103
  msgstr ""
104
 
105
- #: google-captcha.php:371
106
  msgid "Go PRO"
107
  msgstr ""
108
 
109
- #: google-captcha.php:376
110
  msgid ""
111
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
112
  "version 1 features."
113
  msgstr ""
114
 
115
- #: google-captcha.php:391
116
  #, fuzzy, php-format
117
  msgid ""
118
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -121,7 +121,7 @@ msgstr ""
121
  "Si quisiera añadir el Google Captcha para su formulario, simplemente copia y "
122
  "pega este código corto en tu post o página:"
123
 
124
- #: google-captcha.php:397
125
  #, php-format
126
  msgid ""
127
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -130,163 +130,167 @@ msgid ""
130
  "your own form , please use the shortcode %s"
131
  msgstr ""
132
 
133
- #: google-captcha.php:405
134
  msgid "Authentication"
135
  msgstr "Autentificación"
136
 
137
- #: google-captcha.php:406
138
  #, fuzzy, php-format
139
  msgid "Before you are able to do something, you must to register %shere%s"
140
  msgstr "Antes de que pueda hacer algo, debe registrar %s aquí %s"
141
 
142
- #: google-captcha.php:407
143
  #, fuzzy
144
  msgid "Enter site key and secret key, that you get after registration."
145
  msgstr ""
146
  "Introduzca las claves pública y privada, que se obtiene después de "
147
  "Registrarse."
148
 
149
- #: google-captcha.php:422
150
  msgid "Test Keys"
151
  msgstr ""
152
 
153
- #: google-captcha.php:425
154
  msgid "Options"
155
  msgstr "Opciones"
156
 
157
- #: google-captcha.php:428
158
  msgid "Enable reCAPTCHA for"
159
  msgstr ""
160
 
161
- #: google-captcha.php:432
162
  msgid "WordPress default"
163
  msgstr ""
164
 
165
- #: google-captcha.php:441
166
  msgid "This option is available only for network or for main blog"
167
  msgstr ""
168
 
169
- #: google-captcha.php:449
170
  #, fuzzy
171
  msgid "Plugins"
172
  msgstr "Página de Plugins"
173
 
174
- #: google-captcha.php:457 google-captcha.php:462
175
  #, php-format
176
  msgid "You should %s to use this functionality"
177
  msgstr ""
178
 
179
- #: google-captcha.php:458
180
  #, fuzzy
181
  msgid "activate"
182
  msgstr "Tema Activado"
183
 
184
- #: google-captcha.php:458
185
  msgid "for network"
186
  msgstr ""
187
 
188
- #: google-captcha.php:463
189
  msgid "download"
190
  msgstr ""
191
 
192
- #: google-captcha.php:475 google-captcha.php:552
 
 
 
 
193
  msgid "Close"
194
  msgstr ""
195
 
196
- #: google-captcha.php:487 google-captcha.php:588
197
  msgid "Unlock premium options by upgrading to Pro version"
198
  msgstr ""
199
 
200
- #: google-captcha.php:490 google-captcha.php:591
201
  msgid "Learn More"
202
  msgstr ""
203
 
204
- #: google-captcha.php:496
205
  #, php-format
206
  msgid ""
207
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
208
  msgstr ""
209
 
210
- #: google-captcha.php:496 google-captcha.php:1074
211
  msgid "FAQ"
212
  msgstr "Preguntas Frecuentes"
213
 
214
- #: google-captcha.php:501
215
  msgid "Hide reCAPTCHA in Comments form for"
216
  msgstr ""
217
 
218
- #: google-captcha.php:513
219
  msgid "reCAPTCHA version"
220
  msgstr ""
221
 
222
- #: google-captcha.php:516 google-captcha.php:517 google-captcha.php:518
223
- #: google-captcha.php:519
224
  msgid "version"
225
  msgstr ""
226
 
227
- #: google-captcha.php:525 google-captcha.php:538
228
  msgid "reCAPTCHA theme"
229
  msgstr ""
230
 
231
- #: google-captcha.php:526 google-captcha.php:539 google-captcha.php:570
232
  msgid "for version"
233
  msgstr ""
234
 
235
- #: google-captcha.php:556
236
  msgid "reCAPTCHA language"
237
  msgstr ""
238
 
239
- #: google-captcha.php:563
240
  msgid "Use the current site language"
241
  msgstr ""
242
 
243
- #: google-captcha.php:563
244
  msgid "Using"
245
  msgstr ""
246
 
247
- #: google-captcha.php:569
248
  msgid "reCAPTCHA size"
249
  msgstr ""
250
 
251
- #: google-captcha.php:598
252
  msgid "Save Changes"
253
  msgstr "Guardar Cambios"
254
 
255
- #: google-captcha.php:652 google-captcha.php:1090
256
  msgid "To use Google Captcha you must get the keys from"
257
  msgstr "Para utilizar Google Captcha debe obtener las claves de"
258
 
259
- #: google-captcha.php:653 google-captcha.php:1091
260
  msgid "here"
261
  msgstr "aquí"
262
 
263
- #: google-captcha.php:654 google-captcha.php:1092
264
  msgid "and enter them on the"
265
  msgstr "e introducirlas en"
266
 
267
- #: google-captcha.php:656 google-captcha.php:1094
268
  msgid "plugin setting page"
269
  msgstr "página de configuración de plugin"
270
 
271
- #: google-captcha.php:842 google-captcha.php:880
272
  msgid "Error"
273
  msgstr ""
274
 
275
- #: google-captcha.php:842
276
  #, fuzzy
277
  msgid "You have entered an incorrect reCAPTCHA value."
278
  msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
279
 
280
- #: google-captcha.php:880 google-captcha.php:897 google-captcha.php:926
 
 
 
 
281
  #, fuzzy
282
  msgid "You have entered an incorrect reCAPTCHA value"
283
  msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
284
 
285
- #: google-captcha.php:897 google-captcha.php:926 google-captcha.php:952
286
- msgid "ERROR"
287
- msgstr ""
288
-
289
- #: google-captcha.php:952
290
  #, fuzzy
291
  msgid ""
292
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -295,44 +299,44 @@ msgstr ""
295
  "Error: Ha introducido un valor incorrecto de CAPTCHA. Haga clic en el botón "
296
  "Regresar de su navegador y vuelva a intentarlo."
297
 
298
- #: google-captcha.php:976
299
  msgid "Please, complete the captcha and submit \"Test verification\""
300
  msgstr ""
301
 
302
- #: google-captcha.php:980
303
  msgid "Test verification"
304
  msgstr ""
305
 
306
- #: google-captcha.php:994 google-captcha.php:1003
307
  msgid "The user response was missing."
308
  msgstr ""
309
 
310
- #: google-captcha.php:996
311
  msgid "The Secret Key is missing."
312
  msgstr ""
313
 
314
- #: google-captcha.php:999 google-captcha.php:1008
315
  msgid "The Secret Key is invalid"
316
  msgstr ""
317
 
318
- #: google-captcha.php:1000 google-captcha.php:1009
319
  msgid "Check your domain configuration"
320
  msgstr ""
321
 
322
- #: google-captcha.php:1001 google-captcha.php:1010
323
  #, fuzzy
324
  msgid "and enter it again"
325
  msgstr "e introducirlas en"
326
 
327
- #: google-captcha.php:1004 google-captcha.php:1012
328
  msgid "The user response is invalid."
329
  msgstr ""
330
 
331
- #: google-captcha.php:1021
332
  msgid "The verification is successfully completed."
333
  msgstr ""
334
 
335
- #: google-captcha.php:1075
336
  msgid "Support"
337
  msgstr "Soporte"
338
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-25 11:33+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Cloudzeroxyz <cloudzeroxyz@gmail.com>\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: google-captcha.php:34 google-captcha.php:422
21
  msgid "Google Captcha Settings"
22
  msgstr "Googe Captcha Ajustes"
23
 
24
+ #: google-captcha.php:202
25
  msgid "Warning"
26
  msgstr ""
27
 
28
+ #: google-captcha.php:202
29
  msgid ""
30
  "It has been found more than one reCAPTCHA in current form. In this case "
31
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
32
  "blocks."
33
  msgstr ""
34
 
35
+ #: google-captcha.php:206
36
  #, fuzzy
37
  msgid "Error: You have entered an incorrect reCAPTCHA value."
38
  msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
39
 
40
+ #: google-captcha.php:327
41
  msgid "Normal"
42
  msgstr ""
43
 
44
+ #: google-captcha.php:328
45
  msgid "Compact"
46
  msgstr ""
47
 
48
+ #: google-captcha.php:334
49
  msgid "Site key"
50
  msgstr ""
51
 
52
+ #: google-captcha.php:339
53
  msgid "Secret Key"
54
  msgstr ""
55
 
56
+ #: google-captcha.php:347
57
  msgid "Login form"
58
  msgstr "Formulario de acceso"
59
 
60
+ #: google-captcha.php:348
61
  msgid "Registration form"
62
  msgstr "Formulario de registro"
63
 
64
+ #: google-captcha.php:349
65
  msgid "Reset password form"
66
  msgstr "Formulario de restablecimiento de contraseña"
67
 
68
+ #: google-captcha.php:350
69
  msgid "Comments form"
70
  msgstr "Formulario de comentarios"
71
 
72
+ #: google-captcha.php:369
73
  #, fuzzy
74
  msgid "Enter site key"
75
  msgstr "Introduce la clave privada"
76
 
77
+ #: google-captcha.php:370 google-captcha.php:376
78
  msgid "WARNING: The captcha will not display while you don't fill key fields."
79
  msgstr ""
80
  "ADVERTENCIA: El Captcha no se mostrará mientras usted no llene los campos "
81
  "clave."
82
 
83
+ #: google-captcha.php:375
84
  #, fuzzy
85
  msgid "Enter secret key"
86
  msgstr "Introduce la clave privada"
87
 
88
+ #: google-captcha.php:401
89
  msgid "Settings saved"
90
  msgstr "Configuración guardada"
91
 
92
+ #: google-captcha.php:407
93
  #, fuzzy
94
  msgid "All plugin settings were restored."
95
  msgstr "página de configuración de plugin"
96
 
97
+ #: google-captcha.php:424 google-captcha.php:1128 google-captcha.php:1150
98
  msgid "Settings"
99
  msgstr "Ajustes"
100
 
101
+ #: google-captcha.php:425
102
  msgid "Custom code"
103
  msgstr ""
104
 
105
+ #: google-captcha.php:426
106
  msgid "Go PRO"
107
  msgstr ""
108
 
109
+ #: google-captcha.php:431
110
  msgid ""
111
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
112
  "version 1 features."
113
  msgstr ""
114
 
115
+ #: google-captcha.php:446
116
  #, fuzzy, php-format
117
  msgid ""
118
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
121
  "Si quisiera añadir el Google Captcha para su formulario, simplemente copia y "
122
  "pega este código corto en tu post o página:"
123
 
124
+ #: google-captcha.php:452
125
  #, php-format
126
  msgid ""
127
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
130
  "your own form , please use the shortcode %s"
131
  msgstr ""
132
 
133
+ #: google-captcha.php:460
134
  msgid "Authentication"
135
  msgstr "Autentificación"
136
 
137
+ #: google-captcha.php:461
138
  #, fuzzy, php-format
139
  msgid "Before you are able to do something, you must to register %shere%s"
140
  msgstr "Antes de que pueda hacer algo, debe registrar %s aquí %s"
141
 
142
+ #: google-captcha.php:462
143
  #, fuzzy
144
  msgid "Enter site key and secret key, that you get after registration."
145
  msgstr ""
146
  "Introduzca las claves pública y privada, que se obtiene después de "
147
  "Registrarse."
148
 
149
+ #: google-captcha.php:477
150
  msgid "Test Keys"
151
  msgstr ""
152
 
153
+ #: google-captcha.php:480
154
  msgid "Options"
155
  msgstr "Opciones"
156
 
157
+ #: google-captcha.php:483
158
  msgid "Enable reCAPTCHA for"
159
  msgstr ""
160
 
161
+ #: google-captcha.php:487
162
  msgid "WordPress default"
163
  msgstr ""
164
 
165
+ #: google-captcha.php:496
166
  msgid "This option is available only for network or for main blog"
167
  msgstr ""
168
 
169
+ #: google-captcha.php:504
170
  #, fuzzy
171
  msgid "Plugins"
172
  msgstr "Página de Plugins"
173
 
174
+ #: google-captcha.php:512 google-captcha.php:517
175
  #, php-format
176
  msgid "You should %s to use this functionality"
177
  msgstr ""
178
 
179
+ #: google-captcha.php:513
180
  #, fuzzy
181
  msgid "activate"
182
  msgstr "Tema Activado"
183
 
184
+ #: google-captcha.php:513
185
  msgid "for network"
186
  msgstr ""
187
 
188
+ #: google-captcha.php:518
189
  msgid "download"
190
  msgstr ""
191
 
192
+ #: google-captcha.php:522
193
+ msgid "Check off for adding captcha to forms on their settings pages."
194
+ msgstr ""
195
+
196
+ #: google-captcha.php:533 google-captcha.php:610
197
  msgid "Close"
198
  msgstr ""
199
 
200
+ #: google-captcha.php:545 google-captcha.php:646
201
  msgid "Unlock premium options by upgrading to Pro version"
202
  msgstr ""
203
 
204
+ #: google-captcha.php:548 google-captcha.php:649
205
  msgid "Learn More"
206
  msgstr ""
207
 
208
+ #: google-captcha.php:554
209
  #, php-format
210
  msgid ""
211
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
212
  msgstr ""
213
 
214
+ #: google-captcha.php:554 google-captcha.php:1151
215
  msgid "FAQ"
216
  msgstr "Preguntas Frecuentes"
217
 
218
+ #: google-captcha.php:559
219
  msgid "Hide reCAPTCHA in Comments form for"
220
  msgstr ""
221
 
222
+ #: google-captcha.php:571
223
  msgid "reCAPTCHA version"
224
  msgstr ""
225
 
226
+ #: google-captcha.php:574 google-captcha.php:575 google-captcha.php:576
227
+ #: google-captcha.php:577
228
  msgid "version"
229
  msgstr ""
230
 
231
+ #: google-captcha.php:583 google-captcha.php:596
232
  msgid "reCAPTCHA theme"
233
  msgstr ""
234
 
235
+ #: google-captcha.php:584 google-captcha.php:597 google-captcha.php:628
236
  msgid "for version"
237
  msgstr ""
238
 
239
+ #: google-captcha.php:614
240
  msgid "reCAPTCHA language"
241
  msgstr ""
242
 
243
+ #: google-captcha.php:621
244
  msgid "Use the current site language"
245
  msgstr ""
246
 
247
+ #: google-captcha.php:621
248
  msgid "Using"
249
  msgstr ""
250
 
251
+ #: google-captcha.php:627
252
  msgid "reCAPTCHA size"
253
  msgstr ""
254
 
255
+ #: google-captcha.php:656
256
  msgid "Save Changes"
257
  msgstr "Guardar Cambios"
258
 
259
+ #: google-captcha.php:710 google-captcha.php:1167
260
  msgid "To use Google Captcha you must get the keys from"
261
  msgstr "Para utilizar Google Captcha debe obtener las claves de"
262
 
263
+ #: google-captcha.php:711 google-captcha.php:1168
264
  msgid "here"
265
  msgstr "aquí"
266
 
267
+ #: google-captcha.php:712 google-captcha.php:1169
268
  msgid "and enter them on the"
269
  msgstr "e introducirlas en"
270
 
271
+ #: google-captcha.php:714 google-captcha.php:1171
272
  msgid "plugin setting page"
273
  msgstr "página de configuración de plugin"
274
 
275
+ #: google-captcha.php:900 google-captcha.php:948
276
  msgid "Error"
277
  msgstr ""
278
 
279
+ #: google-captcha.php:900 google-captcha.php:948
280
  #, fuzzy
281
  msgid "You have entered an incorrect reCAPTCHA value."
282
  msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
283
 
284
+ #: google-captcha.php:978 google-captcha.php:1007 google-captcha.php:1033
285
+ msgid "ERROR"
286
+ msgstr ""
287
+
288
+ #: google-captcha.php:978 google-captcha.php:1007
289
  #, fuzzy
290
  msgid "You have entered an incorrect reCAPTCHA value"
291
  msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
292
 
293
+ #: google-captcha.php:1033
 
 
 
 
294
  #, fuzzy
295
  msgid ""
296
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
299
  "Error: Ha introducido un valor incorrecto de CAPTCHA. Haga clic en el botón "
300
  "Regresar de su navegador y vuelva a intentarlo."
301
 
302
+ #: google-captcha.php:1064
303
  msgid "Please, complete the captcha and submit \"Test verification\""
304
  msgstr ""
305
 
306
+ #: google-captcha.php:1068
307
  msgid "Test verification"
308
  msgstr ""
309
 
310
+ #: google-captcha.php:1082 google-captcha.php:1091
311
  msgid "The user response was missing."
312
  msgstr ""
313
 
314
+ #: google-captcha.php:1084
315
  msgid "The Secret Key is missing."
316
  msgstr ""
317
 
318
+ #: google-captcha.php:1087 google-captcha.php:1096
319
  msgid "The Secret Key is invalid"
320
  msgstr ""
321
 
322
+ #: google-captcha.php:1088 google-captcha.php:1097
323
  msgid "Check your domain configuration"
324
  msgstr ""
325
 
326
+ #: google-captcha.php:1089 google-captcha.php:1098
327
  #, fuzzy
328
  msgid "and enter it again"
329
  msgstr "e introducirlas en"
330
 
331
+ #: google-captcha.php:1092 google-captcha.php:1100
332
  msgid "The user response is invalid."
333
  msgstr ""
334
 
335
+ #: google-captcha.php:1109
336
  msgid "The verification is successfully completed."
337
  msgstr ""
338
 
339
+ #: google-captcha.php:1152
340
  msgid "Support"
341
  msgstr "Soporte"
342
 
languages/google-captcha-fa_IR.mo CHANGED
Binary file
languages/google-captcha-fa_IR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-04-05 17:14+0300\n"
6
- "PO-Revision-Date: 2016-04-05 17:14+0300\n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Amirreza Nasiri <nasiri.amirreza.96@gmail.com>\n"
9
  "Language: fa_IR\n"
@@ -21,99 +21,99 @@ msgstr ""
21
  "X-Loco-Target-Locale: uk_UA\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
- #: google-captcha.php:34 google-captcha.php:367
25
  msgid "Google Captcha Settings"
26
  msgstr "تنظیمات Google Captcha"
27
 
28
- #: google-captcha.php:154
29
  msgid "Warning"
30
  msgstr ""
31
 
32
- #: google-captcha.php:154
33
  msgid ""
34
  "It has been found more than one reCAPTCHA in current form. In this case "
35
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
36
  "blocks."
37
  msgstr ""
38
 
39
- #: google-captcha.php:158
40
  #, fuzzy
41
  msgid "Error: You have entered an incorrect reCAPTCHA value."
42
  msgstr "خطا: شما مقدار CAPTCHA اشتباهی را وارد کرده اید."
43
 
44
- #: google-captcha.php:272
45
  msgid "Normal"
46
  msgstr "عادی"
47
 
48
- #: google-captcha.php:273
49
  msgid "Compact"
50
  msgstr "فشرده"
51
 
52
- #: google-captcha.php:279
53
  msgid "Site key"
54
  msgstr "کلید سایت (site key در تنظیمات گوگل)"
55
 
56
- #: google-captcha.php:284
57
  msgid "Secret Key"
58
  msgstr "کلید سری (secret key در تنظیمات گوگل)"
59
 
60
- #: google-captcha.php:292
61
  msgid "Login form"
62
  msgstr "فرم ورود"
63
 
64
- #: google-captcha.php:293
65
  msgid "Registration form"
66
  msgstr "فرم ثبت نام"
67
 
68
- #: google-captcha.php:294
69
  msgid "Reset password form"
70
  msgstr "فرم فراموش رمز عبور"
71
 
72
- #: google-captcha.php:295
73
  msgid "Comments form"
74
  msgstr "فرم دیدگاه ها"
75
 
76
- #: google-captcha.php:314
77
  msgid "Enter site key"
78
  msgstr "کلید سایت را وارد کنید"
79
 
80
- #: google-captcha.php:315 google-captcha.php:321
81
  msgid "WARNING: The captcha will not display while you don't fill key fields."
82
  msgstr ""
83
  "تذکر: Captcha تا زمانی که فیلد مربوط به کلیدها را وارد نکنید، نشان داده "
84
  "نخواهد شد."
85
 
86
- #: google-captcha.php:320
87
  msgid "Enter secret key"
88
  msgstr "کلید سری را وارد کنید"
89
 
90
- #: google-captcha.php:346
91
  msgid "Settings saved"
92
  msgstr "تنظیمات ذخیره شدند"
93
 
94
- #: google-captcha.php:352
95
  msgid "All plugin settings were restored."
96
  msgstr "تمام تنظیمات پلاگین بازگردانده شدند."
97
 
98
- #: google-captcha.php:369 google-captcha.php:1040 google-captcha.php:1073
99
  msgid "Settings"
100
  msgstr "تنظیمات"
101
 
102
- #: google-captcha.php:370
103
  msgid "Custom code"
104
  msgstr ""
105
 
106
- #: google-captcha.php:371
107
  msgid "Go PRO"
108
  msgstr "ارتقاء به نسخه حرفه ای"
109
 
110
- #: google-captcha.php:376
111
  msgid ""
112
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
113
  "version 1 features."
114
  msgstr ""
115
 
116
- #: google-captcha.php:391
117
  #, fuzzy, php-format
118
  msgid ""
119
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -122,7 +122,7 @@ msgstr ""
122
  "اگر می خواهید که Google Captcha را به فرم دلخواه خود اضافه کنید، کافیست شورت "
123
  "کد زیر را کپی کرده و درون فرم مورد نظر بچسبانید:"
124
 
125
- #: google-captcha.php:397
126
  #, php-format
127
  msgid ""
128
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -131,159 +131,163 @@ msgid ""
131
  "your own form , please use the shortcode %s"
132
  msgstr ""
133
 
134
- #: google-captcha.php:405
135
  msgid "Authentication"
136
  msgstr "تایید هویت"
137
 
138
- #: google-captcha.php:406
139
  #, fuzzy, php-format
140
  msgid "Before you are able to do something, you must to register %shere%s"
141
  msgstr "قبل از این که قادر به انجام کاری باشید، باید ثبت نام کنید %s در %s"
142
 
143
- #: google-captcha.php:407
144
  msgid "Enter site key and secret key, that you get after registration."
145
  msgstr "کلید سایت و کلید سری را که بعد از ثبت نام دریافت کردید، وارد کنید."
146
 
147
- #: google-captcha.php:422
148
  #, fuzzy
149
  msgid "Test Keys"
150
  msgstr "کلید سری (secret key در تنظیمات گوگل)"
151
 
152
- #: google-captcha.php:425
153
  msgid "Options"
154
  msgstr "تنظیمات"
155
 
156
- #: google-captcha.php:428
157
  msgid "Enable reCAPTCHA for"
158
  msgstr "فعال کردن reCAPTCHA برای"
159
 
160
- #: google-captcha.php:432
161
  msgid "WordPress default"
162
  msgstr ""
163
 
164
- #: google-captcha.php:441
165
  msgid "This option is available only for network or for main blog"
166
  msgstr ""
167
 
168
- #: google-captcha.php:449
169
  msgid "Plugins"
170
  msgstr ""
171
 
172
- #: google-captcha.php:457 google-captcha.php:462
173
  #, fuzzy, php-format
174
  msgid "You should %s to use this functionality"
175
  msgstr "تا از این قابلیت استفاده کنید"
176
 
177
- #: google-captcha.php:458
178
  msgid "activate"
179
  msgstr "فعال کنید"
180
 
181
- #: google-captcha.php:458
182
  msgid "for network"
183
  msgstr ""
184
 
185
- #: google-captcha.php:463
186
  msgid "download"
187
  msgstr "دانلود"
188
 
189
- #: google-captcha.php:475 google-captcha.php:552
 
 
 
 
190
  msgid "Close"
191
  msgstr "بستن"
192
 
193
- #: google-captcha.php:487 google-captcha.php:588
194
  msgid "Unlock premium options by upgrading to Pro version"
195
  msgstr "گزینه های اضافی را با آپگرید کردن به نسخه حرفه ای باز کنید"
196
 
197
- #: google-captcha.php:490 google-captcha.php:591
198
  msgid "Learn More"
199
  msgstr "بیشتر بدانید"
200
 
201
- #: google-captcha.php:496
202
  #, php-format
203
  msgid ""
204
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
205
  msgstr ""
206
 
207
- #: google-captcha.php:496 google-captcha.php:1074
208
  msgid "FAQ"
209
  msgstr "سوالات متداول"
210
 
211
- #: google-captcha.php:501
212
  msgid "Hide reCAPTCHA in Comments form for"
213
  msgstr "reCAPTCHA را در فرم دیدگاه ها مخفی کن در"
214
 
215
- #: google-captcha.php:513
216
  msgid "reCAPTCHA version"
217
  msgstr "نسخه reCAPTCHA"
218
 
219
- #: google-captcha.php:516 google-captcha.php:517 google-captcha.php:518
220
- #: google-captcha.php:519
221
  msgid "version"
222
  msgstr "نسخه"
223
 
224
- #: google-captcha.php:525 google-captcha.php:538
225
  msgid "reCAPTCHA theme"
226
  msgstr "پوسته reCAPTCHA"
227
 
228
- #: google-captcha.php:526 google-captcha.php:539 google-captcha.php:570
229
  msgid "for version"
230
  msgstr "برای نسخه"
231
 
232
- #: google-captcha.php:556
233
  msgid "reCAPTCHA language"
234
  msgstr "زبان reCAPTCHA "
235
 
236
- #: google-captcha.php:563
237
  msgid "Use the current site language"
238
  msgstr "از زبان کنونی سایت استفاده کن"
239
 
240
- #: google-captcha.php:563
241
  msgid "Using"
242
  msgstr "استفاده کردن"
243
 
244
- #: google-captcha.php:569
245
  msgid "reCAPTCHA size"
246
  msgstr "اندازه reCAPTCHA"
247
 
248
- #: google-captcha.php:598
249
  msgid "Save Changes"
250
  msgstr "ذخیره کردن تنظیمات"
251
 
252
- #: google-captcha.php:652 google-captcha.php:1090
253
  msgid "To use Google Captcha you must get the keys from"
254
  msgstr "برای استفاده از Google Captcha باید کلید ها را تهیه کنید از"
255
 
256
- #: google-captcha.php:653 google-captcha.php:1091
257
  msgid "here"
258
  msgstr "اینجا"
259
 
260
- #: google-captcha.php:654 google-captcha.php:1092
261
  msgid "and enter them on the"
262
  msgstr "و آنها را وارد کنید در"
263
 
264
- #: google-captcha.php:656 google-captcha.php:1094
265
  msgid "plugin setting page"
266
  msgstr "صفحه تنظیمات افزونه"
267
 
268
- #: google-captcha.php:842 google-captcha.php:880
269
  msgid "Error"
270
  msgstr "خطا"
271
 
272
- #: google-captcha.php:842
273
  #, fuzzy
274
  msgid "You have entered an incorrect reCAPTCHA value."
275
  msgstr "شما مقدار CAPTCHA اشتباهی را وارد کرده اید."
276
 
277
- #: google-captcha.php:880 google-captcha.php:897 google-captcha.php:926
 
 
 
 
278
  #, fuzzy
279
  msgid "You have entered an incorrect reCAPTCHA value"
280
  msgstr "شما مقدار CAPTCHA اشتباهی را وارد کرده اید."
281
 
282
- #: google-captcha.php:897 google-captcha.php:926 google-captcha.php:952
283
- msgid "ERROR"
284
- msgstr ""
285
-
286
- #: google-captcha.php:952
287
  #, fuzzy
288
  msgid ""
289
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -292,44 +296,44 @@ msgstr ""
292
  "خطا: شما مقدار CAPTCHA اشتباهی را وارد کرده اید. به صفحه قبلی بازگشته و "
293
  "دوباره تلاش کنید."
294
 
295
- #: google-captcha.php:976
296
  msgid "Please, complete the captcha and submit \"Test verification\""
297
  msgstr ""
298
 
299
- #: google-captcha.php:980
300
  msgid "Test verification"
301
  msgstr ""
302
 
303
- #: google-captcha.php:994 google-captcha.php:1003
304
  msgid "The user response was missing."
305
  msgstr ""
306
 
307
- #: google-captcha.php:996
308
  msgid "The Secret Key is missing."
309
  msgstr ""
310
 
311
- #: google-captcha.php:999 google-captcha.php:1008
312
  msgid "The Secret Key is invalid"
313
  msgstr ""
314
 
315
- #: google-captcha.php:1000 google-captcha.php:1009
316
  msgid "Check your domain configuration"
317
  msgstr ""
318
 
319
- #: google-captcha.php:1001 google-captcha.php:1010
320
  #, fuzzy
321
  msgid "and enter it again"
322
  msgstr "و آنها را وارد کنید در"
323
 
324
- #: google-captcha.php:1004 google-captcha.php:1012
325
  msgid "The user response is invalid."
326
  msgstr ""
327
 
328
- #: google-captcha.php:1021
329
  msgid "The verification is successfully completed."
330
  msgstr ""
331
 
332
- #: google-captcha.php:1075
333
  msgid "Support"
334
  msgstr "پشتیبانی"
335
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-25 11:33+0300\n"
6
+ "PO-Revision-Date: 2016-07-25 11:33+0300\n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Amirreza Nasiri <nasiri.amirreza.96@gmail.com>\n"
9
  "Language: fa_IR\n"
21
  "X-Loco-Target-Locale: uk_UA\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
+ #: google-captcha.php:34 google-captcha.php:422
25
  msgid "Google Captcha Settings"
26
  msgstr "تنظیمات Google Captcha"
27
 
28
+ #: google-captcha.php:202
29
  msgid "Warning"
30
  msgstr ""
31
 
32
+ #: google-captcha.php:202
33
  msgid ""
34
  "It has been found more than one reCAPTCHA in current form. In this case "
35
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
36
  "blocks."
37
  msgstr ""
38
 
39
+ #: google-captcha.php:206
40
  #, fuzzy
41
  msgid "Error: You have entered an incorrect reCAPTCHA value."
42
  msgstr "خطا: شما مقدار CAPTCHA اشتباهی را وارد کرده اید."
43
 
44
+ #: google-captcha.php:327
45
  msgid "Normal"
46
  msgstr "عادی"
47
 
48
+ #: google-captcha.php:328
49
  msgid "Compact"
50
  msgstr "فشرده"
51
 
52
+ #: google-captcha.php:334
53
  msgid "Site key"
54
  msgstr "کلید سایت (site key در تنظیمات گوگل)"
55
 
56
+ #: google-captcha.php:339
57
  msgid "Secret Key"
58
  msgstr "کلید سری (secret key در تنظیمات گوگل)"
59
 
60
+ #: google-captcha.php:347
61
  msgid "Login form"
62
  msgstr "فرم ورود"
63
 
64
+ #: google-captcha.php:348
65
  msgid "Registration form"
66
  msgstr "فرم ثبت نام"
67
 
68
+ #: google-captcha.php:349
69
  msgid "Reset password form"
70
  msgstr "فرم فراموش رمز عبور"
71
 
72
+ #: google-captcha.php:350
73
  msgid "Comments form"
74
  msgstr "فرم دیدگاه ها"
75
 
76
+ #: google-captcha.php:369
77
  msgid "Enter site key"
78
  msgstr "کلید سایت را وارد کنید"
79
 
80
+ #: google-captcha.php:370 google-captcha.php:376
81
  msgid "WARNING: The captcha will not display while you don't fill key fields."
82
  msgstr ""
83
  "تذکر: Captcha تا زمانی که فیلد مربوط به کلیدها را وارد نکنید، نشان داده "
84
  "نخواهد شد."
85
 
86
+ #: google-captcha.php:375
87
  msgid "Enter secret key"
88
  msgstr "کلید سری را وارد کنید"
89
 
90
+ #: google-captcha.php:401
91
  msgid "Settings saved"
92
  msgstr "تنظیمات ذخیره شدند"
93
 
94
+ #: google-captcha.php:407
95
  msgid "All plugin settings were restored."
96
  msgstr "تمام تنظیمات پلاگین بازگردانده شدند."
97
 
98
+ #: google-captcha.php:424 google-captcha.php:1128 google-captcha.php:1150
99
  msgid "Settings"
100
  msgstr "تنظیمات"
101
 
102
+ #: google-captcha.php:425
103
  msgid "Custom code"
104
  msgstr ""
105
 
106
+ #: google-captcha.php:426
107
  msgid "Go PRO"
108
  msgstr "ارتقاء به نسخه حرفه ای"
109
 
110
+ #: google-captcha.php:431
111
  msgid ""
112
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
113
  "version 1 features."
114
  msgstr ""
115
 
116
+ #: google-captcha.php:446
117
  #, fuzzy, php-format
118
  msgid ""
119
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
122
  "اگر می خواهید که Google Captcha را به فرم دلخواه خود اضافه کنید، کافیست شورت "
123
  "کد زیر را کپی کرده و درون فرم مورد نظر بچسبانید:"
124
 
125
+ #: google-captcha.php:452
126
  #, php-format
127
  msgid ""
128
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
131
  "your own form , please use the shortcode %s"
132
  msgstr ""
133
 
134
+ #: google-captcha.php:460
135
  msgid "Authentication"
136
  msgstr "تایید هویت"
137
 
138
+ #: google-captcha.php:461
139
  #, fuzzy, php-format
140
  msgid "Before you are able to do something, you must to register %shere%s"
141
  msgstr "قبل از این که قادر به انجام کاری باشید، باید ثبت نام کنید %s در %s"
142
 
143
+ #: google-captcha.php:462
144
  msgid "Enter site key and secret key, that you get after registration."
145
  msgstr "کلید سایت و کلید سری را که بعد از ثبت نام دریافت کردید، وارد کنید."
146
 
147
+ #: google-captcha.php:477
148
  #, fuzzy
149
  msgid "Test Keys"
150
  msgstr "کلید سری (secret key در تنظیمات گوگل)"
151
 
152
+ #: google-captcha.php:480
153
  msgid "Options"
154
  msgstr "تنظیمات"
155
 
156
+ #: google-captcha.php:483
157
  msgid "Enable reCAPTCHA for"
158
  msgstr "فعال کردن reCAPTCHA برای"
159
 
160
+ #: google-captcha.php:487
161
  msgid "WordPress default"
162
  msgstr ""
163
 
164
+ #: google-captcha.php:496
165
  msgid "This option is available only for network or for main blog"
166
  msgstr ""
167
 
168
+ #: google-captcha.php:504
169
  msgid "Plugins"
170
  msgstr ""
171
 
172
+ #: google-captcha.php:512 google-captcha.php:517
173
  #, fuzzy, php-format
174
  msgid "You should %s to use this functionality"
175
  msgstr "تا از این قابلیت استفاده کنید"
176
 
177
+ #: google-captcha.php:513
178
  msgid "activate"
179
  msgstr "فعال کنید"
180
 
181
+ #: google-captcha.php:513
182
  msgid "for network"
183
  msgstr ""
184
 
185
+ #: google-captcha.php:518
186
  msgid "download"
187
  msgstr "دانلود"
188
 
189
+ #: google-captcha.php:522
190
+ msgid "Check off for adding captcha to forms on their settings pages."
191
+ msgstr ""
192
+
193
+ #: google-captcha.php:533 google-captcha.php:610
194
  msgid "Close"
195
  msgstr "بستن"
196
 
197
+ #: google-captcha.php:545 google-captcha.php:646
198
  msgid "Unlock premium options by upgrading to Pro version"
199
  msgstr "گزینه های اضافی را با آپگرید کردن به نسخه حرفه ای باز کنید"
200
 
201
+ #: google-captcha.php:548 google-captcha.php:649
202
  msgid "Learn More"
203
  msgstr "بیشتر بدانید"
204
 
205
+ #: google-captcha.php:554
206
  #, php-format
207
  msgid ""
208
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
209
  msgstr ""
210
 
211
+ #: google-captcha.php:554 google-captcha.php:1151
212
  msgid "FAQ"
213
  msgstr "سوالات متداول"
214
 
215
+ #: google-captcha.php:559
216
  msgid "Hide reCAPTCHA in Comments form for"
217
  msgstr "reCAPTCHA را در فرم دیدگاه ها مخفی کن در"
218
 
219
+ #: google-captcha.php:571
220
  msgid "reCAPTCHA version"
221
  msgstr "نسخه reCAPTCHA"
222
 
223
+ #: google-captcha.php:574 google-captcha.php:575 google-captcha.php:576
224
+ #: google-captcha.php:577
225
  msgid "version"
226
  msgstr "نسخه"
227
 
228
+ #: google-captcha.php:583 google-captcha.php:596
229
  msgid "reCAPTCHA theme"
230
  msgstr "پوسته reCAPTCHA"
231
 
232
+ #: google-captcha.php:584 google-captcha.php:597 google-captcha.php:628
233
  msgid "for version"
234
  msgstr "برای نسخه"
235
 
236
+ #: google-captcha.php:614
237
  msgid "reCAPTCHA language"
238
  msgstr "زبان reCAPTCHA "
239
 
240
+ #: google-captcha.php:621
241
  msgid "Use the current site language"
242
  msgstr "از زبان کنونی سایت استفاده کن"
243
 
244
+ #: google-captcha.php:621
245
  msgid "Using"
246
  msgstr "استفاده کردن"
247
 
248
+ #: google-captcha.php:627
249
  msgid "reCAPTCHA size"
250
  msgstr "اندازه reCAPTCHA"
251
 
252
+ #: google-captcha.php:656
253
  msgid "Save Changes"
254
  msgstr "ذخیره کردن تنظیمات"
255
 
256
+ #: google-captcha.php:710 google-captcha.php:1167
257
  msgid "To use Google Captcha you must get the keys from"
258
  msgstr "برای استفاده از Google Captcha باید کلید ها را تهیه کنید از"
259
 
260
+ #: google-captcha.php:711 google-captcha.php:1168
261
  msgid "here"
262
  msgstr "اینجا"
263
 
264
+ #: google-captcha.php:712 google-captcha.php:1169
265
  msgid "and enter them on the"
266
  msgstr "و آنها را وارد کنید در"
267
 
268
+ #: google-captcha.php:714 google-captcha.php:1171
269
  msgid "plugin setting page"
270
  msgstr "صفحه تنظیمات افزونه"
271
 
272
+ #: google-captcha.php:900 google-captcha.php:948
273
  msgid "Error"
274
  msgstr "خطا"
275
 
276
+ #: google-captcha.php:900 google-captcha.php:948
277
  #, fuzzy
278
  msgid "You have entered an incorrect reCAPTCHA value."
279
  msgstr "شما مقدار CAPTCHA اشتباهی را وارد کرده اید."
280
 
281
+ #: google-captcha.php:978 google-captcha.php:1007 google-captcha.php:1033
282
+ msgid "ERROR"
283
+ msgstr ""
284
+
285
+ #: google-captcha.php:978 google-captcha.php:1007
286
  #, fuzzy
287
  msgid "You have entered an incorrect reCAPTCHA value"
288
  msgstr "شما مقدار CAPTCHA اشتباهی را وارد کرده اید."
289
 
290
+ #: google-captcha.php:1033
 
 
 
 
291
  #, fuzzy
292
  msgid ""
293
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
296
  "خطا: شما مقدار CAPTCHA اشتباهی را وارد کرده اید. به صفحه قبلی بازگشته و "
297
  "دوباره تلاش کنید."
298
 
299
+ #: google-captcha.php:1064
300
  msgid "Please, complete the captcha and submit \"Test verification\""
301
  msgstr ""
302
 
303
+ #: google-captcha.php:1068
304
  msgid "Test verification"
305
  msgstr ""
306
 
307
+ #: google-captcha.php:1082 google-captcha.php:1091
308
  msgid "The user response was missing."
309
  msgstr ""
310
 
311
+ #: google-captcha.php:1084
312
  msgid "The Secret Key is missing."
313
  msgstr ""
314
 
315
+ #: google-captcha.php:1087 google-captcha.php:1096
316
  msgid "The Secret Key is invalid"
317
  msgstr ""
318
 
319
+ #: google-captcha.php:1088 google-captcha.php:1097
320
  msgid "Check your domain configuration"
321
  msgstr ""
322
 
323
+ #: google-captcha.php:1089 google-captcha.php:1098
324
  #, fuzzy
325
  msgid "and enter it again"
326
  msgstr "و آنها را وارد کنید در"
327
 
328
+ #: google-captcha.php:1092 google-captcha.php:1100
329
  msgid "The user response is invalid."
330
  msgstr ""
331
 
332
+ #: google-captcha.php:1109
333
  msgid "The verification is successfully completed."
334
  msgstr ""
335
 
336
+ #: google-captcha.php:1152
337
  msgid "Support"
338
  msgstr "پشتیبانی"
339
 
languages/google-captcha-fr_FR.mo CHANGED
Binary file
languages/google-captcha-fr_FR.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: 2016-04-05 17:14+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Denis Bodorr <lefinnois@lefinnois.net>\n"
@@ -17,100 +17,100 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:34 google-captcha.php:367
21
  msgid "Google Captcha Settings"
22
  msgstr "Configuration Google Captcha"
23
 
24
- #: google-captcha.php:154
25
  msgid "Warning"
26
  msgstr ""
27
 
28
- #: google-captcha.php:154
29
  msgid ""
30
  "It has been found more than one reCAPTCHA in current form. In this case "
31
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
32
  "blocks."
33
  msgstr ""
34
 
35
- #: google-captcha.php:158
36
  #, fuzzy
37
  msgid "Error: You have entered an incorrect reCAPTCHA value."
38
  msgstr "ERREUR: Vous avez saisi une valeur de CAPTCHA incorrecte"
39
 
40
- #: google-captcha.php:272
41
  msgid "Normal"
42
  msgstr ""
43
 
44
- #: google-captcha.php:273
45
  msgid "Compact"
46
  msgstr ""
47
 
48
- #: google-captcha.php:279
49
  msgid "Site key"
50
  msgstr "Clé du site"
51
 
52
- #: google-captcha.php:284
53
  msgid "Secret Key"
54
  msgstr "Clé secrète"
55
 
56
- #: google-captcha.php:292
57
  msgid "Login form"
58
  msgstr "Formulaire de connexion"
59
 
60
- #: google-captcha.php:293
61
  msgid "Registration form"
62
  msgstr "Formulaire d'enregistrement"
63
 
64
- #: google-captcha.php:294
65
  msgid "Reset password form"
66
  msgstr "Formulaire de réinitialisation de mot de passe"
67
 
68
- #: google-captcha.php:295
69
  msgid "Comments form"
70
  msgstr "Formulaire de commentaire"
71
 
72
- #: google-captcha.php:314
73
  msgid "Enter site key"
74
  msgstr "Saisissez la clé du site"
75
 
76
- #: google-captcha.php:315 google-captcha.php:321
77
  msgid "WARNING: The captcha will not display while you don't fill key fields."
78
  msgstr ""
79
  "ATTENTION: Le captcha ne s'affichera pas tant que vous n'avez pas spécifié "
80
  "les clés"
81
 
82
- #: google-captcha.php:320
83
  msgid "Enter secret key"
84
  msgstr "Saisissez la clé secrète"
85
 
86
- #: google-captcha.php:346
87
  msgid "Settings saved"
88
  msgstr "Configuration enregistrée"
89
 
90
- #: google-captcha.php:352
91
  #, fuzzy
92
  msgid "All plugin settings were restored."
93
  msgstr "Tous les paramètre sont restaurés"
94
 
95
- #: google-captcha.php:369 google-captcha.php:1040 google-captcha.php:1073
96
  msgid "Settings"
97
  msgstr "Configuration"
98
 
99
- #: google-captcha.php:370
100
  msgid "Custom code"
101
  msgstr ""
102
 
103
- #: google-captcha.php:371
104
  msgid "Go PRO"
105
  msgstr "Version PRO"
106
 
107
- #: google-captcha.php:376
108
  msgid ""
109
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
110
  "version 1 features."
111
  msgstr ""
112
 
113
- #: google-captcha.php:391
114
  #, fuzzy, php-format
115
  msgid ""
116
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -119,7 +119,7 @@ msgstr ""
119
  "Si vous voulez ajouter Google Captcha à vos propres formulaires, copiez/"
120
  "collez simplement ce code:"
121
 
122
- #: google-captcha.php:397
123
  #, php-format
124
  msgid ""
125
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -128,165 +128,169 @@ msgid ""
128
  "your own form , please use the shortcode %s"
129
  msgstr ""
130
 
131
- #: google-captcha.php:405
132
  msgid "Authentication"
133
  msgstr "Authentification"
134
 
135
- #: google-captcha.php:406
136
  #, fuzzy, php-format
137
  msgid "Before you are able to do something, you must to register %shere%s"
138
  msgstr ""
139
  "Avant de pouvoir faire quoi que ce soit, vous devez vous enregistrer %s ici "
140
  "%s"
141
 
142
- #: google-captcha.php:407
143
  msgid "Enter site key and secret key, that you get after registration."
144
  msgstr ""
145
  "Saisissez la clé du site et la clé secrète que vous avez obtenues après "
146
  "enregistrement"
147
 
148
- #: google-captcha.php:422
149
  #, fuzzy
150
  msgid "Test Keys"
151
  msgstr "Clé secrète"
152
 
153
- #: google-captcha.php:425
154
  msgid "Options"
155
  msgstr "Options"
156
 
157
- #: google-captcha.php:428
158
  msgid "Enable reCAPTCHA for"
159
  msgstr "Activer reCAPTCHA pour"
160
 
161
- #: google-captcha.php:432
162
  msgid "WordPress default"
163
  msgstr ""
164
 
165
- #: google-captcha.php:441
166
  msgid "This option is available only for network or for main blog"
167
  msgstr ""
168
 
169
- #: google-captcha.php:449
170
  #, fuzzy
171
  msgid "Plugins"
172
  msgstr "Plugins Seite"
173
 
174
- #: google-captcha.php:457 google-captcha.php:462
175
  #, fuzzy, php-format
176
  msgid "You should %s to use this functionality"
177
  msgstr "pour utiliser cette fonctionnalité"
178
 
179
- #: google-captcha.php:458
180
  #, fuzzy
181
  msgid "activate"
182
  msgstr "activer"
183
 
184
- #: google-captcha.php:458
185
  msgid "for network"
186
  msgstr ""
187
 
188
- #: google-captcha.php:463
189
  msgid "download"
190
  msgstr "télécharger"
191
 
192
- #: google-captcha.php:475 google-captcha.php:552
 
 
 
 
193
  msgid "Close"
194
  msgstr "Fermer"
195
 
196
- #: google-captcha.php:487 google-captcha.php:588
197
  msgid "Unlock premium options by upgrading to Pro version"
198
  msgstr "Débloquez les options premium en mettant à jour vers la version Pro"
199
 
200
- #: google-captcha.php:490 google-captcha.php:591
201
  msgid "Learn More"
202
  msgstr "En savoir plus"
203
 
204
- #: google-captcha.php:496
205
  #, php-format
206
  msgid ""
207
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
208
  msgstr ""
209
 
210
- #: google-captcha.php:496 google-captcha.php:1074
211
  msgid "FAQ"
212
  msgstr "FAQ"
213
 
214
- #: google-captcha.php:501
215
  msgid "Hide reCAPTCHA in Comments form for"
216
  msgstr "Cacher reCAPTCHA dans le formulaire de commentaires pour"
217
 
218
- #: google-captcha.php:513
219
  msgid "reCAPTCHA version"
220
  msgstr "Version reCAPTCHA"
221
 
222
- #: google-captcha.php:516 google-captcha.php:517 google-captcha.php:518
223
- #: google-captcha.php:519
224
  msgid "version"
225
  msgstr "Version"
226
 
227
- #: google-captcha.php:525 google-captcha.php:538
228
  msgid "reCAPTCHA theme"
229
  msgstr "Thème reCAPTCHA"
230
 
231
- #: google-captcha.php:526 google-captcha.php:539 google-captcha.php:570
232
  msgid "for version"
233
  msgstr "pour la version"
234
 
235
- #: google-captcha.php:556
236
  msgid "reCAPTCHA language"
237
  msgstr "Langue reCAPTCHA"
238
 
239
- #: google-captcha.php:563
240
  msgid "Use the current site language"
241
  msgstr "Utiliser le langage courant du site"
242
 
243
- #: google-captcha.php:563
244
  msgid "Using"
245
  msgstr "Utilisant"
246
 
247
- #: google-captcha.php:569
248
  msgid "reCAPTCHA size"
249
  msgstr "Taille ReCAPTCHA"
250
 
251
- #: google-captcha.php:598
252
  msgid "Save Changes"
253
  msgstr "Enregistrer les modifications"
254
 
255
- #: google-captcha.php:652 google-captcha.php:1090
256
  msgid "To use Google Captcha you must get the keys from"
257
  msgstr "Pour utiliser Google Captcha vous devez obtenir les clés depuis"
258
 
259
- #: google-captcha.php:653 google-captcha.php:1091
260
  msgid "here"
261
  msgstr "ici"
262
 
263
- #: google-captcha.php:654 google-captcha.php:1092
264
  msgid "and enter them on the"
265
  msgstr "et les saisir sur la"
266
 
267
- #: google-captcha.php:656 google-captcha.php:1094
268
  msgid "plugin setting page"
269
  msgstr "page de configuration de l'extension"
270
 
271
- #: google-captcha.php:842 google-captcha.php:880
272
  msgid "Error"
273
  msgstr "Erreur"
274
 
275
- #: google-captcha.php:842
276
  #, fuzzy
277
  msgid "You have entered an incorrect reCAPTCHA value."
278
  msgstr "Vous avez saisi une valeur de CAPTCHA incorrecte"
279
 
280
- #: google-captcha.php:880 google-captcha.php:897 google-captcha.php:926
 
 
 
 
281
  #, fuzzy
282
  msgid "You have entered an incorrect reCAPTCHA value"
283
  msgstr "Vous avez saisi une valeur de CAPTCHA incorrecte"
284
 
285
- #: google-captcha.php:897 google-captcha.php:926 google-captcha.php:952
286
- msgid "ERROR"
287
- msgstr ""
288
-
289
- #: google-captcha.php:952
290
  msgid ""
291
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
292
  "browser, and try again."
@@ -294,44 +298,44 @@ msgstr ""
294
  "Vous avez saisi une valeur de CAPTCHA incorrecte. Cliquez sur le bouton "
295
  "\"Revenir en arrière\" de votre navigateur et essayez à nouveau."
296
 
297
- #: google-captcha.php:976
298
  msgid "Please, complete the captcha and submit \"Test verification\""
299
  msgstr ""
300
 
301
- #: google-captcha.php:980
302
  msgid "Test verification"
303
  msgstr ""
304
 
305
- #: google-captcha.php:994 google-captcha.php:1003
306
  msgid "The user response was missing."
307
  msgstr ""
308
 
309
- #: google-captcha.php:996
310
  msgid "The Secret Key is missing."
311
  msgstr ""
312
 
313
- #: google-captcha.php:999 google-captcha.php:1008
314
  msgid "The Secret Key is invalid"
315
  msgstr ""
316
 
317
- #: google-captcha.php:1000 google-captcha.php:1009
318
  msgid "Check your domain configuration"
319
  msgstr ""
320
 
321
- #: google-captcha.php:1001 google-captcha.php:1010
322
  #, fuzzy
323
  msgid "and enter it again"
324
  msgstr "et les saisir sur la"
325
 
326
- #: google-captcha.php:1004 google-captcha.php:1012
327
  msgid "The user response is invalid."
328
  msgstr ""
329
 
330
- #: google-captcha.php:1021
331
  msgid "The verification is successfully completed."
332
  msgstr ""
333
 
334
- #: google-captcha.php:1075
335
  msgid "Support"
336
  msgstr "Support"
337
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-25 11:33+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Denis Bodorr <lefinnois@lefinnois.net>\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: google-captcha.php:34 google-captcha.php:422
21
  msgid "Google Captcha Settings"
22
  msgstr "Configuration Google Captcha"
23
 
24
+ #: google-captcha.php:202
25
  msgid "Warning"
26
  msgstr ""
27
 
28
+ #: google-captcha.php:202
29
  msgid ""
30
  "It has been found more than one reCAPTCHA in current form. In this case "
31
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
32
  "blocks."
33
  msgstr ""
34
 
35
+ #: google-captcha.php:206
36
  #, fuzzy
37
  msgid "Error: You have entered an incorrect reCAPTCHA value."
38
  msgstr "ERREUR: Vous avez saisi une valeur de CAPTCHA incorrecte"
39
 
40
+ #: google-captcha.php:327
41
  msgid "Normal"
42
  msgstr ""
43
 
44
+ #: google-captcha.php:328
45
  msgid "Compact"
46
  msgstr ""
47
 
48
+ #: google-captcha.php:334
49
  msgid "Site key"
50
  msgstr "Clé du site"
51
 
52
+ #: google-captcha.php:339
53
  msgid "Secret Key"
54
  msgstr "Clé secrète"
55
 
56
+ #: google-captcha.php:347
57
  msgid "Login form"
58
  msgstr "Formulaire de connexion"
59
 
60
+ #: google-captcha.php:348
61
  msgid "Registration form"
62
  msgstr "Formulaire d'enregistrement"
63
 
64
+ #: google-captcha.php:349
65
  msgid "Reset password form"
66
  msgstr "Formulaire de réinitialisation de mot de passe"
67
 
68
+ #: google-captcha.php:350
69
  msgid "Comments form"
70
  msgstr "Formulaire de commentaire"
71
 
72
+ #: google-captcha.php:369
73
  msgid "Enter site key"
74
  msgstr "Saisissez la clé du site"
75
 
76
+ #: google-captcha.php:370 google-captcha.php:376
77
  msgid "WARNING: The captcha will not display while you don't fill key fields."
78
  msgstr ""
79
  "ATTENTION: Le captcha ne s'affichera pas tant que vous n'avez pas spécifié "
80
  "les clés"
81
 
82
+ #: google-captcha.php:375
83
  msgid "Enter secret key"
84
  msgstr "Saisissez la clé secrète"
85
 
86
+ #: google-captcha.php:401
87
  msgid "Settings saved"
88
  msgstr "Configuration enregistrée"
89
 
90
+ #: google-captcha.php:407
91
  #, fuzzy
92
  msgid "All plugin settings were restored."
93
  msgstr "Tous les paramètre sont restaurés"
94
 
95
+ #: google-captcha.php:424 google-captcha.php:1128 google-captcha.php:1150
96
  msgid "Settings"
97
  msgstr "Configuration"
98
 
99
+ #: google-captcha.php:425
100
  msgid "Custom code"
101
  msgstr ""
102
 
103
+ #: google-captcha.php:426
104
  msgid "Go PRO"
105
  msgstr "Version PRO"
106
 
107
+ #: google-captcha.php:431
108
  msgid ""
109
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
110
  "version 1 features."
111
  msgstr ""
112
 
113
+ #: google-captcha.php:446
114
  #, fuzzy, php-format
115
  msgid ""
116
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
119
  "Si vous voulez ajouter Google Captcha à vos propres formulaires, copiez/"
120
  "collez simplement ce code:"
121
 
122
+ #: google-captcha.php:452
123
  #, php-format
124
  msgid ""
125
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
128
  "your own form , please use the shortcode %s"
129
  msgstr ""
130
 
131
+ #: google-captcha.php:460
132
  msgid "Authentication"
133
  msgstr "Authentification"
134
 
135
+ #: google-captcha.php:461
136
  #, fuzzy, php-format
137
  msgid "Before you are able to do something, you must to register %shere%s"
138
  msgstr ""
139
  "Avant de pouvoir faire quoi que ce soit, vous devez vous enregistrer %s ici "
140
  "%s"
141
 
142
+ #: google-captcha.php:462
143
  msgid "Enter site key and secret key, that you get after registration."
144
  msgstr ""
145
  "Saisissez la clé du site et la clé secrète que vous avez obtenues après "
146
  "enregistrement"
147
 
148
+ #: google-captcha.php:477
149
  #, fuzzy
150
  msgid "Test Keys"
151
  msgstr "Clé secrète"
152
 
153
+ #: google-captcha.php:480
154
  msgid "Options"
155
  msgstr "Options"
156
 
157
+ #: google-captcha.php:483
158
  msgid "Enable reCAPTCHA for"
159
  msgstr "Activer reCAPTCHA pour"
160
 
161
+ #: google-captcha.php:487
162
  msgid "WordPress default"
163
  msgstr ""
164
 
165
+ #: google-captcha.php:496
166
  msgid "This option is available only for network or for main blog"
167
  msgstr ""
168
 
169
+ #: google-captcha.php:504
170
  #, fuzzy
171
  msgid "Plugins"
172
  msgstr "Plugins Seite"
173
 
174
+ #: google-captcha.php:512 google-captcha.php:517
175
  #, fuzzy, php-format
176
  msgid "You should %s to use this functionality"
177
  msgstr "pour utiliser cette fonctionnalité"
178
 
179
+ #: google-captcha.php:513
180
  #, fuzzy
181
  msgid "activate"
182
  msgstr "activer"
183
 
184
+ #: google-captcha.php:513
185
  msgid "for network"
186
  msgstr ""
187
 
188
+ #: google-captcha.php:518
189
  msgid "download"
190
  msgstr "télécharger"
191
 
192
+ #: google-captcha.php:522
193
+ msgid "Check off for adding captcha to forms on their settings pages."
194
+ msgstr ""
195
+
196
+ #: google-captcha.php:533 google-captcha.php:610
197
  msgid "Close"
198
  msgstr "Fermer"
199
 
200
+ #: google-captcha.php:545 google-captcha.php:646
201
  msgid "Unlock premium options by upgrading to Pro version"
202
  msgstr "Débloquez les options premium en mettant à jour vers la version Pro"
203
 
204
+ #: google-captcha.php:548 google-captcha.php:649
205
  msgid "Learn More"
206
  msgstr "En savoir plus"
207
 
208
+ #: google-captcha.php:554
209
  #, php-format
210
  msgid ""
211
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
212
  msgstr ""
213
 
214
+ #: google-captcha.php:554 google-captcha.php:1151
215
  msgid "FAQ"
216
  msgstr "FAQ"
217
 
218
+ #: google-captcha.php:559
219
  msgid "Hide reCAPTCHA in Comments form for"
220
  msgstr "Cacher reCAPTCHA dans le formulaire de commentaires pour"
221
 
222
+ #: google-captcha.php:571
223
  msgid "reCAPTCHA version"
224
  msgstr "Version reCAPTCHA"
225
 
226
+ #: google-captcha.php:574 google-captcha.php:575 google-captcha.php:576
227
+ #: google-captcha.php:577
228
  msgid "version"
229
  msgstr "Version"
230
 
231
+ #: google-captcha.php:583 google-captcha.php:596
232
  msgid "reCAPTCHA theme"
233
  msgstr "Thème reCAPTCHA"
234
 
235
+ #: google-captcha.php:584 google-captcha.php:597 google-captcha.php:628
236
  msgid "for version"
237
  msgstr "pour la version"
238
 
239
+ #: google-captcha.php:614
240
  msgid "reCAPTCHA language"
241
  msgstr "Langue reCAPTCHA"
242
 
243
+ #: google-captcha.php:621
244
  msgid "Use the current site language"
245
  msgstr "Utiliser le langage courant du site"
246
 
247
+ #: google-captcha.php:621
248
  msgid "Using"
249
  msgstr "Utilisant"
250
 
251
+ #: google-captcha.php:627
252
  msgid "reCAPTCHA size"
253
  msgstr "Taille ReCAPTCHA"
254
 
255
+ #: google-captcha.php:656
256
  msgid "Save Changes"
257
  msgstr "Enregistrer les modifications"
258
 
259
+ #: google-captcha.php:710 google-captcha.php:1167
260
  msgid "To use Google Captcha you must get the keys from"
261
  msgstr "Pour utiliser Google Captcha vous devez obtenir les clés depuis"
262
 
263
+ #: google-captcha.php:711 google-captcha.php:1168
264
  msgid "here"
265
  msgstr "ici"
266
 
267
+ #: google-captcha.php:712 google-captcha.php:1169
268
  msgid "and enter them on the"
269
  msgstr "et les saisir sur la"
270
 
271
+ #: google-captcha.php:714 google-captcha.php:1171
272
  msgid "plugin setting page"
273
  msgstr "page de configuration de l'extension"
274
 
275
+ #: google-captcha.php:900 google-captcha.php:948
276
  msgid "Error"
277
  msgstr "Erreur"
278
 
279
+ #: google-captcha.php:900 google-captcha.php:948
280
  #, fuzzy
281
  msgid "You have entered an incorrect reCAPTCHA value."
282
  msgstr "Vous avez saisi une valeur de CAPTCHA incorrecte"
283
 
284
+ #: google-captcha.php:978 google-captcha.php:1007 google-captcha.php:1033
285
+ msgid "ERROR"
286
+ msgstr ""
287
+
288
+ #: google-captcha.php:978 google-captcha.php:1007
289
  #, fuzzy
290
  msgid "You have entered an incorrect reCAPTCHA value"
291
  msgstr "Vous avez saisi une valeur de CAPTCHA incorrecte"
292
 
293
+ #: google-captcha.php:1033
 
 
 
 
294
  msgid ""
295
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
296
  "browser, and try again."
298
  "Vous avez saisi une valeur de CAPTCHA incorrecte. Cliquez sur le bouton "
299
  "\"Revenir en arrière\" de votre navigateur et essayez à nouveau."
300
 
301
+ #: google-captcha.php:1064
302
  msgid "Please, complete the captcha and submit \"Test verification\""
303
  msgstr ""
304
 
305
+ #: google-captcha.php:1068
306
  msgid "Test verification"
307
  msgstr ""
308
 
309
+ #: google-captcha.php:1082 google-captcha.php:1091
310
  msgid "The user response was missing."
311
  msgstr ""
312
 
313
+ #: google-captcha.php:1084
314
  msgid "The Secret Key is missing."
315
  msgstr ""
316
 
317
+ #: google-captcha.php:1087 google-captcha.php:1096
318
  msgid "The Secret Key is invalid"
319
  msgstr ""
320
 
321
+ #: google-captcha.php:1088 google-captcha.php:1097
322
  msgid "Check your domain configuration"
323
  msgstr ""
324
 
325
+ #: google-captcha.php:1089 google-captcha.php:1098
326
  #, fuzzy
327
  msgid "and enter it again"
328
  msgstr "et les saisir sur la"
329
 
330
+ #: google-captcha.php:1092 google-captcha.php:1100
331
  msgid "The user response is invalid."
332
  msgstr ""
333
 
334
+ #: google-captcha.php:1109
335
  msgid "The verification is successfully completed."
336
  msgstr ""
337
 
338
+ #: google-captcha.php:1152
339
  msgid "Support"
340
  msgstr "Support"
341
 
languages/google-captcha-hi.mo CHANGED
Binary file
languages/google-captcha-hi.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: 2016-04-05 17:14+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Development Logics Solutions Pvt Ltd "
@@ -18,98 +18,98 @@ msgstr ""
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: google-captcha.php:34 google-captcha.php:367
22
  msgid "Google Captcha Settings"
23
  msgstr "गूगल कॅप्चा सेटिंग्स"
24
 
25
- #: google-captcha.php:154
26
  msgid "Warning"
27
  msgstr ""
28
 
29
- #: google-captcha.php:154
30
  msgid ""
31
  "It has been found more than one reCAPTCHA in current form. In this case "
32
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
33
  "blocks."
34
  msgstr ""
35
 
36
- #: google-captcha.php:158
37
  #, fuzzy
38
  msgid "Error: You have entered an incorrect reCAPTCHA value."
39
  msgstr "त्रुटि: आपने एक गलत कॅप्चा मान दर्ज किया है।"
40
 
41
- #: google-captcha.php:272
42
  msgid "Normal"
43
  msgstr ""
44
 
45
- #: google-captcha.php:273
46
  msgid "Compact"
47
  msgstr ""
48
 
49
- #: google-captcha.php:279
50
  msgid "Site key"
51
  msgstr "साइट कुंजी "
52
 
53
- #: google-captcha.php:284
54
  msgid "Secret Key"
55
  msgstr "गुप्त कुंजी"
56
 
57
- #: google-captcha.php:292
58
  msgid "Login form"
59
  msgstr "प्रवेश फार्म"
60
 
61
- #: google-captcha.php:293
62
  msgid "Registration form"
63
  msgstr "पंजीकरण फॉर्म"
64
 
65
- #: google-captcha.php:294
66
  msgid "Reset password form"
67
  msgstr "पुन: पासवर्ड फार्म"
68
 
69
- #: google-captcha.php:295
70
  msgid "Comments form"
71
  msgstr "टिप्पणियां फार्म"
72
 
73
- #: google-captcha.php:314
74
  msgid "Enter site key"
75
  msgstr "दर्ज साइट कुंजी "
76
 
77
- #: google-captcha.php:315 google-captcha.php:321
78
  msgid "WARNING: The captcha will not display while you don't fill key fields."
79
  msgstr "चेतावनी: यदि आप कुंजी क्षेत्र नहीं भरेंगें तो कैप्चा प्रदर्शित नहीं करेगा।"
80
 
81
- #: google-captcha.php:320
82
  msgid "Enter secret key"
83
  msgstr "दर्ज गुप्त कुंजी"
84
 
85
- #: google-captcha.php:346
86
  msgid "Settings saved"
87
  msgstr "सेटिंग्स सुरक्षित"
88
 
89
- #: google-captcha.php:352
90
  #, fuzzy
91
  msgid "All plugin settings were restored."
92
  msgstr "प्लगइन सेटिंग पृष्ठ पर "
93
 
94
- #: google-captcha.php:369 google-captcha.php:1040 google-captcha.php:1073
95
  msgid "Settings"
96
  msgstr "सेटिंग्स"
97
 
98
- #: google-captcha.php:370
99
  msgid "Custom code"
100
  msgstr ""
101
 
102
- #: google-captcha.php:371
103
  msgid "Go PRO"
104
  msgstr ""
105
 
106
- #: google-captcha.php:376
107
  msgid ""
108
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
109
  "version 1 features."
110
  msgstr ""
111
 
112
- #: google-captcha.php:391
113
  #, fuzzy, php-format
114
  msgid ""
115
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -118,7 +118,7 @@ msgstr ""
118
  "अगर आप अपने खुद के फार्म में गूगल कैप्चा जोड़ना चाहते हैं तो बस इस शॉर्टकोड को अपने पृष्ठ या "
119
  "पोस्ट पर कॉपी और पेस्ट करेँ ।"
120
 
121
- #: google-captcha.php:397
122
  #, php-format
123
  msgid ""
124
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -127,167 +127,171 @@ msgid ""
127
  "your own form , please use the shortcode %s"
128
  msgstr ""
129
 
130
- #: google-captcha.php:405
131
  msgid "Authentication"
132
  msgstr "प्रमाणीकरण"
133
 
134
- #: google-captcha.php:406
135
  #, fuzzy, php-format
136
  msgid "Before you are able to do something, you must to register %shere%s"
137
  msgstr " कुछ भी करने से पहले %s यहाँ %s पंजीकरण करायें "
138
 
139
- #: google-captcha.php:407
140
  msgid "Enter site key and secret key, that you get after registration."
141
  msgstr "पंजीकरण के बाद जो साइट कुंजी और गुप्त कुंजी मिलती है उसे दर्ज करें।"
142
 
143
- #: google-captcha.php:422
144
  #, fuzzy
145
  msgid "Test Keys"
146
  msgstr "गुप्त कुंजी"
147
 
148
- #: google-captcha.php:425
149
  msgid "Options"
150
  msgstr "विकल्प"
151
 
152
- #: google-captcha.php:428
153
  msgid "Enable reCAPTCHA for"
154
  msgstr ""
155
 
156
- #: google-captcha.php:432
157
  #, fuzzy
158
  msgid "WordPress default"
159
  msgstr "वर्डप्रेस संस्करण"
160
 
161
- #: google-captcha.php:441
162
  msgid "This option is available only for network or for main blog"
163
  msgstr ""
164
 
165
- #: google-captcha.php:449
166
  msgid "Plugins"
167
  msgstr "प्लगइन्स"
168
 
169
- #: google-captcha.php:457 google-captcha.php:462
170
  #, php-format
171
  msgid "You should %s to use this functionality"
172
  msgstr ""
173
 
174
- #: google-captcha.php:458
175
  #, fuzzy
176
  msgid "activate"
177
  msgstr "सक्रिय"
178
 
179
- #: google-captcha.php:458
180
  msgid "for network"
181
  msgstr ""
182
 
183
- #: google-captcha.php:463
184
  msgid "download"
185
  msgstr ""
186
 
187
- #: google-captcha.php:475 google-captcha.php:552
 
 
 
 
188
  msgid "Close"
189
  msgstr ""
190
 
191
- #: google-captcha.php:487 google-captcha.php:588
192
  msgid "Unlock premium options by upgrading to Pro version"
193
  msgstr ""
194
 
195
- #: google-captcha.php:490 google-captcha.php:591
196
  msgid "Learn More"
197
  msgstr ""
198
 
199
- #: google-captcha.php:496
200
  #, php-format
201
  msgid ""
202
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
203
  msgstr ""
204
 
205
- #: google-captcha.php:496 google-captcha.php:1074
206
  msgid "FAQ"
207
  msgstr "सामान्यतःपूछे जाने वाले प्रश्न (फ ए क्यू )"
208
 
209
- #: google-captcha.php:501
210
  #, fuzzy
211
  msgid "Hide reCAPTCHA in Comments form for"
212
  msgstr "रीकैप्चा संस्करण के लिए"
213
 
214
- #: google-captcha.php:513
215
  #, fuzzy
216
  msgid "reCAPTCHA version"
217
  msgstr "रीकैप्चा संस्करण:"
218
 
219
- #: google-captcha.php:516 google-captcha.php:517 google-captcha.php:518
220
- #: google-captcha.php:519
221
  msgid "version"
222
  msgstr "संस्करण"
223
 
224
- #: google-captcha.php:525 google-captcha.php:538
225
  #, fuzzy
226
  msgid "reCAPTCHA theme"
227
  msgstr "रीकैप्चा संस्करण:"
228
 
229
- #: google-captcha.php:526 google-captcha.php:539 google-captcha.php:570
230
  #, fuzzy
231
  msgid "for version"
232
  msgstr "संस्करण"
233
 
234
- #: google-captcha.php:556
235
  #, fuzzy
236
  msgid "reCAPTCHA language"
237
  msgstr "रीकैप्चा संस्करण:"
238
 
239
- #: google-captcha.php:563
240
  msgid "Use the current site language"
241
  msgstr ""
242
 
243
- #: google-captcha.php:563
244
  msgid "Using"
245
  msgstr ""
246
 
247
- #: google-captcha.php:569
248
  #, fuzzy
249
  msgid "reCAPTCHA size"
250
  msgstr "रीकैप्चा संस्करण:"
251
 
252
- #: google-captcha.php:598
253
  msgid "Save Changes"
254
  msgstr "परिवर्तनों को सुरक्षित करें"
255
 
256
- #: google-captcha.php:652 google-captcha.php:1090
257
  msgid "To use Google Captcha you must get the keys from"
258
  msgstr "गूगल कॅप्चा का उपयोग करने के लिए,आप कुंजी लें "
259
 
260
- #: google-captcha.php:653 google-captcha.php:1091
261
  msgid "here"
262
  msgstr "यहाँ से "
263
 
264
- #: google-captcha.php:654 google-captcha.php:1092
265
  msgid "and enter them on the"
266
  msgstr "और उन्हें दर्ज करें "
267
 
268
- #: google-captcha.php:656 google-captcha.php:1094
269
  msgid "plugin setting page"
270
  msgstr "प्लगइन सेटिंग पृष्ठ पर "
271
 
272
- #: google-captcha.php:842 google-captcha.php:880
273
  msgid "Error"
274
  msgstr "त्रुटि"
275
 
276
- #: google-captcha.php:842
277
  #, fuzzy
278
  msgid "You have entered an incorrect reCAPTCHA value."
279
  msgstr "आपने एक गलत कॅप्चा मान दर्ज किया है।"
280
 
281
- #: google-captcha.php:880 google-captcha.php:897 google-captcha.php:926
 
 
 
 
282
  #, fuzzy
283
  msgid "You have entered an incorrect reCAPTCHA value"
284
  msgstr "आपने एक गलत कॅप्चा मान दर्ज किया है।"
285
 
286
- #: google-captcha.php:897 google-captcha.php:926 google-captcha.php:952
287
- msgid "ERROR"
288
- msgstr ""
289
-
290
- #: google-captcha.php:952
291
  #, fuzzy
292
  msgid ""
293
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -296,44 +300,44 @@ msgstr ""
296
  "त्रुटि: आपने एक गलत कॅप्चा मान दर्ज किया है। अपने ब्राउज़र पर वापस बटन क्लिक करें, और फिर "
297
  "कोशिश करें।"
298
 
299
- #: google-captcha.php:976
300
  msgid "Please, complete the captcha and submit \"Test verification\""
301
  msgstr ""
302
 
303
- #: google-captcha.php:980
304
  msgid "Test verification"
305
  msgstr ""
306
 
307
- #: google-captcha.php:994 google-captcha.php:1003
308
  msgid "The user response was missing."
309
  msgstr ""
310
 
311
- #: google-captcha.php:996
312
  msgid "The Secret Key is missing."
313
  msgstr ""
314
 
315
- #: google-captcha.php:999 google-captcha.php:1008
316
  msgid "The Secret Key is invalid"
317
  msgstr ""
318
 
319
- #: google-captcha.php:1000 google-captcha.php:1009
320
  msgid "Check your domain configuration"
321
  msgstr ""
322
 
323
- #: google-captcha.php:1001 google-captcha.php:1010
324
  #, fuzzy
325
  msgid "and enter it again"
326
  msgstr "और उन्हें दर्ज करें "
327
 
328
- #: google-captcha.php:1004 google-captcha.php:1012
329
  msgid "The user response is invalid."
330
  msgstr ""
331
 
332
- #: google-captcha.php:1021
333
  msgid "The verification is successfully completed."
334
  msgstr ""
335
 
336
- #: google-captcha.php:1075
337
  msgid "Support"
338
  msgstr "सहयोग"
339
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-25 11:34+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Development Logics Solutions Pvt Ltd "
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: google-captcha.php:34 google-captcha.php:422
22
  msgid "Google Captcha Settings"
23
  msgstr "गूगल कॅप्चा सेटिंग्स"
24
 
25
+ #: google-captcha.php:202
26
  msgid "Warning"
27
  msgstr ""
28
 
29
+ #: google-captcha.php:202
30
  msgid ""
31
  "It has been found more than one reCAPTCHA in current form. In this case "
32
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
33
  "blocks."
34
  msgstr ""
35
 
36
+ #: google-captcha.php:206
37
  #, fuzzy
38
  msgid "Error: You have entered an incorrect reCAPTCHA value."
39
  msgstr "त्रुटि: आपने एक गलत कॅप्चा मान दर्ज किया है।"
40
 
41
+ #: google-captcha.php:327
42
  msgid "Normal"
43
  msgstr ""
44
 
45
+ #: google-captcha.php:328
46
  msgid "Compact"
47
  msgstr ""
48
 
49
+ #: google-captcha.php:334
50
  msgid "Site key"
51
  msgstr "साइट कुंजी "
52
 
53
+ #: google-captcha.php:339
54
  msgid "Secret Key"
55
  msgstr "गुप्त कुंजी"
56
 
57
+ #: google-captcha.php:347
58
  msgid "Login form"
59
  msgstr "प्रवेश फार्म"
60
 
61
+ #: google-captcha.php:348
62
  msgid "Registration form"
63
  msgstr "पंजीकरण फॉर्म"
64
 
65
+ #: google-captcha.php:349
66
  msgid "Reset password form"
67
  msgstr "पुन: पासवर्ड फार्म"
68
 
69
+ #: google-captcha.php:350
70
  msgid "Comments form"
71
  msgstr "टिप्पणियां फार्म"
72
 
73
+ #: google-captcha.php:369
74
  msgid "Enter site key"
75
  msgstr "दर्ज साइट कुंजी "
76
 
77
+ #: google-captcha.php:370 google-captcha.php:376
78
  msgid "WARNING: The captcha will not display while you don't fill key fields."
79
  msgstr "चेतावनी: यदि आप कुंजी क्षेत्र नहीं भरेंगें तो कैप्चा प्रदर्शित नहीं करेगा।"
80
 
81
+ #: google-captcha.php:375
82
  msgid "Enter secret key"
83
  msgstr "दर्ज गुप्त कुंजी"
84
 
85
+ #: google-captcha.php:401
86
  msgid "Settings saved"
87
  msgstr "सेटिंग्स सुरक्षित"
88
 
89
+ #: google-captcha.php:407
90
  #, fuzzy
91
  msgid "All plugin settings were restored."
92
  msgstr "प्लगइन सेटिंग पृष्ठ पर "
93
 
94
+ #: google-captcha.php:424 google-captcha.php:1128 google-captcha.php:1150
95
  msgid "Settings"
96
  msgstr "सेटिंग्स"
97
 
98
+ #: google-captcha.php:425
99
  msgid "Custom code"
100
  msgstr ""
101
 
102
+ #: google-captcha.php:426
103
  msgid "Go PRO"
104
  msgstr ""
105
 
106
+ #: google-captcha.php:431
107
  msgid ""
108
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
109
  "version 1 features."
110
  msgstr ""
111
 
112
+ #: google-captcha.php:446
113
  #, fuzzy, php-format
114
  msgid ""
115
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
118
  "अगर आप अपने खुद के फार्म में गूगल कैप्चा जोड़ना चाहते हैं तो बस इस शॉर्टकोड को अपने पृष्ठ या "
119
  "पोस्ट पर कॉपी और पेस्ट करेँ ।"
120
 
121
+ #: google-captcha.php:452
122
  #, php-format
123
  msgid ""
124
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
127
  "your own form , please use the shortcode %s"
128
  msgstr ""
129
 
130
+ #: google-captcha.php:460
131
  msgid "Authentication"
132
  msgstr "प्रमाणीकरण"
133
 
134
+ #: google-captcha.php:461
135
  #, fuzzy, php-format
136
  msgid "Before you are able to do something, you must to register %shere%s"
137
  msgstr " कुछ भी करने से पहले %s यहाँ %s पंजीकरण करायें "
138
 
139
+ #: google-captcha.php:462
140
  msgid "Enter site key and secret key, that you get after registration."
141
  msgstr "पंजीकरण के बाद जो साइट कुंजी और गुप्त कुंजी मिलती है उसे दर्ज करें।"
142
 
143
+ #: google-captcha.php:477
144
  #, fuzzy
145
  msgid "Test Keys"
146
  msgstr "गुप्त कुंजी"
147
 
148
+ #: google-captcha.php:480
149
  msgid "Options"
150
  msgstr "विकल्प"
151
 
152
+ #: google-captcha.php:483
153
  msgid "Enable reCAPTCHA for"
154
  msgstr ""
155
 
156
+ #: google-captcha.php:487
157
  #, fuzzy
158
  msgid "WordPress default"
159
  msgstr "वर्डप्रेस संस्करण"
160
 
161
+ #: google-captcha.php:496
162
  msgid "This option is available only for network or for main blog"
163
  msgstr ""
164
 
165
+ #: google-captcha.php:504
166
  msgid "Plugins"
167
  msgstr "प्लगइन्स"
168
 
169
+ #: google-captcha.php:512 google-captcha.php:517
170
  #, php-format
171
  msgid "You should %s to use this functionality"
172
  msgstr ""
173
 
174
+ #: google-captcha.php:513
175
  #, fuzzy
176
  msgid "activate"
177
  msgstr "सक्रिय"
178
 
179
+ #: google-captcha.php:513
180
  msgid "for network"
181
  msgstr ""
182
 
183
+ #: google-captcha.php:518
184
  msgid "download"
185
  msgstr ""
186
 
187
+ #: google-captcha.php:522
188
+ msgid "Check off for adding captcha to forms on their settings pages."
189
+ msgstr ""
190
+
191
+ #: google-captcha.php:533 google-captcha.php:610
192
  msgid "Close"
193
  msgstr ""
194
 
195
+ #: google-captcha.php:545 google-captcha.php:646
196
  msgid "Unlock premium options by upgrading to Pro version"
197
  msgstr ""
198
 
199
+ #: google-captcha.php:548 google-captcha.php:649
200
  msgid "Learn More"
201
  msgstr ""
202
 
203
+ #: google-captcha.php:554
204
  #, php-format
205
  msgid ""
206
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
207
  msgstr ""
208
 
209
+ #: google-captcha.php:554 google-captcha.php:1151
210
  msgid "FAQ"
211
  msgstr "सामान्यतःपूछे जाने वाले प्रश्न (फ ए क्यू )"
212
 
213
+ #: google-captcha.php:559
214
  #, fuzzy
215
  msgid "Hide reCAPTCHA in Comments form for"
216
  msgstr "रीकैप्चा संस्करण के लिए"
217
 
218
+ #: google-captcha.php:571
219
  #, fuzzy
220
  msgid "reCAPTCHA version"
221
  msgstr "रीकैप्चा संस्करण:"
222
 
223
+ #: google-captcha.php:574 google-captcha.php:575 google-captcha.php:576
224
+ #: google-captcha.php:577
225
  msgid "version"
226
  msgstr "संस्करण"
227
 
228
+ #: google-captcha.php:583 google-captcha.php:596
229
  #, fuzzy
230
  msgid "reCAPTCHA theme"
231
  msgstr "रीकैप्चा संस्करण:"
232
 
233
+ #: google-captcha.php:584 google-captcha.php:597 google-captcha.php:628
234
  #, fuzzy
235
  msgid "for version"
236
  msgstr "संस्करण"
237
 
238
+ #: google-captcha.php:614
239
  #, fuzzy
240
  msgid "reCAPTCHA language"
241
  msgstr "रीकैप्चा संस्करण:"
242
 
243
+ #: google-captcha.php:621
244
  msgid "Use the current site language"
245
  msgstr ""
246
 
247
+ #: google-captcha.php:621
248
  msgid "Using"
249
  msgstr ""
250
 
251
+ #: google-captcha.php:627
252
  #, fuzzy
253
  msgid "reCAPTCHA size"
254
  msgstr "रीकैप्चा संस्करण:"
255
 
256
+ #: google-captcha.php:656
257
  msgid "Save Changes"
258
  msgstr "परिवर्तनों को सुरक्षित करें"
259
 
260
+ #: google-captcha.php:710 google-captcha.php:1167
261
  msgid "To use Google Captcha you must get the keys from"
262
  msgstr "गूगल कॅप्चा का उपयोग करने के लिए,आप कुंजी लें "
263
 
264
+ #: google-captcha.php:711 google-captcha.php:1168
265
  msgid "here"
266
  msgstr "यहाँ से "
267
 
268
+ #: google-captcha.php:712 google-captcha.php:1169
269
  msgid "and enter them on the"
270
  msgstr "और उन्हें दर्ज करें "
271
 
272
+ #: google-captcha.php:714 google-captcha.php:1171
273
  msgid "plugin setting page"
274
  msgstr "प्लगइन सेटिंग पृष्ठ पर "
275
 
276
+ #: google-captcha.php:900 google-captcha.php:948
277
  msgid "Error"
278
  msgstr "त्रुटि"
279
 
280
+ #: google-captcha.php:900 google-captcha.php:948
281
  #, fuzzy
282
  msgid "You have entered an incorrect reCAPTCHA value."
283
  msgstr "आपने एक गलत कॅप्चा मान दर्ज किया है।"
284
 
285
+ #: google-captcha.php:978 google-captcha.php:1007 google-captcha.php:1033
286
+ msgid "ERROR"
287
+ msgstr ""
288
+
289
+ #: google-captcha.php:978 google-captcha.php:1007
290
  #, fuzzy
291
  msgid "You have entered an incorrect reCAPTCHA value"
292
  msgstr "आपने एक गलत कॅप्चा मान दर्ज किया है।"
293
 
294
+ #: google-captcha.php:1033
 
 
 
 
295
  #, fuzzy
296
  msgid ""
297
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
300
  "त्रुटि: आपने एक गलत कॅप्चा मान दर्ज किया है। अपने ब्राउज़र पर वापस बटन क्लिक करें, और फिर "
301
  "कोशिश करें।"
302
 
303
+ #: google-captcha.php:1064
304
  msgid "Please, complete the captcha and submit \"Test verification\""
305
  msgstr ""
306
 
307
+ #: google-captcha.php:1068
308
  msgid "Test verification"
309
  msgstr ""
310
 
311
+ #: google-captcha.php:1082 google-captcha.php:1091
312
  msgid "The user response was missing."
313
  msgstr ""
314
 
315
+ #: google-captcha.php:1084
316
  msgid "The Secret Key is missing."
317
  msgstr ""
318
 
319
+ #: google-captcha.php:1087 google-captcha.php:1096
320
  msgid "The Secret Key is invalid"
321
  msgstr ""
322
 
323
+ #: google-captcha.php:1088 google-captcha.php:1097
324
  msgid "Check your domain configuration"
325
  msgstr ""
326
 
327
+ #: google-captcha.php:1089 google-captcha.php:1098
328
  #, fuzzy
329
  msgid "and enter it again"
330
  msgstr "और उन्हें दर्ज करें "
331
 
332
+ #: google-captcha.php:1092 google-captcha.php:1100
333
  msgid "The user response is invalid."
334
  msgstr ""
335
 
336
+ #: google-captcha.php:1109
337
  msgid "The verification is successfully completed."
338
  msgstr ""
339
 
340
+ #: google-captcha.php:1152
341
  msgid "Support"
342
  msgstr "सहयोग"
343
 
languages/google-captcha-it_IT.mo CHANGED
Binary file
languages/google-captcha-it_IT.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: 2016-04-05 17:14+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Istvan <wart17@hotmail.com>\n"
@@ -17,99 +17,99 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:34 google-captcha.php:367
21
  msgid "Google Captcha Settings"
22
  msgstr "Impostazioni Google Captcha"
23
 
24
- #: google-captcha.php:154
25
  msgid "Warning"
26
  msgstr ""
27
 
28
- #: google-captcha.php:154
29
  msgid ""
30
  "It has been found more than one reCAPTCHA in current form. In this case "
31
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
32
  "blocks."
33
  msgstr ""
34
 
35
- #: google-captcha.php:158
36
  #, fuzzy
37
  msgid "Error: You have entered an incorrect reCAPTCHA value."
38
  msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
39
 
40
- #: google-captcha.php:272
41
  msgid "Normal"
42
  msgstr ""
43
 
44
- #: google-captcha.php:273
45
  msgid "Compact"
46
  msgstr ""
47
 
48
- #: google-captcha.php:279
49
  msgid "Site key"
50
  msgstr "Chiave del sito"
51
 
52
- #: google-captcha.php:284
53
  msgid "Secret Key"
54
  msgstr "Chiave segreta"
55
 
56
- #: google-captcha.php:292
57
  msgid "Login form"
58
  msgstr "Form di accesso"
59
 
60
- #: google-captcha.php:293
61
  msgid "Registration form"
62
  msgstr "Form di registrazione"
63
 
64
- #: google-captcha.php:294
65
  msgid "Reset password form"
66
  msgstr "Form per resettare la password"
67
 
68
- #: google-captcha.php:295
69
  msgid "Comments form"
70
  msgstr "Form dei commenti"
71
 
72
- #: google-captcha.php:314
73
  msgid "Enter site key"
74
  msgstr "Introduci la Chiave del sito"
75
 
76
- #: google-captcha.php:315 google-captcha.php:321
77
  msgid "WARNING: The captcha will not display while you don't fill key fields."
78
  msgstr ""
79
  "ATTENZIONE: Il Captcha non verrà mostrato mentre non riempi i campi chiave."
80
 
81
- #: google-captcha.php:320
82
  msgid "Enter secret key"
83
  msgstr "Introduci la Chiave segreta"
84
 
85
- #: google-captcha.php:346
86
  msgid "Settings saved"
87
  msgstr "Impostazioni salvate"
88
 
89
- #: google-captcha.php:352
90
  #, fuzzy
91
  msgid "All plugin settings were restored."
92
  msgstr "pagina di configurazione del plugin"
93
 
94
- #: google-captcha.php:369 google-captcha.php:1040 google-captcha.php:1073
95
  msgid "Settings"
96
  msgstr "Impostazioni"
97
 
98
- #: google-captcha.php:370
99
  msgid "Custom code"
100
  msgstr ""
101
 
102
- #: google-captcha.php:371
103
  msgid "Go PRO"
104
  msgstr ""
105
 
106
- #: google-captcha.php:376
107
  msgid ""
108
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
109
  "version 1 features."
110
  msgstr ""
111
 
112
- #: google-captcha.php:391
113
  #, fuzzy, php-format
114
  msgid ""
115
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -118,7 +118,7 @@ msgstr ""
118
  "Se desideri aggiungere Google Captcha ad un tuo form, devi semplicemente "
119
  "copiare ed incollare questo codice nel tuo post o pagina:"
120
 
121
- #: google-captcha.php:397
122
  #, php-format
123
  msgid ""
124
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -127,169 +127,173 @@ msgid ""
127
  "your own form , please use the shortcode %s"
128
  msgstr ""
129
 
130
- #: google-captcha.php:405
131
  msgid "Authentication"
132
  msgstr "Autenticazione"
133
 
134
- #: google-captcha.php:406
135
  #, fuzzy, php-format
136
  msgid "Before you are able to do something, you must to register %shere%s"
137
  msgstr "Prima di poter fare qualcosa, devi registrare %s qui %s"
138
 
139
- #: google-captcha.php:407
140
  msgid "Enter site key and secret key, that you get after registration."
141
  msgstr ""
142
  "Introduci la Chiave del sito e la Chiave segreta, che si ottengono dopo la "
143
  "registrazione."
144
 
145
- #: google-captcha.php:422
146
  #, fuzzy
147
  msgid "Test Keys"
148
  msgstr "Chiave segreta"
149
 
150
- #: google-captcha.php:425
151
  msgid "Options"
152
  msgstr "Opzioni"
153
 
154
- #: google-captcha.php:428
155
  msgid "Enable reCAPTCHA for"
156
  msgstr ""
157
 
158
- #: google-captcha.php:432
159
  msgid "WordPress default"
160
  msgstr ""
161
 
162
- #: google-captcha.php:441
163
  msgid "This option is available only for network or for main blog"
164
  msgstr ""
165
 
166
- #: google-captcha.php:449
167
  #, fuzzy
168
  msgid "Plugins"
169
  msgstr "Pagina dei plugins"
170
 
171
- #: google-captcha.php:457 google-captcha.php:462
172
  #, php-format
173
  msgid "You should %s to use this functionality"
174
  msgstr ""
175
 
176
- #: google-captcha.php:458
177
  #, fuzzy
178
  msgid "activate"
179
  msgstr "Tema Activado"
180
 
181
- #: google-captcha.php:458
182
  msgid "for network"
183
  msgstr ""
184
 
185
- #: google-captcha.php:463
186
  msgid "download"
187
  msgstr ""
188
 
189
- #: google-captcha.php:475 google-captcha.php:552
 
 
 
 
190
  msgid "Close"
191
  msgstr ""
192
 
193
- #: google-captcha.php:487 google-captcha.php:588
194
  msgid "Unlock premium options by upgrading to Pro version"
195
  msgstr ""
196
 
197
- #: google-captcha.php:490 google-captcha.php:591
198
  msgid "Learn More"
199
  msgstr ""
200
 
201
- #: google-captcha.php:496
202
  #, php-format
203
  msgid ""
204
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
205
  msgstr ""
206
 
207
- #: google-captcha.php:496 google-captcha.php:1074
208
  msgid "FAQ"
209
  msgstr "Domande frequenti"
210
 
211
- #: google-captcha.php:501
212
  #, fuzzy
213
  msgid "Hide reCAPTCHA in Comments form for"
214
  msgstr "per reCAPTCHA versione"
215
 
216
- #: google-captcha.php:513
217
  #, fuzzy
218
  msgid "reCAPTCHA version"
219
  msgstr "reCAPTCHA versione:"
220
 
221
- #: google-captcha.php:516 google-captcha.php:517 google-captcha.php:518
222
- #: google-captcha.php:519
223
  msgid "version"
224
  msgstr "versione"
225
 
226
- #: google-captcha.php:525 google-captcha.php:538
227
  #, fuzzy
228
  msgid "reCAPTCHA theme"
229
  msgstr "reCAPTCHA versione:"
230
 
231
- #: google-captcha.php:526 google-captcha.php:539 google-captcha.php:570
232
  #, fuzzy
233
  msgid "for version"
234
  msgstr "versione"
235
 
236
- #: google-captcha.php:556
237
  #, fuzzy
238
  msgid "reCAPTCHA language"
239
  msgstr "reCAPTCHA versione:"
240
 
241
- #: google-captcha.php:563
242
  msgid "Use the current site language"
243
  msgstr ""
244
 
245
- #: google-captcha.php:563
246
  msgid "Using"
247
  msgstr ""
248
 
249
- #: google-captcha.php:569
250
  #, fuzzy
251
  msgid "reCAPTCHA size"
252
  msgstr "reCAPTCHA versione:"
253
 
254
- #: google-captcha.php:598
255
  msgid "Save Changes"
256
  msgstr "Salva modifiche"
257
 
258
- #: google-captcha.php:652 google-captcha.php:1090
259
  msgid "To use Google Captcha you must get the keys from"
260
  msgstr "Per utilizzare Google Captcha devi ottenere le chiavi da"
261
 
262
- #: google-captcha.php:653 google-captcha.php:1091
263
  msgid "here"
264
  msgstr "qui"
265
 
266
- #: google-captcha.php:654 google-captcha.php:1092
267
  msgid "and enter them on the"
268
  msgstr "ed introducili in"
269
 
270
- #: google-captcha.php:656 google-captcha.php:1094
271
  msgid "plugin setting page"
272
  msgstr "pagina di configurazione del plugin"
273
 
274
- #: google-captcha.php:842 google-captcha.php:880
275
  msgid "Error"
276
  msgstr ""
277
 
278
- #: google-captcha.php:842
279
  #, fuzzy
280
  msgid "You have entered an incorrect reCAPTCHA value."
281
  msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
282
 
283
- #: google-captcha.php:880 google-captcha.php:897 google-captcha.php:926
 
 
 
 
284
  #, fuzzy
285
  msgid "You have entered an incorrect reCAPTCHA value"
286
  msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
287
 
288
- #: google-captcha.php:897 google-captcha.php:926 google-captcha.php:952
289
- msgid "ERROR"
290
- msgstr ""
291
-
292
- #: google-captcha.php:952
293
  #, fuzzy
294
  msgid ""
295
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -298,44 +302,44 @@ msgstr ""
298
  "Errore: Hai introdotto un valore CAPTCHA errato. Fai click sul bottone "
299
  "Indietro del tuo browser e riprova."
300
 
301
- #: google-captcha.php:976
302
  msgid "Please, complete the captcha and submit \"Test verification\""
303
  msgstr ""
304
 
305
- #: google-captcha.php:980
306
  msgid "Test verification"
307
  msgstr ""
308
 
309
- #: google-captcha.php:994 google-captcha.php:1003
310
  msgid "The user response was missing."
311
  msgstr ""
312
 
313
- #: google-captcha.php:996
314
  msgid "The Secret Key is missing."
315
  msgstr ""
316
 
317
- #: google-captcha.php:999 google-captcha.php:1008
318
  msgid "The Secret Key is invalid"
319
  msgstr ""
320
 
321
- #: google-captcha.php:1000 google-captcha.php:1009
322
  msgid "Check your domain configuration"
323
  msgstr ""
324
 
325
- #: google-captcha.php:1001 google-captcha.php:1010
326
  #, fuzzy
327
  msgid "and enter it again"
328
  msgstr "ed introducili in"
329
 
330
- #: google-captcha.php:1004 google-captcha.php:1012
331
  msgid "The user response is invalid."
332
  msgstr ""
333
 
334
- #: google-captcha.php:1021
335
  msgid "The verification is successfully completed."
336
  msgstr ""
337
 
338
- #: google-captcha.php:1075
339
  msgid "Support"
340
  msgstr "Supporto"
341
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-25 11:34+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Istvan <wart17@hotmail.com>\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: google-captcha.php:34 google-captcha.php:422
21
  msgid "Google Captcha Settings"
22
  msgstr "Impostazioni Google Captcha"
23
 
24
+ #: google-captcha.php:202
25
  msgid "Warning"
26
  msgstr ""
27
 
28
+ #: google-captcha.php:202
29
  msgid ""
30
  "It has been found more than one reCAPTCHA in current form. In this case "
31
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
32
  "blocks."
33
  msgstr ""
34
 
35
+ #: google-captcha.php:206
36
  #, fuzzy
37
  msgid "Error: You have entered an incorrect reCAPTCHA value."
38
  msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
39
 
40
+ #: google-captcha.php:327
41
  msgid "Normal"
42
  msgstr ""
43
 
44
+ #: google-captcha.php:328
45
  msgid "Compact"
46
  msgstr ""
47
 
48
+ #: google-captcha.php:334
49
  msgid "Site key"
50
  msgstr "Chiave del sito"
51
 
52
+ #: google-captcha.php:339
53
  msgid "Secret Key"
54
  msgstr "Chiave segreta"
55
 
56
+ #: google-captcha.php:347
57
  msgid "Login form"
58
  msgstr "Form di accesso"
59
 
60
+ #: google-captcha.php:348
61
  msgid "Registration form"
62
  msgstr "Form di registrazione"
63
 
64
+ #: google-captcha.php:349
65
  msgid "Reset password form"
66
  msgstr "Form per resettare la password"
67
 
68
+ #: google-captcha.php:350
69
  msgid "Comments form"
70
  msgstr "Form dei commenti"
71
 
72
+ #: google-captcha.php:369
73
  msgid "Enter site key"
74
  msgstr "Introduci la Chiave del sito"
75
 
76
+ #: google-captcha.php:370 google-captcha.php:376
77
  msgid "WARNING: The captcha will not display while you don't fill key fields."
78
  msgstr ""
79
  "ATTENZIONE: Il Captcha non verrà mostrato mentre non riempi i campi chiave."
80
 
81
+ #: google-captcha.php:375
82
  msgid "Enter secret key"
83
  msgstr "Introduci la Chiave segreta"
84
 
85
+ #: google-captcha.php:401
86
  msgid "Settings saved"
87
  msgstr "Impostazioni salvate"
88
 
89
+ #: google-captcha.php:407
90
  #, fuzzy
91
  msgid "All plugin settings were restored."
92
  msgstr "pagina di configurazione del plugin"
93
 
94
+ #: google-captcha.php:424 google-captcha.php:1128 google-captcha.php:1150
95
  msgid "Settings"
96
  msgstr "Impostazioni"
97
 
98
+ #: google-captcha.php:425
99
  msgid "Custom code"
100
  msgstr ""
101
 
102
+ #: google-captcha.php:426
103
  msgid "Go PRO"
104
  msgstr ""
105
 
106
+ #: google-captcha.php:431
107
  msgid ""
108
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
109
  "version 1 features."
110
  msgstr ""
111
 
112
+ #: google-captcha.php:446
113
  #, fuzzy, php-format
114
  msgid ""
115
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
118
  "Se desideri aggiungere Google Captcha ad un tuo form, devi semplicemente "
119
  "copiare ed incollare questo codice nel tuo post o pagina:"
120
 
121
+ #: google-captcha.php:452
122
  #, php-format
123
  msgid ""
124
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
127
  "your own form , please use the shortcode %s"
128
  msgstr ""
129
 
130
+ #: google-captcha.php:460
131
  msgid "Authentication"
132
  msgstr "Autenticazione"
133
 
134
+ #: google-captcha.php:461
135
  #, fuzzy, php-format
136
  msgid "Before you are able to do something, you must to register %shere%s"
137
  msgstr "Prima di poter fare qualcosa, devi registrare %s qui %s"
138
 
139
+ #: google-captcha.php:462
140
  msgid "Enter site key and secret key, that you get after registration."
141
  msgstr ""
142
  "Introduci la Chiave del sito e la Chiave segreta, che si ottengono dopo la "
143
  "registrazione."
144
 
145
+ #: google-captcha.php:477
146
  #, fuzzy
147
  msgid "Test Keys"
148
  msgstr "Chiave segreta"
149
 
150
+ #: google-captcha.php:480
151
  msgid "Options"
152
  msgstr "Opzioni"
153
 
154
+ #: google-captcha.php:483
155
  msgid "Enable reCAPTCHA for"
156
  msgstr ""
157
 
158
+ #: google-captcha.php:487
159
  msgid "WordPress default"
160
  msgstr ""
161
 
162
+ #: google-captcha.php:496
163
  msgid "This option is available only for network or for main blog"
164
  msgstr ""
165
 
166
+ #: google-captcha.php:504
167
  #, fuzzy
168
  msgid "Plugins"
169
  msgstr "Pagina dei plugins"
170
 
171
+ #: google-captcha.php:512 google-captcha.php:517
172
  #, php-format
173
  msgid "You should %s to use this functionality"
174
  msgstr ""
175
 
176
+ #: google-captcha.php:513
177
  #, fuzzy
178
  msgid "activate"
179
  msgstr "Tema Activado"
180
 
181
+ #: google-captcha.php:513
182
  msgid "for network"
183
  msgstr ""
184
 
185
+ #: google-captcha.php:518
186
  msgid "download"
187
  msgstr ""
188
 
189
+ #: google-captcha.php:522
190
+ msgid "Check off for adding captcha to forms on their settings pages."
191
+ msgstr ""
192
+
193
+ #: google-captcha.php:533 google-captcha.php:610
194
  msgid "Close"
195
  msgstr ""
196
 
197
+ #: google-captcha.php:545 google-captcha.php:646
198
  msgid "Unlock premium options by upgrading to Pro version"
199
  msgstr ""
200
 
201
+ #: google-captcha.php:548 google-captcha.php:649
202
  msgid "Learn More"
203
  msgstr ""
204
 
205
+ #: google-captcha.php:554
206
  #, php-format
207
  msgid ""
208
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
209
  msgstr ""
210
 
211
+ #: google-captcha.php:554 google-captcha.php:1151
212
  msgid "FAQ"
213
  msgstr "Domande frequenti"
214
 
215
+ #: google-captcha.php:559
216
  #, fuzzy
217
  msgid "Hide reCAPTCHA in Comments form for"
218
  msgstr "per reCAPTCHA versione"
219
 
220
+ #: google-captcha.php:571
221
  #, fuzzy
222
  msgid "reCAPTCHA version"
223
  msgstr "reCAPTCHA versione:"
224
 
225
+ #: google-captcha.php:574 google-captcha.php:575 google-captcha.php:576
226
+ #: google-captcha.php:577
227
  msgid "version"
228
  msgstr "versione"
229
 
230
+ #: google-captcha.php:583 google-captcha.php:596
231
  #, fuzzy
232
  msgid "reCAPTCHA theme"
233
  msgstr "reCAPTCHA versione:"
234
 
235
+ #: google-captcha.php:584 google-captcha.php:597 google-captcha.php:628
236
  #, fuzzy
237
  msgid "for version"
238
  msgstr "versione"
239
 
240
+ #: google-captcha.php:614
241
  #, fuzzy
242
  msgid "reCAPTCHA language"
243
  msgstr "reCAPTCHA versione:"
244
 
245
+ #: google-captcha.php:621
246
  msgid "Use the current site language"
247
  msgstr ""
248
 
249
+ #: google-captcha.php:621
250
  msgid "Using"
251
  msgstr ""
252
 
253
+ #: google-captcha.php:627
254
  #, fuzzy
255
  msgid "reCAPTCHA size"
256
  msgstr "reCAPTCHA versione:"
257
 
258
+ #: google-captcha.php:656
259
  msgid "Save Changes"
260
  msgstr "Salva modifiche"
261
 
262
+ #: google-captcha.php:710 google-captcha.php:1167
263
  msgid "To use Google Captcha you must get the keys from"
264
  msgstr "Per utilizzare Google Captcha devi ottenere le chiavi da"
265
 
266
+ #: google-captcha.php:711 google-captcha.php:1168
267
  msgid "here"
268
  msgstr "qui"
269
 
270
+ #: google-captcha.php:712 google-captcha.php:1169
271
  msgid "and enter them on the"
272
  msgstr "ed introducili in"
273
 
274
+ #: google-captcha.php:714 google-captcha.php:1171
275
  msgid "plugin setting page"
276
  msgstr "pagina di configurazione del plugin"
277
 
278
+ #: google-captcha.php:900 google-captcha.php:948
279
  msgid "Error"
280
  msgstr ""
281
 
282
+ #: google-captcha.php:900 google-captcha.php:948
283
  #, fuzzy
284
  msgid "You have entered an incorrect reCAPTCHA value."
285
  msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
286
 
287
+ #: google-captcha.php:978 google-captcha.php:1007 google-captcha.php:1033
288
+ msgid "ERROR"
289
+ msgstr ""
290
+
291
+ #: google-captcha.php:978 google-captcha.php:1007
292
  #, fuzzy
293
  msgid "You have entered an incorrect reCAPTCHA value"
294
  msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
295
 
296
+ #: google-captcha.php:1033
 
 
 
 
297
  #, fuzzy
298
  msgid ""
299
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
302
  "Errore: Hai introdotto un valore CAPTCHA errato. Fai click sul bottone "
303
  "Indietro del tuo browser e riprova."
304
 
305
+ #: google-captcha.php:1064
306
  msgid "Please, complete the captcha and submit \"Test verification\""
307
  msgstr ""
308
 
309
+ #: google-captcha.php:1068
310
  msgid "Test verification"
311
  msgstr ""
312
 
313
+ #: google-captcha.php:1082 google-captcha.php:1091
314
  msgid "The user response was missing."
315
  msgstr ""
316
 
317
+ #: google-captcha.php:1084
318
  msgid "The Secret Key is missing."
319
  msgstr ""
320
 
321
+ #: google-captcha.php:1087 google-captcha.php:1096
322
  msgid "The Secret Key is invalid"
323
  msgstr ""
324
 
325
+ #: google-captcha.php:1088 google-captcha.php:1097
326
  msgid "Check your domain configuration"
327
  msgstr ""
328
 
329
+ #: google-captcha.php:1089 google-captcha.php:1098
330
  #, fuzzy
331
  msgid "and enter it again"
332
  msgstr "ed introducili in"
333
 
334
+ #: google-captcha.php:1092 google-captcha.php:1100
335
  msgid "The user response is invalid."
336
  msgstr ""
337
 
338
+ #: google-captcha.php:1109
339
  msgid "The verification is successfully completed."
340
  msgstr ""
341
 
342
+ #: google-captcha.php:1152
343
  msgid "Support"
344
  msgstr "Supporto"
345
 
languages/google-captcha-pl_PL.mo CHANGED
Binary file
languages/google-captcha-pl_PL.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: 2016-04-05 17:14+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
@@ -18,102 +18,102 @@ msgstr ""
18
  "|| n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: google-captcha.php:34 google-captcha.php:367
22
  msgid "Google Captcha Settings"
23
  msgstr "Ustawienia Google Captcha"
24
 
25
- #: google-captcha.php:154
26
  msgid "Warning"
27
  msgstr ""
28
 
29
- #: google-captcha.php:154
30
  msgid ""
31
  "It has been found more than one reCAPTCHA in current form. In this case "
32
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
33
  "blocks."
34
  msgstr ""
35
 
36
- #: google-captcha.php:158
37
  #, fuzzy
38
  msgid "Error: You have entered an incorrect reCAPTCHA value."
39
  msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
40
 
41
- #: google-captcha.php:272
42
  msgid "Normal"
43
  msgstr ""
44
 
45
- #: google-captcha.php:273
46
  msgid "Compact"
47
  msgstr ""
48
 
49
- #: google-captcha.php:279
50
  msgid "Site key"
51
  msgstr ""
52
 
53
- #: google-captcha.php:284
54
  msgid "Secret Key"
55
  msgstr ""
56
 
57
- #: google-captcha.php:292
58
  msgid "Login form"
59
  msgstr "Formularz logowania"
60
 
61
- #: google-captcha.php:293
62
  msgid "Registration form"
63
  msgstr "Formularz rejestracji"
64
 
65
- #: google-captcha.php:294
66
  msgid "Reset password form"
67
  msgstr "Formularz odzyskiwania hasła"
68
 
69
- #: google-captcha.php:295
70
  msgid "Comments form"
71
  msgstr "Formularz komentarza"
72
 
73
- #: google-captcha.php:314
74
  #, fuzzy
75
  msgid "Enter site key"
76
  msgstr "Wprowadź klucz prywatny"
77
 
78
- #: google-captcha.php:315 google-captcha.php:321
79
  msgid "WARNING: The captcha will not display while you don't fill key fields."
80
  msgstr ""
81
  "OSTRZEŻENIE: Kod captcha nie będzie wyświetlany, jeżeli nie wprowadzisz "
82
  "kluczy."
83
 
84
- #: google-captcha.php:320
85
  #, fuzzy
86
  msgid "Enter secret key"
87
  msgstr "Wprowadź klucz prywatny"
88
 
89
- #: google-captcha.php:346
90
  msgid "Settings saved"
91
  msgstr "Ustawienia zapisane"
92
 
93
- #: google-captcha.php:352
94
  #, fuzzy
95
  msgid "All plugin settings were restored."
96
  msgstr "stronie ustawień wtyczki"
97
 
98
- #: google-captcha.php:369 google-captcha.php:1040 google-captcha.php:1073
99
  msgid "Settings"
100
  msgstr "Ustawienia"
101
 
102
- #: google-captcha.php:370
103
  msgid "Custom code"
104
  msgstr ""
105
 
106
- #: google-captcha.php:371
107
  msgid "Go PRO"
108
  msgstr ""
109
 
110
- #: google-captcha.php:376
111
  msgid ""
112
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
113
  "version 1 features."
114
  msgstr ""
115
 
116
- #: google-captcha.php:391
117
  #, fuzzy, php-format
118
  msgid ""
119
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -122,7 +122,7 @@ msgstr ""
122
  "Jeżeli chcesz umieścić wtyczkę Google Captcha we własnym formularzu, po "
123
  "prostu skopiuj i wklej ten kod w swoim poście lub na swojej stronie:"
124
 
125
- #: google-captcha.php:397
126
  #, php-format
127
  msgid ""
128
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -131,162 +131,166 @@ msgid ""
131
  "your own form , please use the shortcode %s"
132
  msgstr ""
133
 
134
- #: google-captcha.php:405
135
  msgid "Authentication"
136
  msgstr "Uwierzytelnianie"
137
 
138
- #: google-captcha.php:406
139
  #, fuzzy, php-format
140
  msgid "Before you are able to do something, you must to register %shere%s"
141
  msgstr "Aby móc cokolwiek zrobić, musisz się zarejestrować %s tutaj %s"
142
 
143
- #: google-captcha.php:407
144
  #, fuzzy
145
  msgid "Enter site key and secret key, that you get after registration."
146
  msgstr ""
147
  "Wprowadź swój klucz publiczny i prywatny, uzyskane po dokonaniu rejestracji."
148
 
149
- #: google-captcha.php:422
150
  msgid "Test Keys"
151
  msgstr ""
152
 
153
- #: google-captcha.php:425
154
  msgid "Options"
155
  msgstr "Opcje"
156
 
157
- #: google-captcha.php:428
158
  msgid "Enable reCAPTCHA for"
159
  msgstr ""
160
 
161
- #: google-captcha.php:432
162
  msgid "WordPress default"
163
  msgstr ""
164
 
165
- #: google-captcha.php:441
166
  msgid "This option is available only for network or for main blog"
167
  msgstr ""
168
 
169
- #: google-captcha.php:449
170
  #, fuzzy
171
  msgid "Plugins"
172
  msgstr "Strona Wtyczki"
173
 
174
- #: google-captcha.php:457 google-captcha.php:462
175
  #, php-format
176
  msgid "You should %s to use this functionality"
177
  msgstr ""
178
 
179
- #: google-captcha.php:458
180
  #, fuzzy
181
  msgid "activate"
182
  msgstr "Motyw aktywny"
183
 
184
- #: google-captcha.php:458
185
  msgid "for network"
186
  msgstr ""
187
 
188
- #: google-captcha.php:463
189
  msgid "download"
190
  msgstr ""
191
 
192
- #: google-captcha.php:475 google-captcha.php:552
 
 
 
 
193
  msgid "Close"
194
  msgstr ""
195
 
196
- #: google-captcha.php:487 google-captcha.php:588
197
  msgid "Unlock premium options by upgrading to Pro version"
198
  msgstr ""
199
 
200
- #: google-captcha.php:490 google-captcha.php:591
201
  msgid "Learn More"
202
  msgstr ""
203
 
204
- #: google-captcha.php:496
205
  #, php-format
206
  msgid ""
207
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
208
  msgstr ""
209
 
210
- #: google-captcha.php:496 google-captcha.php:1074
211
  msgid "FAQ"
212
  msgstr "FAQ"
213
 
214
- #: google-captcha.php:501
215
  msgid "Hide reCAPTCHA in Comments form for"
216
  msgstr ""
217
 
218
- #: google-captcha.php:513
219
  msgid "reCAPTCHA version"
220
  msgstr ""
221
 
222
- #: google-captcha.php:516 google-captcha.php:517 google-captcha.php:518
223
- #: google-captcha.php:519
224
  msgid "version"
225
  msgstr ""
226
 
227
- #: google-captcha.php:525 google-captcha.php:538
228
  msgid "reCAPTCHA theme"
229
  msgstr ""
230
 
231
- #: google-captcha.php:526 google-captcha.php:539 google-captcha.php:570
232
  msgid "for version"
233
  msgstr ""
234
 
235
- #: google-captcha.php:556
236
  msgid "reCAPTCHA language"
237
  msgstr ""
238
 
239
- #: google-captcha.php:563
240
  msgid "Use the current site language"
241
  msgstr ""
242
 
243
- #: google-captcha.php:563
244
  msgid "Using"
245
  msgstr ""
246
 
247
- #: google-captcha.php:569
248
  msgid "reCAPTCHA size"
249
  msgstr ""
250
 
251
- #: google-captcha.php:598
252
  msgid "Save Changes"
253
  msgstr "Zapisz zmiany"
254
 
255
- #: google-captcha.php:652 google-captcha.php:1090
256
  msgid "To use Google Captcha you must get the keys from"
257
  msgstr "Aby korzystać z Google Captcha, musisz najpierw uzyskać klucze"
258
 
259
- #: google-captcha.php:653 google-captcha.php:1091
260
  msgid "here"
261
  msgstr "stąd"
262
 
263
- #: google-captcha.php:654 google-captcha.php:1092
264
  msgid "and enter them on the"
265
  msgstr "i wprowadzić je na"
266
 
267
- #: google-captcha.php:656 google-captcha.php:1094
268
  msgid "plugin setting page"
269
  msgstr "stronie ustawień wtyczki"
270
 
271
- #: google-captcha.php:842 google-captcha.php:880
272
  msgid "Error"
273
  msgstr ""
274
 
275
- #: google-captcha.php:842
276
  #, fuzzy
277
  msgid "You have entered an incorrect reCAPTCHA value."
278
  msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
279
 
280
- #: google-captcha.php:880 google-captcha.php:897 google-captcha.php:926
 
 
 
 
281
  #, fuzzy
282
  msgid "You have entered an incorrect reCAPTCHA value"
283
  msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
284
 
285
- #: google-captcha.php:897 google-captcha.php:926 google-captcha.php:952
286
- msgid "ERROR"
287
- msgstr ""
288
-
289
- #: google-captcha.php:952
290
  #, fuzzy
291
  msgid ""
292
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -295,44 +299,44 @@ msgstr ""
295
  "Błąd: wprowadzono nieprawidłowy kod CAPTCHA. Kliknij przycisk WSTECZ na "
296
  "pasku przeglądarki i spróbuj ponownie."
297
 
298
- #: google-captcha.php:976
299
  msgid "Please, complete the captcha and submit \"Test verification\""
300
  msgstr ""
301
 
302
- #: google-captcha.php:980
303
  msgid "Test verification"
304
  msgstr ""
305
 
306
- #: google-captcha.php:994 google-captcha.php:1003
307
  msgid "The user response was missing."
308
  msgstr ""
309
 
310
- #: google-captcha.php:996
311
  msgid "The Secret Key is missing."
312
  msgstr ""
313
 
314
- #: google-captcha.php:999 google-captcha.php:1008
315
  msgid "The Secret Key is invalid"
316
  msgstr ""
317
 
318
- #: google-captcha.php:1000 google-captcha.php:1009
319
  msgid "Check your domain configuration"
320
  msgstr ""
321
 
322
- #: google-captcha.php:1001 google-captcha.php:1010
323
  #, fuzzy
324
  msgid "and enter it again"
325
  msgstr "i wprowadzić je na"
326
 
327
- #: google-captcha.php:1004 google-captcha.php:1012
328
  msgid "The user response is invalid."
329
  msgstr ""
330
 
331
- #: google-captcha.php:1021
332
  msgid "The verification is successfully completed."
333
  msgstr ""
334
 
335
- #: google-captcha.php:1075
336
  msgid "Support"
337
  msgstr "Wsparcie"
338
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-25 11:34+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
18
  "|| n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: google-captcha.php:34 google-captcha.php:422
22
  msgid "Google Captcha Settings"
23
  msgstr "Ustawienia Google Captcha"
24
 
25
+ #: google-captcha.php:202
26
  msgid "Warning"
27
  msgstr ""
28
 
29
+ #: google-captcha.php:202
30
  msgid ""
31
  "It has been found more than one reCAPTCHA in current form. In this case "
32
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
33
  "blocks."
34
  msgstr ""
35
 
36
+ #: google-captcha.php:206
37
  #, fuzzy
38
  msgid "Error: You have entered an incorrect reCAPTCHA value."
39
  msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
40
 
41
+ #: google-captcha.php:327
42
  msgid "Normal"
43
  msgstr ""
44
 
45
+ #: google-captcha.php:328
46
  msgid "Compact"
47
  msgstr ""
48
 
49
+ #: google-captcha.php:334
50
  msgid "Site key"
51
  msgstr ""
52
 
53
+ #: google-captcha.php:339
54
  msgid "Secret Key"
55
  msgstr ""
56
 
57
+ #: google-captcha.php:347
58
  msgid "Login form"
59
  msgstr "Formularz logowania"
60
 
61
+ #: google-captcha.php:348
62
  msgid "Registration form"
63
  msgstr "Formularz rejestracji"
64
 
65
+ #: google-captcha.php:349
66
  msgid "Reset password form"
67
  msgstr "Formularz odzyskiwania hasła"
68
 
69
+ #: google-captcha.php:350
70
  msgid "Comments form"
71
  msgstr "Formularz komentarza"
72
 
73
+ #: google-captcha.php:369
74
  #, fuzzy
75
  msgid "Enter site key"
76
  msgstr "Wprowadź klucz prywatny"
77
 
78
+ #: google-captcha.php:370 google-captcha.php:376
79
  msgid "WARNING: The captcha will not display while you don't fill key fields."
80
  msgstr ""
81
  "OSTRZEŻENIE: Kod captcha nie będzie wyświetlany, jeżeli nie wprowadzisz "
82
  "kluczy."
83
 
84
+ #: google-captcha.php:375
85
  #, fuzzy
86
  msgid "Enter secret key"
87
  msgstr "Wprowadź klucz prywatny"
88
 
89
+ #: google-captcha.php:401
90
  msgid "Settings saved"
91
  msgstr "Ustawienia zapisane"
92
 
93
+ #: google-captcha.php:407
94
  #, fuzzy
95
  msgid "All plugin settings were restored."
96
  msgstr "stronie ustawień wtyczki"
97
 
98
+ #: google-captcha.php:424 google-captcha.php:1128 google-captcha.php:1150
99
  msgid "Settings"
100
  msgstr "Ustawienia"
101
 
102
+ #: google-captcha.php:425
103
  msgid "Custom code"
104
  msgstr ""
105
 
106
+ #: google-captcha.php:426
107
  msgid "Go PRO"
108
  msgstr ""
109
 
110
+ #: google-captcha.php:431
111
  msgid ""
112
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
113
  "version 1 features."
114
  msgstr ""
115
 
116
+ #: google-captcha.php:446
117
  #, fuzzy, php-format
118
  msgid ""
119
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
122
  "Jeżeli chcesz umieścić wtyczkę Google Captcha we własnym formularzu, po "
123
  "prostu skopiuj i wklej ten kod w swoim poście lub na swojej stronie:"
124
 
125
+ #: google-captcha.php:452
126
  #, php-format
127
  msgid ""
128
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
131
  "your own form , please use the shortcode %s"
132
  msgstr ""
133
 
134
+ #: google-captcha.php:460
135
  msgid "Authentication"
136
  msgstr "Uwierzytelnianie"
137
 
138
+ #: google-captcha.php:461
139
  #, fuzzy, php-format
140
  msgid "Before you are able to do something, you must to register %shere%s"
141
  msgstr "Aby móc cokolwiek zrobić, musisz się zarejestrować %s tutaj %s"
142
 
143
+ #: google-captcha.php:462
144
  #, fuzzy
145
  msgid "Enter site key and secret key, that you get after registration."
146
  msgstr ""
147
  "Wprowadź swój klucz publiczny i prywatny, uzyskane po dokonaniu rejestracji."
148
 
149
+ #: google-captcha.php:477
150
  msgid "Test Keys"
151
  msgstr ""
152
 
153
+ #: google-captcha.php:480
154
  msgid "Options"
155
  msgstr "Opcje"
156
 
157
+ #: google-captcha.php:483
158
  msgid "Enable reCAPTCHA for"
159
  msgstr ""
160
 
161
+ #: google-captcha.php:487
162
  msgid "WordPress default"
163
  msgstr ""
164
 
165
+ #: google-captcha.php:496
166
  msgid "This option is available only for network or for main blog"
167
  msgstr ""
168
 
169
+ #: google-captcha.php:504
170
  #, fuzzy
171
  msgid "Plugins"
172
  msgstr "Strona Wtyczki"
173
 
174
+ #: google-captcha.php:512 google-captcha.php:517
175
  #, php-format
176
  msgid "You should %s to use this functionality"
177
  msgstr ""
178
 
179
+ #: google-captcha.php:513
180
  #, fuzzy
181
  msgid "activate"
182
  msgstr "Motyw aktywny"
183
 
184
+ #: google-captcha.php:513
185
  msgid "for network"
186
  msgstr ""
187
 
188
+ #: google-captcha.php:518
189
  msgid "download"
190
  msgstr ""
191
 
192
+ #: google-captcha.php:522
193
+ msgid "Check off for adding captcha to forms on their settings pages."
194
+ msgstr ""
195
+
196
+ #: google-captcha.php:533 google-captcha.php:610
197
  msgid "Close"
198
  msgstr ""
199
 
200
+ #: google-captcha.php:545 google-captcha.php:646
201
  msgid "Unlock premium options by upgrading to Pro version"
202
  msgstr ""
203
 
204
+ #: google-captcha.php:548 google-captcha.php:649
205
  msgid "Learn More"
206
  msgstr ""
207
 
208
+ #: google-captcha.php:554
209
  #, php-format
210
  msgid ""
211
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
212
  msgstr ""
213
 
214
+ #: google-captcha.php:554 google-captcha.php:1151
215
  msgid "FAQ"
216
  msgstr "FAQ"
217
 
218
+ #: google-captcha.php:559
219
  msgid "Hide reCAPTCHA in Comments form for"
220
  msgstr ""
221
 
222
+ #: google-captcha.php:571
223
  msgid "reCAPTCHA version"
224
  msgstr ""
225
 
226
+ #: google-captcha.php:574 google-captcha.php:575 google-captcha.php:576
227
+ #: google-captcha.php:577
228
  msgid "version"
229
  msgstr ""
230
 
231
+ #: google-captcha.php:583 google-captcha.php:596
232
  msgid "reCAPTCHA theme"
233
  msgstr ""
234
 
235
+ #: google-captcha.php:584 google-captcha.php:597 google-captcha.php:628
236
  msgid "for version"
237
  msgstr ""
238
 
239
+ #: google-captcha.php:614
240
  msgid "reCAPTCHA language"
241
  msgstr ""
242
 
243
+ #: google-captcha.php:621
244
  msgid "Use the current site language"
245
  msgstr ""
246
 
247
+ #: google-captcha.php:621
248
  msgid "Using"
249
  msgstr ""
250
 
251
+ #: google-captcha.php:627
252
  msgid "reCAPTCHA size"
253
  msgstr ""
254
 
255
+ #: google-captcha.php:656
256
  msgid "Save Changes"
257
  msgstr "Zapisz zmiany"
258
 
259
+ #: google-captcha.php:710 google-captcha.php:1167
260
  msgid "To use Google Captcha you must get the keys from"
261
  msgstr "Aby korzystać z Google Captcha, musisz najpierw uzyskać klucze"
262
 
263
+ #: google-captcha.php:711 google-captcha.php:1168
264
  msgid "here"
265
  msgstr "stąd"
266
 
267
+ #: google-captcha.php:712 google-captcha.php:1169
268
  msgid "and enter them on the"
269
  msgstr "i wprowadzić je na"
270
 
271
+ #: google-captcha.php:714 google-captcha.php:1171
272
  msgid "plugin setting page"
273
  msgstr "stronie ustawień wtyczki"
274
 
275
+ #: google-captcha.php:900 google-captcha.php:948
276
  msgid "Error"
277
  msgstr ""
278
 
279
+ #: google-captcha.php:900 google-captcha.php:948
280
  #, fuzzy
281
  msgid "You have entered an incorrect reCAPTCHA value."
282
  msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
283
 
284
+ #: google-captcha.php:978 google-captcha.php:1007 google-captcha.php:1033
285
+ msgid "ERROR"
286
+ msgstr ""
287
+
288
+ #: google-captcha.php:978 google-captcha.php:1007
289
  #, fuzzy
290
  msgid "You have entered an incorrect reCAPTCHA value"
291
  msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
292
 
293
+ #: google-captcha.php:1033
 
 
 
 
294
  #, fuzzy
295
  msgid ""
296
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
299
  "Błąd: wprowadzono nieprawidłowy kod CAPTCHA. Kliknij przycisk WSTECZ na "
300
  "pasku przeglądarki i spróbuj ponownie."
301
 
302
+ #: google-captcha.php:1064
303
  msgid "Please, complete the captcha and submit \"Test verification\""
304
  msgstr ""
305
 
306
+ #: google-captcha.php:1068
307
  msgid "Test verification"
308
  msgstr ""
309
 
310
+ #: google-captcha.php:1082 google-captcha.php:1091
311
  msgid "The user response was missing."
312
  msgstr ""
313
 
314
+ #: google-captcha.php:1084
315
  msgid "The Secret Key is missing."
316
  msgstr ""
317
 
318
+ #: google-captcha.php:1087 google-captcha.php:1096
319
  msgid "The Secret Key is invalid"
320
  msgstr ""
321
 
322
+ #: google-captcha.php:1088 google-captcha.php:1097
323
  msgid "Check your domain configuration"
324
  msgstr ""
325
 
326
+ #: google-captcha.php:1089 google-captcha.php:1098
327
  #, fuzzy
328
  msgid "and enter it again"
329
  msgstr "i wprowadzić je na"
330
 
331
+ #: google-captcha.php:1092 google-captcha.php:1100
332
  msgid "The user response is invalid."
333
  msgstr ""
334
 
335
+ #: google-captcha.php:1109
336
  msgid "The verification is successfully completed."
337
  msgstr ""
338
 
339
+ #: google-captcha.php:1152
340
  msgid "Support"
341
  msgstr "Wsparcie"
342
 
languages/google-captcha-pt_BR.mo CHANGED
Binary file
languages/google-captcha-pt_BR.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: 2016-04-05 17:14+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Elton Peetz Prado <epeetz@gmail.com>\n"
@@ -17,103 +17,103 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:34 google-captcha.php:367
21
  msgid "Google Captcha Settings"
22
  msgstr "Configurações Google Captcha"
23
 
24
- #: google-captcha.php:154
25
  msgid "Warning"
26
  msgstr ""
27
 
28
- #: google-captcha.php:154
29
  msgid ""
30
  "It has been found more than one reCAPTCHA in current form. In this case "
31
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
32
  "blocks."
33
  msgstr ""
34
 
35
- #: google-captcha.php:158
36
  #, fuzzy
37
  msgid "Error: You have entered an incorrect reCAPTCHA value."
38
  msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
39
 
40
- #: google-captcha.php:272
41
  msgid "Normal"
42
  msgstr ""
43
 
44
- #: google-captcha.php:273
45
  msgid "Compact"
46
  msgstr ""
47
 
48
- #: google-captcha.php:279
49
  #, fuzzy
50
  msgid "Site key"
51
  msgstr "URL do site"
52
 
53
- #: google-captcha.php:284
54
  msgid "Secret Key"
55
  msgstr ""
56
 
57
- #: google-captcha.php:292
58
  msgid "Login form"
59
  msgstr "Formulário de login"
60
 
61
- #: google-captcha.php:293
62
  msgid "Registration form"
63
  msgstr "Formulário de registro"
64
 
65
- #: google-captcha.php:294
66
  msgid "Reset password form"
67
  msgstr "Formulário de alterar senha"
68
 
69
- #: google-captcha.php:295
70
  msgid "Comments form"
71
  msgstr "Fomulário de comentários"
72
 
73
- #: google-captcha.php:314
74
  #, fuzzy
75
  msgid "Enter site key"
76
  msgstr "Digite a chave privada"
77
 
78
- #: google-captcha.php:315 google-captcha.php:321
79
  msgid "WARNING: The captcha will not display while you don't fill key fields."
80
  msgstr ""
81
  "AVISO: O captcha não será exibido enquanto você não preencher os campos-"
82
  "chave."
83
 
84
- #: google-captcha.php:320
85
  #, fuzzy
86
  msgid "Enter secret key"
87
  msgstr "Digite a chave privada"
88
 
89
- #: google-captcha.php:346
90
  msgid "Settings saved"
91
  msgstr "Configurações salvas"
92
 
93
- #: google-captcha.php:352
94
  #, fuzzy
95
  msgid "All plugin settings were restored."
96
  msgstr "página de configuração do plugin"
97
 
98
- #: google-captcha.php:369 google-captcha.php:1040 google-captcha.php:1073
99
  msgid "Settings"
100
  msgstr "Configurações"
101
 
102
- #: google-captcha.php:370
103
  msgid "Custom code"
104
  msgstr ""
105
 
106
- #: google-captcha.php:371
107
  msgid "Go PRO"
108
  msgstr ""
109
 
110
- #: google-captcha.php:376
111
  msgid ""
112
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
113
  "version 1 features."
114
  msgstr ""
115
 
116
- #: google-captcha.php:391
117
  #, fuzzy, php-format
118
  msgid ""
119
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -122,7 +122,7 @@ msgstr ""
122
  "Se você quiser adicionar o Google Captcha para seu próprio formulário, basta "
123
  "copiar e colar este shortcode para o seu post ou página:"
124
 
125
- #: google-captcha.php:397
126
  #, php-format
127
  msgid ""
128
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -131,168 +131,172 @@ msgid ""
131
  "your own form , please use the shortcode %s"
132
  msgstr ""
133
 
134
- #: google-captcha.php:405
135
  msgid "Authentication"
136
  msgstr "Autenticação"
137
 
138
- #: google-captcha.php:406
139
  #, fuzzy, php-format
140
  msgid "Before you are able to do something, you must to register %shere%s"
141
  msgstr "Antes de você fazer alguma coisa, deve se registrar %s aqui %s"
142
 
143
- #: google-captcha.php:407
144
  #, fuzzy
145
  msgid "Enter site key and secret key, that you get after registration."
146
  msgstr "Digite as chaves públicas e privadas, que você recebe após o registro."
147
 
148
- #: google-captcha.php:422
149
  msgid "Test Keys"
150
  msgstr ""
151
 
152
- #: google-captcha.php:425
153
  msgid "Options"
154
  msgstr "Opções"
155
 
156
- #: google-captcha.php:428
157
  msgid "Enable reCAPTCHA for"
158
  msgstr ""
159
 
160
- #: google-captcha.php:432
161
  #, fuzzy
162
  msgid "WordPress default"
163
  msgstr "Versão do WordPress"
164
 
165
- #: google-captcha.php:441
166
  msgid "This option is available only for network or for main blog"
167
  msgstr ""
168
 
169
- #: google-captcha.php:449
170
  msgid "Plugins"
171
  msgstr "Plugins"
172
 
173
- #: google-captcha.php:457 google-captcha.php:462
174
  #, php-format
175
  msgid "You should %s to use this functionality"
176
  msgstr ""
177
 
178
- #: google-captcha.php:458
179
  #, fuzzy
180
  msgid "activate"
181
  msgstr "Ativar"
182
 
183
- #: google-captcha.php:458
184
  msgid "for network"
185
  msgstr ""
186
 
187
- #: google-captcha.php:463
188
  msgid "download"
189
  msgstr ""
190
 
191
- #: google-captcha.php:475 google-captcha.php:552
 
 
 
 
192
  msgid "Close"
193
  msgstr ""
194
 
195
- #: google-captcha.php:487 google-captcha.php:588
196
  msgid "Unlock premium options by upgrading to Pro version"
197
  msgstr ""
198
 
199
- #: google-captcha.php:490 google-captcha.php:591
200
  msgid "Learn More"
201
  msgstr ""
202
 
203
- #: google-captcha.php:496
204
  #, php-format
205
  msgid ""
206
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
207
  msgstr ""
208
 
209
- #: google-captcha.php:496 google-captcha.php:1074
210
  msgid "FAQ"
211
  msgstr "FAQ"
212
 
213
- #: google-captcha.php:501
214
  #, fuzzy
215
  msgid "Hide reCAPTCHA in Comments form for"
216
  msgstr "Versão do PHP"
217
 
218
- #: google-captcha.php:513
219
  #, fuzzy
220
  msgid "reCAPTCHA version"
221
  msgstr "Versão do PHP"
222
 
223
- #: google-captcha.php:516 google-captcha.php:517 google-captcha.php:518
224
- #: google-captcha.php:519
225
  #, fuzzy
226
  msgid "version"
227
  msgstr "Versão do PHP"
228
 
229
- #: google-captcha.php:525 google-captcha.php:538
230
  #, fuzzy
231
  msgid "reCAPTCHA theme"
232
  msgstr "Versão do PHP"
233
 
234
- #: google-captcha.php:526 google-captcha.php:539 google-captcha.php:570
235
  #, fuzzy
236
  msgid "for version"
237
  msgstr "Versão do PHP"
238
 
239
- #: google-captcha.php:556
240
  #, fuzzy
241
  msgid "reCAPTCHA language"
242
  msgstr "Versão do PHP"
243
 
244
- #: google-captcha.php:563
245
  msgid "Use the current site language"
246
  msgstr ""
247
 
248
- #: google-captcha.php:563
249
  msgid "Using"
250
  msgstr ""
251
 
252
- #: google-captcha.php:569
253
  #, fuzzy
254
  msgid "reCAPTCHA size"
255
  msgstr "Versão do PHP"
256
 
257
- #: google-captcha.php:598
258
  msgid "Save Changes"
259
  msgstr "Salvar alterações"
260
 
261
- #: google-captcha.php:652 google-captcha.php:1090
262
  msgid "To use Google Captcha you must get the keys from"
263
  msgstr "Para usar o Google Captcha é necessário obter as chaves de"
264
 
265
- #: google-captcha.php:653 google-captcha.php:1091
266
  msgid "here"
267
  msgstr "aqui"
268
 
269
- #: google-captcha.php:654 google-captcha.php:1092
270
  msgid "and enter them on the"
271
  msgstr "e inserí-los no"
272
 
273
- #: google-captcha.php:656 google-captcha.php:1094
274
  msgid "plugin setting page"
275
  msgstr "página de configuração do plugin"
276
 
277
- #: google-captcha.php:842 google-captcha.php:880
278
  msgid "Error"
279
  msgstr ""
280
 
281
- #: google-captcha.php:842
282
  #, fuzzy
283
  msgid "You have entered an incorrect reCAPTCHA value."
284
  msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
285
 
286
- #: google-captcha.php:880 google-captcha.php:897 google-captcha.php:926
 
 
 
 
287
  #, fuzzy
288
  msgid "You have entered an incorrect reCAPTCHA value"
289
  msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
290
 
291
- #: google-captcha.php:897 google-captcha.php:926 google-captcha.php:952
292
- msgid "ERROR"
293
- msgstr ""
294
-
295
- #: google-captcha.php:952
296
  #, fuzzy
297
  msgid ""
298
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
@@ -301,44 +305,44 @@ msgstr ""
301
  "Erro: Você digitou um CAPTCHA com valor incorreto. Clique no botão Voltar do "
302
  "seu navegador e tente novamente."
303
 
304
- #: google-captcha.php:976
305
  msgid "Please, complete the captcha and submit \"Test verification\""
306
  msgstr ""
307
 
308
- #: google-captcha.php:980
309
  msgid "Test verification"
310
  msgstr ""
311
 
312
- #: google-captcha.php:994 google-captcha.php:1003
313
  msgid "The user response was missing."
314
  msgstr ""
315
 
316
- #: google-captcha.php:996
317
  msgid "The Secret Key is missing."
318
  msgstr ""
319
 
320
- #: google-captcha.php:999 google-captcha.php:1008
321
  msgid "The Secret Key is invalid"
322
  msgstr ""
323
 
324
- #: google-captcha.php:1000 google-captcha.php:1009
325
  msgid "Check your domain configuration"
326
  msgstr ""
327
 
328
- #: google-captcha.php:1001 google-captcha.php:1010
329
  #, fuzzy
330
  msgid "and enter it again"
331
  msgstr "e inserí-los no"
332
 
333
- #: google-captcha.php:1004 google-captcha.php:1012
334
  msgid "The user response is invalid."
335
  msgstr ""
336
 
337
- #: google-captcha.php:1021
338
  msgid "The verification is successfully completed."
339
  msgstr ""
340
 
341
- #: google-captcha.php:1075
342
  msgid "Support"
343
  msgstr "Suporte"
344
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-25 11:34+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Elton Peetz Prado <epeetz@gmail.com>\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: google-captcha.php:34 google-captcha.php:422
21
  msgid "Google Captcha Settings"
22
  msgstr "Configurações Google Captcha"
23
 
24
+ #: google-captcha.php:202
25
  msgid "Warning"
26
  msgstr ""
27
 
28
+ #: google-captcha.php:202
29
  msgid ""
30
  "It has been found more than one reCAPTCHA in current form. In this case "
31
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
32
  "blocks."
33
  msgstr ""
34
 
35
+ #: google-captcha.php:206
36
  #, fuzzy
37
  msgid "Error: You have entered an incorrect reCAPTCHA value."
38
  msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
39
 
40
+ #: google-captcha.php:327
41
  msgid "Normal"
42
  msgstr ""
43
 
44
+ #: google-captcha.php:328
45
  msgid "Compact"
46
  msgstr ""
47
 
48
+ #: google-captcha.php:334
49
  #, fuzzy
50
  msgid "Site key"
51
  msgstr "URL do site"
52
 
53
+ #: google-captcha.php:339
54
  msgid "Secret Key"
55
  msgstr ""
56
 
57
+ #: google-captcha.php:347
58
  msgid "Login form"
59
  msgstr "Formulário de login"
60
 
61
+ #: google-captcha.php:348
62
  msgid "Registration form"
63
  msgstr "Formulário de registro"
64
 
65
+ #: google-captcha.php:349
66
  msgid "Reset password form"
67
  msgstr "Formulário de alterar senha"
68
 
69
+ #: google-captcha.php:350
70
  msgid "Comments form"
71
  msgstr "Fomulário de comentários"
72
 
73
+ #: google-captcha.php:369
74
  #, fuzzy
75
  msgid "Enter site key"
76
  msgstr "Digite a chave privada"
77
 
78
+ #: google-captcha.php:370 google-captcha.php:376
79
  msgid "WARNING: The captcha will not display while you don't fill key fields."
80
  msgstr ""
81
  "AVISO: O captcha não será exibido enquanto você não preencher os campos-"
82
  "chave."
83
 
84
+ #: google-captcha.php:375
85
  #, fuzzy
86
  msgid "Enter secret key"
87
  msgstr "Digite a chave privada"
88
 
89
+ #: google-captcha.php:401
90
  msgid "Settings saved"
91
  msgstr "Configurações salvas"
92
 
93
+ #: google-captcha.php:407
94
  #, fuzzy
95
  msgid "All plugin settings were restored."
96
  msgstr "página de configuração do plugin"
97
 
98
+ #: google-captcha.php:424 google-captcha.php:1128 google-captcha.php:1150
99
  msgid "Settings"
100
  msgstr "Configurações"
101
 
102
+ #: google-captcha.php:425
103
  msgid "Custom code"
104
  msgstr ""
105
 
106
+ #: google-captcha.php:426
107
  msgid "Go PRO"
108
  msgstr ""
109
 
110
+ #: google-captcha.php:431
111
  msgid ""
112
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
113
  "version 1 features."
114
  msgstr ""
115
 
116
+ #: google-captcha.php:446
117
  #, fuzzy, php-format
118
  msgid ""
119
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
122
  "Se você quiser adicionar o Google Captcha para seu próprio formulário, basta "
123
  "copiar e colar este shortcode para o seu post ou página:"
124
 
125
+ #: google-captcha.php:452
126
  #, php-format
127
  msgid ""
128
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
131
  "your own form , please use the shortcode %s"
132
  msgstr ""
133
 
134
+ #: google-captcha.php:460
135
  msgid "Authentication"
136
  msgstr "Autenticação"
137
 
138
+ #: google-captcha.php:461
139
  #, fuzzy, php-format
140
  msgid "Before you are able to do something, you must to register %shere%s"
141
  msgstr "Antes de você fazer alguma coisa, deve se registrar %s aqui %s"
142
 
143
+ #: google-captcha.php:462
144
  #, fuzzy
145
  msgid "Enter site key and secret key, that you get after registration."
146
  msgstr "Digite as chaves públicas e privadas, que você recebe após o registro."
147
 
148
+ #: google-captcha.php:477
149
  msgid "Test Keys"
150
  msgstr ""
151
 
152
+ #: google-captcha.php:480
153
  msgid "Options"
154
  msgstr "Opções"
155
 
156
+ #: google-captcha.php:483
157
  msgid "Enable reCAPTCHA for"
158
  msgstr ""
159
 
160
+ #: google-captcha.php:487
161
  #, fuzzy
162
  msgid "WordPress default"
163
  msgstr "Versão do WordPress"
164
 
165
+ #: google-captcha.php:496
166
  msgid "This option is available only for network or for main blog"
167
  msgstr ""
168
 
169
+ #: google-captcha.php:504
170
  msgid "Plugins"
171
  msgstr "Plugins"
172
 
173
+ #: google-captcha.php:512 google-captcha.php:517
174
  #, php-format
175
  msgid "You should %s to use this functionality"
176
  msgstr ""
177
 
178
+ #: google-captcha.php:513
179
  #, fuzzy
180
  msgid "activate"
181
  msgstr "Ativar"
182
 
183
+ #: google-captcha.php:513
184
  msgid "for network"
185
  msgstr ""
186
 
187
+ #: google-captcha.php:518
188
  msgid "download"
189
  msgstr ""
190
 
191
+ #: google-captcha.php:522
192
+ msgid "Check off for adding captcha to forms on their settings pages."
193
+ msgstr ""
194
+
195
+ #: google-captcha.php:533 google-captcha.php:610
196
  msgid "Close"
197
  msgstr ""
198
 
199
+ #: google-captcha.php:545 google-captcha.php:646
200
  msgid "Unlock premium options by upgrading to Pro version"
201
  msgstr ""
202
 
203
+ #: google-captcha.php:548 google-captcha.php:649
204
  msgid "Learn More"
205
  msgstr ""
206
 
207
+ #: google-captcha.php:554
208
  #, php-format
209
  msgid ""
210
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
211
  msgstr ""
212
 
213
+ #: google-captcha.php:554 google-captcha.php:1151
214
  msgid "FAQ"
215
  msgstr "FAQ"
216
 
217
+ #: google-captcha.php:559
218
  #, fuzzy
219
  msgid "Hide reCAPTCHA in Comments form for"
220
  msgstr "Versão do PHP"
221
 
222
+ #: google-captcha.php:571
223
  #, fuzzy
224
  msgid "reCAPTCHA version"
225
  msgstr "Versão do PHP"
226
 
227
+ #: google-captcha.php:574 google-captcha.php:575 google-captcha.php:576
228
+ #: google-captcha.php:577
229
  #, fuzzy
230
  msgid "version"
231
  msgstr "Versão do PHP"
232
 
233
+ #: google-captcha.php:583 google-captcha.php:596
234
  #, fuzzy
235
  msgid "reCAPTCHA theme"
236
  msgstr "Versão do PHP"
237
 
238
+ #: google-captcha.php:584 google-captcha.php:597 google-captcha.php:628
239
  #, fuzzy
240
  msgid "for version"
241
  msgstr "Versão do PHP"
242
 
243
+ #: google-captcha.php:614
244
  #, fuzzy
245
  msgid "reCAPTCHA language"
246
  msgstr "Versão do PHP"
247
 
248
+ #: google-captcha.php:621
249
  msgid "Use the current site language"
250
  msgstr ""
251
 
252
+ #: google-captcha.php:621
253
  msgid "Using"
254
  msgstr ""
255
 
256
+ #: google-captcha.php:627
257
  #, fuzzy
258
  msgid "reCAPTCHA size"
259
  msgstr "Versão do PHP"
260
 
261
+ #: google-captcha.php:656
262
  msgid "Save Changes"
263
  msgstr "Salvar alterações"
264
 
265
+ #: google-captcha.php:710 google-captcha.php:1167
266
  msgid "To use Google Captcha you must get the keys from"
267
  msgstr "Para usar o Google Captcha é necessário obter as chaves de"
268
 
269
+ #: google-captcha.php:711 google-captcha.php:1168
270
  msgid "here"
271
  msgstr "aqui"
272
 
273
+ #: google-captcha.php:712 google-captcha.php:1169
274
  msgid "and enter them on the"
275
  msgstr "e inserí-los no"
276
 
277
+ #: google-captcha.php:714 google-captcha.php:1171
278
  msgid "plugin setting page"
279
  msgstr "página de configuração do plugin"
280
 
281
+ #: google-captcha.php:900 google-captcha.php:948
282
  msgid "Error"
283
  msgstr ""
284
 
285
+ #: google-captcha.php:900 google-captcha.php:948
286
  #, fuzzy
287
  msgid "You have entered an incorrect reCAPTCHA value."
288
  msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
289
 
290
+ #: google-captcha.php:978 google-captcha.php:1007 google-captcha.php:1033
291
+ msgid "ERROR"
292
+ msgstr ""
293
+
294
+ #: google-captcha.php:978 google-captcha.php:1007
295
  #, fuzzy
296
  msgid "You have entered an incorrect reCAPTCHA value"
297
  msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
298
 
299
+ #: google-captcha.php:1033
 
 
 
 
300
  #, fuzzy
301
  msgid ""
302
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
305
  "Erro: Você digitou um CAPTCHA com valor incorreto. Clique no botão Voltar do "
306
  "seu navegador e tente novamente."
307
 
308
+ #: google-captcha.php:1064
309
  msgid "Please, complete the captcha and submit \"Test verification\""
310
  msgstr ""
311
 
312
+ #: google-captcha.php:1068
313
  msgid "Test verification"
314
  msgstr ""
315
 
316
+ #: google-captcha.php:1082 google-captcha.php:1091
317
  msgid "The user response was missing."
318
  msgstr ""
319
 
320
+ #: google-captcha.php:1084
321
  msgid "The Secret Key is missing."
322
  msgstr ""
323
 
324
+ #: google-captcha.php:1087 google-captcha.php:1096
325
  msgid "The Secret Key is invalid"
326
  msgstr ""
327
 
328
+ #: google-captcha.php:1088 google-captcha.php:1097
329
  msgid "Check your domain configuration"
330
  msgstr ""
331
 
332
+ #: google-captcha.php:1089 google-captcha.php:1098
333
  #, fuzzy
334
  msgid "and enter it again"
335
  msgstr "e inserí-los no"
336
 
337
+ #: google-captcha.php:1092 google-captcha.php:1100
338
  msgid "The user response is invalid."
339
  msgstr ""
340
 
341
+ #: google-captcha.php:1109
342
  msgid "The verification is successfully completed."
343
  msgstr ""
344
 
345
+ #: google-captcha.php:1152
346
  msgid "Support"
347
  msgstr "Suporte"
348
 
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: 2016-04-05 17:14+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
@@ -16,15 +16,15 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: google-captcha.php:34 google-captcha.php:367
20
  msgid "Google Captcha Settings"
21
  msgstr "Настройки Google Captcha"
22
 
23
- #: google-captcha.php:154
24
  msgid "Warning"
25
  msgstr "Внимание"
26
 
27
- #: google-captcha.php:154
28
  msgid ""
29
  "It has been found more than one reCAPTCHA in current form. In this case "
30
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
@@ -34,77 +34,77 @@ msgstr ""
34
  "reCAPTCHA не будет работать корректно. Пожалуйста, удалите все лишние блоки "
35
  "reCAPTCHA."
36
 
37
- #: google-captcha.php:158
38
  msgid "Error: You have entered an incorrect reCAPTCHA value."
39
  msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
40
 
41
- #: google-captcha.php:272
42
  msgid "Normal"
43
  msgstr "Нормальный"
44
 
45
- #: google-captcha.php:273
46
  msgid "Compact"
47
  msgstr "Компактный"
48
 
49
- #: google-captcha.php:279
50
  msgid "Site key"
51
  msgstr "Ключ"
52
 
53
- #: google-captcha.php:284
54
  msgid "Secret Key"
55
  msgstr "Секретный ключ"
56
 
57
- #: google-captcha.php:292
58
  msgid "Login form"
59
  msgstr "Форма логина"
60
 
61
- #: google-captcha.php:293
62
  msgid "Registration form"
63
  msgstr "Форма регистрации"
64
 
65
- #: google-captcha.php:294
66
  msgid "Reset password form"
67
  msgstr "Форма восстановления пароля"
68
 
69
- #: google-captcha.php:295
70
  msgid "Comments form"
71
  msgstr "Форма комментариев"
72
 
73
- #: google-captcha.php:314
74
  msgid "Enter site key"
75
  msgstr "Введите ключ"
76
 
77
- #: google-captcha.php:315 google-captcha.php:321
78
  msgid "WARNING: The captcha will not display while you don't fill key fields."
79
  msgstr ""
80
  "ПРЕДУПРЕЖДЕНИЕ: Google Captcha не будет отображаться пока вы не заполните "
81
  "ключевые поля."
82
 
83
- #: google-captcha.php:320
84
  msgid "Enter secret key"
85
  msgstr "Введите секретный ключ"
86
 
87
- #: google-captcha.php:346
88
  msgid "Settings saved"
89
  msgstr "Настройки сохранены"
90
 
91
- #: google-captcha.php:352
92
  msgid "All plugin settings were restored."
93
  msgstr "Настройки плагина были восстановлены."
94
 
95
- #: google-captcha.php:369 google-captcha.php:1040 google-captcha.php:1073
96
  msgid "Settings"
97
  msgstr "Настройки"
98
 
99
- #: google-captcha.php:370
100
  msgid "Custom code"
101
  msgstr "Пользовательский код"
102
 
103
- #: google-captcha.php:371
104
  msgid "Go PRO"
105
  msgstr "Перейти на PRO версию"
106
 
107
- #: google-captcha.php:376
108
  msgid ""
109
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
110
  "version 1 features."
@@ -112,7 +112,7 @@ msgstr ""
112
  "В связи с особенностями работы reCAPTCHA версии 1 на странице может "
113
  "отображаться только одна reCAPTCHA."
114
 
115
- #: google-captcha.php:391
116
  #, php-format
117
  msgid ""
118
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -121,7 +121,7 @@ msgstr ""
121
  "Если вы хотите добавить Google Captcha (reCAPTCHA) на вашу страницу или "
122
  "пост, то используйте кнопку %s"
123
 
124
- #: google-captcha.php:397
125
  #, php-format
126
  msgid ""
127
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -134,75 +134,79 @@ msgstr ""
134
  "кнопка не отображается или вы хотите добавить Google Captcha (reCAPTCHA) в "
135
  "вашу собственную форму, пожалуйста, используйте шорткод %s"
136
 
137
- #: google-captcha.php:405
138
  msgid "Authentication"
139
  msgstr "Идентификация"
140
 
141
- #: google-captcha.php:406
142
  #, php-format
143
  msgid "Before you are able to do something, you must to register %shere%s"
144
  msgstr ""
145
  "Прежде чем вы сможете сделать что-нибудь, вы должны зарегистрироваться "
146
  "%sздесь%s"
147
 
148
- #: google-captcha.php:407
149
  msgid "Enter site key and secret key, that you get after registration."
150
  msgstr "Введите ключ и секретный ключ, которые вы получили после регистрации."
151
 
152
- #: google-captcha.php:422
153
  msgid "Test Keys"
154
  msgstr "Тестирование ключей"
155
 
156
- #: google-captcha.php:425
157
  msgid "Options"
158
  msgstr "Опции"
159
 
160
- #: google-captcha.php:428
161
  msgid "Enable reCAPTCHA for"
162
  msgstr "Включить reCAPTCHA для"
163
 
164
- #: google-captcha.php:432
165
  msgid "WordPress default"
166
  msgstr "Стандартных форм WordPress"
167
 
168
- #: google-captcha.php:441
169
  msgid "This option is available only for network or for main blog"
170
  msgstr "Эта опция доступна только для сети или для основного блога"
171
 
172
- #: google-captcha.php:449
173
  msgid "Plugins"
174
  msgstr "Плагинов"
175
 
176
- #: google-captcha.php:457 google-captcha.php:462
177
  #, php-format
178
  msgid "You should %s to use this functionality"
179
  msgstr "Чтобы использовать этот функционал %s"
180
 
181
- #: google-captcha.php:458
182
  msgid "activate"
183
  msgstr "активируйте"
184
 
185
- #: google-captcha.php:458
186
  msgid "for network"
187
  msgstr "для сети"
188
 
189
- #: google-captcha.php:463
190
  msgid "download"
191
  msgstr "загрузить"
192
 
193
- #: google-captcha.php:475 google-captcha.php:552
 
 
 
 
194
  msgid "Close"
195
  msgstr "Закрыть"
196
 
197
- #: google-captcha.php:487 google-captcha.php:588
198
  msgid "Unlock premium options by upgrading to Pro version"
199
  msgstr "Активируйте премиум опции обновившись до Pro версии"
200
 
201
- #: google-captcha.php:490 google-captcha.php:591
202
  msgid "Learn More"
203
  msgstr "Подробнее"
204
 
205
- #: google-captcha.php:496
206
  #, php-format
207
  msgid ""
208
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
@@ -210,84 +214,84 @@ msgstr ""
210
  "Если вы хотите добавить Google Captcha (reCAPTCHA) в кастомную форму, "
211
  "смотрите %s"
212
 
213
- #: google-captcha.php:496 google-captcha.php:1074
214
  msgid "FAQ"
215
  msgstr "FAQ"
216
 
217
- #: google-captcha.php:501
218
  msgid "Hide reCAPTCHA in Comments form for"
219
  msgstr "Скрыть reCAPTCHA в Форма комментариев для"
220
 
221
- #: google-captcha.php:513
222
  msgid "reCAPTCHA version"
223
  msgstr "Версия reCAPTCHA"
224
 
225
- #: google-captcha.php:516 google-captcha.php:517 google-captcha.php:518
226
- #: google-captcha.php:519
227
  msgid "version"
228
  msgstr "версия"
229
 
230
- #: google-captcha.php:525 google-captcha.php:538
231
  msgid "reCAPTCHA theme"
232
  msgstr "Тема reCAPTCHA"
233
 
234
- #: google-captcha.php:526 google-captcha.php:539 google-captcha.php:570
235
  msgid "for version"
236
  msgstr "для версии"
237
 
238
- #: google-captcha.php:556
239
  msgid "reCAPTCHA language"
240
  msgstr "Язык reCAPTCHA"
241
 
242
- #: google-captcha.php:563
243
  msgid "Use the current site language"
244
  msgstr "Использовать текущий язык сайта"
245
 
246
- #: google-captcha.php:563
247
  msgid "Using"
248
  msgstr "Используя"
249
 
250
- #: google-captcha.php:569
251
  msgid "reCAPTCHA size"
252
  msgstr "Размер reCAPTCHA"
253
 
254
- #: google-captcha.php:598
255
  msgid "Save Changes"
256
  msgstr "Сохранить изменения"
257
 
258
- #: google-captcha.php:652 google-captcha.php:1090
259
  msgid "To use Google Captcha you must get the keys from"
260
  msgstr "Чтобы использовать Google Captcha вам необходимо получить ключи"
261
 
262
- #: google-captcha.php:653 google-captcha.php:1091
263
  msgid "here"
264
  msgstr "здесь"
265
 
266
- #: google-captcha.php:654 google-captcha.php:1092
267
  msgid "and enter them on the"
268
  msgstr "и вставить их на"
269
 
270
- #: google-captcha.php:656 google-captcha.php:1094
271
  msgid "plugin setting page"
272
  msgstr "страницу настроек плагина"
273
 
274
- #: google-captcha.php:842 google-captcha.php:880
275
  msgid "Error"
276
  msgstr "Ошибка"
277
 
278
- #: google-captcha.php:842
279
  msgid "You have entered an incorrect reCAPTCHA value."
280
  msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
281
 
282
- #: google-captcha.php:880 google-captcha.php:897 google-captcha.php:926
283
- msgid "You have entered an incorrect reCAPTCHA value"
284
- msgstr "Вы ввели неверное значение reCAPTCHA."
285
-
286
- #: google-captcha.php:897 google-captcha.php:926 google-captcha.php:952
287
  msgid "ERROR"
288
  msgstr "ОШИБКА"
289
 
290
- #: google-captcha.php:952
 
 
 
 
291
  msgid ""
292
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
293
  "browser, and try again."
@@ -295,43 +299,43 @@ msgstr ""
295
  "Ошибка: Вы ввели неверное значение reCAPTCHA. Нажмите копку НАЗАД в своем "
296
  "браузере и попытайтесь снова."
297
 
298
- #: google-captcha.php:976
299
  msgid "Please, complete the captcha and submit \"Test verification\""
300
  msgstr "Пожалуйста, заполните капчу и нажмите кнопку \"Тестирование проверки\""
301
 
302
- #: google-captcha.php:980
303
  msgid "Test verification"
304
  msgstr "Тестирование проверки"
305
 
306
- #: google-captcha.php:994 google-captcha.php:1003
307
  msgid "The user response was missing."
308
  msgstr "Ответ пользователя отсутствует."
309
 
310
- #: google-captcha.php:996
311
  msgid "The Secret Key is missing."
312
  msgstr "Секретный ключ отсутствует."
313
 
314
- #: google-captcha.php:999 google-captcha.php:1008
315
  msgid "The Secret Key is invalid"
316
  msgstr "Секретный ключ некорректный"
317
 
318
- #: google-captcha.php:1000 google-captcha.php:1009
319
  msgid "Check your domain configuration"
320
  msgstr "Проверьте настройки вашего домена"
321
 
322
- #: google-captcha.php:1001 google-captcha.php:1010
323
  msgid "and enter it again"
324
  msgstr "и введите его снова"
325
 
326
- #: google-captcha.php:1004 google-captcha.php:1012
327
  msgid "The user response is invalid."
328
  msgstr "Некорректный ответ пользователя."
329
 
330
- #: google-captcha.php:1021
331
  msgid "The verification is successfully completed."
332
  msgstr "Проверка завершена успешно."
333
 
334
- #: google-captcha.php:1075
335
  msgid "Support"
336
  msgstr "Поддержка"
337
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-25 11:34+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: google-captcha.php:34 google-captcha.php:422
20
  msgid "Google Captcha Settings"
21
  msgstr "Настройки Google Captcha"
22
 
23
+ #: google-captcha.php:202
24
  msgid "Warning"
25
  msgstr "Внимание"
26
 
27
+ #: google-captcha.php:202
28
  msgid ""
29
  "It has been found more than one reCAPTCHA in current form. In this case "
30
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
34
  "reCAPTCHA не будет работать корректно. Пожалуйста, удалите все лишние блоки "
35
  "reCAPTCHA."
36
 
37
+ #: google-captcha.php:206
38
  msgid "Error: You have entered an incorrect reCAPTCHA value."
39
  msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
40
 
41
+ #: google-captcha.php:327
42
  msgid "Normal"
43
  msgstr "Нормальный"
44
 
45
+ #: google-captcha.php:328
46
  msgid "Compact"
47
  msgstr "Компактный"
48
 
49
+ #: google-captcha.php:334
50
  msgid "Site key"
51
  msgstr "Ключ"
52
 
53
+ #: google-captcha.php:339
54
  msgid "Secret Key"
55
  msgstr "Секретный ключ"
56
 
57
+ #: google-captcha.php:347
58
  msgid "Login form"
59
  msgstr "Форма логина"
60
 
61
+ #: google-captcha.php:348
62
  msgid "Registration form"
63
  msgstr "Форма регистрации"
64
 
65
+ #: google-captcha.php:349
66
  msgid "Reset password form"
67
  msgstr "Форма восстановления пароля"
68
 
69
+ #: google-captcha.php:350
70
  msgid "Comments form"
71
  msgstr "Форма комментариев"
72
 
73
+ #: google-captcha.php:369
74
  msgid "Enter site key"
75
  msgstr "Введите ключ"
76
 
77
+ #: google-captcha.php:370 google-captcha.php:376
78
  msgid "WARNING: The captcha will not display while you don't fill key fields."
79
  msgstr ""
80
  "ПРЕДУПРЕЖДЕНИЕ: Google Captcha не будет отображаться пока вы не заполните "
81
  "ключевые поля."
82
 
83
+ #: google-captcha.php:375
84
  msgid "Enter secret key"
85
  msgstr "Введите секретный ключ"
86
 
87
+ #: google-captcha.php:401
88
  msgid "Settings saved"
89
  msgstr "Настройки сохранены"
90
 
91
+ #: google-captcha.php:407
92
  msgid "All plugin settings were restored."
93
  msgstr "Настройки плагина были восстановлены."
94
 
95
+ #: google-captcha.php:424 google-captcha.php:1128 google-captcha.php:1150
96
  msgid "Settings"
97
  msgstr "Настройки"
98
 
99
+ #: google-captcha.php:425
100
  msgid "Custom code"
101
  msgstr "Пользовательский код"
102
 
103
+ #: google-captcha.php:426
104
  msgid "Go PRO"
105
  msgstr "Перейти на PRO версию"
106
 
107
+ #: google-captcha.php:431
108
  msgid ""
109
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
110
  "version 1 features."
112
  "В связи с особенностями работы reCAPTCHA версии 1 на странице может "
113
  "отображаться только одна reCAPTCHA."
114
 
115
+ #: google-captcha.php:446
116
  #, php-format
117
  msgid ""
118
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
121
  "Если вы хотите добавить Google Captcha (reCAPTCHA) на вашу страницу или "
122
  "пост, то используйте кнопку %s"
123
 
124
+ #: google-captcha.php:452
125
  #, php-format
126
  msgid ""
127
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
134
  "кнопка не отображается или вы хотите добавить Google Captcha (reCAPTCHA) в "
135
  "вашу собственную форму, пожалуйста, используйте шорткод %s"
136
 
137
+ #: google-captcha.php:460
138
  msgid "Authentication"
139
  msgstr "Идентификация"
140
 
141
+ #: google-captcha.php:461
142
  #, php-format
143
  msgid "Before you are able to do something, you must to register %shere%s"
144
  msgstr ""
145
  "Прежде чем вы сможете сделать что-нибудь, вы должны зарегистрироваться "
146
  "%sздесь%s"
147
 
148
+ #: google-captcha.php:462
149
  msgid "Enter site key and secret key, that you get after registration."
150
  msgstr "Введите ключ и секретный ключ, которые вы получили после регистрации."
151
 
152
+ #: google-captcha.php:477
153
  msgid "Test Keys"
154
  msgstr "Тестирование ключей"
155
 
156
+ #: google-captcha.php:480
157
  msgid "Options"
158
  msgstr "Опции"
159
 
160
+ #: google-captcha.php:483
161
  msgid "Enable reCAPTCHA for"
162
  msgstr "Включить reCAPTCHA для"
163
 
164
+ #: google-captcha.php:487
165
  msgid "WordPress default"
166
  msgstr "Стандартных форм WordPress"
167
 
168
+ #: google-captcha.php:496
169
  msgid "This option is available only for network or for main blog"
170
  msgstr "Эта опция доступна только для сети или для основного блога"
171
 
172
+ #: google-captcha.php:504
173
  msgid "Plugins"
174
  msgstr "Плагинов"
175
 
176
+ #: google-captcha.php:512 google-captcha.php:517
177
  #, php-format
178
  msgid "You should %s to use this functionality"
179
  msgstr "Чтобы использовать этот функционал %s"
180
 
181
+ #: google-captcha.php:513
182
  msgid "activate"
183
  msgstr "активируйте"
184
 
185
+ #: google-captcha.php:513
186
  msgid "for network"
187
  msgstr "для сети"
188
 
189
+ #: google-captcha.php:518
190
  msgid "download"
191
  msgstr "загрузить"
192
 
193
+ #: google-captcha.php:522
194
+ msgid "Check off for adding captcha to forms on their settings pages."
195
+ msgstr "Включите для добавления капчи к формам на страницах их настроек."
196
+
197
+ #: google-captcha.php:533 google-captcha.php:610
198
  msgid "Close"
199
  msgstr "Закрыть"
200
 
201
+ #: google-captcha.php:545 google-captcha.php:646
202
  msgid "Unlock premium options by upgrading to Pro version"
203
  msgstr "Активируйте премиум опции обновившись до Pro версии"
204
 
205
+ #: google-captcha.php:548 google-captcha.php:649
206
  msgid "Learn More"
207
  msgstr "Подробнее"
208
 
209
+ #: google-captcha.php:554
210
  #, php-format
211
  msgid ""
212
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
214
  "Если вы хотите добавить Google Captcha (reCAPTCHA) в кастомную форму, "
215
  "смотрите %s"
216
 
217
+ #: google-captcha.php:554 google-captcha.php:1151
218
  msgid "FAQ"
219
  msgstr "FAQ"
220
 
221
+ #: google-captcha.php:559
222
  msgid "Hide reCAPTCHA in Comments form for"
223
  msgstr "Скрыть reCAPTCHA в Форма комментариев для"
224
 
225
+ #: google-captcha.php:571
226
  msgid "reCAPTCHA version"
227
  msgstr "Версия reCAPTCHA"
228
 
229
+ #: google-captcha.php:574 google-captcha.php:575 google-captcha.php:576
230
+ #: google-captcha.php:577
231
  msgid "version"
232
  msgstr "версия"
233
 
234
+ #: google-captcha.php:583 google-captcha.php:596
235
  msgid "reCAPTCHA theme"
236
  msgstr "Тема reCAPTCHA"
237
 
238
+ #: google-captcha.php:584 google-captcha.php:597 google-captcha.php:628
239
  msgid "for version"
240
  msgstr "для версии"
241
 
242
+ #: google-captcha.php:614
243
  msgid "reCAPTCHA language"
244
  msgstr "Язык reCAPTCHA"
245
 
246
+ #: google-captcha.php:621
247
  msgid "Use the current site language"
248
  msgstr "Использовать текущий язык сайта"
249
 
250
+ #: google-captcha.php:621
251
  msgid "Using"
252
  msgstr "Используя"
253
 
254
+ #: google-captcha.php:627
255
  msgid "reCAPTCHA size"
256
  msgstr "Размер reCAPTCHA"
257
 
258
+ #: google-captcha.php:656
259
  msgid "Save Changes"
260
  msgstr "Сохранить изменения"
261
 
262
+ #: google-captcha.php:710 google-captcha.php:1167
263
  msgid "To use Google Captcha you must get the keys from"
264
  msgstr "Чтобы использовать Google Captcha вам необходимо получить ключи"
265
 
266
+ #: google-captcha.php:711 google-captcha.php:1168
267
  msgid "here"
268
  msgstr "здесь"
269
 
270
+ #: google-captcha.php:712 google-captcha.php:1169
271
  msgid "and enter them on the"
272
  msgstr "и вставить их на"
273
 
274
+ #: google-captcha.php:714 google-captcha.php:1171
275
  msgid "plugin setting page"
276
  msgstr "страницу настроек плагина"
277
 
278
+ #: google-captcha.php:900 google-captcha.php:948
279
  msgid "Error"
280
  msgstr "Ошибка"
281
 
282
+ #: google-captcha.php:900 google-captcha.php:948
283
  msgid "You have entered an incorrect reCAPTCHA value."
284
  msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
285
 
286
+ #: google-captcha.php:978 google-captcha.php:1007 google-captcha.php:1033
 
 
 
 
287
  msgid "ERROR"
288
  msgstr "ОШИБКА"
289
 
290
+ #: google-captcha.php:978 google-captcha.php:1007
291
+ msgid "You have entered an incorrect reCAPTCHA value"
292
+ msgstr "Вы ввели неверное значение reCAPTCHA."
293
+
294
+ #: google-captcha.php:1033
295
  msgid ""
296
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
297
  "browser, and try again."
299
  "Ошибка: Вы ввели неверное значение reCAPTCHA. Нажмите копку НАЗАД в своем "
300
  "браузере и попытайтесь снова."
301
 
302
+ #: google-captcha.php:1064
303
  msgid "Please, complete the captcha and submit \"Test verification\""
304
  msgstr "Пожалуйста, заполните капчу и нажмите кнопку \"Тестирование проверки\""
305
 
306
+ #: google-captcha.php:1068
307
  msgid "Test verification"
308
  msgstr "Тестирование проверки"
309
 
310
+ #: google-captcha.php:1082 google-captcha.php:1091
311
  msgid "The user response was missing."
312
  msgstr "Ответ пользователя отсутствует."
313
 
314
+ #: google-captcha.php:1084
315
  msgid "The Secret Key is missing."
316
  msgstr "Секретный ключ отсутствует."
317
 
318
+ #: google-captcha.php:1087 google-captcha.php:1096
319
  msgid "The Secret Key is invalid"
320
  msgstr "Секретный ключ некорректный"
321
 
322
+ #: google-captcha.php:1088 google-captcha.php:1097
323
  msgid "Check your domain configuration"
324
  msgstr "Проверьте настройки вашего домена"
325
 
326
+ #: google-captcha.php:1089 google-captcha.php:1098
327
  msgid "and enter it again"
328
  msgstr "и введите его снова"
329
 
330
+ #: google-captcha.php:1092 google-captcha.php:1100
331
  msgid "The user response is invalid."
332
  msgstr "Некорректный ответ пользователя."
333
 
334
+ #: google-captcha.php:1109
335
  msgid "The verification is successfully completed."
336
  msgstr "Проверка завершена успешно."
337
 
338
+ #: google-captcha.php:1152
339
  msgid "Support"
340
  msgstr "Поддержка"
341
 
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: 2016-04-05 17:20+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
@@ -16,15 +16,15 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: google-captcha.php:34 google-captcha.php:367
20
  msgid "Google Captcha Settings"
21
  msgstr "Налаштування Google Captcha"
22
 
23
- #: google-captcha.php:154
24
  msgid "Warning"
25
  msgstr "Увага"
26
 
27
- #: google-captcha.php:154
28
  msgid ""
29
  "It has been found more than one reCAPTCHA in current form. In this case "
30
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
@@ -34,78 +34,76 @@ msgstr ""
34
  "reCAPTCHA не буде працювати коректно. Будь-ласка видаліть усі зайві блоки "
35
  "reCAPTCHA."
36
 
37
- #: google-captcha.php:158
38
  msgid "Error: You have entered an incorrect reCAPTCHA value."
39
- msgstr ""
40
- "Помилка: Ви ввели невірне значення Captcha.Помилка: Ви ввели невірне "
41
- "значення reCAPTCHA."
42
 
43
- #: google-captcha.php:272
44
  msgid "Normal"
45
  msgstr "Нормальний"
46
 
47
- #: google-captcha.php:273
48
  msgid "Compact"
49
  msgstr "Компактний"
50
 
51
- #: google-captcha.php:279
52
  msgid "Site key"
53
  msgstr "Ключ сайту"
54
 
55
- #: google-captcha.php:284
56
  msgid "Secret Key"
57
  msgstr "Секретний ключ"
58
 
59
- #: google-captcha.php:292
60
  msgid "Login form"
61
  msgstr "Форма логіну"
62
 
63
- #: google-captcha.php:293
64
  msgid "Registration form"
65
  msgstr "Форма реєстрації"
66
 
67
- #: google-captcha.php:294
68
  msgid "Reset password form"
69
  msgstr "Форма відновлення паролю"
70
 
71
- #: google-captcha.php:295
72
  msgid "Comments form"
73
  msgstr "Форма коментарів"
74
 
75
- #: google-captcha.php:314
76
  msgid "Enter site key"
77
  msgstr "Введіть ключ сайту"
78
 
79
- #: google-captcha.php:315 google-captcha.php:321
80
  msgid "WARNING: The captcha will not display while you don't fill key fields."
81
  msgstr ""
82
  "УВАГА: Капча не буде відображатись, поки ви не заповните необхідні поля."
83
 
84
- #: google-captcha.php:320
85
  msgid "Enter secret key"
86
  msgstr "Введіть секретний ключ"
87
 
88
- #: google-captcha.php:346
89
  msgid "Settings saved"
90
  msgstr "Налаштування збережено"
91
 
92
- #: google-captcha.php:352
93
  msgid "All plugin settings were restored."
94
  msgstr "Налаштування плагіна були відновлені."
95
 
96
- #: google-captcha.php:369 google-captcha.php:1040 google-captcha.php:1073
97
  msgid "Settings"
98
  msgstr "Налаштування"
99
 
100
- #: google-captcha.php:370
101
  msgid "Custom code"
102
  msgstr "Користувацький код"
103
 
104
- #: google-captcha.php:371
105
  msgid "Go PRO"
106
  msgstr "Перейти на PRO версію"
107
 
108
- #: google-captcha.php:376
109
  msgid ""
110
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
111
  "version 1 features."
@@ -113,7 +111,7 @@ msgstr ""
113
  "У зв'язку з особливостями роботи reCAPTCHA версії 1 на сторінці може "
114
  "відображатися тільки одна reCAPTCHA."
115
 
116
- #: google-captcha.php:391
117
  #, php-format
118
  msgid ""
119
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -122,7 +120,7 @@ msgstr ""
122
  "Якщо ви хочете додати Google Captcha (reCAPTCHA) на вашу сторінку або пост, "
123
  "то використовуйте кнопку %s"
124
 
125
- #: google-captcha.php:397
126
  #, php-format
127
  msgid ""
128
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -135,73 +133,77 @@ msgstr ""
135
  "кнопка не відображається або ви хочете додати Google Captcha (reCAPTCHA) в "
136
  "вашу власну форму, будь ласка, використовуйте шорткод %s"
137
 
138
- #: google-captcha.php:405
139
  msgid "Authentication"
140
  msgstr "Ідентифікація"
141
 
142
- #: google-captcha.php:406
143
  #, php-format
144
  msgid "Before you are able to do something, you must to register %shere%s"
145
  msgstr "Щоб виконувати якісь дії, спершу зареєструйтесь %sтут%s"
146
 
147
- #: google-captcha.php:407
148
  msgid "Enter site key and secret key, that you get after registration."
149
  msgstr "Введіть відкритий і секретний ключі, які ви отримали після реєстрації."
150
 
151
- #: google-captcha.php:422
152
  msgid "Test Keys"
153
  msgstr "Тестування ключів"
154
 
155
- #: google-captcha.php:425
156
  msgid "Options"
157
  msgstr "Опції"
158
 
159
- #: google-captcha.php:428
160
  msgid "Enable reCAPTCHA for"
161
  msgstr "Включити reCAPTCHA для"
162
 
163
- #: google-captcha.php:432
164
  msgid "WordPress default"
165
  msgstr "Стандартних форм WordPress"
166
 
167
- #: google-captcha.php:441
168
  msgid "This option is available only for network or for main blog"
169
  msgstr "Ця опція доступна тільки для мережі або для основного блогу"
170
 
171
- #: google-captcha.php:449
172
  msgid "Plugins"
173
  msgstr "Плагінів"
174
 
175
- #: google-captcha.php:457 google-captcha.php:462
176
  #, php-format
177
  msgid "You should %s to use this functionality"
178
  msgstr "Щоб використовувати цей функціонал %s"
179
 
180
- #: google-captcha.php:458
181
  msgid "activate"
182
  msgstr "активувати"
183
 
184
- #: google-captcha.php:458
185
  msgid "for network"
186
  msgstr "для мережі"
187
 
188
- #: google-captcha.php:463
189
  msgid "download"
190
  msgstr "завантажити"
191
 
192
- #: google-captcha.php:475 google-captcha.php:552
 
 
 
 
193
  msgid "Close"
194
  msgstr "Закрити"
195
 
196
- #: google-captcha.php:487 google-captcha.php:588
197
  msgid "Unlock premium options by upgrading to Pro version"
198
  msgstr "Активуйте преміум опції оновившись до Pro версії"
199
 
200
- #: google-captcha.php:490 google-captcha.php:591
201
  msgid "Learn More"
202
  msgstr "Детальніше"
203
 
204
- #: google-captcha.php:496
205
  #, php-format
206
  msgid ""
207
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
@@ -209,84 +211,84 @@ msgstr ""
209
  "Якщо ви хочете додати Google Captcha (reCAPTCHA) в кастомний форму, дивіться "
210
  "%s"
211
 
212
- #: google-captcha.php:496 google-captcha.php:1074
213
  msgid "FAQ"
214
  msgstr "FAQ"
215
 
216
- #: google-captcha.php:501
217
  msgid "Hide reCAPTCHA in Comments form for"
218
  msgstr "Приховати reCAPTCHA у Формі коментарів для"
219
 
220
- #: google-captcha.php:513
221
  msgid "reCAPTCHA version"
222
  msgstr "Версія reCAPTCHA"
223
 
224
- #: google-captcha.php:516 google-captcha.php:517 google-captcha.php:518
225
- #: google-captcha.php:519
226
  msgid "version"
227
  msgstr "версія"
228
 
229
- #: google-captcha.php:525 google-captcha.php:538
230
  msgid "reCAPTCHA theme"
231
  msgstr "reCAPTCHA theme"
232
 
233
- #: google-captcha.php:526 google-captcha.php:539 google-captcha.php:570
234
  msgid "for version"
235
  msgstr "для версії"
236
 
237
- #: google-captcha.php:556
238
  msgid "reCAPTCHA language"
239
  msgstr "Мова reCAPTCHA"
240
 
241
- #: google-captcha.php:563
242
  msgid "Use the current site language"
243
  msgstr "Використовувати поточну мову сайту"
244
 
245
- #: google-captcha.php:563
246
  msgid "Using"
247
  msgstr "Використовуючи"
248
 
249
- #: google-captcha.php:569
250
  msgid "reCAPTCHA size"
251
  msgstr "Розмір reCAPTCHA"
252
 
253
- #: google-captcha.php:598
254
  msgid "Save Changes"
255
  msgstr "Зберегти зміни"
256
 
257
- #: google-captcha.php:652 google-captcha.php:1090
258
  msgid "To use Google Captcha you must get the keys from"
259
  msgstr "Щоб використовувати Google Captcha, вам необхідно отримати ключі з"
260
 
261
- #: google-captcha.php:653 google-captcha.php:1091
262
  msgid "here"
263
  msgstr "тут"
264
 
265
- #: google-captcha.php:654 google-captcha.php:1092
266
  msgid "and enter them on the"
267
  msgstr "і вставте їх у"
268
 
269
- #: google-captcha.php:656 google-captcha.php:1094
270
  msgid "plugin setting page"
271
  msgstr "сторінку налаштувань плагіну"
272
 
273
- #: google-captcha.php:842 google-captcha.php:880
274
  msgid "Error"
275
  msgstr "Помилка"
276
 
277
- #: google-captcha.php:842
278
  msgid "You have entered an incorrect reCAPTCHA value."
279
  msgstr "Ви ввели невірне значення reCAPTCHA."
280
 
281
- #: google-captcha.php:880 google-captcha.php:897 google-captcha.php:926
282
- msgid "You have entered an incorrect reCAPTCHA value"
283
- msgstr "Ви ввели невірне значення reCAPTCHA"
284
-
285
- #: google-captcha.php:897 google-captcha.php:926 google-captcha.php:952
286
  msgid "ERROR"
287
  msgstr "ПОМИЛКА"
288
 
289
- #: google-captcha.php:952
 
 
 
 
290
  msgid ""
291
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
292
  "browser, and try again."
@@ -294,44 +296,44 @@ msgstr ""
294
  "Помилка: Ви ввели невірне значення Captcha. Клікніть НАЗАД у своєму браузері "
295
  "та спробуйте знову."
296
 
297
- #: google-captcha.php:976
298
  msgid "Please, complete the captcha and submit \"Test verification\""
299
  msgstr ""
300
  "Будь ласка, заповніть капчу і натисніть кнопку \"Тестування перевірки\""
301
 
302
- #: google-captcha.php:980
303
  msgid "Test verification"
304
  msgstr "Тестування перевірки"
305
 
306
- #: google-captcha.php:994 google-captcha.php:1003
307
  msgid "The user response was missing."
308
  msgstr "Відповідь користувача відсутня."
309
 
310
- #: google-captcha.php:996
311
  msgid "The Secret Key is missing."
312
  msgstr "Секретний ключ відсутній."
313
 
314
- #: google-captcha.php:999 google-captcha.php:1008
315
  msgid "The Secret Key is invalid"
316
  msgstr "Секретний ключ некоректний"
317
 
318
- #: google-captcha.php:1000 google-captcha.php:1009
319
  msgid "Check your domain configuration"
320
  msgstr "Перевірте конфігурацію вашого домену"
321
 
322
- #: google-captcha.php:1001 google-captcha.php:1010
323
  msgid "and enter it again"
324
  msgstr "і введіть його знову"
325
 
326
- #: google-captcha.php:1004 google-captcha.php:1012
327
  msgid "The user response is invalid."
328
  msgstr "Некоректна відповідь користувача."
329
 
330
- #: google-captcha.php:1021
331
  msgid "The verification is successfully completed."
332
  msgstr "Перевірка завершена успішно."
333
 
334
- #: google-captcha.php:1075
335
  msgid "Support"
336
  msgstr "Техпідтримка"
337
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-25 11:34+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: google-captcha.php:34 google-captcha.php:422
20
  msgid "Google Captcha Settings"
21
  msgstr "Налаштування Google Captcha"
22
 
23
+ #: google-captcha.php:202
24
  msgid "Warning"
25
  msgstr "Увага"
26
 
27
+ #: google-captcha.php:202
28
  msgid ""
29
  "It has been found more than one reCAPTCHA in current form. In this case "
30
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
34
  "reCAPTCHA не буде працювати коректно. Будь-ласка видаліть усі зайві блоки "
35
  "reCAPTCHA."
36
 
37
+ #: google-captcha.php:206
38
  msgid "Error: You have entered an incorrect reCAPTCHA value."
39
+ msgstr "Помилка: Ви ввели невірне значення Captcha."
 
 
40
 
41
+ #: google-captcha.php:327
42
  msgid "Normal"
43
  msgstr "Нормальний"
44
 
45
+ #: google-captcha.php:328
46
  msgid "Compact"
47
  msgstr "Компактний"
48
 
49
+ #: google-captcha.php:334
50
  msgid "Site key"
51
  msgstr "Ключ сайту"
52
 
53
+ #: google-captcha.php:339
54
  msgid "Secret Key"
55
  msgstr "Секретний ключ"
56
 
57
+ #: google-captcha.php:347
58
  msgid "Login form"
59
  msgstr "Форма логіну"
60
 
61
+ #: google-captcha.php:348
62
  msgid "Registration form"
63
  msgstr "Форма реєстрації"
64
 
65
+ #: google-captcha.php:349
66
  msgid "Reset password form"
67
  msgstr "Форма відновлення паролю"
68
 
69
+ #: google-captcha.php:350
70
  msgid "Comments form"
71
  msgstr "Форма коментарів"
72
 
73
+ #: google-captcha.php:369
74
  msgid "Enter site key"
75
  msgstr "Введіть ключ сайту"
76
 
77
+ #: google-captcha.php:370 google-captcha.php:376
78
  msgid "WARNING: The captcha will not display while you don't fill key fields."
79
  msgstr ""
80
  "УВАГА: Капча не буде відображатись, поки ви не заповните необхідні поля."
81
 
82
+ #: google-captcha.php:375
83
  msgid "Enter secret key"
84
  msgstr "Введіть секретний ключ"
85
 
86
+ #: google-captcha.php:401
87
  msgid "Settings saved"
88
  msgstr "Налаштування збережено"
89
 
90
+ #: google-captcha.php:407
91
  msgid "All plugin settings were restored."
92
  msgstr "Налаштування плагіна були відновлені."
93
 
94
+ #: google-captcha.php:424 google-captcha.php:1128 google-captcha.php:1150
95
  msgid "Settings"
96
  msgstr "Налаштування"
97
 
98
+ #: google-captcha.php:425
99
  msgid "Custom code"
100
  msgstr "Користувацький код"
101
 
102
+ #: google-captcha.php:426
103
  msgid "Go PRO"
104
  msgstr "Перейти на PRO версію"
105
 
106
+ #: google-captcha.php:431
107
  msgid ""
108
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
109
  "version 1 features."
111
  "У зв'язку з особливостями роботи reCAPTCHA версії 1 на сторінці може "
112
  "відображатися тільки одна reCAPTCHA."
113
 
114
+ #: google-captcha.php:446
115
  #, php-format
116
  msgid ""
117
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
120
  "Якщо ви хочете додати Google Captcha (reCAPTCHA) на вашу сторінку або пост, "
121
  "то використовуйте кнопку %s"
122
 
123
+ #: google-captcha.php:452
124
  #, php-format
125
  msgid ""
126
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
133
  "кнопка не відображається або ви хочете додати Google Captcha (reCAPTCHA) в "
134
  "вашу власну форму, будь ласка, використовуйте шорткод %s"
135
 
136
+ #: google-captcha.php:460
137
  msgid "Authentication"
138
  msgstr "Ідентифікація"
139
 
140
+ #: google-captcha.php:461
141
  #, php-format
142
  msgid "Before you are able to do something, you must to register %shere%s"
143
  msgstr "Щоб виконувати якісь дії, спершу зареєструйтесь %sтут%s"
144
 
145
+ #: google-captcha.php:462
146
  msgid "Enter site key and secret key, that you get after registration."
147
  msgstr "Введіть відкритий і секретний ключі, які ви отримали після реєстрації."
148
 
149
+ #: google-captcha.php:477
150
  msgid "Test Keys"
151
  msgstr "Тестування ключів"
152
 
153
+ #: google-captcha.php:480
154
  msgid "Options"
155
  msgstr "Опції"
156
 
157
+ #: google-captcha.php:483
158
  msgid "Enable reCAPTCHA for"
159
  msgstr "Включити reCAPTCHA для"
160
 
161
+ #: google-captcha.php:487
162
  msgid "WordPress default"
163
  msgstr "Стандартних форм WordPress"
164
 
165
+ #: google-captcha.php:496
166
  msgid "This option is available only for network or for main blog"
167
  msgstr "Ця опція доступна тільки для мережі або для основного блогу"
168
 
169
+ #: google-captcha.php:504
170
  msgid "Plugins"
171
  msgstr "Плагінів"
172
 
173
+ #: google-captcha.php:512 google-captcha.php:517
174
  #, php-format
175
  msgid "You should %s to use this functionality"
176
  msgstr "Щоб використовувати цей функціонал %s"
177
 
178
+ #: google-captcha.php:513
179
  msgid "activate"
180
  msgstr "активувати"
181
 
182
+ #: google-captcha.php:513
183
  msgid "for network"
184
  msgstr "для мережі"
185
 
186
+ #: google-captcha.php:518
187
  msgid "download"
188
  msgstr "завантажити"
189
 
190
+ #: google-captcha.php:522
191
+ msgid "Check off for adding captcha to forms on their settings pages."
192
+ msgstr "Увімкніть для додавання капчи до форм на сторінках їх налаштувань."
193
+
194
+ #: google-captcha.php:533 google-captcha.php:610
195
  msgid "Close"
196
  msgstr "Закрити"
197
 
198
+ #: google-captcha.php:545 google-captcha.php:646
199
  msgid "Unlock premium options by upgrading to Pro version"
200
  msgstr "Активуйте преміум опції оновившись до Pro версії"
201
 
202
+ #: google-captcha.php:548 google-captcha.php:649
203
  msgid "Learn More"
204
  msgstr "Детальніше"
205
 
206
+ #: google-captcha.php:554
207
  #, php-format
208
  msgid ""
209
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
211
  "Якщо ви хочете додати Google Captcha (reCAPTCHA) в кастомний форму, дивіться "
212
  "%s"
213
 
214
+ #: google-captcha.php:554 google-captcha.php:1151
215
  msgid "FAQ"
216
  msgstr "FAQ"
217
 
218
+ #: google-captcha.php:559
219
  msgid "Hide reCAPTCHA in Comments form for"
220
  msgstr "Приховати reCAPTCHA у Формі коментарів для"
221
 
222
+ #: google-captcha.php:571
223
  msgid "reCAPTCHA version"
224
  msgstr "Версія reCAPTCHA"
225
 
226
+ #: google-captcha.php:574 google-captcha.php:575 google-captcha.php:576
227
+ #: google-captcha.php:577
228
  msgid "version"
229
  msgstr "версія"
230
 
231
+ #: google-captcha.php:583 google-captcha.php:596
232
  msgid "reCAPTCHA theme"
233
  msgstr "reCAPTCHA theme"
234
 
235
+ #: google-captcha.php:584 google-captcha.php:597 google-captcha.php:628
236
  msgid "for version"
237
  msgstr "для версії"
238
 
239
+ #: google-captcha.php:614
240
  msgid "reCAPTCHA language"
241
  msgstr "Мова reCAPTCHA"
242
 
243
+ #: google-captcha.php:621
244
  msgid "Use the current site language"
245
  msgstr "Використовувати поточну мову сайту"
246
 
247
+ #: google-captcha.php:621
248
  msgid "Using"
249
  msgstr "Використовуючи"
250
 
251
+ #: google-captcha.php:627
252
  msgid "reCAPTCHA size"
253
  msgstr "Розмір reCAPTCHA"
254
 
255
+ #: google-captcha.php:656
256
  msgid "Save Changes"
257
  msgstr "Зберегти зміни"
258
 
259
+ #: google-captcha.php:710 google-captcha.php:1167
260
  msgid "To use Google Captcha you must get the keys from"
261
  msgstr "Щоб використовувати Google Captcha, вам необхідно отримати ключі з"
262
 
263
+ #: google-captcha.php:711 google-captcha.php:1168
264
  msgid "here"
265
  msgstr "тут"
266
 
267
+ #: google-captcha.php:712 google-captcha.php:1169
268
  msgid "and enter them on the"
269
  msgstr "і вставте їх у"
270
 
271
+ #: google-captcha.php:714 google-captcha.php:1171
272
  msgid "plugin setting page"
273
  msgstr "сторінку налаштувань плагіну"
274
 
275
+ #: google-captcha.php:900 google-captcha.php:948
276
  msgid "Error"
277
  msgstr "Помилка"
278
 
279
+ #: google-captcha.php:900 google-captcha.php:948
280
  msgid "You have entered an incorrect reCAPTCHA value."
281
  msgstr "Ви ввели невірне значення reCAPTCHA."
282
 
283
+ #: google-captcha.php:978 google-captcha.php:1007 google-captcha.php:1033
 
 
 
 
284
  msgid "ERROR"
285
  msgstr "ПОМИЛКА"
286
 
287
+ #: google-captcha.php:978 google-captcha.php:1007
288
+ msgid "You have entered an incorrect reCAPTCHA value"
289
+ msgstr "Ви ввели невірне значення reCAPTCHA"
290
+
291
+ #: google-captcha.php:1033
292
  msgid ""
293
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
294
  "browser, and try again."
296
  "Помилка: Ви ввели невірне значення Captcha. Клікніть НАЗАД у своєму браузері "
297
  "та спробуйте знову."
298
 
299
+ #: google-captcha.php:1064
300
  msgid "Please, complete the captcha and submit \"Test verification\""
301
  msgstr ""
302
  "Будь ласка, заповніть капчу і натисніть кнопку \"Тестування перевірки\""
303
 
304
+ #: google-captcha.php:1068
305
  msgid "Test verification"
306
  msgstr "Тестування перевірки"
307
 
308
+ #: google-captcha.php:1082 google-captcha.php:1091
309
  msgid "The user response was missing."
310
  msgstr "Відповідь користувача відсутня."
311
 
312
+ #: google-captcha.php:1084
313
  msgid "The Secret Key is missing."
314
  msgstr "Секретний ключ відсутній."
315
 
316
+ #: google-captcha.php:1087 google-captcha.php:1096
317
  msgid "The Secret Key is invalid"
318
  msgstr "Секретний ключ некоректний"
319
 
320
+ #: google-captcha.php:1088 google-captcha.php:1097
321
  msgid "Check your domain configuration"
322
  msgstr "Перевірте конфігурацію вашого домену"
323
 
324
+ #: google-captcha.php:1089 google-captcha.php:1098
325
  msgid "and enter it again"
326
  msgstr "і введіть його знову"
327
 
328
+ #: google-captcha.php:1092 google-captcha.php:1100
329
  msgid "The user response is invalid."
330
  msgstr "Некоректна відповідь користувача."
331
 
332
+ #: google-captcha.php:1109
333
  msgid "The verification is successfully completed."
334
  msgstr "Перевірка завершена успішно."
335
 
336
+ #: google-captcha.php:1152
337
  msgid "Support"
338
  msgstr "Техпідтримка"
339
 
languages/google-captcha-zh_TW.mo CHANGED
Binary file
languages/google-captcha-zh_TW.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: 2016-02-24 12:29+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Nick Lai <nick20080808@gmail.com>\n"
@@ -17,102 +17,100 @@ msgstr ""
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:33 google-captcha.php:403
21
  msgid "Google Captcha Settings"
22
  msgstr "reCAPTCHA 驗證碼設置"
23
 
24
- #: google-captcha.php:146
25
  msgid "Warning"
26
  msgstr ""
27
 
28
- #: google-captcha.php:146
29
  msgid ""
30
  "It has been found more than one reCAPTCHA in current form. In this case "
31
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
32
  "blocks."
33
  msgstr ""
34
 
35
- #: google-captcha.php:150
36
  #, fuzzy
37
  msgid "Error: You have entered an incorrect reCAPTCHA value."
38
  msgstr "錯誤:您輸入的驗證碼不正確。"
39
 
40
- #: google-captcha.php:311
41
  msgid "Normal"
42
  msgstr ""
43
 
44
- #: google-captcha.php:312
45
  msgid "Compact"
46
  msgstr ""
47
 
48
- #: google-captcha.php:318
49
  msgid "Site key"
50
  msgstr ""
51
 
52
- #: google-captcha.php:323
53
  msgid "Secret Key"
54
  msgstr ""
55
 
56
- #: google-captcha.php:331
57
  msgid "Login form"
58
  msgstr "登入頁"
59
 
60
- #: google-captcha.php:332
61
  msgid "Registration form"
62
  msgstr "用戶註冊頁"
63
 
64
- #: google-captcha.php:333
65
  msgid "Reset password form"
66
  msgstr "重設密碼頁"
67
 
68
- #: google-captcha.php:334
69
  msgid "Comments form"
70
  msgstr "發表迴響框"
71
 
72
- #: google-captcha.php:353
73
  #, fuzzy
74
  msgid "Enter site key"
75
  msgstr "輸入私有密鑰"
76
 
77
- #: google-captcha.php:354 google-captcha.php:360
78
  msgid "WARNING: The captcha will not display while you don't fill key fields."
79
  msgstr "警告:如果你不填寫此欄,驗證碼將不會顯示。"
80
 
81
- #: google-captcha.php:359
82
  #, fuzzy
83
  msgid "Enter secret key"
84
  msgstr "輸入私有密鑰"
85
 
86
- #: google-captcha.php:382
87
  msgid "Settings saved"
88
  msgstr "設定已儲存"
89
 
90
- #: google-captcha.php:388
91
  #, fuzzy
92
  msgid "All plugin settings were restored."
93
  msgstr "外掛設置頁"
94
 
95
- #: google-captcha.php:405 google-captcha.php:1023 google-captcha.php:1056
96
  msgid "Settings"
97
  msgstr "設定"
98
 
99
- #: google-captcha.php:406
100
- msgid "Go PRO"
101
  msgstr ""
102
 
103
- #: google-captcha.php:411
104
- msgid ""
105
- "Google Captcha version 2 will not work correctly, since the option "
106
- "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
107
  msgstr ""
108
 
109
- #: google-captcha.php:416
110
  msgid ""
111
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
112
  "version 1 features."
113
  msgstr ""
114
 
115
- #: google-captcha.php:431
116
  #, fuzzy, php-format
117
  msgid ""
118
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
@@ -120,7 +118,7 @@ msgid ""
120
  msgstr ""
121
  "如果您想在自己的表格中加入reCAPTCHA驗證碼,只需貼上此代號到您的文章或頁面:"
122
 
123
- #: google-captcha.php:437
124
  #, php-format
125
  msgid ""
126
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
@@ -129,164 +127,209 @@ msgid ""
129
  "your own form , please use the shortcode %s"
130
  msgstr ""
131
 
132
- #: google-captcha.php:445
133
  msgid "Authentication"
134
  msgstr "身份驗證"
135
 
136
- #: google-captcha.php:446
137
  #, fuzzy, php-format
138
  msgid "Before you are able to do something, you must to register %shere%s"
139
  msgstr "在開始使用本外掛之先,請到%s這裡%s註冊。"
140
 
141
- #: google-captcha.php:447
142
  #, fuzzy
143
  msgid "Enter site key and secret key, that you get after registration."
144
  msgstr "然後複製公開金鑰(Public Key)和私有密鑰(Private Key)到到以下方框。"
145
 
146
- #: google-captcha.php:459
 
 
 
 
147
  msgid "Options"
148
  msgstr "選項"
149
 
150
- #: google-captcha.php:462
151
  msgid "Enable reCAPTCHA for"
152
  msgstr ""
153
 
154
- #: google-captcha.php:466
155
  msgid "WordPress default"
156
  msgstr ""
157
 
158
- #: google-captcha.php:475
159
  msgid "This option is available only for network or for main blog"
160
  msgstr ""
161
 
162
- #: google-captcha.php:483
163
  #, fuzzy
164
  msgid "Plugins"
165
  msgstr "外掛頁面"
166
 
167
- #: google-captcha.php:491 google-captcha.php:496
168
  #, php-format
169
  msgid "You should %s to use this functionality"
170
  msgstr ""
171
 
172
- #: google-captcha.php:492
173
  #, fuzzy
174
  msgid "activate"
175
  msgstr "Активировать Contact form"
176
 
177
- #: google-captcha.php:492
178
  msgid "for network"
179
  msgstr ""
180
 
181
- #: google-captcha.php:497
182
  msgid "download"
183
  msgstr ""
184
 
185
- #: google-captcha.php:509 google-captcha.php:586
 
 
 
 
186
  msgid "Close"
187
  msgstr ""
188
 
189
- #: google-captcha.php:521 google-captcha.php:622
190
  msgid "Unlock premium options by upgrading to Pro version"
191
  msgstr ""
192
 
193
- #: google-captcha.php:524 google-captcha.php:625
194
  msgid "Learn More"
195
  msgstr ""
196
 
197
- #: google-captcha.php:530
198
  #, php-format
199
  msgid ""
200
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
201
  msgstr ""
202
 
203
- #: google-captcha.php:530 google-captcha.php:1057
204
  msgid "FAQ"
205
  msgstr "常見問題"
206
 
207
- #: google-captcha.php:535
208
  msgid "Hide reCAPTCHA in Comments form for"
209
  msgstr ""
210
 
211
- #: google-captcha.php:547
212
  msgid "reCAPTCHA version"
213
  msgstr ""
214
 
215
- #: google-captcha.php:550 google-captcha.php:551 google-captcha.php:552
216
- #: google-captcha.php:553
217
  msgid "version"
218
  msgstr ""
219
 
220
- #: google-captcha.php:559 google-captcha.php:572
221
  msgid "reCAPTCHA theme"
222
  msgstr ""
223
 
224
- #: google-captcha.php:560 google-captcha.php:573 google-captcha.php:604
225
  msgid "for version"
226
  msgstr ""
227
 
228
- #: google-captcha.php:590
229
  msgid "reCAPTCHA language"
230
  msgstr ""
231
 
232
- #: google-captcha.php:597
233
  msgid "Use the current site language"
234
  msgstr ""
235
 
236
- #: google-captcha.php:597
237
  msgid "Using"
238
  msgstr ""
239
 
240
- #: google-captcha.php:603
241
  msgid "reCAPTCHA size"
242
  msgstr ""
243
 
244
- #: google-captcha.php:632
245
  msgid "Save Changes"
246
  msgstr "儲存變更"
247
 
248
- #: google-captcha.php:690 google-captcha.php:1073
249
  msgid "To use Google Captcha you must get the keys from"
250
  msgstr "如要用reCAPTCHA驗證碼,你必須輸入兩組金鑰。您可以在這裡領取:"
251
 
252
- #: google-captcha.php:691 google-captcha.php:1074
253
  msgid "here"
254
  msgstr "點我"
255
 
256
- #: google-captcha.php:692 google-captcha.php:1075
257
  msgid "and enter them on the"
258
  msgstr "然後將他們輸入到"
259
 
260
- #: google-captcha.php:694 google-captcha.php:1077
261
  msgid "plugin setting page"
262
  msgstr "外掛設置頁"
263
 
264
- #: google-captcha.php:885 google-captcha.php:923
265
  msgid "Error"
266
  msgstr ""
267
 
268
- #: google-captcha.php:885
269
  #, fuzzy
270
  msgid "You have entered an incorrect reCAPTCHA value."
271
  msgstr "錯誤:您輸入的驗證碼不正確。"
272
 
273
- #: google-captcha.php:923 google-captcha.php:940 google-captcha.php:969
 
 
 
 
274
  #, fuzzy
275
  msgid "You have entered an incorrect reCAPTCHA value"
276
  msgstr "錯誤:您輸入的驗證碼不正確。"
277
 
278
- #: google-captcha.php:940 google-captcha.php:969 google-captcha.php:995
279
- msgid "ERROR"
280
- msgstr ""
281
-
282
- #: google-captcha.php:995
283
  #, fuzzy
284
  msgid ""
285
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
286
  "browser, and try again."
287
  msgstr "錯誤:您輸入的驗證碼不正確。請回到上一頁,然後重新輸入。"
288
 
289
- #: google-captcha.php:1058
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
290
  msgid "Support"
291
  msgstr "支援"
292
 
2
  msgstr ""
3
  "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-25 11:34+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
8
  "Language-Team: Nick Lai <nick20080808@gmail.com>\n"
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: google-captcha.php:34 google-captcha.php:422
21
  msgid "Google Captcha Settings"
22
  msgstr "reCAPTCHA 驗證碼設置"
23
 
24
+ #: google-captcha.php:202
25
  msgid "Warning"
26
  msgstr ""
27
 
28
+ #: google-captcha.php:202
29
  msgid ""
30
  "It has been found more than one reCAPTCHA in current form. In this case "
31
  "reCAPTCHA will not work properly. Please remove all unnecessary reCAPTCHA "
32
  "blocks."
33
  msgstr ""
34
 
35
+ #: google-captcha.php:206
36
  #, fuzzy
37
  msgid "Error: You have entered an incorrect reCAPTCHA value."
38
  msgstr "錯誤:您輸入的驗證碼不正確。"
39
 
40
+ #: google-captcha.php:327
41
  msgid "Normal"
42
  msgstr ""
43
 
44
+ #: google-captcha.php:328
45
  msgid "Compact"
46
  msgstr ""
47
 
48
+ #: google-captcha.php:334
49
  msgid "Site key"
50
  msgstr ""
51
 
52
+ #: google-captcha.php:339
53
  msgid "Secret Key"
54
  msgstr ""
55
 
56
+ #: google-captcha.php:347
57
  msgid "Login form"
58
  msgstr "登入頁"
59
 
60
+ #: google-captcha.php:348
61
  msgid "Registration form"
62
  msgstr "用戶註冊頁"
63
 
64
+ #: google-captcha.php:349
65
  msgid "Reset password form"
66
  msgstr "重設密碼頁"
67
 
68
+ #: google-captcha.php:350
69
  msgid "Comments form"
70
  msgstr "發表迴響框"
71
 
72
+ #: google-captcha.php:369
73
  #, fuzzy
74
  msgid "Enter site key"
75
  msgstr "輸入私有密鑰"
76
 
77
+ #: google-captcha.php:370 google-captcha.php:376
78
  msgid "WARNING: The captcha will not display while you don't fill key fields."
79
  msgstr "警告:如果你不填寫此欄,驗證碼將不會顯示。"
80
 
81
+ #: google-captcha.php:375
82
  #, fuzzy
83
  msgid "Enter secret key"
84
  msgstr "輸入私有密鑰"
85
 
86
+ #: google-captcha.php:401
87
  msgid "Settings saved"
88
  msgstr "設定已儲存"
89
 
90
+ #: google-captcha.php:407
91
  #, fuzzy
92
  msgid "All plugin settings were restored."
93
  msgstr "外掛設置頁"
94
 
95
+ #: google-captcha.php:424 google-captcha.php:1128 google-captcha.php:1150
96
  msgid "Settings"
97
  msgstr "設定"
98
 
99
+ #: google-captcha.php:425
100
+ msgid "Custom code"
101
  msgstr ""
102
 
103
+ #: google-captcha.php:426
104
+ msgid "Go PRO"
 
 
105
  msgstr ""
106
 
107
+ #: google-captcha.php:431
108
  msgid ""
109
  "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
110
  "version 1 features."
111
  msgstr ""
112
 
113
+ #: google-captcha.php:446
114
  #, fuzzy, php-format
115
  msgid ""
116
  "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
118
  msgstr ""
119
  "如果您想在自己的表格中加入reCAPTCHA驗證碼,只需貼上此代號到您的文章或頁面:"
120
 
121
+ #: google-captcha.php:452
122
  #, php-format
123
  msgid ""
124
  "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
127
  "your own form , please use the shortcode %s"
128
  msgstr ""
129
 
130
+ #: google-captcha.php:460
131
  msgid "Authentication"
132
  msgstr "身份驗證"
133
 
134
+ #: google-captcha.php:461
135
  #, fuzzy, php-format
136
  msgid "Before you are able to do something, you must to register %shere%s"
137
  msgstr "在開始使用本外掛之先,請到%s這裡%s註冊。"
138
 
139
+ #: google-captcha.php:462
140
  #, fuzzy
141
  msgid "Enter site key and secret key, that you get after registration."
142
  msgstr "然後複製公開金鑰(Public Key)和私有密鑰(Private Key)到到以下方框。"
143
 
144
+ #: google-captcha.php:477
145
+ msgid "Test Keys"
146
+ msgstr ""
147
+
148
+ #: google-captcha.php:480
149
  msgid "Options"
150
  msgstr "選項"
151
 
152
+ #: google-captcha.php:483
153
  msgid "Enable reCAPTCHA for"
154
  msgstr ""
155
 
156
+ #: google-captcha.php:487
157
  msgid "WordPress default"
158
  msgstr ""
159
 
160
+ #: google-captcha.php:496
161
  msgid "This option is available only for network or for main blog"
162
  msgstr ""
163
 
164
+ #: google-captcha.php:504
165
  #, fuzzy
166
  msgid "Plugins"
167
  msgstr "外掛頁面"
168
 
169
+ #: google-captcha.php:512 google-captcha.php:517
170
  #, php-format
171
  msgid "You should %s to use this functionality"
172
  msgstr ""
173
 
174
+ #: google-captcha.php:513
175
  #, fuzzy
176
  msgid "activate"
177
  msgstr "Активировать Contact form"
178
 
179
+ #: google-captcha.php:513
180
  msgid "for network"
181
  msgstr ""
182
 
183
+ #: google-captcha.php:518
184
  msgid "download"
185
  msgstr ""
186
 
187
+ #: google-captcha.php:522
188
+ msgid "Check off for adding captcha to forms on their settings pages."
189
+ msgstr ""
190
+
191
+ #: google-captcha.php:533 google-captcha.php:610
192
  msgid "Close"
193
  msgstr ""
194
 
195
+ #: google-captcha.php:545 google-captcha.php:646
196
  msgid "Unlock premium options by upgrading to Pro version"
197
  msgstr ""
198
 
199
+ #: google-captcha.php:548 google-captcha.php:649
200
  msgid "Learn More"
201
  msgstr ""
202
 
203
+ #: google-captcha.php:554
204
  #, php-format
205
  msgid ""
206
  "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
207
  msgstr ""
208
 
209
+ #: google-captcha.php:554 google-captcha.php:1151
210
  msgid "FAQ"
211
  msgstr "常見問題"
212
 
213
+ #: google-captcha.php:559
214
  msgid "Hide reCAPTCHA in Comments form for"
215
  msgstr ""
216
 
217
+ #: google-captcha.php:571
218
  msgid "reCAPTCHA version"
219
  msgstr ""
220
 
221
+ #: google-captcha.php:574 google-captcha.php:575 google-captcha.php:576
222
+ #: google-captcha.php:577
223
  msgid "version"
224
  msgstr ""
225
 
226
+ #: google-captcha.php:583 google-captcha.php:596
227
  msgid "reCAPTCHA theme"
228
  msgstr ""
229
 
230
+ #: google-captcha.php:584 google-captcha.php:597 google-captcha.php:628
231
  msgid "for version"
232
  msgstr ""
233
 
234
+ #: google-captcha.php:614
235
  msgid "reCAPTCHA language"
236
  msgstr ""
237
 
238
+ #: google-captcha.php:621
239
  msgid "Use the current site language"
240
  msgstr ""
241
 
242
+ #: google-captcha.php:621
243
  msgid "Using"
244
  msgstr ""
245
 
246
+ #: google-captcha.php:627
247
  msgid "reCAPTCHA size"
248
  msgstr ""
249
 
250
+ #: google-captcha.php:656
251
  msgid "Save Changes"
252
  msgstr "儲存變更"
253
 
254
+ #: google-captcha.php:710 google-captcha.php:1167
255
  msgid "To use Google Captcha you must get the keys from"
256
  msgstr "如要用reCAPTCHA驗證碼,你必須輸入兩組金鑰。您可以在這裡領取:"
257
 
258
+ #: google-captcha.php:711 google-captcha.php:1168
259
  msgid "here"
260
  msgstr "點我"
261
 
262
+ #: google-captcha.php:712 google-captcha.php:1169
263
  msgid "and enter them on the"
264
  msgstr "然後將他們輸入到"
265
 
266
+ #: google-captcha.php:714 google-captcha.php:1171
267
  msgid "plugin setting page"
268
  msgstr "外掛設置頁"
269
 
270
+ #: google-captcha.php:900 google-captcha.php:948
271
  msgid "Error"
272
  msgstr ""
273
 
274
+ #: google-captcha.php:900 google-captcha.php:948
275
  #, fuzzy
276
  msgid "You have entered an incorrect reCAPTCHA value."
277
  msgstr "錯誤:您輸入的驗證碼不正確。"
278
 
279
+ #: google-captcha.php:978 google-captcha.php:1007 google-captcha.php:1033
280
+ msgid "ERROR"
281
+ msgstr ""
282
+
283
+ #: google-captcha.php:978 google-captcha.php:1007
284
  #, fuzzy
285
  msgid "You have entered an incorrect reCAPTCHA value"
286
  msgstr "錯誤:您輸入的驗證碼不正確。"
287
 
288
+ #: google-captcha.php:1033
 
 
 
 
289
  #, fuzzy
290
  msgid ""
291
  "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
292
  "browser, and try again."
293
  msgstr "錯誤:您輸入的驗證碼不正確。請回到上一頁,然後重新輸入。"
294
 
295
+ #: google-captcha.php:1064
296
+ msgid "Please, complete the captcha and submit \"Test verification\""
297
+ msgstr ""
298
+
299
+ #: google-captcha.php:1068
300
+ msgid "Test verification"
301
+ msgstr ""
302
+
303
+ #: google-captcha.php:1082 google-captcha.php:1091
304
+ msgid "The user response was missing."
305
+ msgstr ""
306
+
307
+ #: google-captcha.php:1084
308
+ msgid "The Secret Key is missing."
309
+ msgstr ""
310
+
311
+ #: google-captcha.php:1087 google-captcha.php:1096
312
+ msgid "The Secret Key is invalid"
313
+ msgstr ""
314
+
315
+ #: google-captcha.php:1088 google-captcha.php:1097
316
+ msgid "Check your domain configuration"
317
+ msgstr ""
318
+
319
+ #: google-captcha.php:1089 google-captcha.php:1098
320
+ #, fuzzy
321
+ msgid "and enter it again"
322
+ msgstr "然後將他們輸入到"
323
+
324
+ #: google-captcha.php:1092 google-captcha.php:1100
325
+ msgid "The user response is invalid."
326
+ msgstr ""
327
+
328
+ #: google-captcha.php:1109
329
+ msgid "The verification is successfully completed."
330
+ msgstr ""
331
+
332
+ #: google-captcha.php:1152
333
  msgid "Support"
334
  msgstr "支援"
335
 
readme.txt CHANGED
@@ -3,76 +3,120 @@ Contributors: bestwebsoft
3
  Donate link: http://bestwebsoft.com/donate/
4
  Tags: antispam, captcha, capcha, security, website security, google captcha, google captcha plugin, recaptcha, recaptcha plugin, add recaptcha, recaptcha protection, spam protection
5
  Requires at least: 3.8
6
- Tested up to: 4.5.3
7
- Stable tag: 1.25
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
11
- Protect WordPress website forms from spam entries with Google Captcha (reCaptcha).
12
 
13
  == Description ==
14
 
15
- Google Captcha (reCAPTCHA) plugin allows you to implement a super security Captcha into web forms. This plugin can be used for login, registration, password recovery, comments forms.
16
 
17
- http://www.youtube.com/watch?v=qwHsW3IJ7gQ
18
-
19
- <a href="http://www.youtube.com/watch?v=RUJ9VwZLFSY" target="_blank">Google Captcha (reCAPTCHA) by BestWebSoft Video instruction on Installation</a>
20
-
21
- <a href="http://wordpress.org/plugins/google-captcha/faq/" target="_blank">Google Captcha (reCAPTCHA) by BestWebSoft FAQ</a>
22
 
23
- <a href="http://support.bestwebsoft.com" target="_blank">Google Captcha (reCAPTCHA) by BestWebSoft Support</a>
24
 
25
- <a href="http://bestwebsoft.com/products/google-captcha/?k=c4f2e3054fdbaca8a2b61554cbb9638c" target="_blank">Upgrade to Google Captcha (reCAPTCHA) Pro by BestWebSoft</a>
26
-
27
- = Copyrights for resources used in this plugin =
28
 
29
- 1. In Google Captcha (reCAPTCHA) plugin we used "lib/recaptchalib.php" file. The Licence for this file is in "lib/license.txt" file.
30
- 2. Everything else used in this plugin has been created by Bestwebsoft team and is distributed under GPL license.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
- = Features =
33
 
34
- * Supports standard WordPress forms: registration form, login form, reset password form and comments form.
35
- * Compatible with Contact Form by BestWebSoft.
36
- * Hide Google Captcha (reCAPTCHA) for certain user roles.
37
- * Supports version 1 and version 2 Google Captcha (reCAPTCHA).
38
- * Supports standard Google Captcha (reCAPTCHA) themes.
 
 
 
 
 
 
 
 
 
 
39
 
40
- If you have a feature, suggestion or idea you'd like to see in the plugin, we'd love to hear about it! <a href="http://support.bestwebsoft.com/hc/en-us/requests/new" target="_blank">Suggest a Feature</a>
41
 
42
  = Recommended Plugins =
43
 
44
- The author of the Google Captcha (reCAPTCHA) also recommends the following plugins:
 
 
 
45
 
46
- * <a href="http://wordpress.org/plugins/updater/">Updater</a> - This plugin updates WordPress core and the plugins to the recent versions. You can also use the auto mode or manual mode for updating and set email notifications.
47
- There is also a premium version of the plugin <a href="http://bestwebsoft.com/products/updater/?k=f47f3eb3d739725d592249dbd129f7ff">Updater Pro</a> with more useful features available. It can make backup of all your files and database before updating. Also it can forbid some plugins or WordPress Core update.
48
 
49
- = Translation =
50
-
51
- * Arabic (ar) (thanks to <a href="mailto:mor0cc0@live.com">SAID MOULLA</a>, www.aljoulane.ma)
52
- * Brazilian Portuguese (pt_BR) (thanks to <a href="mailto:epeetz@gmail.com">Elton Fernandes Peetz Prado</a>)
53
- * Bulgarian (bg_BG) (thanks to <a href="mailto:me@ygeorgiev.com">Yasen Georgiev</a>)
54
- * Czech (cs_CZ) (thanks to <a href="mailto:info@pamadessoft.cz">PaMaDeSSoft</a>, www.pamadessoft.cz)
55
- * Chinese Traditional (zh_TW) (thanks to <a href="mailto:nick20080808@gmail.com">Nick Lai</a>)
56
- * Farsi/Persian (fa_IR) (thanks to <a href="mailto:nasiri.amirreza.96@gmail.com">Amirreza Nasiri</a>, www.bytegate.ir)
57
- * French (fr_FR) (thanks to <a href="mailto:lefinnois@lefinnois.net">Denis Bodorr</a>)
58
- * German (de_DE) (thanks to <a href="mailto:fred.zimmer@medienconsulting.at">Fred Zimmer</a>,www.medienconsulting.at)
59
- * Greek (el) (thanks to Dimitris Karantonis, www.soft4real.com/en-UK)
60
- * Hindi (hi) (thanks to <a href="mailto:contact@developmentlogics.com">Development Logics Solutions Pvt Ltd</a>, www.developmentlogics.com)
61
- * Italian (it_IT) (thanks to <a href="mailto:wart17@hotmail.com">Istvan</a>)
62
- * Polish (pl_PL) (thanks to <a href="mailto:ryszard.glegola@translanet.com">Ryszard Glegola</a>, www.translanet.com)
63
- * Russian (ru_RU)
64
- * Spanish (es_ES) (thanks to <a href="mailto:cloudzeroxyz@gmail.com">Cloudzeroxyz</a>)
65
- * Ukrainian (uk)
66
-
67
- Some of these translations are not complete. We are constantly adding new features which should be translated. If you would like to create your own language pack or update the existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank">the text of PO and MO files</a> for <a href="http://support.bestwebsoft.com/hc/en-us/requests/new" target="_blank">BestWebSoft</a> and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO files <a href="http://www.poedit.net/download.php" target="_blank">Poedit</a>.
68
 
69
- = Technical support =
70
 
71
- Dear users, our plugins are available for free download. If you have any questions or recommendations regarding the functionality of our plugins (existing options, new options, current issues), please feel free to contact us. Please note that we accept requests in English only. All messages in other languages won't be accepted.
72
 
73
- If you notice any bugs in the plugins, you can notify us about it and we'll investigate and fix the issue then. Your request should contain URL of the website, issues description and WordPress admin panel credentials.
74
- Moreover we can customize the plugin according to your requirements. It's a paid service (as a rule it costs $40, but the price can vary depending on the amount of the necessary changes and their complexity). Please note that we could also include this or that feature (developed for you) in the next release and share with the other users then.
75
- We can fix some things for free for the users who provide translation of our plugin into their native language (this should be a new translation of a certain plugin, you can check available translations on the official plugin page).
76
 
77
  == Installation ==
78
 
@@ -81,7 +125,7 @@ We can fix some things for free for the users who provide translation of our plu
81
  3. Plugin settings are located in "BWS Panel" > "Google Captcha".
82
  4. Create a form in post and insert the shortcode [bws_google_captcha] into the form.
83
 
84
- <a href="https://docs.google.com/document/d/1Nrccb-OLDN80yYjz_6-JPErdpZoslqfPV-g2IZ-GD0A/edit" target="_blank">View a Step-by-step Instruction on Google Captcha (reCAPTCHA) Installation</a>.
85
 
86
  http://www.youtube.com/watch?v=RUJ9VwZLFSY
87
 
@@ -92,7 +136,7 @@ http://www.youtube.com/watch?v=RUJ9VwZLFSY
92
  You should go to the Settings page and click the 'here' link. Then you should enter your domain name in text field and click 'Create Key' button.
93
  On the next screen you will see your public and private keys.
94
 
95
- = How to hide Google Capthca for registered users? =
96
 
97
  You should go to the Settings page and select the roles, for which you want to hide Google Captcha.
98
  Then you must click 'Save Changes' button.
@@ -119,20 +163,20 @@ In case there is no such hook in the comments file of your theme, then, unfortun
119
  3. Find a place to insert the code for the Google Captcha (reCAPTCHA) output.
120
  4. Insert the necessary lines:
121
 
122
- `if( function_exists( 'gglcptch_display' ) ) { echo gglcptch_display(); } ;`
123
 
124
  If the form is HTML you should insert the line with the PHP tags:
125
 
126
- `<?php if( function_exists( 'gglcptch_display' ) ) { echo gglcptch_display(); } ; ?>`
127
 
128
  = I have some problems with the plugin's work. What Information should I provide to receive proper support? =
129
 
130
- Please make sure that the problem hasn't been discussed yet on our forum (<a href="http://support.bestwebsoft.com" target="_blank">http://support.bestwebsoft.com</a>). If no, please provide the following data along with your problem's description:
131
 
132
  1. the link to the page where the problem occurs
133
  2. the name of the plugin and its version. If you are using a pro version - your order number.
134
  3. the version of your WordPress installation
135
- 4. copy and paste into the message your system status report. Please read more here: <a href="https://docs.google.com/document/d/1Wi2X8RdRGXk9kMszQy1xItJrpN0ncXgioH935MaBKtc/edit" target="_blank">Instruction on System Status</a>
136
 
137
  == Screenshots ==
138
 
@@ -143,10 +187,14 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
143
  5. Contact Form with Google Captcha (reCAPTCHA).
144
  6. The form with Google Captcha (reCAPTCHA) version 1.
145
  7. The form with Google Captcha (reCAPTCHA) dark theme.
146
- 8. Google Captcha (reCAPTCHA) Settings page.
147
 
148
  == Changelog ==
149
 
 
 
 
 
150
  = V1.25 - 15.07.2016 =
151
  * Update : BWS panel section was updated.
152
 
@@ -264,6 +312,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
264
 
265
  == Upgrade Notice ==
266
 
 
 
 
267
  = V1.25 =
268
  Usability improved.
269
 
3
  Donate link: http://bestwebsoft.com/donate/
4
  Tags: antispam, captcha, capcha, security, website security, google captcha, google captcha plugin, recaptcha, recaptcha plugin, add recaptcha, recaptcha protection, spam protection
5
  Requires at least: 3.8
6
+ Tested up to: 4.6
7
+ Stable tag: 1.26
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
11
+ Protect WordPress website forms from spam entries with Google reCaptcha.
12
 
13
  == Description ==
14
 
15
+ Google Captcha (reCaptcha) plugin is an effective security solution that protects your WordPress website forms from spam entries while letting real people pass through with ease. It can be used for login, registration, password recovery, comments, popular contact forms, and other.
16
 
17
+ Users are required to confirm that they are not a robot before the form can be submitted. It’s easy for people and hard for bots.
 
 
 
 
18
 
19
+ [View Demo](http://bestwebsoft.com/demo-for-google-captcha/)
20
 
21
+ http://www.youtube.com/watch?v=qwHsW3IJ7gQ
 
 
22
 
23
+ = Free Features =
24
+
25
+ * Add captcha to:
26
+ * Registration form
27
+ * Login form
28
+ * Reset password form
29
+ * Comments form
30
+ * [Contact Form](http://bestwebsoft.com/products/contact-form/?k=56575444122cff9ab3ee3e640efb001a)
31
+ * Custom form
32
+ * Validity check of keys in admin panel
33
+ * Available captcha themes for:
34
+ * Version 1
35
+ * Red (default)
36
+ * White
37
+ * Blackglass
38
+ * Clean
39
+ * Version 2
40
+ * Light (default)
41
+ * Dark
42
+ * Hide captcha in comments form for certain user roles
43
+ * Supports Google Captcha (reCAPTCHA):
44
+ * Version 1
45
+ * Version 2
46
+ * Add custom code via plugin settings page
47
+ * Compatible with latest WordPress version
48
+ * Incredibly simple settings for fast setup without modifying code
49
+ * Detailed step-by-step documentation and videos
50
+ * Multilingual (15+ languages) and RTL ready
51
+
52
+ > **Pro Features**
53
+ >
54
+ > All features from Free version included plus:
55
+ >
56
+ > * Compatible with:
57
+ > * Contact Form 7 (since v 3.4)
58
+ > * [Subscriber](http://bestwebsoft.com/products/subscriber/?k=e6d1742fcf1806a39afac207f7920cf3)
59
+ > * Multilanguage
60
+ > * Compatible with BuddyPress:
61
+ > * Registration form
62
+ > * Comments form
63
+ > * Create a Group form
64
+ > * Select Google Captcha (reCAPTCHA) language manually
65
+ > * Change size: normal or compact (for version 2)
66
+ > * Сonfigure all subsites on the network
67
+ > * Get answer to your support question within one business day ([Support Policy](http://bestwebsoft.com/support-policy/))
68
+ >
69
+ > [Upgrade to Pro Now](http://bestwebsoft.com/products/google-captcha/?k=c4f2e3054fdbaca8a2b61554cbb9638c)
70
+
71
+ If you have a feature suggestion or idea you'd like to see in the plugin, we'd love to hear about it! [Suggest a Feature](http://support.bestwebsoft.com/hc/en-us/requests/new)
72
+
73
+ = Documentation & Videos =
74
+
75
+ * [[Doc] Installation](https://docs.google.com/document/d/1Nrccb-OLDN80yYjz_6-JPErdpZoslqfPV-g2IZ-GD0A/)
76
+ * [[Doc] Purchase, Installation & Configuration](https://docs.google.com/document/d/1ggkrkWI4zN5aRN7pAI06-DeJswEywELbI5PAagNwStU/)
77
+ * [[Video] Purchase, Installation, Configuration Tutorial](https://www.youtube.com/watch?v=X-ccRdEFcM0)
78
+ * [[Video] Installation Instruction](http://www.youtube.com/watch?v=RUJ9VwZLFSY)
79
+
80
+ = Help & Support =
81
+
82
+ Visit our Help Center if you have any questions, our friendly Support Team is happy to help — <http://support.bestwebsoft.com/>
83
 
84
+ = Translation =
85
 
86
+ * Arabic (ar) (thanks to [SAID MOULLA](mailto:mor0cc0@live.com), www.aljoulane.ma)
87
+ * Brazilian Portuguese (pt_BR) (thanks to [Elton Fernandes Peetz Prado](mailto:epeetz@gmail.com))
88
+ * Bulgarian (bg_BG) (thanks to [Yasen Georgiev](mailto:me@ygeorgiev.com))
89
+ * Czech (cs_CZ) (thanks to [PaMaDeSSoft](mailto:info@pamadessoft.cz), www.pamadessoft.cz)
90
+ * Chinese Traditional (zh_TW) (thanks to [Nick Lai](mailto:nick20080808@gmail.com))
91
+ * Farsi/Persian (fa_IR) (thanks to [Amirreza Nasiri](mailto:nasiri.amirreza.96@gmail.com), www.bytegate.ir)
92
+ * French (fr_FR) (thanks to [Denis Bodorr](mailto:lefinnois@lefinnois.net))
93
+ * German (de_DE) (thanks to [Fred Zimmer](mailto:fred.zimmer@medienconsulting.at),www.medienconsulting.at)
94
+ * Greek (el) (thanks to Dimitris Karantonis, www.soft4real.com/en-UK)
95
+ * Hindi (hi) (thanks to [Development Logics Solutions Pvt Ltd](mailto:contact@developmentlogics.com), www.developmentlogics.com)
96
+ * Italian (it_IT) (thanks to [Istvan](mailto:wart17@hotmail.com))
97
+ * Polish (pl_PL) (thanks to [Ryszard Glegola](mailto:ryszard.glegola@translanet.com), www.translanet.com)
98
+ * Russian (ru_RU)
99
+ * Spanish (es_ES) (thanks to [Cloudzeroxyz](mailto:cloudzeroxyz@gmail.com))
100
+ * Ukrainian (uk)
101
 
102
+ Some of these translations are not complete. We are constantly adding new features which should be translated. If you would like to create your own language pack or update the existing one, you can send [the text of PO and MO files](http://codex.wordpress.org/Translating_WordPress) to [BestWebSoft](http://support.bestwebsoft.com/hc/en-us/requests/new) and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO [files Poedit](http://www.poedit.net/download.php).
103
 
104
  = Recommended Plugins =
105
 
106
+ * [Updater](http://bestwebsoft.com/products/updater/?k=f47f3eb3d739725d592249dbd129f7ff) - Automatically check and update WordPress core with all installed plugins to the latest versions. Manual mode, email notifications and backups of all your files and database before updating.
107
+ * [Contact Form](http://bestwebsoft.com/products/contact-form/?k=56575444122cff9ab3ee3e640efb001a) - Allow customers to reach you using secure contact form plugin any website must have.
108
+ * [Subscriber](http://bestwebsoft.com/products/subscriber/?k=e6d1742fcf1806a39afac207f7920cf3) - Add email newsletter sign up form to WordPress posts, pages and widgets. Collect data and subscribe your users.
109
+ * [Multilanguage](http://bestwebsoft.com/products/multilanguage/?k=e48e145002e4b2472e568a81d171b888) - Translate WordPress website content to other languages manually. Create multilingual pages, posts, widgets, menus, etc.
110
 
111
+ = Credits =
 
112
 
113
+ * lib/recaptchalib.php – Copyright © 2007. Mike Crawford, Ben Maurer (reCAPTCHA - http://recaptcha.net). All Rights Reserved.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
114
 
115
+ = Donate =
116
 
117
+ Donations play an important role in supporting open-source projects. We greatly appreciate any donation you can make to help us continue further development of free products.
118
 
119
+ [Donate Now](http://bestwebsoft.com/donate/)
 
 
120
 
121
  == Installation ==
122
 
125
  3. Plugin settings are located in "BWS Panel" > "Google Captcha".
126
  4. Create a form in post and insert the shortcode [bws_google_captcha] into the form.
127
 
128
+ [View a Step-by-step Instruction on Google Captcha (reCAPTCHA) Installation](https://docs.google.com/document/d/1Nrccb-OLDN80yYjz_6-JPErdpZoslqfPV-g2IZ-GD0A/edit)
129
 
130
  http://www.youtube.com/watch?v=RUJ9VwZLFSY
131
 
136
  You should go to the Settings page and click the 'here' link. Then you should enter your domain name in text field and click 'Create Key' button.
137
  On the next screen you will see your public and private keys.
138
 
139
+ = How to hide Google Captcha in Comments for registered users? =
140
 
141
  You should go to the Settings page and select the roles, for which you want to hide Google Captcha.
142
  Then you must click 'Save Changes' button.
163
  3. Find a place to insert the code for the Google Captcha (reCAPTCHA) output.
164
  4. Insert the necessary lines:
165
 
166
+ `if( function_exists( 'gglcptch_display' ) ) { echo gglcptch_display(); };`
167
 
168
  If the form is HTML you should insert the line with the PHP tags:
169
 
170
+ `<?php if( function_exists( 'gglcptch_display' ) ) { echo gglcptch_display(); }; ?>`
171
 
172
  = I have some problems with the plugin's work. What Information should I provide to receive proper support? =
173
 
174
+ Please make sure that the problem hasn't been discussed yet on our forum (<http://support.bestwebsoft.com>). If no, please provide the following data along with your problem's description:
175
 
176
  1. the link to the page where the problem occurs
177
  2. the name of the plugin and its version. If you are using a pro version - your order number.
178
  3. the version of your WordPress installation
179
+ 4. copy and paste into the message your system status report. Please read more here: [Instruction on System Status](https://docs.google.com/document/d/1Wi2X8RdRGXk9kMszQy1xItJrpN0ncXgioH935MaBKtc/edit)
180
 
181
  == Screenshots ==
182
 
187
  5. Contact Form with Google Captcha (reCAPTCHA).
188
  6. The form with Google Captcha (reCAPTCHA) version 1.
189
  7. The form with Google Captcha (reCAPTCHA) dark theme.
190
+ 8. Google Captcha (reCAPTCHA) Settings page.
191
 
192
  == Changelog ==
193
 
194
+ = V1.26 - 15.08.2016 =
195
+ * Update : Hook's priority was changed for displaying captcha in the registration form.
196
+ * Update : Compatible with JetPack.
197
+
198
  = V1.25 - 15.07.2016 =
199
  * Update : BWS panel section was updated.
200
 
312
 
313
  == Upgrade Notice ==
314
 
315
+ = V1.26 =
316
+ * Bugs fixed.
317
+
318
  = V1.25 =
319
  Usability improved.
320