Google Captcha (reCAPTCHA) by BestWebSoft - Version 1.21

Version Description

  • 10.12.2015 =
  • NEW : A button for Google Captcha (reCAPTCHA) shortcode inserting to the content was added.
  • NEW : The Farsi/Persian language file was added.
  • NEW : The French language file was added.
Download this release

Release Info

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

Code changes from version 1.20 to 1.21

Files changed (72) hide show
  1. bws_menu/bws_functions.php +89 -12
  2. bws_menu/bws_include.php +0 -1
  3. bws_menu/bws_menu.php +6 -9
  4. bws_menu/css/general_style.css +11 -3
  5. bws_menu/css/style.css +6 -6
  6. bws_menu/images/shortcode-icon.png +0 -0
  7. bws_menu/js/bws_tooltip.js +14 -6
  8. bws_menu/js/general_script.js +1 -1
  9. bws_menu/js/shortcode-button.js +114 -111
  10. bws_menu/languages/bestwebsoft-de_DE.mo +0 -0
  11. bws_menu/languages/bestwebsoft-de_DE.po +55 -23
  12. bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
  13. bws_menu/languages/bestwebsoft-fr_FR.po +270 -199
  14. bws_menu/languages/bestwebsoft-it_IT.mo +0 -0
  15. bws_menu/languages/bestwebsoft-it_IT.po +56 -26
  16. bws_menu/languages/bestwebsoft-ja.mo +0 -0
  17. bws_menu/languages/bestwebsoft-ja.po +57 -29
  18. bws_menu/languages/bestwebsoft-pt_BR.mo +0 -0
  19. bws_menu/languages/bestwebsoft-pt_BR.po +55 -23
  20. bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
  21. bws_menu/languages/bestwebsoft-ru_RU.po +55 -23
  22. bws_menu/languages/bestwebsoft-sr_RS.mo +0 -0
  23. bws_menu/languages/bestwebsoft-sr_RS.po +56 -29
  24. bws_menu/languages/bestwebsoft-sv_SE.mo +0 -0
  25. bws_menu/languages/bestwebsoft-sv_SE.po +55 -26
  26. bws_menu/languages/bestwebsoft-uk.mo +0 -0
  27. bws_menu/languages/bestwebsoft-uk.po +55 -26
  28. css/gglcptch.css +30 -0
  29. css/style.css +5 -1
  30. google-captcha.php +511 -296
  31. images/comments_form.jpg +0 -0
  32. images/contact_form.jpg +0 -0
  33. images/login_form.jpg +0 -0
  34. images/recaptcha_v1.png +0 -0
  35. images/recaptcha_v2.png +0 -0
  36. images/registration_form.jpg +0 -0
  37. images/reset_pwd_form.jpg +0 -0
  38. js/script.js +42 -11
  39. languages/google-captcha-ar.mo +0 -0
  40. languages/google-captcha-ar.po +150 -127
  41. languages/google-captcha-bg_BG.mo +0 -0
  42. languages/google-captcha-bg_BG.po +144 -130
  43. languages/google-captcha-de_DE.mo +0 -0
  44. languages/google-captcha-de_DE.po +164 -132
  45. languages/google-captcha-el.mo +0 -0
  46. languages/google-captcha-el.po +165 -133
  47. languages/google-captcha-es_ES.mo +0 -0
  48. languages/google-captcha-es_ES.po +141 -127
  49. languages/google-captcha-fa_IR.mo +0 -0
  50. languages/google-captcha-fa_IR.po +331 -0
  51. languages/google-captcha-fr_FR.mo +0 -0
  52. languages/google-captcha-fr_FR.po +378 -0
  53. languages/google-captcha-hi.mo +0 -0
  54. languages/google-captcha-hi.po +155 -133
  55. languages/google-captcha-it_IT.mo +0 -0
  56. languages/google-captcha-it_IT.po +158 -132
  57. languages/google-captcha-pl_PL.mo +0 -0
  58. languages/google-captcha-pl_PL.po +142 -128
  59. languages/google-captcha-pt_BR.mo +0 -0
  60. languages/google-captcha-pt_BR.po +145 -133
  61. languages/google-captcha-ru_RU.mo +0 -0
  62. languages/google-captcha-ru_RU.po +174 -132
  63. languages/google-captcha-uk.mo +0 -0
  64. languages/google-captcha-uk.po +172 -131
  65. languages/google-captcha-zh_TW.mo +0 -0
  66. languages/google-captcha-zh_TW.po +130 -123
  67. lib/recaptchalib.php +13 -15
  68. readme.txt +15 -5
  69. screenshot-1.png +0 -0
  70. screenshot-2.png +0 -0
  71. screenshot-3.png +0 -0
  72. screenshot-4.png +0 -0
bws_menu/bws_functions.php CHANGED
@@ -1,19 +1,45 @@
1
  <?php
2
  /*
3
  * General functions for BestWebSoft plugins
4
- * Version: 1.1.2
5
  */
6
 
 
 
 
 
7
  if ( ! function_exists ( 'bws_add_general_menu' ) ) {
8
  function bws_add_general_menu() {
9
- add_menu_page( 'BWS Plugins', 'BWS Plugins', 'manage_options', 'bws_plugins', 'bws_add_menu_render', plugins_url( 'images/px.png', __FILE__ ), 1001 );
10
  }
11
  }
12
 
13
  /**
14
- * Function check if plugin is compatible with current WP version - for old plugin version
15
  * @return void
16
  */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  if ( ! function_exists ( 'bws_wp_version_check' ) ) {
18
  function bws_wp_version_check( $plugin_basename, $plugin_info, $require_wp ) {
19
  bws_wp_min_version_check( $plugin_basename, $plugin_info, '3.8' , $require_wp );
@@ -328,13 +354,19 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
328
  }
329
  }
330
 
331
- /* compatibility function (Menu Version: 1.7.6) */
 
 
 
332
  if ( ! function_exists( 'bws_go_pro_tab' ) ) {
333
  function bws_go_pro_tab( $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
334
- bws_go_pro_tab_show( false, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false );
335
  }
336
  }
337
 
 
 
 
338
  if ( ! function_exists( 'bws_go_pro_tab_show' ) ) {
339
  function bws_go_pro_tab_show( $bws_hide_premium_options_check, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
340
  global $wp_version, $bstwbsftwppdtplgns_options;
@@ -686,7 +718,9 @@ if ( ! function_exists( 'bws_hide_premium_options' ) ) {
686
  global $current_user;
687
  if ( ! $current_user )
688
  get_currentuserinfo();
689
-
 
 
690
  $options['hide_premium_options'][] = $current_user->ID;
691
 
692
  return array(
@@ -701,7 +735,7 @@ if ( ! function_exists( 'bws_hide_premium_options_check' ) ) {
701
  if ( ! $current_user )
702
  get_currentuserinfo();
703
 
704
- if ( isset( $options['hide_premium_options'] ) && in_array( $current_user->ID, $options['hide_premium_options'] ) )
705
  return true;
706
  else
707
  return false;
@@ -733,7 +767,7 @@ if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
733
 
734
  if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
735
  function bws_plugins_admin_head() {
736
- global $bws_shortcode_list, $wp_version;
737
  if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) { ?>
738
  <noscript>
739
  <style type="text/css">
@@ -782,7 +816,25 @@ if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
782
  };
783
  </script>
784
  <!-- TinyMCE Shortcode Plugin -->
785
- <?php }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
786
  }
787
  }
788
 
@@ -823,7 +875,8 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
823
  'pos-left' => 0,
824
  'pos-top' => 0,
825
  'zindex' => 10000
826
- ),
 
827
  );
828
  $tooltip_args = array_merge( $tooltip_args_default, $tooltip_args );
829
  /* Check that our merged array has default values */
@@ -903,11 +956,11 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
903
  }
904
 
905
  if ( ! function_exists ( 'bws_form_restore_default_settings' ) ) {
906
- function bws_form_restore_default_settings( $plugin_basename ) { ?>
907
  <form method="post" action="">
908
  <p><?php _e( 'Restore all plugin settings to defaults', 'bestwebsoft' ); ?></p>
909
  <p>
910
- <input type="submit" class="button" value="<?php _e( 'Restore settings', 'bestwebsoft' ); ?>" />
911
  </p>
912
  <input type="hidden" name="bws_restore_default" value="submit" />
913
  <?php wp_nonce_field( $plugin_basename, 'bws_settings_nonce_name' ); ?>
@@ -942,12 +995,14 @@ if ( ! function_exists( 'bws_add_editor_buttons' ) ) {
942
  }
943
  }
944
  }
 
945
  if ( ! function_exists( 'bws_add_buttons' ) ){
946
  function bws_add_buttons( $plugin_array ) {
947
  $plugin_array['add_bws_shortcode'] = plugins_url( 'js/shortcode-button.js', __FILE__ );
948
  return $plugin_array;
949
  }
950
  }
 
951
  if ( ! function_exists( 'bws_register_buttons' ) ) {
952
  function bws_register_buttons( $buttons ) {
953
  array_push( $buttons, 'add_bws_shortcode' ); /* dropcap', 'recentposts */
@@ -1013,6 +1068,28 @@ if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
1013
  }
1014
  }
1015
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1016
  add_action( 'admin_init', 'bws_plugins_admin_init' );
1017
  add_action( 'admin_enqueue_scripts', 'bws_admin_enqueue_scripts' );
1018
  add_action( 'admin_head', 'bws_plugins_admin_head' );
1
  <?php
2
  /*
3
  * General functions for BestWebSoft plugins
 
4
  */
5
 
6
+ /**
7
+ * Function add BWS Plugins page - for old plugin version
8
+ * @deprecated 1.7.9
9
+ */
10
  if ( ! function_exists ( 'bws_add_general_menu' ) ) {
11
  function bws_add_general_menu() {
12
+ bws_general_menu();
13
  }
14
  }
15
 
16
  /**
17
+ * Function add BWS Plugins page
18
  * @return void
19
  */
20
+ if ( ! function_exists ( 'bws_general_menu' ) ) {
21
+ function bws_general_menu() {
22
+ global $menu, $bws_general_menu_exist;
23
+
24
+ if ( ! $bws_general_menu_exist ) {
25
+ /* we check also menu exist in global array as in old plugins $bws_general_menu_exist variable not exist */
26
+ foreach ( $menu as $value_menu ) {
27
+ if ( 'bws_plugins' == $value_menu[2] ) {
28
+ $bws_general_menu_exist = true;
29
+ return;
30
+ }
31
+ }
32
+
33
+ add_menu_page( 'BWS Plugins', 'BWS Plugins', 'manage_options', 'bws_plugins', 'bws_add_menu_render', plugins_url( 'images/px.png', __FILE__ ), 1001 );
34
+ $bws_general_menu_exist = true;
35
+ }
36
+ }
37
+ }
38
+
39
+ /**
40
+ * Function check if plugin is compatible with current WP version - for old plugin version
41
+ * @deprecated 1.7.4
42
+ */
43
  if ( ! function_exists ( 'bws_wp_version_check' ) ) {
44
  function bws_wp_version_check( $plugin_basename, $plugin_info, $require_wp ) {
45
  bws_wp_min_version_check( $plugin_basename, $plugin_info, '3.8' , $require_wp );
354
  }
355
  }
356
 
357
+ /**
358
+ * Function display GO PRO tab - for old plugin version
359
+ * @deprecated 1.7.6
360
+ */
361
  if ( ! function_exists( 'bws_go_pro_tab' ) ) {
362
  function bws_go_pro_tab( $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
363
+ bws_go_pro_tab_show( false, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated, $trial_days_number );
364
  }
365
  }
366
 
367
+ /**
368
+ * Function display GO PRO tab
369
+ */
370
  if ( ! function_exists( 'bws_go_pro_tab_show' ) ) {
371
  function bws_go_pro_tab_show( $bws_hide_premium_options_check, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
372
  global $wp_version, $bstwbsftwppdtplgns_options;
718
  global $current_user;
719
  if ( ! $current_user )
720
  get_currentuserinfo();
721
+ if ( ! isset( $options['hide_premium_options'] ) || ! is_array( $options['hide_premium_options'] ) )
722
+ $options['hide_premium_options'] = array();
723
+
724
  $options['hide_premium_options'][] = $current_user->ID;
725
 
726
  return array(
735
  if ( ! $current_user )
736
  get_currentuserinfo();
737
 
738
+ if ( ! empty( $options['hide_premium_options'] ) && in_array( $current_user->ID, $options['hide_premium_options'] ) )
739
  return true;
740
  else
741
  return false;
767
 
768
  if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
769
  function bws_plugins_admin_head() {
770
+ global $bws_shortcode_list, $wp_version, $post_type;
771
  if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) { ?>
772
  <noscript>
773
  <style type="text/css">
816
  };
817
  </script>
818
  <!-- TinyMCE Shortcode Plugin -->
819
+ <?php if ( isset( $post_type ) && in_array( $post_type, array( 'post', 'page' ) ) ) {
820
+ $tooltip_args = array(
821
+ 'tooltip_id' => 'bws_shortcode_button_tooltip',
822
+ 'css_selector' => '.mce-bws_shortcode_button',
823
+ 'actions' => array(
824
+ 'click' => false,
825
+ 'onload' => true
826
+ ),
827
+ 'content' => '<h3>' . __( 'Add shortcode', 'bestwebsoft' ) . '</h3><p>' . __( "Add BestWebSoft plugins' shortcodes using this button.", 'bestwebsoft' ) . '</p>',
828
+ 'position' => array(
829
+ 'edge' => 'right'
830
+ ),
831
+ 'set_timeout' => 2000
832
+ );
833
+ if ( $wp_version < '3.9' )
834
+ $tooltip_args['css_selector'] = '.mce_add_bws_shortcode';
835
+ bws_add_tooltip_in_admin( $tooltip_args );
836
+ }
837
+ }
838
  }
839
  }
840
 
875
  'pos-left' => 0,
876
  'pos-top' => 0,
877
  'zindex' => 10000
878
+ ),
879
+ 'set_timeout' => 0
880
  );
881
  $tooltip_args = array_merge( $tooltip_args_default, $tooltip_args );
882
  /* Check that our merged array has default values */
956
  }
957
 
958
  if ( ! function_exists ( 'bws_form_restore_default_settings' ) ) {
959
+ function bws_form_restore_default_settings( $plugin_basename, $change_permission_attr = '' ) { ?>
960
  <form method="post" action="">
961
  <p><?php _e( 'Restore all plugin settings to defaults', 'bestwebsoft' ); ?></p>
962
  <p>
963
+ <input <?php echo $change_permission_attr; ?> type="submit" class="button" value="<?php _e( 'Restore settings', 'bestwebsoft' ); ?>" />
964
  </p>
965
  <input type="hidden" name="bws_restore_default" value="submit" />
966
  <?php wp_nonce_field( $plugin_basename, 'bws_settings_nonce_name' ); ?>
995
  }
996
  }
997
  }
998
+
999
  if ( ! function_exists( 'bws_add_buttons' ) ){
1000
  function bws_add_buttons( $plugin_array ) {
1001
  $plugin_array['add_bws_shortcode'] = plugins_url( 'js/shortcode-button.js', __FILE__ );
1002
  return $plugin_array;
1003
  }
1004
  }
1005
+
1006
  if ( ! function_exists( 'bws_register_buttons' ) ) {
1007
  function bws_register_buttons( $buttons ) {
1008
  array_push( $buttons, 'add_bws_shortcode' ); /* dropcap', 'recentposts */
1068
  }
1069
  }
1070
 
1071
+ /* add help tab */
1072
+ if ( ! function_exists( 'bws_help_tab' ) ) {
1073
+ function bws_help_tab( $screen, $args ) {
1074
+ $content = '<p><a href="http://support.bestwebsoft.com/hc/en-us/sections/' . $args['section'] . '" target="_blank">' . __( 'Visit Help Center', 'bestwebsoft' ) . '</a></p>';
1075
+
1076
+ $screen->add_help_tab(
1077
+ array(
1078
+ 'id' => $args['id'] . '_help_tab',
1079
+ 'title' => __( 'FAQ', 'bestwebsoft' ),
1080
+ 'content' => $content
1081
+ )
1082
+ );
1083
+
1084
+ $screen->set_help_sidebar(
1085
+ '<p><strong>' . __( 'For more information:', 'bestwebsoft' ) . '</strong></p>' .
1086
+ '<p><a href="https://drive.google.com/folderview?id=0B5l8lO-CaKt9VGh0a09vUjNFNjA&usp=sharing#list" target="_blank">' . __( 'Documentation', 'bestwebsoft' ) . '</a></p>' .
1087
+ '<p><a href="http://www.youtube.com/user/bestwebsoft/playlists?flow=grid&sort=da&view=1" target="_blank">' . __( 'Video Instructions', 'bestwebsoft' ) . '</a></p>' .
1088
+ '<p><a href="http://support.bestwebsoft.com/hc/en-us/requests/new" target="_blank">' . __( 'Submit a Request', 'bestwebsoft' ) . '</a></p>'
1089
+ );
1090
+ }
1091
+ }
1092
+
1093
  add_action( 'admin_init', 'bws_plugins_admin_init' );
1094
  add_action( 'admin_enqueue_scripts', 'bws_admin_enqueue_scripts' );
1095
  add_action( 'admin_head', 'bws_plugins_admin_head' );
bws_menu/bws_include.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
  /*
3
  * Get latest version
4
- * Version: 1.0.0
5
  */
6
 
7
  if ( ! function_exists ( 'bws_include_init' ) ) {
1
  <?php
2
  /*
3
  * Get latest version
 
4
  */
5
 
6
  if ( ! function_exists ( 'bws_include_init' ) ) {
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 1.7.6
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
@@ -613,8 +613,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
613
  }
614
  } ?>
615
  <div class="wrap">
616
- <div class="icon32 icon32-bws" id="icon-options-general"></div>
617
- <h2>
618
  <span class="bws_main title">BestWebSoft</span>
619
  <ul class="subsubsub bws_title_menu">
620
  <li><a href="<?php echo esc_url( 'http://support.bestwebsoft.com/home' ); ?>" target="_blank"><?php _e( 'Need help?', 'bestwebsoft' ); ?></a></li> |
@@ -622,12 +621,10 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
622
  <li><a class="bws_system_status <?php if ( isset( $_GET['action'] ) && 'system_status' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&amp;action=system_status"><?php _e( 'System status', 'bestwebsoft' ); ?></a></li>
623
  </ul>
624
  <div class="clear"></div>
625
- </h2>
626
  <h2 class="nav-tab-wrapper">
627
  <a class="nav-tab<?php if ( !isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
628
- <?php if ( $wp_version >= '3.4' ) { ?>
629
- <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'themes' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&amp;action=themes"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
630
- <?php } ?>
631
  </h2>
632
  <?php if ( ! isset( $_GET['action'] ) ) { ?>
633
  <ul class="subsubsub">
@@ -637,7 +634,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
637
  </ul>
638
  <div class="clear"></div>
639
  <?php if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || !isset( $_GET['sub'] ) ) { ?>
640
- <h4 class="bws_installed"><?php _e( 'Installed plugins', 'bestwebsoft' ); ?></h4>
641
  <?php foreach ( $all_plugins as $key_plugin => $value_plugin ) {
642
  if ( isset( $bws_plugins_pro[ $key_plugin ] ) )
643
  $key_plugin = $bws_plugins_pro[ $key_plugin ];
@@ -755,7 +752,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
755
  } ?>
756
  <div class="clear"></div>
757
  <?php if ( ( isset( $_GET['sub'] ) && 'recommended' == $_GET['sub'] ) || !isset( $_GET['sub'] ) ) { ?>
758
- <h4 class="bws_recommended"><?php _e( 'Recommended plugins', 'bestwebsoft' ); ?></h4>
759
  <?php foreach ( $recommend_plugins as $key_plugin => $value_plugin ) {
760
 
761
  if ( isset( $bws_plugins[ $key_plugin ] ) ) {
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 1.8.0
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
613
  }
614
  } ?>
615
  <div class="wrap">
616
+ <h1>
 
617
  <span class="bws_main title">BestWebSoft</span>
618
  <ul class="subsubsub bws_title_menu">
619
  <li><a href="<?php echo esc_url( 'http://support.bestwebsoft.com/home' ); ?>" target="_blank"><?php _e( 'Need help?', 'bestwebsoft' ); ?></a></li> |
621
  <li><a class="bws_system_status <?php if ( isset( $_GET['action'] ) && 'system_status' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&amp;action=system_status"><?php _e( 'System status', 'bestwebsoft' ); ?></a></li>
622
  </ul>
623
  <div class="clear"></div>
624
+ </h1>
625
  <h2 class="nav-tab-wrapper">
626
  <a class="nav-tab<?php if ( !isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
627
+ <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'themes' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&amp;action=themes"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
 
 
628
  </h2>
629
  <?php if ( ! isset( $_GET['action'] ) ) { ?>
630
  <ul class="subsubsub">
634
  </ul>
635
  <div class="clear"></div>
636
  <?php if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || !isset( $_GET['sub'] ) ) { ?>
637
+ <h3 class="bws_installed"><?php _e( 'Installed plugins', 'bestwebsoft' ); ?></h3>
638
  <?php foreach ( $all_plugins as $key_plugin => $value_plugin ) {
639
  if ( isset( $bws_plugins_pro[ $key_plugin ] ) )
640
  $key_plugin = $bws_plugins_pro[ $key_plugin ];
752
  } ?>
753
  <div class="clear"></div>
754
  <?php if ( ( isset( $_GET['sub'] ) && 'recommended' == $_GET['sub'] ) || !isset( $_GET['sub'] ) ) { ?>
755
+ <h3 class="bws_recommended"><?php _e( 'Recommended plugins', 'bestwebsoft' ); ?></h3>
756
  <?php foreach ( $recommend_plugins as $key_plugin => $value_plugin ) {
757
 
758
  if ( isset( $bws_plugins[ $key_plugin ] ) ) {
bws_menu/css/general_style.css CHANGED
@@ -255,6 +255,14 @@ div.bws_banner_on_plugin_page .icon {
255
  margin: 8px;
256
  cursor: pointer;
257
  }
 
 
 
 
 
 
 
 
258
  /* #### Mobile Phones Portrait or Landscape #### */
259
  @media screen and (max-device-width: 768px) {
260
  .bws_banner_on_plugin_page .text,
@@ -288,7 +296,9 @@ span.bws_code {
288
  position: relative;
289
  margin: 3px 5px;
290
  width: 28px;
291
- display: inline-block;
 
 
292
  vertical-align: middle;
293
  }
294
  .bws_help_box.dashicons-editor-help {
@@ -382,8 +392,6 @@ span.bws_code {
382
  .rtl .bws_hidden_help_text:before {
383
  margin-right: -2px;
384
  }
385
-
386
-
387
  /* bws shortcode insert */
388
  #bws_shortcode_content,
389
  #bws_shortcode_select_plugin {
255
  margin: 8px;
256
  cursor: pointer;
257
  }
258
+ .rtl .bws_banner_on_plugin_page .close_icon {
259
+ float: left;
260
+ }
261
+ .rtl div.bws_banner_on_plugin_page .icon,
262
+ .rtl div.bws_banner_on_plugin_page .button,
263
+ .rtl .bws_banner_on_plugin_page .text {
264
+ float: right;
265
+ }
266
  /* #### Mobile Phones Portrait or Landscape #### */
267
  @media screen and (max-device-width: 768px) {
268
  .bws_banner_on_plugin_page .text,
296
  position: relative;
297
  margin: 3px 5px;
298
  width: 28px;
299
+ display: inline-block;
300
+ }
301
+ .bws_help_box:not(.dashicons) {
302
  vertical-align: middle;
303
  }
304
  .bws_help_box.dashicons-editor-help {
392
  .rtl .bws_hidden_help_text:before {
393
  margin-right: -2px;
394
  }
 
 
395
  /* bws shortcode insert */
396
  #bws_shortcode_content,
397
  #bws_shortcode_select_plugin {
bws_menu/css/style.css CHANGED
@@ -24,15 +24,15 @@
24
  float: left;
25
  margin-right: 30px;
26
  }
27
- h4.bws_installed,
28
- h4.bws_recommended {
29
  color: #999;
30
  font-weight: bold;
31
  text-transform: uppercase;
32
  font-size: 14px;
33
  }
34
- h4.bws_installed:before,
35
- h4.bws_recommended:before {
36
  border-radius: 9px;
37
  content: "";
38
  display: inline-block;
@@ -42,10 +42,10 @@ h4.bws_recommended:before {
42
  width: 8px;
43
  margin-right: 7px;
44
  }
45
- h4.bws_recommended:before {
46
  background: #0074a2;
47
  }
48
- h4.bws_installed:before {
49
  background: #00a22e;
50
  }
51
  .bws_product_box {
24
  float: left;
25
  margin-right: 30px;
26
  }
27
+ .bws_installed,
28
+ .bws_recommended {
29
  color: #999;
30
  font-weight: bold;
31
  text-transform: uppercase;
32
  font-size: 14px;
33
  }
34
+ .bws_installed:before,
35
+ .bws_recommended:before {
36
  border-radius: 9px;
37
  content: "";
38
  display: inline-block;
42
  width: 8px;
43
  margin-right: 7px;
44
  }
45
+ .bws_recommended:before {
46
  background: #0074a2;
47
  }
48
+ .bws_installed:before {
49
  background: #00a22e;
50
  }
51
  .bws_product_box {
bws_menu/images/shortcode-icon.png CHANGED
Binary file
bws_menu/js/bws_tooltip.js CHANGED
@@ -7,11 +7,11 @@
7
  jQuery.bwsTooltip = function( pointer_options ) {
8
  var pointer_buttons = pointer_options['buttons'];
9
  /* extend pointer options - add close button */
10
- pointer_options = $.extend(pointer_options, {
11
  buttons: function(event, t) {
12
  var button;
13
  /* check and add dismiss-type buttons */
14
- for( var but in pointer_buttons ) {
15
  if ( typeof pointer_buttons[ but ]['type'] != 'undefined' && pointer_buttons[ but ]['type'] == 'dismiss' && typeof pointer_buttons[ but ]['text'] != 'undefined' && pointer_buttons[ but ]['text'] != '' ) {
16
  button += '<a style="margin:0px 5px 2px;" class="button-secondary">' + pointer_buttons[ but ]['text'] + '</a>';
17
  }
@@ -34,11 +34,10 @@
34
  });
35
  /* function to display pointer */
36
  function displayPointer( cssSelector ) {
37
- cssSelector.pointer(pointer_options).pointer({
38
  pointerClass: 'wp-pointer ' + pointer_options["tooltip_id"],
39
  content: pointer_options['content'],
40
- position:
41
- {
42
  edge: pointer_options['position']['edge'],
43
  align: pointer_options['position']['align'],
44
  },
@@ -64,10 +63,19 @@
64
  $( "." + pointer_options["tooltip_id"] ).css({ "z-index": pointer_options['position']['zindex'] });
65
  }
66
  }
 
67
  /* display pointer for the first time */
68
  if ( pointer_options['actions']['onload'] ) {
69
- displayPointer( $( pointer_options['css_selector'] ) );
 
 
 
 
 
 
 
70
  }
 
71
  /* display pointer when clicked on selector */
72
  if ( pointer_options['actions']['click'] ) {
73
  $( pointer_options['css_selector'] ).click( function () {
7
  jQuery.bwsTooltip = function( pointer_options ) {
8
  var pointer_buttons = pointer_options['buttons'];
9
  /* extend pointer options - add close button */
10
+ pointer_options = $.extend( pointer_options, {
11
  buttons: function(event, t) {
12
  var button;
13
  /* check and add dismiss-type buttons */
14
+ for ( var but in pointer_buttons ) {
15
  if ( typeof pointer_buttons[ but ]['type'] != 'undefined' && pointer_buttons[ but ]['type'] == 'dismiss' && typeof pointer_buttons[ but ]['text'] != 'undefined' && pointer_buttons[ but ]['text'] != '' ) {
16
  button += '<a style="margin:0px 5px 2px;" class="button-secondary">' + pointer_buttons[ but ]['text'] + '</a>';
17
  }
34
  });
35
  /* function to display pointer */
36
  function displayPointer( cssSelector ) {
37
+ cssSelector.pointer( pointer_options ).pointer({
38
  pointerClass: 'wp-pointer ' + pointer_options["tooltip_id"],
39
  content: pointer_options['content'],
40
+ position: {
 
41
  edge: pointer_options['position']['edge'],
42
  align: pointer_options['position']['align'],
43
  },
63
  $( "." + pointer_options["tooltip_id"] ).css({ "z-index": pointer_options['position']['zindex'] });
64
  }
65
  }
66
+
67
  /* display pointer for the first time */
68
  if ( pointer_options['actions']['onload'] ) {
69
+ if ( pointer_options['set_timeout'] > 0 ) {
70
+ var settime = parseInt( pointer_options['set_timeout'] );
71
+ setTimeout( function() {
72
+ displayPointer( $( pointer_options['css_selector'] ) );
73
+ }, settime );
74
+ } else {
75
+ displayPointer( $( pointer_options['css_selector'] ) );
76
+ }
77
  }
78
+
79
  /* display pointer when clicked on selector */
80
  if ( pointer_options['actions']['click'] ) {
81
  $( pointer_options['css_selector'] ).click( function () {
bws_menu/js/general_script.js CHANGED
@@ -18,6 +18,6 @@ function bws_show_settings_notice() {
18
  $( '.bws_save_anchor' ).on( "click", function( event ) {
19
  event.preventDefault();
20
  $( '.bws_form #bws-submit-button' ).click();
21
- });
22
  });
23
  })(jQuery);
18
  $( '.bws_save_anchor' ).on( "click", function( event ) {
19
  event.preventDefault();
20
  $( '.bws_form #bws-submit-button' ).click();
21
+ });
22
  });
23
  })(jQuery);
bws_menu/js/shortcode-button.js CHANGED
@@ -1,121 +1,124 @@
1
- (function($) {
2
- var win;
3
- tinymce.create( 'tinymce.plugins.BWSButton', {
4
- /**
5
- * Initializes the plugin, this will be executed after the plugin has been created.
6
- * This call is done before the editor instance has finished it's initialization so use the onInit event
7
- * of the editor instance to intercept that event.
8
- *
9
- * @param {tinymce.Editor} ed Editor instance that the plugin is initialized in.
10
- * @param {string} url Absolute URL to where the plugin is located.
11
- */
12
- init : function( ed, url ) {
13
- ed.addButton( 'add_bws_shortcode', {
14
- title : bws_shortcode_button.title,
15
- image : bws_shortcode_button.icon_url,
16
- onclick: function() {
17
- if ( bws_shortcode_button.wp_version < '3.9' ) {
18
- /* triggers the thickbox */
19
- var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
20
- W = W - 80;
21
- H = H - 84;
22
- tb_show( bws_shortcode_button.title, '#TB_inline?width=' + W + '&height=' + H + '&inlineId=bws_shortcode_popup' );
23
-
24
- var current_object = '#TB_ajaxContent';
25
- } else {
26
- win = ed.windowManager.open( {
27
- width: 400,
28
- height: 400,
29
- inline: true,
30
- title: bws_shortcode_button.title,
31
- body: {
32
- id : 'bws-shortcode-content',
33
- type: 'container',
34
- classes: 'bws-shortcode',
35
- html: $( '#bws_shortcode_popup' ).html()
36
- },
37
- buttons: [{
38
- text: 'Insert',
39
- classes: 'button-primary primary bws_shortcode_insert',
40
- onclick: function( e ) {
41
- var shortcode = $( '.mce-container-body #bws_shortcode_display' ).text();
42
- if ( '' != shortcode ) {
43
- /* insert shortcode to tinymce */
44
- ed.insertContent( shortcode );
45
- }
46
- ed.windowManager.close();
 
 
 
47
  },
48
- },
49
- {
50
- text: 'Cancel',
51
- onclick: 'close'
52
- }],
53
-
54
- });
55
- var current_object = '.mce-container-body';
56
- }
57
- var select_count = $( current_object + ' select#bws_shortcode_select option').length;
58
- if ( 1 == select_count ) {
59
- $( current_object + ' #bws_shortcode_select_plugin' ).hide();
60
- }
61
-
62
- var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
63
- $( current_object + ' #bws_shortcode_content > div' ).hide();
64
- $( current_object + ' #bws_shortcode_content > #' + plugin ).show();
65
-
66
- if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
67
- $( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
68
- }
69
 
70
- $( current_object + ' #bws_shortcode_select' ).on( 'change',function() {
71
  var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
72
  $( current_object + ' #bws_shortcode_content > div' ).hide();
73
  $( current_object + ' #bws_shortcode_content > #' + plugin ).show();
 
74
  if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
75
  $( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
76
- } else {
77
- $( current_object + ' #bws_shortcode_display' ).text( '' );
78
  }
79
- });
80
 
81
- $.each( bws_shortcode_button.function_name, function( index, value ) {
82
- eval( value + '();' );
83
- });
84
- }
85
- });
86
- },
87
-
88
- /**
89
- * Creates control instances based in the incomming name. This method is normally not
90
- * needed since the addButton method of the tinymce.Editor class is a more easy way of adding buttons
91
- * but you sometimes need to create more complex controls like listboxes, split buttons etc then this
92
- * method can be used to create those.
93
- *
94
- * @param {String} n Name of the control to create.
95
- * @param {tinymce.ControlManager} cm Control manager to use inorder to create new control.
96
- * @return {tinymce.ui.Control} New control instance or null if no control was created.
97
- */
98
- createControl : function(n, cm) {
99
- return null;
100
- },
101
-
102
- /**
103
- * Returns information about the plugin as a name/value array.
104
- * The current keys are longname, author, authorurl, infourl and version.
105
- *
106
- * @return {Object} Name/value array containing information about the plugin.
107
- */
108
- getInfo : function() {
109
- return {
110
- longname : 'BWS Shortcode Buttons',
111
- author : 'BWS',
112
- authorurl : 'http://bestwebsoft.com',
113
- infourl : '',
114
- version : "0.1"
115
- };
116
- }
117
- });
118
-
119
- /* Register plugin */
120
- tinymce.PluginManager.add( 'add_bws_shortcode', tinymce.plugins.BWSButton );
 
 
 
 
 
 
 
 
 
 
 
 
121
  })(jQuery);
1
+ (function($) {
2
+ if ( typeof bws_shortcode_button != 'undefined' ) {
3
+ var win;
4
+ tinymce.create( 'tinymce.plugins.BWSButton', {
5
+ /**
6
+ * Initializes the plugin, this will be executed after the plugin has been created.
7
+ * This call is done before the editor instance has finished it's initialization so use the onInit event
8
+ * of the editor instance to intercept that event.
9
+ *
10
+ * @param {tinymce.Editor} ed Editor instance that the plugin is initialized in.
11
+ * @param {string} url Absolute URL to where the plugin is located.
12
+ */
13
+ init : function( ed, url ) {
14
+ ed.addButton( 'add_bws_shortcode', {
15
+ title : bws_shortcode_button.title,
16
+ classes: 'bws_shortcode_button widget btn',
17
+ image : bws_shortcode_button.icon_url,
18
+ onclick: function() {
19
+ if ( bws_shortcode_button.wp_version < '3.9' ) {
20
+ /* triggers the thickbox */
21
+ var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
22
+ W = W - 80;
23
+ H = H - 84;
24
+ tb_show( bws_shortcode_button.title, '#TB_inline?width=' + W + '&height=' + H + '&inlineId=bws_shortcode_popup' );
25
+
26
+ var current_object = '#TB_ajaxContent';
27
+ } else {
28
+ win = ed.windowManager.open( {
29
+ width: 400,
30
+ height: 400,
31
+ inline: true,
32
+ title: bws_shortcode_button.title,
33
+ body: {
34
+ id : 'bws-shortcode-content',
35
+ type: 'container',
36
+ classes: 'bws-shortcode',
37
+ html: $( '#bws_shortcode_popup' ).html()
38
+ },
39
+ buttons: [{
40
+ text: 'Insert',
41
+ classes: 'button-primary primary bws_shortcode_insert',
42
+ onclick: function( e ) {
43
+ var shortcode = $( '.mce-container-body #bws_shortcode_display' ).text();
44
+ if ( '' != shortcode ) {
45
+ /* insert shortcode to tinymce */
46
+ ed.insertContent( shortcode );
47
+ }
48
+ ed.windowManager.close();
49
+ },
50
  },
51
+ {
52
+ text: 'Cancel',
53
+ onclick: 'close'
54
+ }],
55
+
56
+ });
57
+ var current_object = '.mce-container-body';
58
+ }
59
+ var select_count = $( current_object + ' select#bws_shortcode_select option').length;
60
+ if ( 1 == select_count ) {
61
+ $( current_object + ' #bws_shortcode_select_plugin' ).hide();
62
+ }
 
 
 
 
 
 
 
 
 
63
 
 
64
  var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
65
  $( current_object + ' #bws_shortcode_content > div' ).hide();
66
  $( current_object + ' #bws_shortcode_content > #' + plugin ).show();
67
+
68
  if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
69
  $( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
 
 
70
  }
 
71
 
72
+ $( current_object + ' #bws_shortcode_select' ).on( 'change',function() {
73
+ var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
74
+ $( current_object + ' #bws_shortcode_content > div' ).hide();
75
+ $( current_object + ' #bws_shortcode_content > #' + plugin ).show();
76
+ if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
77
+ $( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
78
+ } else {
79
+ $( current_object + ' #bws_shortcode_display' ).text( '' );
80
+ }
81
+ });
82
+
83
+ $.each( bws_shortcode_button.function_name, function( index, value ) {
84
+ eval( value + '();' );
85
+ });
86
+ }
87
+ });
88
+ },
89
+
90
+ /**
91
+ * Creates control instances based in the incomming name. This method is normally not
92
+ * needed since the addButton method of the tinymce.Editor class is a more easy way of adding buttons
93
+ * but you sometimes need to create more complex controls like listboxes, split buttons etc then this
94
+ * method can be used to create those.
95
+ *
96
+ * @param {String} n Name of the control to create.
97
+ * @param {tinymce.ControlManager} cm Control manager to use inorder to create new control.
98
+ * @return {tinymce.ui.Control} New control instance or null if no control was created.
99
+ */
100
+ createControl : function(n, cm) {
101
+ return null;
102
+ },
103
+
104
+ /**
105
+ * Returns information about the plugin as a name/value array.
106
+ * The current keys are longname, author, authorurl, infourl and version.
107
+ *
108
+ * @return {Object} Name/value array containing information about the plugin.
109
+ */
110
+ getInfo : function() {
111
+ return {
112
+ longname : 'BWS Shortcode Buttons',
113
+ author : 'BWS',
114
+ authorurl : 'http://bestwebsoft.com',
115
+ infourl : '',
116
+ version : "0.1"
117
+ };
118
+ }
119
+ });
120
+
121
+ /* Register plugin */
122
+ tinymce.PluginManager.add( 'add_bws_shortcode', tinymce.plugins.BWSButton );
123
+ }
124
  })(jQuery);
bws_menu/languages/bestwebsoft-de_DE.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-de_DE.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: 2015-10-02 13:01+0300\n"
6
- "PO-Revision-Date: 2015-10-02 13:01+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Lothar Schiborr <lothar.schiborr@web.de>\n"
9
  "Language: de_DE\n"
@@ -188,7 +188,7 @@ msgid "(your username is the email you specify when purchasing the product)."
188
  msgstr ""
189
 
190
  #: bws_functions.php:375
191
- #: bws_functions.php:678
192
  msgid "or"
193
  msgstr ""
194
 
@@ -328,93 +328,125 @@ msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
328
  msgstr ""
329
 
330
  # @ captcha
331
- #: bws_functions.php:674
332
  #, fuzzy
333
  msgid "Thank you for installing"
334
  msgstr "Vielen Dank für Ihre Kontaktaufnahme."
335
 
336
- #: bws_functions.php:675
337
  msgid "Let's get started"
338
  msgstr ""
339
 
340
  # @ captcha
341
- #: bws_functions.php:676
342
  #, fuzzy
343
  msgid "Configure Settings"
344
  msgstr "Einstellungen"
345
 
346
- #: bws_functions.php:679
347
  msgid "Add New"
348
  msgstr ""
349
 
350
- #: bws_functions.php:683
351
  msgid "Close notice"
352
  msgstr ""
353
 
354
- #: bws_functions.php:696
355
  msgid "Notice"
356
  msgstr ""
357
 
358
- #: bws_functions.php:696
359
  msgid "The plugin's settings have been changed."
360
  msgstr ""
361
 
362
- #: bws_functions.php:697
363
  msgid "Save Changes"
364
  msgstr ""
365
 
366
- #: bws_functions.php:712
367
  msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
368
  msgstr ""
369
 
370
- #: bws_functions.php:769
371
  msgid "Add BWS Plugins Shortcode"
372
  msgstr ""
373
 
374
- #: bws_functions.php:813
 
 
 
 
 
 
 
 
375
  msgid "Close"
376
  msgstr ""
377
 
378
- #: bws_functions.php:904
379
  msgid "Restore all plugin settings to defaults"
380
  msgstr ""
381
 
382
- #: bws_functions.php:906
383
  msgid "Restore settings"
384
  msgstr ""
385
 
386
- #: bws_functions.php:917
387
  msgid "Are you sure you want to restore all settings by default?"
388
  msgstr ""
389
 
390
- #: bws_functions.php:920
391
  msgid "Yes, restore all settings"
392
  msgstr ""
393
 
394
- #: bws_functions.php:921
395
  msgid "No, go back to the settings page"
396
  msgstr ""
397
 
398
  # @ captcha
399
- #: bws_functions.php:965
400
  #, fuzzy
401
  msgid "Plugin"
402
  msgstr "BWS Plugins"
403
 
404
  # @ captcha
405
- #: bws_functions.php:974
406
  #, fuzzy
407
  msgid "Shortcode settings"
408
  msgstr "Einstellungen"
409
 
410
- #: bws_functions.php:979
411
  msgid "The shortcode will be inserted"
412
  msgstr ""
413
 
414
- #: bws_functions.php:984
415
  msgid "Insert"
416
  msgstr ""
417
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
418
  # @ captcha
419
  #: bws_menu.php:506
420
  msgid "Not set"
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-10-09 14:42+0300\n"
6
+ "PO-Revision-Date: 2015-10-09 14:42+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Lothar Schiborr <lothar.schiborr@web.de>\n"
9
  "Language: de_DE\n"
188
  msgstr ""
189
 
190
  #: bws_functions.php:375
191
+ #: bws_functions.php:659
192
  msgid "or"
193
  msgstr ""
194
 
328
  msgstr ""
329
 
330
  # @ captcha
331
+ #: bws_functions.php:655
332
  #, fuzzy
333
  msgid "Thank you for installing"
334
  msgstr "Vielen Dank für Ihre Kontaktaufnahme."
335
 
336
+ #: bws_functions.php:656
337
  msgid "Let's get started"
338
  msgstr ""
339
 
340
  # @ captcha
341
+ #: bws_functions.php:657
342
  #, fuzzy
343
  msgid "Configure Settings"
344
  msgstr "Einstellungen"
345
 
346
+ #: bws_functions.php:660
347
  msgid "Add New"
348
  msgstr ""
349
 
350
+ #: bws_functions.php:664
351
  msgid "Close notice"
352
  msgstr ""
353
 
354
+ #: bws_functions.php:677
355
  msgid "Notice"
356
  msgstr ""
357
 
358
+ #: bws_functions.php:677
359
  msgid "The plugin's settings have been changed."
360
  msgstr ""
361
 
362
+ #: bws_functions.php:678
363
  msgid "Save Changes"
364
  msgstr ""
365
 
366
+ #: bws_functions.php:693
367
  msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
368
  msgstr ""
369
 
370
+ #: bws_functions.php:773
371
  msgid "Add BWS Plugins Shortcode"
372
  msgstr ""
373
 
374
+ #: bws_functions.php:793
375
+ msgid "Add shortcode"
376
+ msgstr ""
377
+
378
+ #: bws_functions.php:793
379
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
380
+ msgstr ""
381
+
382
+ #: bws_functions.php:833
383
  msgid "Close"
384
  msgstr ""
385
 
386
+ #: bws_functions.php:925
387
  msgid "Restore all plugin settings to defaults"
388
  msgstr ""
389
 
390
+ #: bws_functions.php:927
391
  msgid "Restore settings"
392
  msgstr ""
393
 
394
+ #: bws_functions.php:938
395
  msgid "Are you sure you want to restore all settings by default?"
396
  msgstr ""
397
 
398
+ #: bws_functions.php:941
399
  msgid "Yes, restore all settings"
400
  msgstr ""
401
 
402
+ #: bws_functions.php:942
403
  msgid "No, go back to the settings page"
404
  msgstr ""
405
 
406
  # @ captcha
407
+ #: bws_functions.php:986
408
  #, fuzzy
409
  msgid "Plugin"
410
  msgstr "BWS Plugins"
411
 
412
  # @ captcha
413
+ #: bws_functions.php:995
414
  #, fuzzy
415
  msgid "Shortcode settings"
416
  msgstr "Einstellungen"
417
 
418
+ #: bws_functions.php:1000
419
  msgid "The shortcode will be inserted"
420
  msgstr ""
421
 
422
+ #: bws_functions.php:1005
423
  msgid "Insert"
424
  msgstr ""
425
 
426
+ #: bws_functions.php:1036
427
+ msgid "Visit Help Center"
428
+ msgstr ""
429
+
430
+ #: bws_functions.php:1041
431
+ msgid "FAQ"
432
+ msgstr ""
433
+
434
+ #: bws_functions.php:1047
435
+ msgid "For more information:"
436
+ msgstr ""
437
+
438
+ #: bws_functions.php:1048
439
+ msgid "Documentation"
440
+ msgstr ""
441
+
442
+ #: bws_functions.php:1049
443
+ msgid "Video Instructions"
444
+ msgstr ""
445
+
446
+ #: bws_functions.php:1050
447
+ msgid "Submit a Request"
448
+ msgstr ""
449
+
450
  # @ captcha
451
  #: bws_menu.php:506
452
  msgid "Not set"
bws_menu/languages/bestwebsoft-fr_FR.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-fr_FR.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-02 13:01+0300\n"
6
- "PO-Revision-Date: 2015-10-02 13:01+0300\n"
7
- "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
10
  "MIME-Version: 1.0\n"
@@ -14,17 +14,20 @@ msgstr ""
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2;plural=n>2;\n"
17
- "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: bws_functions.php:39
21
- #: bws_functions.php:63
22
  msgid "requires"
23
  msgstr "obligatoire"
24
 
25
  #: bws_functions.php:41
26
- msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
27
- msgstr "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à jour de WordPress puis de ré-essayer."
 
 
 
 
28
 
29
  #: bws_functions.php:42
30
  msgid "Back to the WordPress"
@@ -35,8 +38,12 @@ msgid "Plugins page"
35
  msgstr "Page des extensions"
36
 
37
  #: bws_functions.php:65
38
- msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
 
 
39
  msgstr ""
 
 
40
 
41
  #: bws_functions.php:122
42
  msgid "It’s time to upgrade your"
@@ -52,16 +59,19 @@ msgstr "version"
52
 
53
  #: bws_functions.php:123
54
  msgid "Extend standard plugin functionality with new great options."
55
- msgstr "Etend les fonctionalités classiques de l'extension avec des nouvelles options."
 
 
56
 
57
- #: bws_functions.php:126
58
- #: bws_functions.php:561
59
  msgid "Learn More"
60
  msgstr "En savoir plus"
61
 
62
  #: bws_functions.php:143
63
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
64
- msgstr "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans Wordpress"
 
 
65
 
66
  #: bws_functions.php:144
67
  msgid "Rate the plugin"
@@ -74,21 +84,22 @@ msgstr "Si vous avez une question, n'hésitez pas à nous contacter"
74
  #: bws_functions.php:179
75
  msgid "Check premium options on the plugin settings page!"
76
  msgstr ""
 
77
 
78
- #: bws_functions.php:186
79
- #: bws_functions.php:222
80
  msgid "Wrong license key"
81
  msgstr "Clé de licence incorrecte"
82
 
83
- #: bws_functions.php:216
84
- #: bws_functions.php:474
85
- #: bws_functions.php:525
86
- msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
87
- msgstr "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de nouveau, merci de contacter <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
 
 
 
88
 
89
- #: bws_functions.php:216
90
- #: bws_functions.php:474
91
- #: bws_functions.php:525
92
  msgid "We are sorry for inconvenience."
93
  msgstr "Nous sommes désolés pour le désagrément."
94
 
@@ -96,69 +107,91 @@ msgstr "Nous sommes désolés pour le désagrément."
96
  msgid "This license key is bind to another site"
97
  msgstr "La clé de licence correspond à un autre site."
98
 
99
- #: bws_functions.php:226
100
- #: bws_functions.php:384
101
- msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
102
- msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
 
 
 
103
 
104
  #: bws_functions.php:228
105
- msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
106
- msgstr "Désoler, votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller dans votre"
 
 
 
 
107
 
108
  #: bws_functions.php:230
109
- #, fuzzy
110
- msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
111
- msgstr "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne peut-être installée qu'une seule fois."
 
 
 
112
 
113
- #: bws_functions.php:251
114
- #: bws_functions.php:273
115
- #: bws_functions.php:295
116
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
117
- msgstr "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension manuellement."
 
 
118
 
119
  #: bws_functions.php:263
120
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
121
- msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
 
 
122
 
123
  #: bws_functions.php:269
124
- msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
125
- msgstr "Votre server n'a pas le support du format des archives ZIP ou Phar. Merci de télécharger l'extension manuellement."
 
 
 
 
126
 
127
  #: bws_functions.php:276
128
  msgid "UploadDir is not writable. Please, upload the plugin manually"
129
- msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
 
 
130
 
131
  #: bws_functions.php:299
132
- msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
133
- msgstr "Il est survenu une erreur. Essayer de nouveau ou bien télécharger l'extension manuellement.Nous sommes désolés pour le désagrément."
 
 
 
 
134
 
135
  #: bws_functions.php:324
136
  msgid "Please, enter Your license key"
137
  msgstr "Merci de saisir votre clé de licence"
138
 
139
  #: bws_functions.php:348
140
- #, fuzzy
141
- msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
142
- msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
 
 
 
143
 
144
- #: bws_functions.php:350
145
- #: bws_functions.php:441
146
  msgid "Please, go to"
147
- msgstr "Merci d'allez à"
148
 
149
- #: bws_functions.php:350
150
- #: bws_functions.php:441
151
  msgid "the setting page"
152
  msgstr "Options supplémentaires"
153
 
154
- #: bws_functions.php:351
155
- #: bws_functions.php:442
156
  msgid "You will be redirected automatically in 5 seconds."
157
  msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
158
 
159
  #: bws_functions.php:358
160
  msgid "Show Pro features"
161
- msgstr ""
162
 
163
  #: bws_functions.php:365
164
  msgid "You can download and activate"
@@ -168,18 +201,21 @@ msgstr "Vous pouvez télécharger et activer la version "
168
  msgid "version of this plugin by entering Your license key."
169
  msgstr " de cette extension en donnant votre clé de licence."
170
 
171
- #: bws_functions.php:369
172
- #: bws_functions.php:410
173
- msgid "You can find your license key on your personal page Client area, by clicking on the link"
174
- msgstr "Vous pouvez trouver votre clé de licence sur votre page personnelle dans la zone cliente en cliquant sur le lien"
 
 
 
175
 
176
- #: bws_functions.php:371
177
- #: bws_functions.php:412
178
  msgid "(your username is the email you specify when purchasing the product)."
179
- msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension)."
 
 
180
 
181
- #: bws_functions.php:375
182
- #: bws_functions.php:678
183
  msgid "or"
184
  msgstr "ou"
185
 
@@ -188,33 +224,36 @@ msgstr "ou"
188
  msgid "Start Your Free %s-Day Trial Now"
189
  msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
190
 
191
- #: bws_functions.php:381
192
- #: bws_functions.php:390
193
- #: bws_functions.php:420
194
- #: bws_functions.php:428
195
- #: bws_menu.php:693
196
- #: bws_menu.php:750
197
  msgid "Activate"
198
  msgstr "Activé"
199
 
200
- #: bws_functions.php:407
201
- #: bws_functions.php:500
202
  #, php-format
203
- msgid "In order to continue using the plugin it is necessary to buy a %s license."
204
- msgstr "Afin de pouvoir continuer à utiliser cette extension il est nécessaire d'acheter une licence %s."
 
 
 
205
 
206
  #: bws_functions.php:408
207
  msgid "After that you can activate it by entering your license key."
208
- msgstr " Après vous pouvez activer cette extension en donnant votre clé de licence."
 
209
 
210
  #: bws_functions.php:422
211
  msgid "Unfortunately, you have exceeded the number of available tries per day."
212
- msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
 
 
213
 
214
  #: bws_functions.php:439
215
- #, fuzzy
216
- msgid "Congratulations! The Pro license of the plugin is successfully activated."
217
- msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
 
 
218
 
219
  #: bws_functions.php:480
220
  msgid "Wrong license key."
@@ -225,20 +264,29 @@ msgid "This license key is bind to another site."
225
  msgstr "La clé de licence correspond à un autre site."
226
 
227
  #: bws_functions.php:484
228
- msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
229
- msgstr "La clé de licence est valide mais votre durée de validité est passée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
 
 
 
 
 
230
 
231
  #: bws_functions.php:486
232
  msgid "Unfortunately, you have exceeded the number of available tries."
233
- msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
 
 
234
 
235
  #: bws_functions.php:488
236
- #, fuzzy
237
- msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
238
- msgstr "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne peut-être installée qu'une seule fois."
 
 
 
239
 
240
  #: bws_functions.php:492
241
- #, fuzzy
242
  msgid "The Pro Trial license key is valid."
243
  msgstr "La clé de licence d'évaluation est valide."
244
 
@@ -255,12 +303,23 @@ msgid "Please, enter your license key"
255
  msgstr "Merci de saisir votre clé de licence"
256
 
257
  #: bws_functions.php:543
258
- msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
259
- msgstr "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de licence sur votre page personnelle (zone client) sur notre site web."
 
 
 
 
 
 
260
 
261
  #: bws_functions.php:543
262
- msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
263
- msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de mot de passe perdu."
 
 
 
 
 
264
 
265
  #: bws_functions.php:547
266
  msgid "Check license key"
@@ -271,42 +330,52 @@ msgid "WARNING: Illegal use notification"
271
  msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
272
 
273
  #: bws_functions.php:561
274
- msgid "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."
275
- msgstr "Nous avons détecté une utilisation abusive de notre extension. Nous vous recommandons de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue inactive. Merci de vous rendre dans votre espace personel"
 
 
 
 
 
 
 
 
 
276
 
277
  #: bws_functions.php:569
278
- #, fuzzy
279
- msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
280
- msgstr "Votre licence d'évaluation est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
 
 
 
281
 
282
  #: bws_functions.php:571
283
- msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
284
- msgstr "Votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
 
 
 
 
285
 
286
- #: bws_functions.php:571
287
- #: bws_functions.php:624
288
- #: bws_menu.php:669
289
- #: bws_menu.php:691
290
- #: bws_menu.php:718
291
- #: bws_menu.php:748
292
- #: bws_menu.php:794
293
  msgid "Learn more"
294
  msgstr "En savoir plus"
295
 
296
  #: bws_functions.php:581
297
- #, fuzzy, php-format
298
  msgid "Notice: You are using the Pro Trial license of %s plugin."
299
- msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
 
300
 
301
  #: bws_functions.php:583
302
- #, fuzzy
303
  msgid "Notice: You are using the Pro Trial license of plugin."
304
  msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
305
 
306
  #: bws_functions.php:586
307
- #, fuzzy
308
  msgid "The Pro Trial license will expire on"
309
- msgstr "Votre licence se termine le "
310
 
311
  #: bws_functions.php:624
312
  msgid "You license for"
@@ -318,116 +387,138 @@ msgstr "se termine le"
318
 
319
  #: bws_functions.php:624
320
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
321
- msgstr "et vous ne diposerez plus du support rapide et des mises à jour."
322
 
323
- #: bws_functions.php:674
324
- #, fuzzy
325
  msgid "Thank you for installing"
326
- msgstr "Merci de nous avoir contacté."
327
 
328
- #: bws_functions.php:675
329
  msgid "Let's get started"
330
- msgstr ""
331
 
332
- #: bws_functions.php:676
333
- #, fuzzy
334
  msgid "Configure Settings"
335
- msgstr "Options du formulaire de Contact"
336
 
337
- #: bws_functions.php:679
338
  msgid "Add New"
339
- msgstr ""
340
 
341
- #: bws_functions.php:683
342
  msgid "Close notice"
343
- msgstr ""
344
 
345
- #: bws_functions.php:696
346
  msgid "Notice"
347
- msgstr ""
348
 
349
- #: bws_functions.php:696
350
  msgid "The plugin's settings have been changed."
351
- msgstr ""
352
 
353
- #: bws_functions.php:697
354
  msgid "Save Changes"
355
  msgstr "Sauvegarder les modifications"
356
 
357
- #: bws_functions.php:712
358
- msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
 
 
359
  msgstr ""
 
 
360
 
361
- #: bws_functions.php:769
362
- #, fuzzy
363
  msgid "Add BWS Plugins Shortcode"
364
- msgstr "Utiliser le code court"
 
 
 
 
365
 
366
- #: bws_functions.php:813
 
 
 
 
367
  msgid "Close"
368
  msgstr "Fermer"
369
 
370
- #: bws_functions.php:904
371
  msgid "Restore all plugin settings to defaults"
372
- msgstr ""
373
 
374
- #: bws_functions.php:906
375
- #, fuzzy
376
  msgid "Restore settings"
377
- msgstr "Options supplémentaires"
378
 
379
- #: bws_functions.php:917
380
- #, fuzzy
381
  msgid "Are you sure you want to restore all settings by default?"
382
- msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
383
 
384
- #: bws_functions.php:920
385
  msgid "Yes, restore all settings"
386
- msgstr ""
387
 
388
- #: bws_functions.php:921
389
- #, fuzzy
390
  msgid "No, go back to the settings page"
391
- msgstr "Options supplémentaires"
392
 
393
- #: bws_functions.php:965
394
- #, fuzzy
395
  msgid "Plugin"
396
- msgstr "Extensions"
397
 
398
- #: bws_functions.php:974
399
- #, fuzzy
400
  msgid "Shortcode settings"
401
- msgstr "Options supplémentaires"
402
 
403
- #: bws_functions.php:979
404
  msgid "The shortcode will be inserted"
405
- msgstr ""
406
 
407
- #: bws_functions.php:984
408
  msgid "Insert"
409
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
410
 
411
  #: bws_menu.php:506
412
  msgid "Not set"
413
  msgstr "Not set"
414
 
415
- #: bws_menu.php:508
416
- #: bws_menu.php:509
417
  msgid "On"
418
  msgstr "On"
419
 
420
- #: bws_menu.php:508
421
- #: bws_menu.php:509
422
  msgid "Off"
423
  msgstr "Off"
424
 
425
- #: bws_menu.php:510
426
- #: bws_menu.php:511
427
- #: bws_menu.php:512
428
- #: bws_menu.php:513
429
- #: bws_menu.php:514
430
- #: bws_menu.php:526
431
  msgid "N/A"
432
  msgstr "N/A"
433
 
@@ -435,17 +526,11 @@ msgstr "N/A"
435
  msgid " Mb"
436
  msgstr " Mb"
437
 
438
- #: bws_menu.php:515
439
- #: bws_menu.php:516
440
- #: bws_menu.php:517
441
- #: bws_menu.php:522
442
  msgid "Yes"
443
  msgstr "Yes"
444
 
445
- #: bws_menu.php:515
446
- #: bws_menu.php:516
447
- #: bws_menu.php:517
448
- #: bws_menu.php:524
449
  msgid "No"
450
  msgstr "No"
451
 
@@ -557,8 +642,7 @@ msgstr "Besoin d'aide ?"
557
  msgid "Client area"
558
  msgstr "Espace client"
559
 
560
- #: bws_menu.php:622
561
- #: bws_menu.php:933
562
  msgid "System status"
563
  msgstr "System status"
564
 
@@ -584,33 +668,27 @@ msgstr "Recommandé"
584
 
585
  #: bws_menu.php:640
586
  msgid "Installed plugins"
587
- msgstr "Plugin installé"
588
 
589
- #: bws_menu.php:672
590
- #: bws_menu.php:721
591
  msgid "Settings"
592
  msgstr "Réglages"
593
 
594
- #: bws_menu.php:693
595
- #: bws_menu.php:750
596
  msgid "Activate this plugin"
597
  msgstr "Activer cette extension"
598
 
599
- #: bws_menu.php:708
600
- #: bws_menu.php:738
601
- #: bws_menu.php:784
602
  msgid "Go"
603
  msgstr "Passez"
604
 
605
- #: bws_menu.php:712
606
- #: bws_menu.php:742
607
- #: bws_menu.php:788
608
  msgid "DONATE"
609
  msgstr "Faire un don"
610
 
611
  #: bws_menu.php:758
612
  msgid "Recommended plugins"
613
- msgstr "Plugin recommandé"
614
 
615
  #: bws_menu.php:796
616
  msgid "Install now"
@@ -632,12 +710,12 @@ msgstr "%s installé"
632
 
633
  #: bws_menu.php:866
634
  msgid "Install Now"
635
- msgstr "Installa Ora"
636
 
637
  #: bws_menu.php:869
638
  #, php-format
639
  msgid "Update to version %s"
640
- msgstr "Mettre à jour pour la version %s"
641
 
642
  #: bws_menu.php:869
643
  msgid "Update"
@@ -652,8 +730,7 @@ msgstr "Pré-visualiser %s"
652
  msgid "Preview"
653
  msgstr "Pré-visualiser"
654
 
655
- #: bws_menu.php:882
656
- #: bws_menu.php:914
657
  #, php-format
658
  msgid "By %s"
659
  msgstr "Par %s"
@@ -668,15 +745,15 @@ msgstr "Déjà installé"
668
 
669
  #: bws_menu.php:936
670
  msgid "Environment"
671
- msgstr "Environment"
672
 
673
  #: bws_menu.php:947
674
  msgid "Active Plugins"
675
- msgstr "Plugin actifs"
676
 
677
  #: bws_menu.php:960
678
  msgid "Inactive Plugins"
679
- msgstr "Plugin inactifs"
680
 
681
  #: bws_menu.php:976
682
  msgid "Send to support"
@@ -1133,9 +1210,6 @@ msgstr "Envoyer un e-mail spécifique &#187;"
1133
  #~ msgid "Border color"
1134
  #~ msgstr "Couleur des bordures"
1135
 
1136
- #~ msgid "Submit button"
1137
- #~ msgstr "Bouton Envoyer"
1138
-
1139
  #~ msgid "Width in px, numbers only"
1140
  #~ msgstr "Largeur en px, nombre seulement"
1141
 
@@ -1194,9 +1268,6 @@ msgstr "Envoyer un e-mail spécifique &#187;"
1194
  #~ "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de "
1195
  #~ "MIME !"
1196
 
1197
- #~ msgid "FAQ"
1198
- #~ msgstr "FAQ"
1199
-
1200
  #~ msgid "Support"
1201
  #~ msgstr "Support"
1202
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-11-17 13:31+0300\n"
6
+ "PO-Revision-Date: 2015-11-17 13:31+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"
10
  "MIME-Version: 1.0\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2;plural=n>2;\n"
17
+ "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: bws_functions.php:39 bws_functions.php:63
 
21
  msgid "requires"
22
  msgstr "obligatoire"
23
 
24
  #: bws_functions.php:41
25
+ msgid ""
26
+ "or higher, that is why it has been deactivated! Please upgrade WordPress and "
27
+ "try again."
28
+ msgstr ""
29
+ "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à "
30
+ "jour de WordPress puis de ré-essayer."
31
 
32
  #: bws_functions.php:42
33
  msgid "Back to the WordPress"
38
  msgstr "Page des extensions"
39
 
40
  #: bws_functions.php:65
41
+ msgid ""
42
+ "or higher! We do not guarantee that our plugin will work correctly. Please "
43
+ "upgrade to WordPress latest version."
44
  msgstr ""
45
+ "ou plus ! Nous ne garantissons pas que notre extension fonctionne "
46
+ "correctement. Merci de mettre à jour Wordpress avec la dernière version."
47
 
48
  #: bws_functions.php:122
49
  msgid "It’s time to upgrade your"
59
 
60
  #: bws_functions.php:123
61
  msgid "Extend standard plugin functionality with new great options."
62
+ msgstr ""
63
+ "Étend les fonctionnalités classiques de l'extension avec des nouvelles "
64
+ "options."
65
 
66
+ #: bws_functions.php:126 bws_functions.php:561
 
67
  msgid "Learn More"
68
  msgstr "En savoir plus"
69
 
70
  #: bws_functions.php:143
71
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
72
+ msgstr ""
73
+ "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans "
74
+ "Wordpress"
75
 
76
  #: bws_functions.php:144
77
  msgid "Rate the plugin"
84
  #: bws_functions.php:179
85
  msgid "Check premium options on the plugin settings page!"
86
  msgstr ""
87
+ "Vérifier les options premium sur la page des paramètres de l'extension!"
88
 
89
+ #: bws_functions.php:186 bws_functions.php:222
 
90
  msgid "Wrong license key"
91
  msgstr "Clé de licence incorrecte"
92
 
93
+ #: bws_functions.php:216 bws_functions.php:474 bws_functions.php:525
94
+ msgid ""
95
+ "Something went wrong. Please try again later. If the error appears again, "
96
+ "please contact us"
97
+ msgstr ""
98
+ "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de "
99
+ "nouveau, merci de contacter <a href=http://support.bestwebsoft."
100
+ "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
101
 
102
+ #: bws_functions.php:216 bws_functions.php:474 bws_functions.php:525
 
 
103
  msgid "We are sorry for inconvenience."
104
  msgstr "Nous sommes désolés pour le désagrément."
105
 
107
  msgid "This license key is bind to another site"
108
  msgstr "La clé de licence correspond à un autre site."
109
 
110
+ #: bws_functions.php:226 bws_functions.php:384
111
+ msgid ""
112
+ "Unfortunately, you have exceeded the number of available tries per day. "
113
+ "Please, upload the plugin manually."
114
+ msgstr ""
115
+ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
116
+ "télécharger l'extension manuellement."
117
 
118
  #: bws_functions.php:228
119
+ msgid ""
120
+ "Unfortunately, Your license has expired. To continue getting top-priority "
121
+ "support and plugin updates you should extend it in your"
122
+ msgstr ""
123
+ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
124
+ "rapide et des mises à jour de l'extension vous devez la renouveler dans votre"
125
 
126
  #: bws_functions.php:230
127
+ msgid ""
128
+ "Unfortunately, the Pro licence was already installed to this domain. The Pro "
129
+ "Trial license can be installed only once."
130
+ msgstr ""
131
+ "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
132
+ "peut-être installée qu'une seule fois."
133
 
134
+ #: bws_functions.php:251 bws_functions.php:273 bws_functions.php:295
 
 
135
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
136
+ msgstr ""
137
+ "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
138
+ "manuellement."
139
 
140
  #: bws_functions.php:263
141
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
142
+ msgstr ""
143
+ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
144
+ "manuellement."
145
 
146
  #: bws_functions.php:269
147
+ msgid ""
148
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
149
+ "plugin manually"
150
+ msgstr ""
151
+ "Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
152
+ "de télécharger l'extension manuellement."
153
 
154
  #: bws_functions.php:276
155
  msgid "UploadDir is not writable. Please, upload the plugin manually"
156
+ msgstr ""
157
+ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
158
+ "manuellement."
159
 
160
  #: bws_functions.php:299
161
+ msgid ""
162
+ "Something went wrong. Try again later or upload the plugin manually. We are "
163
+ "sorry for inconvenience."
164
+ msgstr ""
165
+ "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
166
+ "l'extension manuellement.Nous sommes désolés pour le désagrément."
167
 
168
  #: bws_functions.php:324
169
  msgid "Please, enter Your license key"
170
  msgstr "Merci de saisir votre clé de licence"
171
 
172
  #: bws_functions.php:348
173
+ msgid ""
174
+ "Congratulations! The Pro version of the plugin is successfully download and "
175
+ "activated."
176
+ msgstr ""
177
+ "Félicitations! La version PRO de cette extension a été téléchargée et "
178
+ "activée avec succès."
179
 
180
+ #: bws_functions.php:350 bws_functions.php:441
 
181
  msgid "Please, go to"
182
+ msgstr "Merci d’aller à"
183
 
184
+ #: bws_functions.php:350 bws_functions.php:441
 
185
  msgid "the setting page"
186
  msgstr "Options supplémentaires"
187
 
188
+ #: bws_functions.php:351 bws_functions.php:442
 
189
  msgid "You will be redirected automatically in 5 seconds."
190
  msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
191
 
192
  #: bws_functions.php:358
193
  msgid "Show Pro features"
194
+ msgstr "Voir les fonctionnalités de la version PRO"
195
 
196
  #: bws_functions.php:365
197
  msgid "You can download and activate"
201
  msgid "version of this plugin by entering Your license key."
202
  msgstr " de cette extension en donnant votre clé de licence."
203
 
204
+ #: bws_functions.php:369 bws_functions.php:410
205
+ msgid ""
206
+ "You can find your license key on your personal page Client area, by clicking "
207
+ "on the link"
208
+ msgstr ""
209
+ "Vous pouvez trouver votre clé de licence sur votre page personnelle dans la "
210
+ "zone cliente en cliquant sur le lien"
211
 
212
+ #: bws_functions.php:371 bws_functions.php:412
 
213
  msgid "(your username is the email you specify when purchasing the product)."
214
+ msgstr ""
215
+ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de "
216
+ "l'achat de l'extension)."
217
 
218
+ #: bws_functions.php:375 bws_functions.php:659
 
219
  msgid "or"
220
  msgstr "ou"
221
 
224
  msgid "Start Your Free %s-Day Trial Now"
225
  msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
226
 
227
+ #: bws_functions.php:381 bws_functions.php:390 bws_functions.php:420
228
+ #: bws_functions.php:428 bws_menu.php:693 bws_menu.php:750
 
 
 
 
229
  msgid "Activate"
230
  msgstr "Activé"
231
 
232
+ #: bws_functions.php:407 bws_functions.php:500
 
233
  #, php-format
234
+ msgid ""
235
+ "In order to continue using the plugin it is necessary to buy a %s license."
236
+ msgstr ""
237
+ "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
238
+ "d'acheter une licence %s."
239
 
240
  #: bws_functions.php:408
241
  msgid "After that you can activate it by entering your license key."
242
+ msgstr ""
243
+ " Après vous pouvez activer cette extension en donnant votre clé de licence."
244
 
245
  #: bws_functions.php:422
246
  msgid "Unfortunately, you have exceeded the number of available tries per day."
247
+ msgstr ""
248
+ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
249
+ "télécharger l'extension manuellement."
250
 
251
  #: bws_functions.php:439
252
+ msgid ""
253
+ "Congratulations! The Pro license of the plugin is successfully activated."
254
+ msgstr ""
255
+ "Félicitations! La version PRO de cette extension a été téléchargée et "
256
+ "activée avec succès."
257
 
258
  #: bws_functions.php:480
259
  msgid "Wrong license key."
264
  msgstr "La clé de licence correspond à un autre site."
265
 
266
  #: bws_functions.php:484
267
+ msgid ""
268
+ "This license key is valid, but Your license has expired. If you want to "
269
+ "update our plugin in future, you should extend the license."
270
+ msgstr ""
271
+ "La clé de licence est valide mais votre durée de validité est passée. Pour "
272
+ "continuer à disposer du support rapide et des mises à jour de l'extension "
273
+ "vous devez la renouveller."
274
 
275
  #: bws_functions.php:486
276
  msgid "Unfortunately, you have exceeded the number of available tries."
277
+ msgstr ""
278
+ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
279
+ "télécharger l'extension manuellement."
280
 
281
  #: bws_functions.php:488
282
+ msgid ""
283
+ "Unfortunately, the Pro Trial licence was already installed to this domain. "
284
+ "The Pro Trial license can be installed only once."
285
+ msgstr ""
286
+ "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
287
+ "peut-être installée qu'une seule fois."
288
 
289
  #: bws_functions.php:492
 
290
  msgid "The Pro Trial license key is valid."
291
  msgstr "La clé de licence d'évaluation est valide."
292
 
303
  msgstr "Merci de saisir votre clé de licence"
304
 
305
  #: bws_functions.php:543
306
+ msgid ""
307
+ "If needed you can check if the license key is correct or reenter it in the "
308
+ "field below. You can find your license key on your personal page - Client "
309
+ "area - on our website"
310
+ msgstr ""
311
+ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
312
+ "saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de "
313
+ "licence sur votre page personnelle (zone client) sur notre site web."
314
 
315
  #: bws_functions.php:543
316
+ msgid ""
317
+ "(your username is the email you specify when purchasing the product). If "
318
+ "necessary, please submit \"Lost your password?\" request."
319
+ msgstr ""
320
+ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de "
321
+ "l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de "
322
+ "mot de passe perdu."
323
 
324
  #: bws_functions.php:547
325
  msgid "Check license key"
330
  msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
331
 
332
  #: bws_functions.php:561
333
+ msgid ""
334
+ "You can use one license of the Pro plugin for one domain only. Please check "
335
+ "and edit your license or domain if necessary using you personal Client Area. "
336
+ "We strongly recommend you to solve the problem within 24 hours, otherwise "
337
+ "the Pro plugin will be deactivated."
338
+ msgstr ""
339
+ "Vous ne pouvez utilisez qu'une licence de la version Pro de l'extension pour "
340
+ "un seul domaine. Merci de vérifier et de modifier votre licence ou votre "
341
+ "domaine si nécessaire en utilisant votre zone client. Nous vous recommandons "
342
+ "de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue "
343
+ "inactive."
344
 
345
  #: bws_functions.php:569
346
+ msgid ""
347
+ "Notice: Your Pro Trial license has expired. To continue using the plugin you "
348
+ "should buy a Pro license"
349
+ msgstr ""
350
+ "Votre licence d'évaluation est terminée. Pour continuer à disposer du "
351
+ "support rapide et des mises à jour de l'extension vous devez la renouveler."
352
 
353
  #: bws_functions.php:571
354
+ msgid ""
355
+ "Your license has expired. To continue getting top-priority support and "
356
+ "plugin updates you should extend it."
357
+ msgstr ""
358
+ "Votre licence est terminée. Pour continuer à disposer du support rapide et "
359
+ "des mises à jour de l'extension vous devez la renouveller."
360
 
361
+ #: bws_functions.php:571 bws_functions.php:624 bws_menu.php:669
362
+ #: bws_menu.php:691 bws_menu.php:718 bws_menu.php:748 bws_menu.php:794
 
 
 
 
 
363
  msgid "Learn more"
364
  msgstr "En savoir plus"
365
 
366
  #: bws_functions.php:581
367
+ #, php-format
368
  msgid "Notice: You are using the Pro Trial license of %s plugin."
369
+ msgstr ""
370
+ "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
371
 
372
  #: bws_functions.php:583
 
373
  msgid "Notice: You are using the Pro Trial license of plugin."
374
  msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
375
 
376
  #: bws_functions.php:586
 
377
  msgid "The Pro Trial license will expire on"
378
+ msgstr "La licence PRO d'évaluation expirera le"
379
 
380
  #: bws_functions.php:624
381
  msgid "You license for"
387
 
388
  #: bws_functions.php:624
389
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
390
+ msgstr "et vous ne disposerez plus du support rapide et des mises à jour."
391
 
392
+ #: bws_functions.php:655
 
393
  msgid "Thank you for installing"
394
+ msgstr "Merci d'avoir installé"
395
 
396
+ #: bws_functions.php:656
397
  msgid "Let's get started"
398
+ msgstr "Démarrer"
399
 
400
+ #: bws_functions.php:657
 
401
  msgid "Configure Settings"
402
+ msgstr "Configuration des paramètres"
403
 
404
+ #: bws_functions.php:660
405
  msgid "Add New"
406
+ msgstr "Ajouter"
407
 
408
+ #: bws_functions.php:664
409
  msgid "Close notice"
410
+ msgstr "Effacer l'avertissement"
411
 
412
+ #: bws_functions.php:677
413
  msgid "Notice"
414
+ msgstr "Avertissement"
415
 
416
+ #: bws_functions.php:677
417
  msgid "The plugin's settings have been changed."
418
+ msgstr "Les paramètres de l'extension ont été modifiés."
419
 
420
+ #: bws_functions.php:678
421
  msgid "Save Changes"
422
  msgstr "Sauvegarder les modifications"
423
 
424
+ #: bws_functions.php:693
425
+ msgid ""
426
+ "You can always look at premium options by clicking on the \"Show Pro features"
427
+ "\" in the \"Go PRO\" tab"
428
  msgstr ""
429
+ "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
430
+ "\"Voir les fonctionnalités de la version PRO\" dans l'onglet Passer PRO"
431
 
432
+ #: bws_functions.php:773
 
433
  msgid "Add BWS Plugins Shortcode"
434
+ msgstr "Ajouter le code court de l'extension BWS"
435
+
436
+ #: bws_functions.php:793
437
+ msgid "Add shortcode"
438
+ msgstr "Ajouter le code court"
439
 
440
+ #: bws_functions.php:793
441
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
442
+ msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
443
+
444
+ #: bws_functions.php:835
445
  msgid "Close"
446
  msgstr "Fermer"
447
 
448
+ #: bws_functions.php:927
449
  msgid "Restore all plugin settings to defaults"
450
+ msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
451
 
452
+ #: bws_functions.php:929
 
453
  msgid "Restore settings"
454
+ msgstr "Remettre les paramètres"
455
 
456
+ #: bws_functions.php:940
 
457
  msgid "Are you sure you want to restore all settings by default?"
458
+ msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
459
 
460
+ #: bws_functions.php:943
461
  msgid "Yes, restore all settings"
462
+ msgstr "Oui, remettre les valeurs par défaut"
463
 
464
+ #: bws_functions.php:944
 
465
  msgid "No, go back to the settings page"
466
+ msgstr "Non, retourner à la page des paramètres"
467
 
468
+ #: bws_functions.php:988
 
469
  msgid "Plugin"
470
+ msgstr "Extension"
471
 
472
+ #: bws_functions.php:997
 
473
  msgid "Shortcode settings"
474
+ msgstr "Paramètres du code court"
475
 
476
+ #: bws_functions.php:1002
477
  msgid "The shortcode will be inserted"
478
+ msgstr "Le code court sera inséré"
479
 
480
+ #: bws_functions.php:1007
481
  msgid "Insert"
482
+ msgstr "Insérer"
483
+
484
+ #: bws_functions.php:1038
485
+ msgid "Visit Help Center"
486
+ msgstr "Visiter le site du support"
487
+
488
+ #: bws_functions.php:1043
489
+ msgid "FAQ"
490
+ msgstr "FAQ"
491
+
492
+ #: bws_functions.php:1049
493
+ msgid "For more information:"
494
+ msgstr "Pour plus d'informations&nbsp;:"
495
+
496
+ #: bws_functions.php:1050
497
+ msgid "Documentation"
498
+ msgstr "Documentation"
499
+
500
+ #: bws_functions.php:1051
501
+ msgid "Video Instructions"
502
+ msgstr "Vidéo explicative"
503
+
504
+ #: bws_functions.php:1052
505
+ msgid "Submit a Request"
506
+ msgstr "Soumettre une requête"
507
 
508
  #: bws_menu.php:506
509
  msgid "Not set"
510
  msgstr "Not set"
511
 
512
+ #: bws_menu.php:508 bws_menu.php:509
 
513
  msgid "On"
514
  msgstr "On"
515
 
516
+ #: bws_menu.php:508 bws_menu.php:509
 
517
  msgid "Off"
518
  msgstr "Off"
519
 
520
+ #: bws_menu.php:510 bws_menu.php:511 bws_menu.php:512 bws_menu.php:513
521
+ #: bws_menu.php:514 bws_menu.php:526
 
 
 
 
522
  msgid "N/A"
523
  msgstr "N/A"
524
 
526
  msgid " Mb"
527
  msgstr " Mb"
528
 
529
+ #: bws_menu.php:515 bws_menu.php:516 bws_menu.php:517 bws_menu.php:522
 
 
 
530
  msgid "Yes"
531
  msgstr "Yes"
532
 
533
+ #: bws_menu.php:515 bws_menu.php:516 bws_menu.php:517 bws_menu.php:524
 
 
 
534
  msgid "No"
535
  msgstr "No"
536
 
642
  msgid "Client area"
643
  msgstr "Espace client"
644
 
645
+ #: bws_menu.php:622 bws_menu.php:933
 
646
  msgid "System status"
647
  msgstr "System status"
648
 
668
 
669
  #: bws_menu.php:640
670
  msgid "Installed plugins"
671
+ msgstr "Extensions installées"
672
 
673
+ #: bws_menu.php:672 bws_menu.php:721
 
674
  msgid "Settings"
675
  msgstr "Réglages"
676
 
677
+ #: bws_menu.php:693 bws_menu.php:750
 
678
  msgid "Activate this plugin"
679
  msgstr "Activer cette extension"
680
 
681
+ #: bws_menu.php:708 bws_menu.php:738 bws_menu.php:784
 
 
682
  msgid "Go"
683
  msgstr "Passez"
684
 
685
+ #: bws_menu.php:712 bws_menu.php:742 bws_menu.php:788
 
 
686
  msgid "DONATE"
687
  msgstr "Faire un don"
688
 
689
  #: bws_menu.php:758
690
  msgid "Recommended plugins"
691
+ msgstr "Extensions recommandées"
692
 
693
  #: bws_menu.php:796
694
  msgid "Install now"
710
 
711
  #: bws_menu.php:866
712
  msgid "Install Now"
713
+ msgstr "Installer maintenant"
714
 
715
  #: bws_menu.php:869
716
  #, php-format
717
  msgid "Update to version %s"
718
+ msgstr "Mettre à jour avec la version %s"
719
 
720
  #: bws_menu.php:869
721
  msgid "Update"
730
  msgid "Preview"
731
  msgstr "Pré-visualiser"
732
 
733
+ #: bws_menu.php:882 bws_menu.php:914
 
734
  #, php-format
735
  msgid "By %s"
736
  msgstr "Par %s"
745
 
746
  #: bws_menu.php:936
747
  msgid "Environment"
748
+ msgstr "Environnent"
749
 
750
  #: bws_menu.php:947
751
  msgid "Active Plugins"
752
+ msgstr "Extensions actives"
753
 
754
  #: bws_menu.php:960
755
  msgid "Inactive Plugins"
756
+ msgstr "Extensions inactives"
757
 
758
  #: bws_menu.php:976
759
  msgid "Send to support"
1210
  #~ msgid "Border color"
1211
  #~ msgstr "Couleur des bordures"
1212
 
 
 
 
1213
  #~ msgid "Width in px, numbers only"
1214
  #~ msgstr "Largeur en px, nombre seulement"
1215
 
1268
  #~ "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de "
1269
  #~ "MIME !"
1270
 
 
 
 
1271
  #~ msgid "Support"
1272
  #~ msgstr "Support"
1273
 
bws_menu/languages/bestwebsoft-it_IT.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-it_IT.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: 2015-10-02 13:01+0300\n"
6
- "PO-Revision-Date: 2015-10-02 13:01+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Marco <marco@blackstudio.it>\n"
9
  "Language: it_IT\n"
@@ -191,7 +191,7 @@ msgstr ""
191
 
192
  # @ captcha
193
  #: bws_functions.php:375
194
- #: bws_functions.php:678
195
  #, fuzzy
196
  msgid "or"
197
  msgstr "quattro"
@@ -332,96 +332,129 @@ msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
332
  msgstr ""
333
 
334
  # @ bestwebsoft
335
- #: bws_functions.php:674
336
  #, fuzzy
337
  msgid "Thank you for installing"
338
  msgstr "Grazie per averci contattato."
339
 
340
- #: bws_functions.php:675
341
  msgid "Let's get started"
342
  msgstr ""
343
 
344
  # @ bestwebsoft
345
  # @ captcha
346
- #: bws_functions.php:676
347
  #, fuzzy
348
  msgid "Configure Settings"
349
  msgstr "Impostazioni"
350
 
351
- #: bws_functions.php:679
352
  msgid "Add New"
353
  msgstr ""
354
 
355
- #: bws_functions.php:683
356
  msgid "Close notice"
357
  msgstr ""
358
 
359
- #: bws_functions.php:696
360
  msgid "Notice"
361
  msgstr ""
362
 
363
- #: bws_functions.php:696
364
  msgid "The plugin's settings have been changed."
365
  msgstr ""
366
 
367
  # @ default
368
- #: bws_functions.php:697
369
  msgid "Save Changes"
370
  msgstr "Salva le modifiche"
371
 
372
- #: bws_functions.php:712
373
  msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
374
  msgstr ""
375
 
376
- #: bws_functions.php:769
377
  msgid "Add BWS Plugins Shortcode"
378
  msgstr ""
379
 
380
- #: bws_functions.php:813
 
 
 
 
 
 
 
 
381
  msgid "Close"
382
  msgstr ""
383
 
384
- #: bws_functions.php:904
385
  msgid "Restore all plugin settings to defaults"
386
  msgstr ""
387
 
388
- #: bws_functions.php:906
389
  msgid "Restore settings"
390
  msgstr ""
391
 
392
- #: bws_functions.php:917
393
  msgid "Are you sure you want to restore all settings by default?"
394
  msgstr ""
395
 
396
- #: bws_functions.php:920
397
  msgid "Yes, restore all settings"
398
  msgstr ""
399
 
400
- #: bws_functions.php:921
401
  msgid "No, go back to the settings page"
402
  msgstr ""
403
 
404
  # @ bestwebsoft
405
- #: bws_functions.php:965
406
  #, fuzzy
407
  msgid "Plugin"
408
  msgstr "Plugin Pro"
409
 
410
  # @ bestwebsoft
411
  # @ captcha
412
- #: bws_functions.php:974
413
  #, fuzzy
414
  msgid "Shortcode settings"
415
  msgstr "Impostazioni"
416
 
417
- #: bws_functions.php:979
418
  msgid "The shortcode will be inserted"
419
  msgstr ""
420
 
421
- #: bws_functions.php:984
422
  msgid "Insert"
423
  msgstr ""
424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
425
  # @ bestwebsoft
426
  #: bws_menu.php:506
427
  msgid "Not set"
@@ -860,9 +893,6 @@ msgstr "Invia a una email personalizzata &#187;"
860
  #~ msgid "Words"
861
  #~ msgstr "Parole"
862
  # @ captcha
863
- #~ msgid "FAQ"
864
- #~ msgstr "FAQ"
865
- # @ captcha
866
  #~ msgid "Support"
867
  #~ msgstr "Supporto"
868
  # @ captcha
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-10-09 14:42+0300\n"
6
+ "PO-Revision-Date: 2015-10-09 14:42+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Marco <marco@blackstudio.it>\n"
9
  "Language: it_IT\n"
191
 
192
  # @ captcha
193
  #: bws_functions.php:375
194
+ #: bws_functions.php:659
195
  #, fuzzy
196
  msgid "or"
197
  msgstr "quattro"
332
  msgstr ""
333
 
334
  # @ bestwebsoft
335
+ #: bws_functions.php:655
336
  #, fuzzy
337
  msgid "Thank you for installing"
338
  msgstr "Grazie per averci contattato."
339
 
340
+ #: bws_functions.php:656
341
  msgid "Let's get started"
342
  msgstr ""
343
 
344
  # @ bestwebsoft
345
  # @ captcha
346
+ #: bws_functions.php:657
347
  #, fuzzy
348
  msgid "Configure Settings"
349
  msgstr "Impostazioni"
350
 
351
+ #: bws_functions.php:660
352
  msgid "Add New"
353
  msgstr ""
354
 
355
+ #: bws_functions.php:664
356
  msgid "Close notice"
357
  msgstr ""
358
 
359
+ #: bws_functions.php:677
360
  msgid "Notice"
361
  msgstr ""
362
 
363
+ #: bws_functions.php:677
364
  msgid "The plugin's settings have been changed."
365
  msgstr ""
366
 
367
  # @ default
368
+ #: bws_functions.php:678
369
  msgid "Save Changes"
370
  msgstr "Salva le modifiche"
371
 
372
+ #: bws_functions.php:693
373
  msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
374
  msgstr ""
375
 
376
+ #: bws_functions.php:773
377
  msgid "Add BWS Plugins Shortcode"
378
  msgstr ""
379
 
380
+ #: bws_functions.php:793
381
+ msgid "Add shortcode"
382
+ msgstr ""
383
+
384
+ #: bws_functions.php:793
385
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
386
+ msgstr ""
387
+
388
+ #: bws_functions.php:833
389
  msgid "Close"
390
  msgstr ""
391
 
392
+ #: bws_functions.php:925
393
  msgid "Restore all plugin settings to defaults"
394
  msgstr ""
395
 
396
+ #: bws_functions.php:927
397
  msgid "Restore settings"
398
  msgstr ""
399
 
400
+ #: bws_functions.php:938
401
  msgid "Are you sure you want to restore all settings by default?"
402
  msgstr ""
403
 
404
+ #: bws_functions.php:941
405
  msgid "Yes, restore all settings"
406
  msgstr ""
407
 
408
+ #: bws_functions.php:942
409
  msgid "No, go back to the settings page"
410
  msgstr ""
411
 
412
  # @ bestwebsoft
413
+ #: bws_functions.php:986
414
  #, fuzzy
415
  msgid "Plugin"
416
  msgstr "Plugin Pro"
417
 
418
  # @ bestwebsoft
419
  # @ captcha
420
+ #: bws_functions.php:995
421
  #, fuzzy
422
  msgid "Shortcode settings"
423
  msgstr "Impostazioni"
424
 
425
+ #: bws_functions.php:1000
426
  msgid "The shortcode will be inserted"
427
  msgstr ""
428
 
429
+ #: bws_functions.php:1005
430
  msgid "Insert"
431
  msgstr ""
432
 
433
+ #: bws_functions.php:1036
434
+ msgid "Visit Help Center"
435
+ msgstr ""
436
+
437
+ # @ captcha
438
+ #: bws_functions.php:1041
439
+ msgid "FAQ"
440
+ msgstr "FAQ"
441
+
442
+ #: bws_functions.php:1047
443
+ msgid "For more information:"
444
+ msgstr ""
445
+
446
+ #: bws_functions.php:1048
447
+ msgid "Documentation"
448
+ msgstr ""
449
+
450
+ #: bws_functions.php:1049
451
+ msgid "Video Instructions"
452
+ msgstr ""
453
+
454
+ #: bws_functions.php:1050
455
+ msgid "Submit a Request"
456
+ msgstr ""
457
+
458
  # @ bestwebsoft
459
  #: bws_menu.php:506
460
  msgid "Not set"
893
  #~ msgid "Words"
894
  #~ msgstr "Parole"
895
  # @ captcha
 
 
 
896
  #~ msgid "Support"
897
  #~ msgstr "Supporto"
898
  # @ captcha
bws_menu/languages/bestwebsoft-ja.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-ja.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: 2015-10-02 13:01+0300\n"
6
- "PO-Revision-Date: 2015-10-02 13:01+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: foken <foken@gmx.com>\n"
9
  "Language: ja_JP\n"
@@ -184,7 +184,7 @@ msgid "(your username is the email you specify when purchasing the product)."
184
  msgstr ""
185
 
186
  #: bws_functions.php:375
187
- #: bws_functions.php:678
188
  msgid "or"
189
  msgstr "又は"
190
 
@@ -322,94 +322,128 @@ msgstr ""
322
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
323
  msgstr ""
324
 
325
- #: bws_functions.php:674
326
  #, fuzzy
327
  msgid "Thank you for installing"
328
  msgstr "ご連絡ありがとうございます"
329
 
330
- #: bws_functions.php:675
331
  msgid "Let's get started"
332
  msgstr ""
333
 
334
- #: bws_functions.php:676
335
  #, fuzzy
336
  msgid "Configure Settings"
337
  msgstr "コンタクトフォーム設定"
338
 
339
- #: bws_functions.php:679
340
  msgid "Add New"
341
  msgstr ""
342
 
343
- #: bws_functions.php:683
344
  msgid "Close notice"
345
  msgstr ""
346
 
347
- #: bws_functions.php:696
348
  msgid "Notice"
349
  msgstr ""
350
 
351
- #: bws_functions.php:696
352
  msgid "The plugin's settings have been changed."
353
  msgstr ""
354
 
355
- #: bws_functions.php:697
356
  msgid "Save Changes"
357
  msgstr "変更を保存"
358
 
359
- #: bws_functions.php:712
360
  msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
361
  msgstr ""
362
 
363
- #: bws_functions.php:769
364
  #, fuzzy
365
  msgid "Add BWS Plugins Shortcode"
366
  msgstr "短いコードの利用"
367
 
368
- #: bws_functions.php:813
 
 
 
 
 
 
 
 
 
369
  msgid "Close"
370
  msgstr ""
371
 
372
- #: bws_functions.php:904
373
  msgid "Restore all plugin settings to defaults"
374
  msgstr ""
375
 
376
- #: bws_functions.php:906
377
  #, fuzzy
378
  msgid "Restore settings"
379
  msgstr "追加設定"
380
 
381
- #: bws_functions.php:917
382
  #, fuzzy
383
  msgid "Are you sure you want to restore all settings by default?"
384
  msgstr "本当に、この言語データを削除しますか?"
385
 
386
- #: bws_functions.php:920
387
  msgid "Yes, restore all settings"
388
  msgstr ""
389
 
390
- #: bws_functions.php:921
391
  #, fuzzy
392
  msgid "No, go back to the settings page"
393
  msgstr "追加設定"
394
 
395
- #: bws_functions.php:965
396
  #, fuzzy
397
  msgid "Plugin"
398
  msgstr "Pro Plugins"
399
 
400
- #: bws_functions.php:974
401
  #, fuzzy
402
  msgid "Shortcode settings"
403
  msgstr "追加設定"
404
 
405
- #: bws_functions.php:979
406
  msgid "The shortcode will be inserted"
407
  msgstr ""
408
 
409
- #: bws_functions.php:984
410
  msgid "Insert"
411
  msgstr ""
412
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
413
  #: bws_menu.php:506
414
  msgid "Not set"
415
  msgstr "未設定"
@@ -1116,9 +1150,6 @@ msgstr "カスタムEメールに送信&#187;"
1116
  #~ msgid "Border color"
1117
  #~ msgstr "罫線色"
1118
 
1119
- #~ msgid "Submit button"
1120
- #~ msgstr "送信ボタン"
1121
-
1122
  #~ msgid "Width in px, numbers only"
1123
  #~ msgstr "px単位の幅、数字のみ"
1124
 
@@ -1176,9 +1207,6 @@ msgstr "カスタムEメールに送信&#187;"
1176
  #~ msgstr ""
1177
  #~ "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
1178
 
1179
- #~ msgid "FAQ"
1180
- #~ msgstr "FAQ"
1181
-
1182
  #~ msgid "Support"
1183
  #~ msgstr "サポート"
1184
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-10-09 14:42+0300\n"
6
+ "PO-Revision-Date: 2015-10-09 14:42+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: foken <foken@gmx.com>\n"
9
  "Language: ja_JP\n"
184
  msgstr ""
185
 
186
  #: bws_functions.php:375
187
+ #: bws_functions.php:659
188
  msgid "or"
189
  msgstr "又は"
190
 
322
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
323
  msgstr ""
324
 
325
+ #: bws_functions.php:655
326
  #, fuzzy
327
  msgid "Thank you for installing"
328
  msgstr "ご連絡ありがとうございます"
329
 
330
+ #: bws_functions.php:656
331
  msgid "Let's get started"
332
  msgstr ""
333
 
334
+ #: bws_functions.php:657
335
  #, fuzzy
336
  msgid "Configure Settings"
337
  msgstr "コンタクトフォーム設定"
338
 
339
+ #: bws_functions.php:660
340
  msgid "Add New"
341
  msgstr ""
342
 
343
+ #: bws_functions.php:664
344
  msgid "Close notice"
345
  msgstr ""
346
 
347
+ #: bws_functions.php:677
348
  msgid "Notice"
349
  msgstr ""
350
 
351
+ #: bws_functions.php:677
352
  msgid "The plugin's settings have been changed."
353
  msgstr ""
354
 
355
+ #: bws_functions.php:678
356
  msgid "Save Changes"
357
  msgstr "変更を保存"
358
 
359
+ #: bws_functions.php:693
360
  msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
361
  msgstr ""
362
 
363
+ #: bws_functions.php:773
364
  #, fuzzy
365
  msgid "Add BWS Plugins Shortcode"
366
  msgstr "短いコードの利用"
367
 
368
+ #: bws_functions.php:793
369
+ #, fuzzy
370
+ msgid "Add shortcode"
371
+ msgstr "短いコードの利用"
372
+
373
+ #: bws_functions.php:793
374
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
375
+ msgstr ""
376
+
377
+ #: bws_functions.php:833
378
  msgid "Close"
379
  msgstr ""
380
 
381
+ #: bws_functions.php:925
382
  msgid "Restore all plugin settings to defaults"
383
  msgstr ""
384
 
385
+ #: bws_functions.php:927
386
  #, fuzzy
387
  msgid "Restore settings"
388
  msgstr "追加設定"
389
 
390
+ #: bws_functions.php:938
391
  #, fuzzy
392
  msgid "Are you sure you want to restore all settings by default?"
393
  msgstr "本当に、この言語データを削除しますか?"
394
 
395
+ #: bws_functions.php:941
396
  msgid "Yes, restore all settings"
397
  msgstr ""
398
 
399
+ #: bws_functions.php:942
400
  #, fuzzy
401
  msgid "No, go back to the settings page"
402
  msgstr "追加設定"
403
 
404
+ #: bws_functions.php:986
405
  #, fuzzy
406
  msgid "Plugin"
407
  msgstr "Pro Plugins"
408
 
409
+ #: bws_functions.php:995
410
  #, fuzzy
411
  msgid "Shortcode settings"
412
  msgstr "追加設定"
413
 
414
+ #: bws_functions.php:1000
415
  msgid "The shortcode will be inserted"
416
  msgstr ""
417
 
418
+ #: bws_functions.php:1005
419
  msgid "Insert"
420
  msgstr ""
421
 
422
+ #: bws_functions.php:1036
423
+ msgid "Visit Help Center"
424
+ msgstr ""
425
+
426
+ #: bws_functions.php:1041
427
+ msgid "FAQ"
428
+ msgstr "FAQ"
429
+
430
+ #: bws_functions.php:1047
431
+ msgid "For more information:"
432
+ msgstr ""
433
+
434
+ #: bws_functions.php:1048
435
+ msgid "Documentation"
436
+ msgstr ""
437
+
438
+ #: bws_functions.php:1049
439
+ msgid "Video Instructions"
440
+ msgstr ""
441
+
442
+ #: bws_functions.php:1050
443
+ #, fuzzy
444
+ msgid "Submit a Request"
445
+ msgstr "送信ボタン"
446
+
447
  #: bws_menu.php:506
448
  msgid "Not set"
449
  msgstr "未設定"
1150
  #~ msgid "Border color"
1151
  #~ msgstr "罫線色"
1152
 
 
 
 
1153
  #~ msgid "Width in px, numbers only"
1154
  #~ msgstr "px単位の幅、数字のみ"
1155
 
1207
  #~ msgstr ""
1208
  #~ "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
1209
 
 
 
 
1210
  #~ msgid "Support"
1211
  #~ msgstr "サポート"
1212
 
bws_menu/languages/bestwebsoft-pt_BR.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-pt_BR.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: 2015-10-02 13:02+0300\n"
6
- "PO-Revision-Date: 2015-10-02 13:02+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Dionizio Bonfim Bach | DJIO <wordpress@djio.com.br>\n"
9
  "Language: pt_BR\n"
@@ -188,7 +188,7 @@ msgid "(your username is the email you specify when purchasing the product)."
188
  msgstr ""
189
 
190
  #: bws_functions.php:375
191
- #: bws_functions.php:678
192
  msgid "or"
193
  msgstr ""
194
 
@@ -328,93 +328,125 @@ msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
328
  msgstr ""
329
 
330
  # @ captcha
331
- #: bws_functions.php:674
332
  #, fuzzy
333
  msgid "Thank you for installing"
334
  msgstr "Obrigado por nos contatar."
335
 
336
- #: bws_functions.php:675
337
  msgid "Let's get started"
338
  msgstr ""
339
 
340
  # @ captcha
341
- #: bws_functions.php:676
342
  #, fuzzy
343
  msgid "Configure Settings"
344
  msgstr "Configurações"
345
 
346
- #: bws_functions.php:679
347
  msgid "Add New"
348
  msgstr ""
349
 
350
- #: bws_functions.php:683
351
  msgid "Close notice"
352
  msgstr ""
353
 
354
- #: bws_functions.php:696
355
  msgid "Notice"
356
  msgstr ""
357
 
358
- #: bws_functions.php:696
359
  msgid "The plugin's settings have been changed."
360
  msgstr ""
361
 
362
- #: bws_functions.php:697
363
  msgid "Save Changes"
364
  msgstr ""
365
 
366
- #: bws_functions.php:712
367
  msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
368
  msgstr ""
369
 
370
- #: bws_functions.php:769
371
  msgid "Add BWS Plugins Shortcode"
372
  msgstr ""
373
 
374
- #: bws_functions.php:813
 
 
 
 
 
 
 
 
375
  msgid "Close"
376
  msgstr ""
377
 
378
- #: bws_functions.php:904
379
  msgid "Restore all plugin settings to defaults"
380
  msgstr ""
381
 
382
- #: bws_functions.php:906
383
  msgid "Restore settings"
384
  msgstr ""
385
 
386
- #: bws_functions.php:917
387
  msgid "Are you sure you want to restore all settings by default?"
388
  msgstr ""
389
 
390
- #: bws_functions.php:920
391
  msgid "Yes, restore all settings"
392
  msgstr ""
393
 
394
- #: bws_functions.php:921
395
  msgid "No, go back to the settings page"
396
  msgstr ""
397
 
398
  # @ captcha
399
- #: bws_functions.php:965
400
  #, fuzzy
401
  msgid "Plugin"
402
  msgstr "Plugins Pro"
403
 
404
  # @ captcha
405
- #: bws_functions.php:974
406
  #, fuzzy
407
  msgid "Shortcode settings"
408
  msgstr "Configurações"
409
 
410
- #: bws_functions.php:979
411
  msgid "The shortcode will be inserted"
412
  msgstr ""
413
 
414
- #: bws_functions.php:984
415
  msgid "Insert"
416
  msgstr ""
417
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
418
  # @ captcha
419
  #: bws_menu.php:506
420
  msgid "Not set"
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-10-09 14:42+0300\n"
6
+ "PO-Revision-Date: 2015-10-09 14:42+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Dionizio Bonfim Bach | DJIO <wordpress@djio.com.br>\n"
9
  "Language: pt_BR\n"
188
  msgstr ""
189
 
190
  #: bws_functions.php:375
191
+ #: bws_functions.php:659
192
  msgid "or"
193
  msgstr ""
194
 
328
  msgstr ""
329
 
330
  # @ captcha
331
+ #: bws_functions.php:655
332
  #, fuzzy
333
  msgid "Thank you for installing"
334
  msgstr "Obrigado por nos contatar."
335
 
336
+ #: bws_functions.php:656
337
  msgid "Let's get started"
338
  msgstr ""
339
 
340
  # @ captcha
341
+ #: bws_functions.php:657
342
  #, fuzzy
343
  msgid "Configure Settings"
344
  msgstr "Configurações"
345
 
346
+ #: bws_functions.php:660
347
  msgid "Add New"
348
  msgstr ""
349
 
350
+ #: bws_functions.php:664
351
  msgid "Close notice"
352
  msgstr ""
353
 
354
+ #: bws_functions.php:677
355
  msgid "Notice"
356
  msgstr ""
357
 
358
+ #: bws_functions.php:677
359
  msgid "The plugin's settings have been changed."
360
  msgstr ""
361
 
362
+ #: bws_functions.php:678
363
  msgid "Save Changes"
364
  msgstr ""
365
 
366
+ #: bws_functions.php:693
367
  msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
368
  msgstr ""
369
 
370
+ #: bws_functions.php:773
371
  msgid "Add BWS Plugins Shortcode"
372
  msgstr ""
373
 
374
+ #: bws_functions.php:793
375
+ msgid "Add shortcode"
376
+ msgstr ""
377
+
378
+ #: bws_functions.php:793
379
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
380
+ msgstr ""
381
+
382
+ #: bws_functions.php:833
383
  msgid "Close"
384
  msgstr ""
385
 
386
+ #: bws_functions.php:925
387
  msgid "Restore all plugin settings to defaults"
388
  msgstr ""
389
 
390
+ #: bws_functions.php:927
391
  msgid "Restore settings"
392
  msgstr ""
393
 
394
+ #: bws_functions.php:938
395
  msgid "Are you sure you want to restore all settings by default?"
396
  msgstr ""
397
 
398
+ #: bws_functions.php:941
399
  msgid "Yes, restore all settings"
400
  msgstr ""
401
 
402
+ #: bws_functions.php:942
403
  msgid "No, go back to the settings page"
404
  msgstr ""
405
 
406
  # @ captcha
407
+ #: bws_functions.php:986
408
  #, fuzzy
409
  msgid "Plugin"
410
  msgstr "Plugins Pro"
411
 
412
  # @ captcha
413
+ #: bws_functions.php:995
414
  #, fuzzy
415
  msgid "Shortcode settings"
416
  msgstr "Configurações"
417
 
418
+ #: bws_functions.php:1000
419
  msgid "The shortcode will be inserted"
420
  msgstr ""
421
 
422
+ #: bws_functions.php:1005
423
  msgid "Insert"
424
  msgstr ""
425
 
426
+ #: bws_functions.php:1036
427
+ msgid "Visit Help Center"
428
+ msgstr ""
429
+
430
+ #: bws_functions.php:1041
431
+ msgid "FAQ"
432
+ msgstr ""
433
+
434
+ #: bws_functions.php:1047
435
+ msgid "For more information:"
436
+ msgstr ""
437
+
438
+ #: bws_functions.php:1048
439
+ msgid "Documentation"
440
+ msgstr ""
441
+
442
+ #: bws_functions.php:1049
443
+ msgid "Video Instructions"
444
+ msgstr ""
445
+
446
+ #: bws_functions.php:1050
447
+ msgid "Submit a Request"
448
+ msgstr ""
449
+
450
  # @ captcha
451
  #: bws_menu.php:506
452
  msgid "Not set"
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: 2015-10-02 13:02+0300\n"
6
- "PO-Revision-Date: 2015-10-02 13:09+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"
@@ -176,7 +176,7 @@ msgid "(your username is the email you specify when purchasing the product)."
176
  msgstr "(ваше имя пользователя - это электронный адрес, указанный при покупке продукта)."
177
 
178
  #: bws_functions.php:375
179
- #: bws_functions.php:678
180
  msgid "or"
181
  msgstr "или"
182
 
@@ -311,86 +311,118 @@ msgstr "истекает"
311
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
312
  msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
313
 
314
- #: bws_functions.php:674
315
  msgid "Thank you for installing"
316
  msgstr "Спасибо за установку"
317
 
318
- #: bws_functions.php:675
319
  msgid "Let's get started"
320
  msgstr "Давайте начнем"
321
 
322
- #: bws_functions.php:676
323
  msgid "Configure Settings"
324
  msgstr "Настройка параметров"
325
 
326
- #: bws_functions.php:679
327
  msgid "Add New"
328
  msgstr "Добавить"
329
 
330
- #: bws_functions.php:683
331
  msgid "Close notice"
332
  msgstr "Закрыть"
333
 
334
- #: bws_functions.php:696
335
  msgid "Notice"
336
  msgstr "Внимание"
337
 
338
- #: bws_functions.php:696
339
  msgid "The plugin's settings have been changed."
340
  msgstr "Настройки плагина были изменены"
341
 
342
- #: bws_functions.php:697
343
  msgid "Save Changes"
344
  msgstr "Сохранить изменения"
345
 
346
- #: bws_functions.php:712
347
  msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
348
  msgstr "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Показать Pro опции\" на вкладке \"Перейти на PRO\""
349
 
350
- #: bws_functions.php:769
351
  msgid "Add BWS Plugins Shortcode"
352
  msgstr "Добавить шорткод BWS Плагина"
353
 
354
- #: bws_functions.php:813
 
 
 
 
 
 
 
 
355
  msgid "Close"
356
  msgstr "Закрыть"
357
 
358
- #: bws_functions.php:904
359
  msgid "Restore all plugin settings to defaults"
360
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
361
 
362
- #: bws_functions.php:906
363
  msgid "Restore settings"
364
  msgstr "Восстановить настройки"
365
 
366
- #: bws_functions.php:917
367
  msgid "Are you sure you want to restore all settings by default?"
368
  msgstr "Вы уверены что хотите восстановить все настройки плагина к настройкам по умолчанию?"
369
 
370
- #: bws_functions.php:920
371
  msgid "Yes, restore all settings"
372
  msgstr "Да, восстановить все настройки"
373
 
374
- #: bws_functions.php:921
375
  msgid "No, go back to the settings page"
376
  msgstr "Нет, вернуться на страницу настроек"
377
 
378
- #: bws_functions.php:965
379
  msgid "Plugin"
380
  msgstr "Плагин"
381
 
382
- #: bws_functions.php:974
383
  msgid "Shortcode settings"
384
  msgstr "Настройки шорткода"
385
 
386
- #: bws_functions.php:979
387
  msgid "The shortcode will be inserted"
388
  msgstr "Будет вставлен шорткод"
389
 
390
- #: bws_functions.php:984
391
  msgid "Insert"
392
  msgstr "Вставить"
393
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
394
  #: bws_menu.php:506
395
  msgid "Not set"
396
  msgstr "Не задан"
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-10-09 16:33+0300\n"
6
+ "PO-Revision-Date: 2015-10-09 17:02+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"
176
  msgstr "(ваше имя пользователя - это электронный адрес, указанный при покупке продукта)."
177
 
178
  #: bws_functions.php:375
179
+ #: bws_functions.php:659
180
  msgid "or"
181
  msgstr "или"
182
 
311
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
312
  msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
313
 
314
+ #: bws_functions.php:655
315
  msgid "Thank you for installing"
316
  msgstr "Спасибо за установку"
317
 
318
+ #: bws_functions.php:656
319
  msgid "Let's get started"
320
  msgstr "Давайте начнем"
321
 
322
+ #: bws_functions.php:657
323
  msgid "Configure Settings"
324
  msgstr "Настройка параметров"
325
 
326
+ #: bws_functions.php:660
327
  msgid "Add New"
328
  msgstr "Добавить"
329
 
330
+ #: bws_functions.php:664
331
  msgid "Close notice"
332
  msgstr "Закрыть"
333
 
334
+ #: bws_functions.php:677
335
  msgid "Notice"
336
  msgstr "Внимание"
337
 
338
+ #: bws_functions.php:677
339
  msgid "The plugin's settings have been changed."
340
  msgstr "Настройки плагина были изменены"
341
 
342
+ #: bws_functions.php:678
343
  msgid "Save Changes"
344
  msgstr "Сохранить изменения"
345
 
346
+ #: bws_functions.php:693
347
  msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
348
  msgstr "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Показать Pro опции\" на вкладке \"Перейти на PRO\""
349
 
350
+ #: bws_functions.php:773
351
  msgid "Add BWS Plugins Shortcode"
352
  msgstr "Добавить шорткод BWS Плагина"
353
 
354
+ #: bws_functions.php:793
355
+ msgid "Add shortcode"
356
+ msgstr "Добавить шорткод"
357
+
358
+ #: bws_functions.php:793
359
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
360
+ msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
361
+
362
+ #: bws_functions.php:833
363
  msgid "Close"
364
  msgstr "Закрыть"
365
 
366
+ #: bws_functions.php:926
367
  msgid "Restore all plugin settings to defaults"
368
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
369
 
370
+ #: bws_functions.php:928
371
  msgid "Restore settings"
372
  msgstr "Восстановить настройки"
373
 
374
+ #: bws_functions.php:939
375
  msgid "Are you sure you want to restore all settings by default?"
376
  msgstr "Вы уверены что хотите восстановить все настройки плагина к настройкам по умолчанию?"
377
 
378
+ #: bws_functions.php:942
379
  msgid "Yes, restore all settings"
380
  msgstr "Да, восстановить все настройки"
381
 
382
+ #: bws_functions.php:943
383
  msgid "No, go back to the settings page"
384
  msgstr "Нет, вернуться на страницу настроек"
385
 
386
+ #: bws_functions.php:987
387
  msgid "Plugin"
388
  msgstr "Плагин"
389
 
390
+ #: bws_functions.php:996
391
  msgid "Shortcode settings"
392
  msgstr "Настройки шорткода"
393
 
394
+ #: bws_functions.php:1001
395
  msgid "The shortcode will be inserted"
396
  msgstr "Будет вставлен шорткод"
397
 
398
+ #: bws_functions.php:1006
399
  msgid "Insert"
400
  msgstr "Вставить"
401
 
402
+ #: bws_functions.php:1037
403
+ msgid "Visit Help Center"
404
+ msgstr "Перейти в Help Center"
405
+
406
+ #: bws_functions.php:1042
407
+ msgid "FAQ"
408
+ msgstr "FAQ"
409
+
410
+ #: bws_functions.php:1048
411
+ msgid "For more information:"
412
+ msgstr "Для дополнительной информации:"
413
+
414
+ #: bws_functions.php:1049
415
+ msgid "Documentation"
416
+ msgstr "Документация"
417
+
418
+ #: bws_functions.php:1050
419
+ msgid "Video Instructions"
420
+ msgstr "Видео инструкции"
421
+
422
+ #: bws_functions.php:1051
423
+ msgid "Submit a Request"
424
+ msgstr "Отправить запрос"
425
+
426
  #: bws_menu.php:506
427
  msgid "Not set"
428
  msgstr "Не задан"
bws_menu/languages/bestwebsoft-sr_RS.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-sr_RS.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: 2015-10-02 13:05+0300\n"
6
- "PO-Revision-Date: 2015-10-02 13:05+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
9
  "Language: fr_FR\n"
@@ -184,7 +184,7 @@ msgid "(your username is the email you specify when purchasing the product)."
184
  msgstr ""
185
 
186
  #: bws_functions.php:375
187
- #: bws_functions.php:678
188
  msgid "or"
189
  msgstr ""
190
 
@@ -321,92 +321,125 @@ msgstr ""
321
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
322
  msgstr ""
323
 
324
- #: bws_functions.php:674
325
  #, fuzzy
326
  msgid "Thank you for installing"
327
  msgstr "Hvala što ste nas kontaktirali"
328
 
329
- #: bws_functions.php:675
330
  msgid "Let's get started"
331
  msgstr ""
332
 
333
- #: bws_functions.php:676
334
  #, fuzzy
335
  msgid "Configure Settings"
336
  msgstr "na stranici za podešavanje modula ("
337
 
338
- #: bws_functions.php:679
339
  msgid "Add New"
340
  msgstr "Ajouter"
341
 
342
- #: bws_functions.php:683
343
  msgid "Close notice"
344
  msgstr ""
345
 
346
- #: bws_functions.php:696
347
  msgid "Notice"
348
  msgstr ""
349
 
350
- #: bws_functions.php:696
351
  msgid "The plugin's settings have been changed."
352
  msgstr ""
353
 
354
- #: bws_functions.php:697
355
  msgid "Save Changes"
356
  msgstr "Sačuvaj izmene"
357
 
358
- #: bws_functions.php:712
359
  msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
360
  msgstr ""
361
 
362
- #: bws_functions.php:769
363
  msgid "Add BWS Plugins Shortcode"
364
  msgstr ""
365
 
366
- #: bws_functions.php:813
 
 
 
 
 
 
 
 
 
367
  msgid "Close"
368
  msgstr ""
369
 
370
- #: bws_functions.php:904
371
  msgid "Restore all plugin settings to defaults"
372
  msgstr ""
373
 
374
- #: bws_functions.php:906
375
  #, fuzzy
376
  msgid "Restore settings"
377
  msgstr "na stranici za podešavanje modula ("
378
 
379
- #: bws_functions.php:917
380
  msgid "Are you sure you want to restore all settings by default?"
381
  msgstr ""
382
 
383
- #: bws_functions.php:920
384
  msgid "Yes, restore all settings"
385
  msgstr ""
386
 
387
- #: bws_functions.php:921
388
  #, fuzzy
389
  msgid "No, go back to the settings page"
390
  msgstr "na stranici za podešavanje modula ("
391
 
392
- #: bws_functions.php:965
393
  #, fuzzy
394
  msgid "Plugin"
395
  msgstr "Pro moduli"
396
 
397
- #: bws_functions.php:974
398
  #, fuzzy
399
  msgid "Shortcode settings"
400
  msgstr "na stranici za podešavanje modula ("
401
 
402
- #: bws_functions.php:979
403
  msgid "The shortcode will be inserted"
404
  msgstr ""
405
 
406
- #: bws_functions.php:984
407
  msgid "Insert"
408
  msgstr ""
409
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
410
  #: bws_menu.php:506
411
  msgid "Not set"
412
  msgstr "Nije podešeno"
@@ -776,9 +809,6 @@ msgstr "Pošalji na korisnički mejl &#187;"
776
  #~ msgid "Upload File"
777
  #~ msgstr "Učitaj fajl"
778
 
779
- #~ msgid "Gallery Shortcode"
780
- #~ msgstr "Kratak kod za Galeriju"
781
-
782
  #~ msgid ""
783
  #~ "The gallery temp directory (gallery-plugin/upload/files) is not available "
784
  #~ "for record on your webserver. Please use the standard WP functionality to "
@@ -1052,9 +1082,6 @@ msgstr "Pošalji na korisnički mejl &#187;"
1052
  #~ msgid "Google +1"
1053
  #~ msgstr "Google +1"
1054
 
1055
- #~ msgid "FAQ"
1056
- #~ msgstr "FAQ"
1057
-
1058
  #~ msgid "Support"
1059
  #~ msgstr "Podrška"
1060
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-10-09 14:46+0300\n"
6
+ "PO-Revision-Date: 2015-10-09 14:46+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
9
  "Language: fr_FR\n"
184
  msgstr ""
185
 
186
  #: bws_functions.php:375
187
+ #: bws_functions.php:659
188
  msgid "or"
189
  msgstr ""
190
 
321
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
322
  msgstr ""
323
 
324
+ #: bws_functions.php:655
325
  #, fuzzy
326
  msgid "Thank you for installing"
327
  msgstr "Hvala što ste nas kontaktirali"
328
 
329
+ #: bws_functions.php:656
330
  msgid "Let's get started"
331
  msgstr ""
332
 
333
+ #: bws_functions.php:657
334
  #, fuzzy
335
  msgid "Configure Settings"
336
  msgstr "na stranici za podešavanje modula ("
337
 
338
+ #: bws_functions.php:660
339
  msgid "Add New"
340
  msgstr "Ajouter"
341
 
342
+ #: bws_functions.php:664
343
  msgid "Close notice"
344
  msgstr ""
345
 
346
+ #: bws_functions.php:677
347
  msgid "Notice"
348
  msgstr ""
349
 
350
+ #: bws_functions.php:677
351
  msgid "The plugin's settings have been changed."
352
  msgstr ""
353
 
354
+ #: bws_functions.php:678
355
  msgid "Save Changes"
356
  msgstr "Sačuvaj izmene"
357
 
358
+ #: bws_functions.php:693
359
  msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
360
  msgstr ""
361
 
362
+ #: bws_functions.php:773
363
  msgid "Add BWS Plugins Shortcode"
364
  msgstr ""
365
 
366
+ #: bws_functions.php:793
367
+ #, fuzzy
368
+ msgid "Add shortcode"
369
+ msgstr "Kratak kod za Galeriju"
370
+
371
+ #: bws_functions.php:793
372
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
373
+ msgstr ""
374
+
375
+ #: bws_functions.php:833
376
  msgid "Close"
377
  msgstr ""
378
 
379
+ #: bws_functions.php:925
380
  msgid "Restore all plugin settings to defaults"
381
  msgstr ""
382
 
383
+ #: bws_functions.php:927
384
  #, fuzzy
385
  msgid "Restore settings"
386
  msgstr "na stranici za podešavanje modula ("
387
 
388
+ #: bws_functions.php:938
389
  msgid "Are you sure you want to restore all settings by default?"
390
  msgstr ""
391
 
392
+ #: bws_functions.php:941
393
  msgid "Yes, restore all settings"
394
  msgstr ""
395
 
396
+ #: bws_functions.php:942
397
  #, fuzzy
398
  msgid "No, go back to the settings page"
399
  msgstr "na stranici za podešavanje modula ("
400
 
401
+ #: bws_functions.php:986
402
  #, fuzzy
403
  msgid "Plugin"
404
  msgstr "Pro moduli"
405
 
406
+ #: bws_functions.php:995
407
  #, fuzzy
408
  msgid "Shortcode settings"
409
  msgstr "na stranici za podešavanje modula ("
410
 
411
+ #: bws_functions.php:1000
412
  msgid "The shortcode will be inserted"
413
  msgstr ""
414
 
415
+ #: bws_functions.php:1005
416
  msgid "Insert"
417
  msgstr ""
418
 
419
+ #: bws_functions.php:1036
420
+ msgid "Visit Help Center"
421
+ msgstr ""
422
+
423
+ #: bws_functions.php:1041
424
+ msgid "FAQ"
425
+ msgstr "FAQ"
426
+
427
+ #: bws_functions.php:1047
428
+ msgid "For more information:"
429
+ msgstr ""
430
+
431
+ #: bws_functions.php:1048
432
+ msgid "Documentation"
433
+ msgstr ""
434
+
435
+ #: bws_functions.php:1049
436
+ msgid "Video Instructions"
437
+ msgstr ""
438
+
439
+ #: bws_functions.php:1050
440
+ msgid "Submit a Request"
441
+ msgstr ""
442
+
443
  #: bws_menu.php:506
444
  msgid "Not set"
445
  msgstr "Nije podešeno"
809
  #~ msgid "Upload File"
810
  #~ msgstr "Učitaj fajl"
811
 
 
 
 
812
  #~ msgid ""
813
  #~ "The gallery temp directory (gallery-plugin/upload/files) is not available "
814
  #~ "for record on your webserver. Please use the standard WP functionality to "
1082
  #~ msgid "Google +1"
1083
  #~ msgstr "Google +1"
1084
 
 
 
 
1085
  #~ msgid "Support"
1086
  #~ msgstr "Podrška"
1087
 
bws_menu/languages/bestwebsoft-sv_SE.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-sv_SE.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: 2015-10-02 13:05+0300\n"
6
- "PO-Revision-Date: 2015-10-02 13:05+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Christer Rönningborg, Blittan <blittan@xbmc.org>\n"
9
  "Language: sv_SE\n"
@@ -182,7 +182,7 @@ msgid "(your username is the email you specify when purchasing the product)."
182
  msgstr ""
183
 
184
  #: bws_functions.php:375
185
- #: bws_functions.php:678
186
  #, fuzzy
187
  msgid "or"
188
  msgstr "fyra"
@@ -320,90 +320,122 @@ msgstr ""
320
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
321
  msgstr ""
322
 
323
- #: bws_functions.php:674
324
  #, fuzzy
325
  msgid "Thank you for installing"
326
  msgstr "Tack för att du kontaktade oss."
327
 
328
- #: bws_functions.php:675
329
  msgid "Let's get started"
330
  msgstr ""
331
 
332
- #: bws_functions.php:676
333
  #, fuzzy
334
  msgid "Configure Settings"
335
  msgstr "Inställningar"
336
 
337
- #: bws_functions.php:679
338
  msgid "Add New"
339
  msgstr ""
340
 
341
- #: bws_functions.php:683
342
  msgid "Close notice"
343
  msgstr ""
344
 
345
- #: bws_functions.php:696
346
  msgid "Notice"
347
  msgstr ""
348
 
349
- #: bws_functions.php:696
350
  msgid "The plugin's settings have been changed."
351
  msgstr ""
352
 
353
- #: bws_functions.php:697
354
  msgid "Save Changes"
355
  msgstr "Spara ändringar"
356
 
357
- #: bws_functions.php:712
358
  msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
359
  msgstr ""
360
 
361
- #: bws_functions.php:769
362
  msgid "Add BWS Plugins Shortcode"
363
  msgstr ""
364
 
365
- #: bws_functions.php:813
 
 
 
 
 
 
 
 
366
  msgid "Close"
367
  msgstr ""
368
 
369
- #: bws_functions.php:904
370
  msgid "Restore all plugin settings to defaults"
371
  msgstr ""
372
 
373
- #: bws_functions.php:906
374
  msgid "Restore settings"
375
  msgstr ""
376
 
377
- #: bws_functions.php:917
378
  msgid "Are you sure you want to restore all settings by default?"
379
  msgstr ""
380
 
381
- #: bws_functions.php:920
382
  msgid "Yes, restore all settings"
383
  msgstr ""
384
 
385
- #: bws_functions.php:921
386
  msgid "No, go back to the settings page"
387
  msgstr ""
388
 
389
- #: bws_functions.php:965
390
  #, fuzzy
391
  msgid "Plugin"
392
  msgstr "Betaltillägg"
393
 
394
- #: bws_functions.php:974
395
  #, fuzzy
396
  msgid "Shortcode settings"
397
  msgstr "Inställningar"
398
 
399
- #: bws_functions.php:979
400
  msgid "The shortcode will be inserted"
401
  msgstr ""
402
 
403
- #: bws_functions.php:984
404
  msgid "Insert"
405
  msgstr ""
406
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
407
  #: bws_menu.php:506
408
  msgid "Not set"
409
  msgstr "Inte angiven"
@@ -776,9 +808,6 @@ msgstr "Skicka till anpassad epost &#187;"
776
  #~ msgid "Captcha"
777
  #~ msgstr "Captcha"
778
 
779
- #~ msgid "FAQ"
780
- #~ msgstr "FAQ"
781
-
782
  #~ msgid "Support"
783
  #~ msgstr "Support"
784
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-10-09 14:46+0300\n"
6
+ "PO-Revision-Date: 2015-10-09 14:46+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Christer Rönningborg, Blittan <blittan@xbmc.org>\n"
9
  "Language: sv_SE\n"
182
  msgstr ""
183
 
184
  #: bws_functions.php:375
185
+ #: bws_functions.php:659
186
  #, fuzzy
187
  msgid "or"
188
  msgstr "fyra"
320
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
321
  msgstr ""
322
 
323
+ #: bws_functions.php:655
324
  #, fuzzy
325
  msgid "Thank you for installing"
326
  msgstr "Tack för att du kontaktade oss."
327
 
328
+ #: bws_functions.php:656
329
  msgid "Let's get started"
330
  msgstr ""
331
 
332
+ #: bws_functions.php:657
333
  #, fuzzy
334
  msgid "Configure Settings"
335
  msgstr "Inställningar"
336
 
337
+ #: bws_functions.php:660
338
  msgid "Add New"
339
  msgstr ""
340
 
341
+ #: bws_functions.php:664
342
  msgid "Close notice"
343
  msgstr ""
344
 
345
+ #: bws_functions.php:677
346
  msgid "Notice"
347
  msgstr ""
348
 
349
+ #: bws_functions.php:677
350
  msgid "The plugin's settings have been changed."
351
  msgstr ""
352
 
353
+ #: bws_functions.php:678
354
  msgid "Save Changes"
355
  msgstr "Spara ändringar"
356
 
357
+ #: bws_functions.php:693
358
  msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
359
  msgstr ""
360
 
361
+ #: bws_functions.php:773
362
  msgid "Add BWS Plugins Shortcode"
363
  msgstr ""
364
 
365
+ #: bws_functions.php:793
366
+ msgid "Add shortcode"
367
+ msgstr ""
368
+
369
+ #: bws_functions.php:793
370
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
371
+ msgstr ""
372
+
373
+ #: bws_functions.php:833
374
  msgid "Close"
375
  msgstr ""
376
 
377
+ #: bws_functions.php:925
378
  msgid "Restore all plugin settings to defaults"
379
  msgstr ""
380
 
381
+ #: bws_functions.php:927
382
  msgid "Restore settings"
383
  msgstr ""
384
 
385
+ #: bws_functions.php:938
386
  msgid "Are you sure you want to restore all settings by default?"
387
  msgstr ""
388
 
389
+ #: bws_functions.php:941
390
  msgid "Yes, restore all settings"
391
  msgstr ""
392
 
393
+ #: bws_functions.php:942
394
  msgid "No, go back to the settings page"
395
  msgstr ""
396
 
397
+ #: bws_functions.php:986
398
  #, fuzzy
399
  msgid "Plugin"
400
  msgstr "Betaltillägg"
401
 
402
+ #: bws_functions.php:995
403
  #, fuzzy
404
  msgid "Shortcode settings"
405
  msgstr "Inställningar"
406
 
407
+ #: bws_functions.php:1000
408
  msgid "The shortcode will be inserted"
409
  msgstr ""
410
 
411
+ #: bws_functions.php:1005
412
  msgid "Insert"
413
  msgstr ""
414
 
415
+ #: bws_functions.php:1036
416
+ msgid "Visit Help Center"
417
+ msgstr ""
418
+
419
+ #: bws_functions.php:1041
420
+ msgid "FAQ"
421
+ msgstr "FAQ"
422
+
423
+ #: bws_functions.php:1047
424
+ msgid "For more information:"
425
+ msgstr ""
426
+
427
+ #: bws_functions.php:1048
428
+ msgid "Documentation"
429
+ msgstr ""
430
+
431
+ #: bws_functions.php:1049
432
+ msgid "Video Instructions"
433
+ msgstr ""
434
+
435
+ #: bws_functions.php:1050
436
+ msgid "Submit a Request"
437
+ msgstr ""
438
+
439
  #: bws_menu.php:506
440
  msgid "Not set"
441
  msgstr "Inte angiven"
808
  #~ msgid "Captcha"
809
  #~ msgstr "Captcha"
810
 
 
 
 
811
  #~ msgid "Support"
812
  #~ msgstr "Support"
813
 
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: 2015-10-02 13:05+0300\n"
6
- "PO-Revision-Date: 2015-10-02 13:08+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"
@@ -176,7 +176,7 @@ msgid "(your username is the email you specify when purchasing the product)."
176
  msgstr "(ваше ім'я - це емейл, який ви вказували при купівлі плагіну)"
177
 
178
  #: bws_functions.php:375
179
- #: bws_functions.php:678
180
  msgid "or"
181
  msgstr "або"
182
 
@@ -311,86 +311,118 @@ msgstr "витікає"
311
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
312
  msgstr "та ви більше не будете отримувати першочергову технічну підтримку та оновлення."
313
 
314
- #: bws_functions.php:674
315
  msgid "Thank you for installing"
316
  msgstr "Дякуємо, що встановили"
317
 
318
- #: bws_functions.php:675
319
  msgid "Let's get started"
320
  msgstr "Розпочнемо"
321
 
322
- #: bws_functions.php:676
323
  msgid "Configure Settings"
324
  msgstr "Налаштувати плагін"
325
 
326
- #: bws_functions.php:679
327
  msgid "Add New"
328
  msgstr "Додати"
329
 
330
- #: bws_functions.php:683
331
  msgid "Close notice"
332
  msgstr "Закрити"
333
 
334
- #: bws_functions.php:696
335
  msgid "Notice"
336
  msgstr "Зауважте"
337
 
338
- #: bws_functions.php:696
339
  msgid "The plugin's settings have been changed."
340
  msgstr "Налаштування плагіну змінено."
341
 
342
- #: bws_functions.php:697
343
  msgid "Save Changes"
344
  msgstr "Зберегти зміни"
345
 
346
- #: bws_functions.php:712
347
  msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
348
  msgstr "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Показати Pro особливост\" на вкладці \"Перейти на PRO\""
349
 
350
- #: bws_functions.php:769
351
  msgid "Add BWS Plugins Shortcode"
352
  msgstr "Додати BWS шорткод"
353
 
354
- #: bws_functions.php:813
 
 
 
 
 
 
 
 
355
  msgid "Close"
356
  msgstr "Закрити"
357
 
358
- #: bws_functions.php:904
359
  msgid "Restore all plugin settings to defaults"
360
  msgstr "Скинути налаштування плагіну до стандартних"
361
 
362
- #: bws_functions.php:906
363
  msgid "Restore settings"
364
  msgstr "Скинути налаштування"
365
 
366
- #: bws_functions.php:917
367
  msgid "Are you sure you want to restore all settings by default?"
368
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
369
 
370
- #: bws_functions.php:920
371
  msgid "Yes, restore all settings"
372
  msgstr "Так, скинути налаштування"
373
 
374
- #: bws_functions.php:921
375
  msgid "No, go back to the settings page"
376
  msgstr "Ні, повернутись назад на сторінку налаштувань"
377
 
378
- #: bws_functions.php:965
379
  msgid "Plugin"
380
  msgstr "Плагін"
381
 
382
- #: bws_functions.php:974
383
  msgid "Shortcode settings"
384
  msgstr "Налаштування шорткоду"
385
 
386
- #: bws_functions.php:979
387
  msgid "The shortcode will be inserted"
388
  msgstr "Буде вставлено шорткод"
389
 
390
- #: bws_functions.php:984
391
  msgid "Insert"
392
  msgstr "Вставити"
393
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
394
  #: bws_menu.php:506
395
  msgid "Not set"
396
  msgstr "Не задано"
@@ -764,9 +796,6 @@ msgstr "Відправити на електронну адресу &#187;"
764
  #~ msgid "Captcha"
765
  #~ msgstr "КАПЧА"
766
 
767
- #~ msgid "FAQ"
768
- #~ msgstr "FAQ"
769
-
770
  #~ msgid "Support"
771
  #~ msgstr "Поддержка"
772
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-10-09 17:02+0300\n"
6
+ "PO-Revision-Date: 2015-10-09 17:02+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"
176
  msgstr "(ваше ім'я - це емейл, який ви вказували при купівлі плагіну)"
177
 
178
  #: bws_functions.php:375
179
+ #: bws_functions.php:659
180
  msgid "or"
181
  msgstr "або"
182
 
311
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
312
  msgstr "та ви більше не будете отримувати першочергову технічну підтримку та оновлення."
313
 
314
+ #: bws_functions.php:655
315
  msgid "Thank you for installing"
316
  msgstr "Дякуємо, що встановили"
317
 
318
+ #: bws_functions.php:656
319
  msgid "Let's get started"
320
  msgstr "Розпочнемо"
321
 
322
+ #: bws_functions.php:657
323
  msgid "Configure Settings"
324
  msgstr "Налаштувати плагін"
325
 
326
+ #: bws_functions.php:660
327
  msgid "Add New"
328
  msgstr "Додати"
329
 
330
+ #: bws_functions.php:664
331
  msgid "Close notice"
332
  msgstr "Закрити"
333
 
334
+ #: bws_functions.php:677
335
  msgid "Notice"
336
  msgstr "Зауважте"
337
 
338
+ #: bws_functions.php:677
339
  msgid "The plugin's settings have been changed."
340
  msgstr "Налаштування плагіну змінено."
341
 
342
+ #: bws_functions.php:678
343
  msgid "Save Changes"
344
  msgstr "Зберегти зміни"
345
 
346
+ #: bws_functions.php:693
347
  msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
348
  msgstr "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Показати Pro особливост\" на вкладці \"Перейти на PRO\""
349
 
350
+ #: bws_functions.php:773
351
  msgid "Add BWS Plugins Shortcode"
352
  msgstr "Додати BWS шорткод"
353
 
354
+ #: bws_functions.php:793
355
+ msgid "Add shortcode"
356
+ msgstr "Додати шорткод"
357
+
358
+ #: bws_functions.php:793
359
+ msgid "Add BestWebSoft plugins' shortcodes using this button."
360
+ msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
361
+
362
+ #: bws_functions.php:833
363
  msgid "Close"
364
  msgstr "Закрити"
365
 
366
+ #: bws_functions.php:926
367
  msgid "Restore all plugin settings to defaults"
368
  msgstr "Скинути налаштування плагіну до стандартних"
369
 
370
+ #: bws_functions.php:928
371
  msgid "Restore settings"
372
  msgstr "Скинути налаштування"
373
 
374
+ #: bws_functions.php:939
375
  msgid "Are you sure you want to restore all settings by default?"
376
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
377
 
378
+ #: bws_functions.php:942
379
  msgid "Yes, restore all settings"
380
  msgstr "Так, скинути налаштування"
381
 
382
+ #: bws_functions.php:943
383
  msgid "No, go back to the settings page"
384
  msgstr "Ні, повернутись назад на сторінку налаштувань"
385
 
386
+ #: bws_functions.php:987
387
  msgid "Plugin"
388
  msgstr "Плагін"
389
 
390
+ #: bws_functions.php:996
391
  msgid "Shortcode settings"
392
  msgstr "Налаштування шорткоду"
393
 
394
+ #: bws_functions.php:1001
395
  msgid "The shortcode will be inserted"
396
  msgstr "Буде вставлено шорткод"
397
 
398
+ #: bws_functions.php:1006
399
  msgid "Insert"
400
  msgstr "Вставити"
401
 
402
+ #: bws_functions.php:1037
403
+ msgid "Visit Help Center"
404
+ msgstr "Перейти в Help Center"
405
+
406
+ #: bws_functions.php:1042
407
+ msgid "FAQ"
408
+ msgstr "FAQ"
409
+
410
+ #: bws_functions.php:1048
411
+ msgid "For more information:"
412
+ msgstr "Для отримання додаткової інформації:"
413
+
414
+ #: bws_functions.php:1049
415
+ msgid "Documentation"
416
+ msgstr "Документація"
417
+
418
+ #: bws_functions.php:1050
419
+ msgid "Video Instructions"
420
+ msgstr "Відео інструкції"
421
+
422
+ #: bws_functions.php:1051
423
+ msgid "Submit a Request"
424
+ msgstr "Надіслати запит"
425
+
426
  #: bws_menu.php:506
427
  msgid "Not set"
428
  msgstr "Не задано"
796
  #~ msgid "Captcha"
797
  #~ msgstr "КАПЧА"
798
 
 
 
 
799
  #~ msgid "Support"
800
  #~ msgstr "Поддержка"
801
 
css/gglcptch.css ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #commentform .gglcptch {
2
+ margin: 0 0 10px;
3
+ }
4
+ #recaptcha_response_field {
5
+ height: 17px !important;
6
+ max-height: 35px !important;
7
+ font-size: 10pt !important;
8
+ }
9
+ .recaptcha_theme_clean #recaptcha_response_field {
10
+ height: 25px !important;
11
+ }
12
+ #gglcptch_error {
13
+ color: #F00;
14
+ }
15
+ .gglcptch table#recaptcha_table {
16
+ table-layout: auto !important;
17
+ }
18
+ /* rtl fix recaptcha v1 */
19
+ .rtl .gglcptch_v1 .recaptcha_r2_c1 {
20
+ background: url('http://www.google.com/recaptcha/api/img/red/sprite.png') -27px 0 no-repeat !important;
21
+ }
22
+ .rtl .gglcptch_v1 .recaptcha_r2_c2 {
23
+ background: url('http://www.google.com/recaptcha/api/img/red/sprite.png') -18px 0 no-repeat !important;
24
+ }
25
+ .rtl .gglcptch_v1 .recaptcha_r3_c1 {
26
+ background: url('http://www.google.com/recaptcha/api/img/red/sprite.png') -9px 0 no-repeat !important;
27
+ }
28
+ .rtl .gglcptch_v1 .recaptcha_r3_c3 {
29
+ background: url('http://www.google.com/recaptcha/api/img/red/sprite.png') 0 0 no-repeat !important;
30
+ }
css/style.css CHANGED
@@ -1,6 +1,10 @@
1
  /*
2
  * styles for settings page
3
  */
 
 
 
4
  #gglcptch-keys input[type=text] {
5
- width: 250px;
 
6
  }
1
  /*
2
  * styles for settings page
3
  */
4
+ #gglcptch_v1_notice {
5
+ border-color: #00a0d2 !important;
6
+ }
7
  #gglcptch-keys input[type=text] {
8
+ max-width: 350px;
9
+ width: 100%;
10
  }
google-captcha.php CHANGED
@@ -6,32 +6,33 @@ Description: Plugin Google Captcha intended to prove that the visitor is a human
6
  Author: BestWebSoft
7
  Text Domain: google-captcha
8
  Domain Path: /languages
9
- Version: 1.20
10
  Author URI: http://bestwebsoft.com/
11
  License: GPLv3 or later
12
  */
13
 
14
  /* © Copyright 2015 BestWebSoft ( http://support.bestwebsoft.com )
15
 
16
- This program is free software; you can redistribute it and/or modify
17
- it under the terms of the GNU General Public License, version 2, as
18
- published by the Free Software Foundation.
19
 
20
- This program is distributed in the hope that it will be useful,
21
- but WITHOUT ANY WARRANTY; without even the implied warranty of
22
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23
- GNU General Public License for more details.
24
 
25
- You should have received a copy of the GNU General Public License
26
- along with this program; if not, write to the Free Software
27
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
  */
29
 
30
  /* Add menu page */
31
- if ( ! function_exists( 'google_capthca_admin_menu' ) ) {
32
- function google_capthca_admin_menu() {
33
- bws_add_general_menu( plugin_basename( __FILE__ ) );
34
- add_submenu_page( 'bws_plugins', __( 'Google Captcha Settings', 'google-captcha' ), 'Google Captcha', 'manage_options', 'google-captcha.php', 'gglcptch_settings_page' );
 
35
  }
36
  }
37
 
@@ -42,9 +43,16 @@ if ( ! function_exists( 'gglcptch_plugins_loaded' ) ) {
42
  }
43
  }
44
 
 
 
 
 
 
 
 
45
  if ( ! function_exists( 'gglcptch_init' ) ) {
46
  function gglcptch_init() {
47
- global $gglcptch_options, $gglcptch_allow_url_fopen, $gglcptch_plugin_info;
48
 
49
  require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
50
  bws_include_init( plugin_basename( __FILE__ ) );
@@ -61,33 +69,43 @@ if ( ! function_exists( 'gglcptch_init' ) ) {
61
  /* Get options from the database */
62
  $gglcptch_options = get_option( 'gglcptch_options' );
63
 
64
- /* Get option from the php.ini */
65
- $gglcptch_allow_url_fopen = ( ini_get( 'allow_url_fopen' ) != 1 ) ? false : true;
 
 
66
 
67
  /* Add hooks */
68
- if ( '1' == $gglcptch_options['login_form'] ) {
69
- add_action( 'login_form', 'gglcptch_login_display' );
70
- add_action( 'authenticate', 'gglcptch_login_check', 21, 1 );
71
- }
72
 
73
- if ( '1' == $gglcptch_options['comments_form'] ) {
74
- add_action( 'comment_form_after_fields', 'gglcptch_commentform_display' );
75
- add_action( 'comment_form_logged_in_after', 'gglcptch_commentform_display' );
76
- add_action( 'pre_comment_on_post', 'gglcptch_commentform_check' );
77
- }
78
 
79
- if ( '1' == $gglcptch_options['reset_pwd_form'] ) {
80
- add_action( 'lostpassword_form', 'gglcptch_login_display' );
81
- add_action( 'lostpassword_post', 'gglcptch_lostpassword_check' );
82
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
 
84
- if ( '1' == $gglcptch_options['registration_form'] ) {
85
- add_action( 'register_form', 'gglcptch_login_display' );
86
- add_action( 'register_post', 'gglcptch_lostpassword_check' );
87
- /* for multisite */
88
- add_action( 'signup_extra_fields', 'gglcptch_login_display' );
89
- }
90
-
91
  if ( '1' == $gglcptch_options['contact_form'] ) {
92
  add_filter( 'cntctfrm_display_captcha', 'gglcptch_cf_display' );
93
  add_filter( 'cntctfrmpr_display_captcha', 'gglcptch_cf_display' );
@@ -97,7 +115,7 @@ if ( ! function_exists( 'gglcptch_init' ) ) {
97
 
98
  if ( ! function_exists( 'gglcptch_admin_init' ) ) {
99
  function gglcptch_admin_init() {
100
- global $bws_plugin_info, $gglcptch_plugin_info;
101
 
102
  if ( ! isset( $bws_plugin_info ) || empty( $bws_plugin_info ) )
103
  $bws_plugin_info = array( 'id' => '109', 'version' => $gglcptch_plugin_info["Version"] );
@@ -105,12 +123,15 @@ if ( ! function_exists( 'gglcptch_admin_init' ) ) {
105
  /* Call register settings function */
106
  if ( isset( $_GET['page'] ) && "google-captcha.php" == $_GET['page'] )
107
  register_gglcptch_settings();
 
 
 
108
  }
109
  }
110
 
111
  /* Add google captcha styles */
112
- if ( ! function_exists( 'gglcptch_add_style' ) ) {
113
- function gglcptch_add_style() {
114
  if ( isset( $_REQUEST['page'] ) && 'google-captcha.php' == $_REQUEST['page'] ) {
115
  wp_enqueue_style( 'gglcptch_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
116
  wp_enqueue_script( 'gglcptch_admin_script', plugins_url( 'js/admin_script.js', __FILE__ ), array( 'jquery' ) );
@@ -119,16 +140,42 @@ if ( ! function_exists( 'gglcptch_add_style' ) ) {
119
  }
120
 
121
  /* Add google captcha scripts */
122
- if ( ! function_exists( 'gglcptch_add_script' ) ) {
123
- function gglcptch_add_script() {
124
- wp_enqueue_script( 'gglcptch_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery' ) );
125
- wp_localize_script( 'gglcptch_script', 'gglcptch_vars', array( 'nonce' => wp_create_nonce( 'gglcptch_recaptcha_nonce' ) ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
126
  }
127
  }
128
  /* Google catpcha settings */
129
  if ( ! function_exists( 'register_gglcptch_settings' ) ) {
130
  function register_gglcptch_settings() {
131
- global $gglcptch_options, $bws_plugin_info, $gglcptch_plugin_info, $gglcptch_allow_url_fopen, $gglcptch_default_options;
132
 
133
  $gglcptch_default_options = array(
134
  'public_key' => '',
@@ -140,14 +187,16 @@ if ( ! function_exists( 'register_gglcptch_settings' ) ) {
140
  'contact_form' => '0',
141
  'theme' => 'red',
142
  'theme_v2' => 'light',
143
- 'recaptcha_version' => ( $gglcptch_allow_url_fopen ) ? 'v2' : 'v1',
144
  'plugin_option_version' => $gglcptch_plugin_info["Version"],
145
  'first_install' => strtotime( "now" ),
146
  'display_settings_notice' => 1
147
  );
148
 
149
- foreach ( get_editable_roles() as $role => $fields ) {
150
- $gglcptch_default_options[ $role ] = '0';
 
 
151
  }
152
 
153
  /* Install the option defaults */
@@ -168,19 +217,56 @@ if ( ! function_exists( 'register_gglcptch_settings' ) ) {
168
  }
169
  }
170
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
171
  /* Display settings page */
172
  if ( ! function_exists( 'gglcptch_settings_page' ) ) {
173
  function gglcptch_settings_page() {
174
- global $gglcptch_options, $gglcptch_plugin_info, $wp_version, $gglcptch_allow_url_fopen, $gglcptch_default_options;
175
-
176
  $plugin_basename = plugin_basename( __FILE__ );
177
  $message = $error = '';
178
 
 
 
 
 
 
 
179
  if ( ! isset( $_GET['action'] ) ) {
180
 
181
  $all_plugins = get_plugins();
182
 
183
- $gglcptch_sizes_v2 = array(
184
  'normal' => __( 'Normal', 'google-captcha' ),
185
  'compact' => __( 'Compact', 'google-captcha' )
186
  );
@@ -245,8 +331,10 @@ if ( ! function_exists( 'gglcptch_settings_page' ) ) {
245
  $gglcptch_options['theme'] = $_POST['gglcptch_theme'];
246
  $gglcptch_options['theme_v2'] = $_POST['gglcptch_theme_v2'];
247
 
248
- foreach ( get_editable_roles() as $role => $fields ) {
249
- $gglcptch_options[ $role ] = isset( $_POST[ 'gglcptch_' . $role ] ) ? 1 : 0;
 
 
250
  }
251
 
252
  update_option( 'gglcptch_options', $gglcptch_options );
@@ -258,7 +346,7 @@ if ( ! function_exists( 'gglcptch_settings_page' ) ) {
258
  update_option( 'gglcptch_options', $gglcptch_options );
259
  $message = __( 'All plugin settings were restored.', 'google-captcha' );
260
  }
261
- }
262
 
263
  $bws_hide_premium_options_check = bws_hide_premium_options_check( $gglcptch_options );
264
 
@@ -271,32 +359,50 @@ if ( ! function_exists( 'gglcptch_settings_page' ) ) {
271
  $message = $go_pro_result['message'];
272
  } ?>
273
  <div class="wrap">
274
- <h2><?php _e( 'Google Captcha Settings', 'google-captcha' ); ?></h2>
275
  <h2 class="nav-tab-wrapper">
276
  <a class="nav-tab<?php if ( ! isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-captcha.php"><?php _e( 'Settings', 'google-captcha' ); ?></a>
277
- <a class="nav-tab" href="http://bestwebsoft.com/products/google-captcha/faq/" target="_blank"><?php _e( 'FAQ', 'google-captcha' ); ?></a>
278
  <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) echo ' nav-tab-active'; ?> bws_go_pro_tab" href="admin.php?page=google-captcha.php&amp;action=go_pro"><?php _e( 'Go PRO', 'google-captcha' ); ?></a>
279
  </h2>
280
- <?php bws_show_settings_notice(); ?>
 
 
 
 
 
 
 
 
 
 
 
 
281
  <div class="updated fade" <?php if ( "" == $message ) echo 'style="display:none"'; ?>><p><strong><?php echo $message; ?></strong></p></div>
282
  <div class="error" <?php if ( "" == $error ) echo 'style="display:none"'; ?>><p><strong><?php echo $error; ?></strong></p></div>
283
  <?php if ( ! empty( $hide_result['message'] ) ) { ?>
284
  <div class="updated fade"><p><strong><?php echo $hide_result['message']; ?></strong></p></div>
285
  <?php }
286
- if ( ! $gglcptch_allow_url_fopen && $gglcptch_options['recaptcha_version'] == 'v2' ) {
287
- printf( '<div class="error"><p><strong>%s</strong> <a href="http://php.net/manual/en/filesystem.configuration.php" target="_blank">%s</a></p></div>',
288
- __( 'Google Captcha version 2 will not work correctly, since the option "allow_url_fopen" is disabled in the PHP settings of your hosting.', 'google-captcha' ),
289
- __( 'Read more.', 'google-captcha' )
290
- );
291
- }
292
- if ( ! isset( $_GET['action'] ) ) {
293
  if ( isset( $_REQUEST['bws_restore_default'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
294
  bws_form_restore_default_confirm( $plugin_basename );
295
  } else { ?>
296
- <p><?php _e( 'If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your form:', 'google-captcha' ); ?> <span class="bws_code">[bws_google_captcha]</span></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
297
  <form class="bws_form" method="post" action="admin.php?page=google-captcha.php">
298
  <h3><?php _e( 'Authentication', 'google-captcha' ); ?></h3>
299
- <p><?php printf( __( 'Before you are able to do something, you must to register %s here %s', 'google-captcha' ), '<a target="_blank" href="https://www.google.com/recaptcha/admin#list">','</a>.' ); ?></p>
300
  <p><?php _e( 'Enter site key and secret key, that you get after registration.', 'google-captcha' ); ?></p>
301
  <table id="gglcptch-keys" class="form-table">
302
  <?php foreach ( $gglcptch_keys as $key => $fields ) { ?>
@@ -314,37 +420,96 @@ if ( ! function_exists( 'gglcptch_settings_page' ) ) {
314
  <tr valign="top">
315
  <th scope="row"><?php _e( 'Enable reCAPTCHA for', 'google-captcha' ); ?></th>
316
  <td>
317
- <?php foreach ( $gglcptch_forms as $form ) : ?>
318
- <label><input type="checkbox" name="<?php echo 'gglcptch_' . $form[0]; ?>" value=<?php echo $form[0]; if ( '1' == $gglcptch_options[ $form[0] ] ) echo ' checked'; ?>> <?php echo $form[1]; ?></label><br />
319
- <?php endforeach;
320
- if ( isset( $all_plugins['contact-form-plugin/contact_form.php'] ) || isset( $all_plugins['contact-form-pro/contact_form_pro.php'] ) ) :
321
- if ( is_plugin_active( 'contact-form-plugin/contact_form.php' ) || is_plugin_active( 'contact-form-pro/contact_form_pro.php' ) ) : ?>
322
- <label><input type="checkbox" name="gglcptch_contact_form" value="contact_form"<?php if ( '1' == $gglcptch_options['contact_form'] ) echo ' checked'; ?>> Contact Form</label>
323
- <span class="bws_info">(<?php _e( 'powered by', 'google-captcha' ); ?> <a href="http://bestwebsoft.com/products/">bestwebsoft.com</a>)</span><br />
324
- <?php else : ?>
325
- <label><input type="checkbox" disabled name="gglcptch_contact_form" value="contact_form"<?php if ( '1' == $gglcptch_options['contact_form'] ) echo ' checked'; ?>> Contact Form</label>
326
- <span class="bws_info">(<?php _e( 'powered by', 'google-captcha' ); ?> <a href="http://bestwebsoft.com/products/">bestwebsoft.com</a>) <a href="<?php echo admin_url( 'plugins.php' ); ?>"><?php _e( 'Activate', 'google-captcha' ); ?> Contact Form</a></span><br />
327
- <?php endif;
328
- else : ?>
329
- <label><input type="checkbox" disabled name="gglcptch_contact_form" value="contact_form"<?php if ( '1' == $gglcptch_options['contact_form'] ) echo ' checked'; ?>> Contact Form</label>
330
- <span class="bws_info">(<?php _e( 'powered by', 'google-captcha' ); ?> <a href="http://bestwebsoft.com/products/">bestwebsoft.com</a>) <a href="http://bestwebsoft.com/products/contact-form/?k=d70b58e1739ab4857d675fed2213cedc&pn=75&v=<?php echo $gglcptch_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>"><?php _e( 'Download', 'google-captcha' ); ?> Contact Form</a></span><br />
331
- <?php endif; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
332
  </td>
333
  </tr>
334
  <tr valign="top">
335
  <th scope="row"><?php _e( 'Hide reCAPTCHA in Comments form for', 'google-captcha' ); ?></th>
336
  <td>
337
- <?php foreach ( get_editable_roles() as $role => $fields) : ?>
338
- <label><input type="checkbox" name="<?php echo 'gglcptch_' . $role; ?>" value=<?php echo $role; if ( isset( $gglcptch_options[ $role ] ) && '1' == $gglcptch_options[ $role ] ) echo ' checked'; ?>> <?php echo $fields['name']; ?></label><br/>
339
- <?php endforeach; ?>
 
 
 
 
340
  </td>
341
  </tr>
342
  <tr valign="top">
343
  <th scope="row"><?php _e( 'reCAPTCHA version', 'google-captcha' ); ?></th>
344
  <td>
345
  <fieldset>
346
- <label><input type="radio" name="gglcptch_recaptcha_version" value="v1"<?php if ( 'v1' == $gglcptch_options['recaptcha_version'] ) echo ' checked="checked"'; ?>> <?php _e( 'version', 'google-captcha' ); ?> 1</label><br/>
 
347
  <label><input type="radio" name="gglcptch_recaptcha_version" value="v2"<?php if ( 'v2' == $gglcptch_options['recaptcha_version'] ) echo ' checked="checked"'; ?>> <?php _e( 'version', 'google-captcha' ); ?> 2</label>
 
348
  </fieldset>
349
  </td>
350
  </tr>
@@ -383,24 +548,12 @@ if ( ! function_exists( 'gglcptch_settings_page' ) ) {
383
  <tr valign="top">
384
  <th scope="row"><?php _e( 'reCAPTCHA language', 'google-captcha' ); ?></th>
385
  <td>
386
- <select disabled name="gglcptch_language">
387
  <option value="en" selected="selected">English (US)</option>
388
  </select>
389
  <div style="margin: 5px 0 0;">
390
- <?php $gglcptch_multilanguage = $gglcptch_use_multilanguage = $gglcptch_multilanguage_message = '';
391
- if ( array_key_exists( 'multilanguage/multilanguage.php', $all_plugins ) || array_key_exists( 'multilanguage-pro/multilanguage-pro.php', $all_plugins ) ) {
392
- if ( is_plugin_active( 'multilanguage/multilanguage.php' ) || is_plugin_active( 'multilanguage-pro/multilanguage-pro.php' ) ) {
393
- $gglcptch_use_multilanguage = ( $gglcptch_options["use_multilanguage_locale"] == 1 ) ? 'checked="checked"' : '';
394
- } else {
395
- $gglcptch_multilanguage = 'disabled="disabled"';
396
- $gglcptch_multilanguage_message = sprintf( '<a href="plugins.php">%s Multilanguage</a>', __( 'Activate', 'google-captcha' ) );
397
- }
398
- } else {
399
- $gglcptch_multilanguage = 'disabled="disabled"';
400
- $gglcptch_multilanguage_message = sprintf( '<a href="http://bestwebsoft.com/products/multilanguage/?k=390f8e0d92066f2b73a14429d02dcee7&pn=281&v=%s&wp_v=%s">%s Multilanguage</a>', $gglcptch_plugin_info["Version"], $wp_version, __( 'Download', 'google-captcha' ) );
401
- } ?>
402
- <input id="gglcptch_use_multilanguage_locale" type="checkbox" name="gglcptch_use_multilanguage_locale" value="1" <?php printf( '%s %s', $gglcptch_use_multilanguage, $gglcptch_multilanguage ) ?> />
403
- <label for="gglcptch_use_multilanguage_locale"><?php _e( 'Use the current site language', 'google-captcha' ); ?></label>&nbsp;<span class="bws_info">(<?php _e( 'Using', 'google-captcha' ); ?> Multilanguage by BestWebSoft) <?php echo $gglcptch_multilanguage_message; ?></span>
404
  </div>
405
  </td>
406
  </tr>
@@ -412,7 +565,7 @@ if ( ! function_exists( 'gglcptch_settings_page' ) ) {
412
  <td><fieldset>
413
  <?php foreach ( $gglcptch_sizes_v2 as $value => $name ) {
414
  printf(
415
- '<div class="gglcptch_size_v2"><label><input disabled type="radio" name="gglcptch_size_v2" value="%s"%s> %s</label></div>',
416
  $value,
417
  $name == 'Normal' ? ' checked="checked"' : '',
418
  $name
@@ -421,25 +574,6 @@ if ( ! function_exists( 'gglcptch_settings_page' ) ) {
421
  </fieldset>
422
  </td>
423
  </tr>
424
- <tr valign="top">
425
- <th scope="row">
426
- <strong>Contact Form 7</strong><br/>
427
- <?php _e( 'Enable CAPTCHA', 'google-captcha' ); ?>
428
- </th>
429
- <td>
430
- <?php if ( array_key_exists( 'contact-form-7/wp-contact-form-7.php', $all_plugins ) ) {
431
- if ( is_plugin_active( 'contact-form-7/wp-contact-form-7.php' ) ) { ?>
432
- <br/><input disabled='disabled' type="checkbox" name="gglcptchpr_cf7" value="1" />
433
- <?php } else { ?>
434
- <span class="bws_info"><?php _e( 'You should', 'google-captcha' ); ?> <a href="<?php echo admin_url( 'plugins.php' ); ?>"><?php _e( 'activate', 'google-captcha' ); ?> Contact Form 7</a> <?php _e( 'to use this functionality', 'google-captcha' ); ?></span><br/>
435
- <input disabled='disabled' type="checkbox" name="gglcptchpr_cf7" value="1" />
436
- <?php }
437
- } else { ?>
438
- <span class="bws_info"><?php _e( 'You should', 'google-captcha' ); ?> <a target="_blank" href="http://wordpress.org/plugins/contact-form-7/"><?php _e( 'download', 'google-captcha' ); ?> Contact Form 7</a> <?php _e( 'to use this functionality', 'google-captcha' ); ?></span><br/>
439
- <input disabled='disabled' type="checkbox" name="gglcptchpr_cf7" value="1" />
440
- <?php } ?>
441
- </td>
442
- </tr>
443
  </table>
444
  </div>
445
  <div class="bws_pro_version_tooltip">
@@ -448,8 +582,8 @@ if ( ! function_exists( 'gglcptch_settings_page' ) ) {
448
  </div>
449
  <a class="bws_button" href="http://bestwebsoft.com/products/google-captcha/?k=b850d949ccc1239cab0da315c3c822ab&pn=109&v=<?php echo $gglcptch_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Captcha Pro (reCAPTCHA)">
450
  <?php _e( 'Learn More', 'google-captcha' ); ?>
451
- </a>
452
- <div class="clear"></div>
453
  </div>
454
  </div>
455
  <?php } ?>
@@ -457,13 +591,13 @@ if ( ! function_exists( 'gglcptch_settings_page' ) ) {
457
  <input id="bws-submit-button" type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'google-captcha' ); ?>" name="gglcptch_save_changes" />
458
  <input type="hidden" name="gglcptch_form_submit" value="submit" />
459
  <?php wp_nonce_field( $plugin_basename, 'gglcptch_nonce_name' ); ?>
460
- </p>
461
  </form>
462
  <?php bws_form_restore_default_settings( $plugin_basename );
463
- }
464
  } elseif ( 'go_pro' == $_GET['action'] ) {
465
  bws_go_pro_tab_show( $bws_hide_premium_options_check, $gglcptch_plugin_info, $plugin_basename, 'google-captcha.php', 'google-captcha-pro.php', 'google-captcha-pro/google-captcha-pro.php', 'google-captcha', 'b850d949ccc1239cab0da315c3c822ab', '109', isset( $go_pro_result['pro_plugin_is_activated'] ) );
466
- }
467
  bws_plugin_reviews_block( $gglcptch_plugin_info['Name'], 'google-captcha' ); ?>
468
  </div>
469
  <?php }
@@ -489,23 +623,26 @@ if ( ! function_exists( 'gglcptch_check_role' ) ) {
489
  /* Display google captcha via shortcode */
490
  if ( ! function_exists( 'gglcptch_display' ) ) {
491
  function gglcptch_display( $content = false ) {
492
- if ( gglcptch_check_role() )
 
 
493
  return;
494
- global $gglcptch_options, $gglcptch_count, $gglcptch_allow_url_fopen;
495
- if ( empty( $gglcptch_count ) ) {
496
- $gglcptch_count = 1;
497
  }
498
- if ( $gglcptch_count > 1 ) {
499
- return $content;
 
500
  }
501
- if ( ! $gglcptch_allow_url_fopen && isset( $gglcptch_options['recaptcha_version'] ) && $gglcptch_options['recaptcha_version'] == 'v2' ) {
 
502
  $content .= '<div class="gglcptch allow_url_fopen_off"></div>';
503
  $gglcptch_count++;
504
  return $content;
505
  }
 
506
  $publickey = $gglcptch_options['public_key'];
507
  $privatekey = $gglcptch_options['private_key'];
508
- $content .= '<div class="gglcptch">';
 
509
  if ( ! $privatekey || ! $publickey ) {
510
  if ( current_user_can( 'manage_options' ) ) {
511
  $content .= sprintf(
@@ -522,17 +659,7 @@ if ( ! function_exists( 'gglcptch_display' ) ) {
522
  return $content;
523
  }
524
  if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
525
- $content .= '<style type="text/css" media="screen">
526
- #gglcptch_error {
527
- color: #F00;
528
- }
529
- </style>
530
- <script type="text/javascript">
531
- var ajaxurl = "' . admin_url( 'admin-ajax.php' ) . '",
532
- gglcptch_error_msg = "' . __( 'Error: You have entered an incorrect CAPTCHA value.', 'google-captcha' ) . '";
533
- </script>';
534
- $content .= '<div class="g-recaptcha" data-sitekey="' . $publickey . '" data-theme="' . $gglcptch_options['theme_v2'] . '"></div>
535
- <script type="text/javascript" src="https://www.google.com/recaptcha/api.js"></script>
536
  <noscript>
537
  <div style="width: 302px;">
538
  <div style="width: 302px; height: 422px; position: relative;">
@@ -541,37 +668,14 @@ if ( ! function_exists( 'gglcptch_display' ) ) {
541
  </div>
542
  </div>
543
  <div style="border-style: none; bottom: 12px; left: 25px; margin: 0px; padding: 0px; right: 25px; background: #f9f9f9; border: 1px solid #c1c1c1; border-radius: 3px; height: 60px; width: 300px;">
544
- <textarea id="g-recaptcha-response" name="g-recaptcha-response" class="g-recaptcha-response" style="width: 250px; height: 40px; border: 1px solid #c1c1c1; margin: 10px 25px !important; padding: 0px; resize: none; "></textarea>
545
  </div>
546
  </div>
547
  </noscript>';
548
  } else {
549
  require_once( 'lib/recaptchalib.php' );
550
- $content .= sprintf(
551
- '<style type="text/css" media="screen">
552
- #recaptcha_response_field {
553
- max-height: 35px;
554
- }
555
- #gglcptch_error {
556
- color: #F00;
557
- }
558
- .gglcptch table#recaptcha_table {
559
- table-layout: auto;
560
- }
561
- </style>
562
- <script type="text/javascript">
563
- var RecaptchaOptions = { theme : "%s" },
564
- ajaxurl = "%s",
565
- gglcptch_error_msg = "%s";
566
- </script>',
567
- $gglcptch_options['theme'],
568
- admin_url( 'admin-ajax.php' ),
569
- __( 'Error: You have entered an incorrect CAPTCHA value.', 'google-captcha' )
570
- );
571
- if ( is_ssl() )
572
- $content .= gglcptch_recaptcha_get_html( $publickey, '', true );
573
- else
574
- $content .= gglcptch_recaptcha_get_html( $publickey );
575
  }
576
  $content .= '</div>';
577
  $gglcptch_count++;
@@ -579,6 +683,98 @@ if ( ! function_exists( 'gglcptch_display' ) ) {
579
  }
580
  }
581
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
582
  /* Add google captcha to the login form */
583
  if ( ! function_exists( 'gglcptch_login_display' ) ) {
584
  function gglcptch_login_display() {
@@ -596,10 +792,13 @@ if ( ! function_exists( 'gglcptch_login_display' ) ) {
596
  #registerform {
597
  width: <?php echo $from_width; ?>px !important;
598
  }
 
599
  .message {
600
  width: <?php echo $from_width + 20; ?>px !important;
601
  }
602
- #loginform .gglcptch {
 
 
603
  margin-bottom: 10px;
604
  }
605
  </style>
@@ -611,114 +810,131 @@ if ( ! function_exists( 'gglcptch_login_display' ) ) {
611
  /* Check google captcha in login form */
612
  if ( ! function_exists( 'gglcptch_login_check' ) ) {
613
  function gglcptch_login_check( $user ) {
614
- global $gglcptch_options, $gglcptch_allow_url_fopen;
615
 
616
- if ( ! $gglcptch_allow_url_fopen && isset( $gglcptch_options['recaptcha_version'] ) && $gglcptch_options['recaptcha_version'] == 'v2' ) {
617
- return $user;
618
- }
619
 
620
- $publickey = $gglcptch_options['public_key'];
621
- $privatekey = $gglcptch_options['private_key'];
622
 
623
- if ( ! $privatekey || ! $publickey ) {
624
- return $user;
625
- }
 
626
 
627
- if ( isset( $_REQUEST['g-recaptcha-response'] ) && isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
628
- require_once( 'lib_v2/recaptchalib.php' );
629
- $reCaptcha = new gglcptch_ReCaptcha( $privatekey );
630
- $gglcptch_g_recaptcha_response = isset( $_POST["g-recaptcha-response"] ) ? $_POST["g-recaptcha-response"] : '';
631
- $resp = $reCaptcha->verifyResponse( $_SERVER["REMOTE_ADDR"], $gglcptch_g_recaptcha_response );
632
 
633
- if ( $resp != null && $resp->success )
634
- return $user;
635
- else {
636
  wp_clear_auth_cookie();
637
- $error = new WP_Error();
638
- $error->add( 'gglcptch_error', '<strong>' . __( 'Error', 'google-captcha' ) . '</strong>: ' . __( 'You have entered an incorrect CAPTCHA value.', 'google-captcha' ) );
639
- return $error;
640
  }
641
- } elseif ( isset( $_POST['recaptcha_challenge_field'] ) && isset( $_POST['recaptcha_response_field'] ) ) {
642
- require_once( 'lib/recaptchalib.php' );
643
- $gglcptch_recaptcha_challenge_field = isset( $_POST['recaptcha_challenge_field'] ) ? $_POST['recaptcha_challenge_field'] : '';
644
- $gglcptch_recaptcha_response_field = isset( $_POST['recaptcha_response_field'] ) ? $_POST['recaptcha_response_field'] : '';
645
- $resp = gglcptch_recaptcha_check_answer( $privatekey, $_SERVER['REMOTE_ADDR'], $gglcptch_recaptcha_challenge_field, $gglcptch_recaptcha_response_field );
646
 
647
- if ( ! $resp->is_valid ) {
648
- wp_clear_auth_cookie();
649
- $error = new WP_Error();
650
- $error->add( 'gglcptch_error', '<strong>' . __( 'Error', 'google-captcha' ) . '</strong>: ' . __( 'You have entered an incorrect CAPTCHA value.', 'google-captcha' ) );
651
- return $error;
652
- } else {
653
- return $user;
654
- }
655
- } else {
656
  if ( isset( $_REQUEST['log'] ) && isset( $_REQUEST['pwd'] ) ) {
657
- /* captcha was not found in _REQUEST */
658
- $error = new WP_Error();
659
- $error->add( 'gglcptch_error', '<strong>' . __( 'Error', 'google-captcha' ) . '</strong>: ' . __( 'You have entered an incorrect CAPTCHA value.', 'google-captcha' ) );
660
- return $error;
661
  } else {
662
- /* it is not a submit */
663
  return $user;
664
  }
 
 
665
  }
666
  }
667
  }
668
 
669
- /* Add google captcha to the comment form */
670
- if ( ! function_exists( 'gglcptch_commentform_display' ) ) {
671
- function gglcptch_commentform_display() {
672
- if ( gglcptch_check_role() )
673
- return;
674
- echo gglcptch_display();
675
- return true;
676
- }
677
- }
678
-
679
  /* Check google captcha in lostpassword form */
680
  if ( ! function_exists( 'gglcptch_lostpassword_check' ) ) {
681
  function gglcptch_lostpassword_check() {
682
- global $gglcptch_options, $gglcptch_allow_url_fopen;
683
 
684
- if ( ! $gglcptch_allow_url_fopen && isset( $gglcptch_options['recaptcha_version'] ) && $gglcptch_options['recaptcha_version'] == 'v2' ) {
 
 
 
 
 
 
 
 
 
685
  return;
686
  }
 
 
 
 
 
 
 
 
 
 
 
 
687
 
688
- $publickey = $gglcptch_options['public_key'];
689
- $privatekey = $gglcptch_options['private_key'];
 
690
 
691
- if ( ! $privatekey || ! $publickey )
692
- return;
693
 
694
- if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
695
- require_once( 'lib_v2/recaptchalib.php' );
696
- $reCaptcha = new gglcptch_ReCaptcha( $privatekey );
697
- $gglcptch_g_recaptcha_response = isset( $_POST["g-recaptcha-response"] ) ? $_POST["g-recaptcha-response"] : '';
698
- $resp = $reCaptcha->verifyResponse( $_SERVER["REMOTE_ADDR"], $gglcptch_g_recaptcha_response );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
699
 
700
- if ( $resp != null && $resp->success )
 
 
 
 
701
  return;
702
- else
703
- wp_die( __( 'Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again.', 'google-captcha' ) );
 
 
 
704
  } else {
705
- require_once( 'lib/recaptchalib.php' );
706
- $gglcptch_recaptcha_challenge_field = isset( $_POST['recaptcha_challenge_field'] ) ? $_POST['recaptcha_challenge_field'] : '';
707
- $gglcptch_recaptcha_response_field = isset( $_POST['recaptcha_response_field'] ) ? $_POST['recaptcha_response_field'] : '';
708
- $resp = gglcptch_recaptcha_check_answer( $privatekey, $_SERVER['REMOTE_ADDR'], $gglcptch_recaptcha_challenge_field, $gglcptch_recaptcha_response_field );
709
- if ( ! $resp->is_valid ) {
710
- wp_die( __( 'Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again.', 'google-captcha' ) );
711
- } else
712
  return;
 
713
  }
714
  }
715
  }
716
 
717
  /* display google captcha in Contact form */
718
  if ( ! function_exists( 'gglcptch_cf_display' ) ) {
719
- function gglcptch_cf_display( $content = "" ) {
720
- return $content . gglcptch_display();
721
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
722
  }
723
 
724
  if ( ! function_exists( 'gglcptch_action_links' ) ) {
@@ -737,6 +953,26 @@ if ( ! function_exists( 'gglcptch_action_links' ) ) {
737
  }
738
  }
739
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
740
  if ( ! function_exists( 'gglcptch_links' ) ) {
741
  function gglcptch_links( $links, $file ) {
742
  $base = plugin_basename( __FILE__ );
@@ -752,62 +988,39 @@ if ( ! function_exists( 'gglcptch_links' ) ) {
752
 
753
  if ( ! function_exists ( 'gglcptch_plugin_banner' ) ) {
754
  function gglcptch_plugin_banner() {
755
- global $hook_suffix, $gglcptch_plugin_info, $gglcptch_options;
756
  if ( 'plugins.php' == $hook_suffix ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
757
  if ( isset( $gglcptch_options['first_install'] ) && strtotime( '-1 week' ) > $gglcptch_options['first_install'] )
758
  bws_plugin_banner( $gglcptch_plugin_info, 'gglcptch', 'google-captcha', '676d9558f9786ab41d7de35335cf5c4d', '109', '//ps.w.org/google-captcha/assets/icon-128x128.png' );
759
-
760
- bws_plugin_banner_to_settings( $gglcptch_plugin_info, 'gglcptch_options', 'google-captcha', 'admin.php?page=google-captcha.php' );
761
- }
762
- }
763
- }
764
 
765
- /* Check Google Captcha in shortcode and contact form */
766
- if ( ! function_exists( 'gglcptch_captcha_check' ) ) {
767
- function gglcptch_captcha_check() {
768
- $gglcptch_options = get_option( 'gglcptch_options' );
769
- $privatekey = $gglcptch_options['private_key'];
770
-
771
- if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
772
- require_once( 'lib_v2/recaptchalib.php' );
773
- $reCaptcha = new gglcptch_ReCaptcha( $privatekey );
774
- $gglcptch_g_recaptcha_response = isset( $_POST["g-recaptcha-response"] ) ? $_POST["g-recaptcha-response"] : '';
775
- $resp = $reCaptcha->verifyResponse( $_SERVER["REMOTE_ADDR"], $gglcptch_g_recaptcha_response );
776
-
777
- if ( $resp != null && $resp->success )
778
- echo "success";
779
- else
780
- echo "error";
781
- } else {
782
- require_once( 'lib/recaptchalib.php' );
783
- $gglcptch_recaptcha_challenge_field = isset( $_POST['recaptcha_challenge_field'] ) ? $_POST['recaptcha_challenge_field'] : '';
784
- $gglcptch_recaptcha_response_field = isset( $_POST['recaptcha_response_field'] ) ? $_POST['recaptcha_response_field'] : '';
785
- $resp = gglcptch_recaptcha_check_answer( $privatekey, $_SERVER['REMOTE_ADDR'], $gglcptch_recaptcha_challenge_field, $gglcptch_recaptcha_response_field );
786
- if ( ! $resp->is_valid )
787
- echo "error";
788
- else
789
- echo "success";
790
  }
791
- die();
792
  }
793
  }
794
 
795
- /* Check JS enabled for comment form */
796
- if ( ! function_exists( 'gglcptch_commentform_check' ) ) {
797
- function gglcptch_commentform_check() {
798
- if ( isset( $_POST['gglcptch_test_enable_js_field'] ) ) {
799
- if ( wp_verify_nonce( $_POST['gglcptch_test_enable_js_field'], 'gglcptch_recaptcha_nonce' ) )
800
- return;
801
- else {
802
- if ( gglcptch_check_role() )
803
- return;
804
- gglcptch_lostpassword_check();
805
- }
806
- } else {
807
- if ( gglcptch_check_role() )
808
- return;
809
- gglcptch_lostpassword_check();
810
- }
811
  }
812
  }
813
 
@@ -829,16 +1042,18 @@ if ( ! function_exists( 'gglcptch_delete_options' ) ) {
829
  }
830
  }
831
 
832
- add_action( 'admin_menu', 'google_capthca_admin_menu' );
833
 
834
  add_action( 'init', 'gglcptch_init' );
835
  add_action( 'admin_init', 'gglcptch_admin_init' );
836
 
837
  add_action( 'plugins_loaded', 'gglcptch_plugins_loaded' );
838
 
839
- add_action( 'admin_enqueue_scripts', 'gglcptch_add_style' );
840
- add_action( 'wp_enqueue_scripts', 'gglcptch_add_script' );
841
 
 
 
842
  add_shortcode( 'bws_google_captcha', 'gglcptch_display' );
843
 
844
  add_filter( 'plugin_action_links', 'gglcptch_action_links', 10, 2 );
6
  Author: BestWebSoft
7
  Text Domain: google-captcha
8
  Domain Path: /languages
9
+ Version: 1.21
10
  Author URI: http://bestwebsoft.com/
11
  License: GPLv3 or later
12
  */
13
 
14
  /* © Copyright 2015 BestWebSoft ( http://support.bestwebsoft.com )
15
 
16
+ This program is free software; you can redistribute it and/or modify
17
+ it under the terms of the GNU General Public License, version 2, as
18
+ published by the Free Software Foundation.
19
 
20
+ This program is distributed in the hope that it will be useful,
21
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
22
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23
+ GNU General Public License for more details.
24
 
25
+ You should have received a copy of the GNU General Public License
26
+ along with this program; if not, write to the Free Software
27
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
  */
29
 
30
  /* Add menu page */
31
+ if ( ! function_exists( 'gglcptch_admin_menu' ) ) {
32
+ function gglcptch_admin_menu() {
33
+ bws_general_menu();
34
+ $gglcptch_settings = add_submenu_page( 'bws_plugins', __( '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
  }
38
 
43
  }
44
  }
45
 
46
+ /* Get option from the php.ini */
47
+ if ( ! function_exists( 'gglcptch_get_allow_url_fopen' ) ) {
48
+ function gglcptch_get_allow_url_fopen() {
49
+ return ( ini_get( 'allow_url_fopen' ) != 1 ) ? false : true;
50
+ }
51
+ }
52
+
53
  if ( ! function_exists( 'gglcptch_init' ) ) {
54
  function gglcptch_init() {
55
+ global $gglcptch_options, $gglcptch_plugin_info;
56
 
57
  require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
58
  bws_include_init( plugin_basename( __FILE__ ) );
69
  /* Get options from the database */
70
  $gglcptch_options = get_option( 'gglcptch_options' );
71
 
72
+ if ( ! $gglcptch_options ) {
73
+ register_gglcptch_settings();
74
+ $gglcptch_options = get_option( 'gglcptch_options' );
75
+ }
76
 
77
  /* Add hooks */
 
 
 
 
78
 
79
+ if ( '1' == $gglcptch_options['login_form'] || '1' == $gglcptch_options['reset_pwd_form'] || '1' == $gglcptch_options['registration_form'] ) {
80
+ add_action( 'login_enqueue_scripts', 'gglcptch_add_site_script_styles' );
 
 
 
81
 
82
+ if ( '1' == $gglcptch_options['login_form'] ) {
83
+ add_action( 'login_form', 'gglcptch_login_display' );
84
+ add_action( 'authenticate', 'gglcptch_login_check', 21, 1 );
85
+ }
86
+
87
+ if ( '1' == $gglcptch_options['comments_form'] ) {
88
+ add_action( 'comment_form_after_fields', 'gglcptch_commentform_display' );
89
+ add_action( 'comment_form_logged_in_after', 'gglcptch_commentform_display' );
90
+ add_action( 'pre_comment_on_post', 'gglcptch_commentform_check' );
91
+ }
92
+
93
+ if ( '1' == $gglcptch_options['reset_pwd_form'] ) {
94
+ add_action( 'lostpassword_form', 'gglcptch_login_display' );
95
+ add_action( 'lostpassword_post', 'gglcptch_lostpassword_check' );
96
+ }
97
+
98
+ if ( '1' == $gglcptch_options['registration_form'] ) {
99
+ if ( ! is_multisite() ) {
100
+ add_action( 'register_form', 'gglcptch_login_display' );
101
+ add_action( 'register_post', 'gglcptch_lostpassword_check' );
102
+ } else {
103
+ add_action( 'signup_extra_fields', 'gglcptch_signup_display' );
104
+ add_filter( 'wpmu_validate_user_signup', 'gglcptch_signup_check', 10, 3 );
105
+ }
106
+ }
107
+ }
108
 
 
 
 
 
 
 
 
109
  if ( '1' == $gglcptch_options['contact_form'] ) {
110
  add_filter( 'cntctfrm_display_captcha', 'gglcptch_cf_display' );
111
  add_filter( 'cntctfrmpr_display_captcha', 'gglcptch_cf_display' );
115
 
116
  if ( ! function_exists( 'gglcptch_admin_init' ) ) {
117
  function gglcptch_admin_init() {
118
+ global $bws_plugin_info, $gglcptch_plugin_info, $bws_shortcode_list;
119
 
120
  if ( ! isset( $bws_plugin_info ) || empty( $bws_plugin_info ) )
121
  $bws_plugin_info = array( 'id' => '109', 'version' => $gglcptch_plugin_info["Version"] );
123
  /* Call register settings function */
124
  if ( isset( $_GET['page'] ) && "google-captcha.php" == $_GET['page'] )
125
  register_gglcptch_settings();
126
+
127
+ /* add google captcha to global $bws_shortcode_list */
128
+ $bws_shortcode_list['gglcptch'] = array( 'name' => 'Google Captcha (reCAPTCHA)', 'js_function' => 'gglcptch_shortcode_init' );
129
  }
130
  }
131
 
132
  /* Add google captcha styles */
133
+ if ( ! function_exists( 'gglcptch_add_admin_script_styles' ) ) {
134
+ function gglcptch_add_admin_script_styles() {
135
  if ( isset( $_REQUEST['page'] ) && 'google-captcha.php' == $_REQUEST['page'] ) {
136
  wp_enqueue_style( 'gglcptch_stylesheet', plugins_url( 'css/style.css', __FILE__ ) );
137
  wp_enqueue_script( 'gglcptch_admin_script', plugins_url( 'js/admin_script.js', __FILE__ ), array( 'jquery' ) );
140
  }
141
 
142
  /* Add google captcha scripts */
143
+ if ( ! function_exists( 'gglcptch_add_site_script_styles' ) ) {
144
+ function gglcptch_add_site_script_styles() {
145
+ global $gglcptch_plugin_info, $gglcptch_options;
146
+
147
+ if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
148
+ $gglcptch_api = "https://www.google.com/recaptcha/api.js?render=explicit&hl=en";
149
+ } else {
150
+ $gglcptch_api = "//www.google.com/recaptcha/api/js/recaptcha_ajax.js";
151
+ }
152
+
153
+ wp_enqueue_script( 'gglcptch_api', $gglcptch_api, false, $gglcptch_plugin_info["Version"] );
154
+ wp_enqueue_script( 'gglcptch_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery' ), $gglcptch_plugin_info["Version"] );
155
+
156
+ $gglcptch_for_version = ( $gglcptch_options['recaptcha_version'] == 'v2' ) ? '_v2' : '';
157
+
158
+ wp_localize_script( 'gglcptch_script', 'gglcptch', array(
159
+ 'options' => array(
160
+ 'version' => $gglcptch_options['recaptcha_version'],
161
+ 'sitekey' => $gglcptch_options['public_key'],
162
+ 'theme' => $gglcptch_options[ 'theme' . $gglcptch_for_version ],
163
+ ),
164
+ 'vars' => array(
165
+ 'ajaxurl' => admin_url( 'admin-ajax.php' ),
166
+ 'error_msg' => __( 'Error: You have entered an incorrect reCAPTCHA value.', 'google-captcha' ),
167
+ 'nonce' => wp_create_nonce( 'gglcptch_recaptcha_nonce' )
168
+ )
169
+ ) );
170
+
171
+ wp_enqueue_style( 'gglcptch', plugins_url( 'css/gglcptch.css', __FILE__ ), false, $gglcptch_plugin_info["Version"] );
172
+
173
  }
174
  }
175
  /* Google catpcha settings */
176
  if ( ! function_exists( 'register_gglcptch_settings' ) ) {
177
  function register_gglcptch_settings() {
178
+ global $gglcptch_options, $bws_plugin_info, $gglcptch_plugin_info, $gglcptch_default_options;
179
 
180
  $gglcptch_default_options = array(
181
  'public_key' => '',
187
  'contact_form' => '0',
188
  'theme' => 'red',
189
  'theme_v2' => 'light',
190
+ 'recaptcha_version' => ( gglcptch_get_allow_url_fopen() ) ? 'v2' : 'v1',
191
  'plugin_option_version' => $gglcptch_plugin_info["Version"],
192
  'first_install' => strtotime( "now" ),
193
  'display_settings_notice' => 1
194
  );
195
 
196
+ if ( function_exists( 'get_editable_roles' ) ) {
197
+ foreach ( get_editable_roles() as $role => $fields ) {
198
+ $gglcptch_default_options[ $role ] = '0';
199
+ }
200
  }
201
 
202
  /* Install the option defaults */
217
  }
218
  }
219
 
220
+ if ( ! function_exists( 'gglcptch_plugin_status' ) ) {
221
+ function gglcptch_plugin_status( $plugins, $all_plugins, $is_network ) {
222
+ $result = array(
223
+ 'status' => '',
224
+ 'plugin' => '',
225
+ 'plugin_info' => array(),
226
+ );
227
+ foreach ( (array)$plugins as $plugin ) {
228
+ if ( array_key_exists( $plugin, $all_plugins ) ) {
229
+ if (
230
+ ( $is_network && is_plugin_active_for_network( $plugin ) ) ||
231
+ ( ! $is_network && is_plugin_active( $plugin ) )
232
+ ) {
233
+ $result['status'] = 'actived';
234
+ $result['plugin'] = $plugin;
235
+ $result['plugin_info'] = $all_plugins[$plugin];
236
+ break;
237
+ } else {
238
+ $result['status'] = 'deactivated';
239
+ $result['plugin'] = $plugin;
240
+ $result['plugin_info'] = $all_plugins[$plugin];
241
+ }
242
+
243
+ }
244
+ }
245
+ if ( empty( $result['status'] ) )
246
+ $result['status'] = 'not_installed';
247
+ return $result;
248
+ }
249
+ }
250
+
251
  /* Display settings page */
252
  if ( ! function_exists( 'gglcptch_settings_page' ) ) {
253
  function gglcptch_settings_page() {
254
+ global $gglcptch_options, $gglcptch_plugin_info, $wp_version, $gglcptch_default_options;
255
+
256
  $plugin_basename = plugin_basename( __FILE__ );
257
  $message = $error = '';
258
 
259
+ $all_plugins = get_plugins();
260
+ $is_network = is_multisite() && is_network_admin();
261
+ $is_main_site = is_main_site( get_current_blog_id() );
262
+ $admin_url = $is_network ? network_admin_url( '/' ) : admin_url( '/' );
263
+ $bws_contact_form = gglcptch_plugin_status( array( 'contact-form-plugin/contact_form.php', 'contact-form-pro/contact_form_pro.php' ), $all_plugins, $is_network );
264
+
265
  if ( ! isset( $_GET['action'] ) ) {
266
 
267
  $all_plugins = get_plugins();
268
 
269
+ $gglcptch_sizes_v2 = array(
270
  'normal' => __( 'Normal', 'google-captcha' ),
271
  'compact' => __( 'Compact', 'google-captcha' )
272
  );
331
  $gglcptch_options['theme'] = $_POST['gglcptch_theme'];
332
  $gglcptch_options['theme_v2'] = $_POST['gglcptch_theme_v2'];
333
 
334
+ if ( function_exists( 'get_editable_roles' ) ) {
335
+ foreach ( get_editable_roles() as $role => $fields ) {
336
+ $gglcptch_options[ $role ] = isset( $_POST[ 'gglcptch_' . $role ] ) ? 1 : 0;
337
+ }
338
  }
339
 
340
  update_option( 'gglcptch_options', $gglcptch_options );
346
  update_option( 'gglcptch_options', $gglcptch_options );
347
  $message = __( 'All plugin settings were restored.', 'google-captcha' );
348
  }
349
+ }
350
 
351
  $bws_hide_premium_options_check = bws_hide_premium_options_check( $gglcptch_options );
352
 
359
  $message = $go_pro_result['message'];
360
  } ?>
361
  <div class="wrap">
362
+ <h1 style="line-height: normal;"><?php _e( 'Google Captcha Settings', 'google-captcha' ); ?></h1>
363
  <h2 class="nav-tab-wrapper">
364
  <a class="nav-tab<?php if ( ! isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=google-captcha.php"><?php _e( 'Settings', 'google-captcha' ); ?></a>
 
365
  <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) echo ' nav-tab-active'; ?> bws_go_pro_tab" href="admin.php?page=google-captcha.php&amp;action=go_pro"><?php _e( 'Go PRO', 'google-captcha' ); ?></a>
366
  </h2>
367
+ <?php if ( ! isset( $_GET['action'] ) && ! isset( $_REQUEST['bws_restore_default'] ) ) {
368
+ if ( ! gglcptch_get_allow_url_fopen() && $gglcptch_options['recaptcha_version'] == 'v2' ) {
369
+ printf( '<div class="error"><p><strong>%s</strong></p></div>',
370
+ __( 'Google Captcha version 2 will not work correctly, since the option "allow_url_fopen" is disabled. Please contact your hosting support service.', 'google-captcha' )
371
+ );
372
+ }
373
+ if ( $gglcptch_options['recaptcha_version'] == 'v1' ) {
374
+ printf( '<div id="gglcptch_v1_notice" class="updated"><p><strong>%s</strong></p></div>',
375
+ __( "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA version 1 features.", 'google-captcha' )
376
+ );
377
+ }
378
+ }
379
+ bws_show_settings_notice(); ?>
380
  <div class="updated fade" <?php if ( "" == $message ) echo 'style="display:none"'; ?>><p><strong><?php echo $message; ?></strong></p></div>
381
  <div class="error" <?php if ( "" == $error ) echo 'style="display:none"'; ?>><p><strong><?php echo $error; ?></strong></p></div>
382
  <?php if ( ! empty( $hide_result['message'] ) ) { ?>
383
  <div class="updated fade"><p><strong><?php echo $hide_result['message']; ?></strong></p></div>
384
  <?php }
385
+ if ( ! isset( $_GET['action'] ) ) {
 
 
 
 
 
 
386
  if ( isset( $_REQUEST['bws_restore_default'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
387
  bws_form_restore_default_confirm( $plugin_basename );
388
  } else { ?>
389
+ <div style="margin: 20px 0;">
390
+ <?php printf( __( "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, please use %s button", 'google-captcha' ),
391
+ '<span class="bws_code"><img style="vertical-align: sub;" src="' . plugins_url( 'bws_menu/images/shortcode-icon.png', __FILE__ ) . '" alt=""/></span>'
392
+ ); ?>
393
+ <div class="bws_help_box bws_help_box_right dashicons dashicons-editor-help" style="vertical-align: middle;">
394
+ <div class="bws_hidden_help_text" style="min-width: 260px;">
395
+ <?php printf(
396
+ __( "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking on %s button in the content edit block using the Visual mode. If the button isn't displayed or you would like to add the Google Captcha (reCAPTCHA) to your own form , please use the shortcode %s", 'google-captcha' ),
397
+ '<code><img style="vertical-align: sub;" src="' . plugins_url( 'bws_menu/images/shortcode-icon.png', __FILE__ ) . '" alt="" /></code>',
398
+ sprintf( '<span class="bws_code">[bws_google_captcha]</span><br/>' )
399
+ ); ?>
400
+ </div>
401
+ </div>
402
+ </div>
403
  <form class="bws_form" method="post" action="admin.php?page=google-captcha.php">
404
  <h3><?php _e( 'Authentication', 'google-captcha' ); ?></h3>
405
+ <p><?php printf( __( 'Before you are able to do something, you must to register %shere%s', 'google-captcha' ), '<a target="_blank" href="https://www.google.com/recaptcha/admin#list">','</a>.' ); ?></p>
406
  <p><?php _e( 'Enter site key and secret key, that you get after registration.', 'google-captcha' ); ?></p>
407
  <table id="gglcptch-keys" class="form-table">
408
  <?php foreach ( $gglcptch_keys as $key => $fields ) { ?>
420
  <tr valign="top">
421
  <th scope="row"><?php _e( 'Enable reCAPTCHA for', 'google-captcha' ); ?></th>
422
  <td>
423
+ <fieldset>
424
+ <p>
425
+ <i><?php _e( 'WordPress default', 'google-captcha' ); ?></i>
426
+ </p>
427
+ <?php foreach ( $gglcptch_forms as $form ) {
428
+ $gglcptch_form_type = $form[0];
429
+ $gglcptch_form_name = $form[1];
430
+ $gglcptch_form_attr = ( '1' == $gglcptch_options[ $gglcptch_form_type ] ) ? 'checked="checked"' : '';
431
+ $gglcptch_form_notice = '';
432
+
433
+ if ( ( $gglcptch_form_type == 'registration_form' || $gglcptch_form_type == 'reset_pwd_form' ) && ! $is_main_site ) {
434
+ $gglcptch_form_notice .= sprintf( '<span class="bws_info">%s</span>', __( 'This option is available only for network or for main blog', 'google-captcha' ) );
435
+ $gglcptch_form_attr = 'disabled="disabled" readonly="readonly"';
436
+ } ?>
437
+ <label><input type="checkbox" name="<?php echo 'gglcptch_' . $gglcptch_form_type; ?>" value="<?php echo $gglcptch_form_type; ?>" <?php echo $gglcptch_form_attr; ?> /> <?php echo $gglcptch_form_name; ?></label>
438
+ <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') . '/' . $gglcptch_form_type; ?>.jpg" title="<?php echo $gglcptch_form_name; ?>" alt="<?php echo $gglcptch_form_name; ?>"></div></div> <?php echo $gglcptch_form_notice; ?><br />
439
+ <?php } ?>
440
+ <br />
441
+ <p>
442
+ <i><?php _e( 'Plugins', 'google-captcha' ); ?></i>
443
+ </p>
444
+ <?php /* Check Contact Form by BestWebSoft */
445
+ $gglcptch_plugin = $bws_contact_form;
446
+ $gglcptch_plugin_name = 'Contact Form by BestWebSoft';
447
+ $gglcptch_attrs = $gglcptch_plugin_notice = '';
448
+ if ( 'deactivated' == $gglcptch_plugin['status'] ) {
449
+ $gglcptch_attrs = 'disabled="disabled"';
450
+ $gglcptch_plugin_notice = sprintf( __( 'You should %s to use this functionality', 'google-captcha' ),
451
+ sprintf( '<a href="%splugins.php">%s%s %s</a>', $admin_url, __( 'activate', 'google-captcha' ), ( is_network_admin() ? ' ' . __( 'for network', 'google-captcha' ) : '' ), $gglcptch_plugin_name )
452
+ );
453
+ } elseif ( 'not_installed' == $gglcptch_plugin['status'] ) {
454
+ $gglcptch_attrs = 'disabled="disabled"';
455
+ $gglcptch_plugin_notice = sprintf( __( 'You should %s to use this functionality', 'google-captcha' ),
456
+ 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 )
457
+ );
458
+ }
459
+ if ( '1' == $gglcptch_options['contact_form'] && $gglcptch_attrs == '' ) {
460
+ $gglcptch_attrs .= ' checked="checked"';
461
+ } ?>
462
+ <label><input type="checkbox" <?php echo $gglcptch_attrs; ?> name="gglcptch_contact_form" value="contact_form" /> <?php echo $gglcptch_plugin_name; ?></label>
463
+ <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>
464
+ <span class="bws_info"><?php echo $gglcptch_plugin_notice; ?></span><br />
465
+ <?php if ( ! $bws_hide_premium_options_check ) { ?>
466
+ <div class="bws_pro_version_bloc">
467
+ <div class="bws_pro_version_table_bloc">
468
+ <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'google-captcha' ); ?>"></button>
469
+ <div class="bws_table_bg"></div>
470
+ <div class="bws_pro_version">
471
+ <label><input disabled="disabled" type="checkbox" disabled="disabled" name="gglcptch_sbscrbr" value="1"> Subscriber by BestWebSoft</label><br>
472
+ <label><input disabled="disabled" type="checkbox" disabled="disabled" name="gglcptch_cf7" value="1"> Contact Form 7</label><br>
473
+ <label><input disabled="disabled" type="checkbox" disabled="disabled" name="gglcptch_buddypress_register" value="1"> BuddyPress Registration form</label><br>
474
+ <label><input disabled="disabled" type="checkbox" disabled="disabled" name="gglcptch_buddypress_comments" value="1"> BuddyPress Comments form</label><br>
475
+ <label><input disabled="disabled" type="checkbox" disabled="disabled" name="gglcptch_buddypress_group" value="1"> BuddyPress "Create a Group" form</label>
476
+ </div>
477
+ </div>
478
+ <div class="bws_pro_version_tooltip">
479
+ <div class="bws_info">
480
+ <?php _e( 'Unlock premium options by upgrading to Pro version', 'google-captcha' ); ?>
481
+ </div>
482
+ <a class="bws_button" href="http://bestwebsoft.com/products/google-captcha/?k=b850d949ccc1239cab0da315c3c822ab&pn=109&v=<?php echo $gglcptch_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Captcha Pro (reCAPTCHA)">
483
+ <?php _e( 'Learn More', 'google-captcha' ); ?>
484
+ </a>
485
+ <div class="clear"></div>
486
+ </div>
487
+ </div><br>
488
+ <?php } ?>
489
+ <span class="bws_info"><?php printf( __( 'If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s', 'google-captcha' ), sprintf( '<a href="http://bestwebsoft.com/products/google-captcha/faq/" target="_blank">%s</a>', __( 'FAQ', 'google-captcha' ) ) ); ?></span>
490
+ </fieldset>
491
  </td>
492
  </tr>
493
  <tr valign="top">
494
  <th scope="row"><?php _e( 'Hide reCAPTCHA in Comments form for', 'google-captcha' ); ?></th>
495
  <td>
496
+ <fieldset>
497
+ <?php if ( function_exists( 'get_editable_roles' ) ) {
498
+ foreach ( get_editable_roles() as $role => $fields) : ?>
499
+ <label><input type="checkbox" name="<?php echo 'gglcptch_' . $role; ?>" value=<?php echo $role; if ( isset( $gglcptch_options[ $role ] ) && '1' == $gglcptch_options[ $role ] ) echo ' checked'; ?>> <?php echo $fields['name']; ?></label><br/>
500
+ <?php endforeach;
501
+ } ?>
502
+ </fieldset>
503
  </td>
504
  </tr>
505
  <tr valign="top">
506
  <th scope="row"><?php _e( 'reCAPTCHA version', 'google-captcha' ); ?></th>
507
  <td>
508
  <fieldset>
509
+ <label><input type="radio" name="gglcptch_recaptcha_version" value="v1"<?php if ( 'v1' == $gglcptch_options['recaptcha_version'] ) echo ' checked="checked"'; ?>> <?php _e( 'version', 'google-captcha' ); ?> 1</label>
510
+ <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'); ?>/recaptcha_v1.png" title="reCAPTCHA <?php _e( 'version', 'google-captcha' ); ?> 1" alt="reCAPTCHA <?php _e( 'version', 'google-captcha' ); ?> 1"></div></div><br/>
511
  <label><input type="radio" name="gglcptch_recaptcha_version" value="v2"<?php if ( 'v2' == $gglcptch_options['recaptcha_version'] ) echo ' checked="checked"'; ?>> <?php _e( 'version', 'google-captcha' ); ?> 2</label>
512
+ <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'); ?>/recaptcha_v2.png" title="reCAPTCHA <?php _e( 'version', 'google-captcha' ); ?> 2" alt="reCAPTCHA <?php _e( 'version', 'google-captcha' ); ?> 2"></div></div>
513
  </fieldset>
514
  </td>
515
  </tr>
548
  <tr valign="top">
549
  <th scope="row"><?php _e( 'reCAPTCHA language', 'google-captcha' ); ?></th>
550
  <td>
551
+ <select disabled="disabled" name="gglcptch_language">
552
  <option value="en" selected="selected">English (US)</option>
553
  </select>
554
  <div style="margin: 5px 0 0;">
555
+ <input disabled="disabled" id="gglcptch_use_multilanguage_locale" type="checkbox" name="gglcptch_use_multilanguage_locale" value="1" />
556
+ <label for="gglcptch_use_multilanguage_locale"><?php _e( 'Use the current site language', 'google-captcha' ); ?></label>&nbsp;<span class="bws_info">(<?php _e( 'Using', 'google-captcha' ); ?> Multilanguage by BestWebSoft)</span>
 
 
 
 
 
 
 
 
 
 
 
 
557
  </div>
558
  </td>
559
  </tr>
565
  <td><fieldset>
566
  <?php foreach ( $gglcptch_sizes_v2 as $value => $name ) {
567
  printf(
568
+ '<div class="gglcptch_size_v2"><label><input disabled="disabled" type="radio" name="gglcptch_size_v2" value="%s"%s> %s</label></div>',
569
  $value,
570
  $name == 'Normal' ? ' checked="checked"' : '',
571
  $name
574
  </fieldset>
575
  </td>
576
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
577
  </table>
578
  </div>
579
  <div class="bws_pro_version_tooltip">
582
  </div>
583
  <a class="bws_button" href="http://bestwebsoft.com/products/google-captcha/?k=b850d949ccc1239cab0da315c3c822ab&pn=109&v=<?php echo $gglcptch_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Captcha Pro (reCAPTCHA)">
584
  <?php _e( 'Learn More', 'google-captcha' ); ?>
585
+ </a>
586
+ <div class="clear"></div>
587
  </div>
588
  </div>
589
  <?php } ?>
591
  <input id="bws-submit-button" type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'google-captcha' ); ?>" name="gglcptch_save_changes" />
592
  <input type="hidden" name="gglcptch_form_submit" value="submit" />
593
  <?php wp_nonce_field( $plugin_basename, 'gglcptch_nonce_name' ); ?>
594
+ </p>
595
  </form>
596
  <?php bws_form_restore_default_settings( $plugin_basename );
597
+ }
598
  } elseif ( 'go_pro' == $_GET['action'] ) {
599
  bws_go_pro_tab_show( $bws_hide_premium_options_check, $gglcptch_plugin_info, $plugin_basename, 'google-captcha.php', 'google-captcha-pro.php', 'google-captcha-pro/google-captcha-pro.php', 'google-captcha', 'b850d949ccc1239cab0da315c3c822ab', '109', isset( $go_pro_result['pro_plugin_is_activated'] ) );
600
+ }
601
  bws_plugin_reviews_block( $gglcptch_plugin_info['Name'], 'google-captcha' ); ?>
602
  </div>
603
  <?php }
623
  /* Display google captcha via shortcode */
624
  if ( ! function_exists( 'gglcptch_display' ) ) {
625
  function gglcptch_display( $content = false ) {
626
+ global $gglcptch_options, $gglcptch_count;
627
+
628
+ if ( gglcptch_check_role() ){
629
  return;
 
 
 
630
  }
631
+
632
+ if ( ! $gglcptch_count ) {
633
+ $gglcptch_count = 1;
634
  }
635
+
636
+ if ( ! gglcptch_get_allow_url_fopen() && isset( $gglcptch_options['recaptcha_version'] ) && $gglcptch_options['recaptcha_version'] == 'v2' ) {
637
  $content .= '<div class="gglcptch allow_url_fopen_off"></div>';
638
  $gglcptch_count++;
639
  return $content;
640
  }
641
+
642
  $publickey = $gglcptch_options['public_key'];
643
  $privatekey = $gglcptch_options['private_key'];
644
+
645
+ $content .= '<div class="gglcptch gglcptch_' . $gglcptch_options['recaptcha_version'] . '">';
646
  if ( ! $privatekey || ! $publickey ) {
647
  if ( current_user_can( 'manage_options' ) ) {
648
  $content .= sprintf(
659
  return $content;
660
  }
661
  if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
662
+ $content .= '<div id="gglcptch_recaptcha_' . $gglcptch_count . '" class="gglcptch_recaptcha"></div>
 
 
 
 
 
 
 
 
 
 
663
  <noscript>
664
  <div style="width: 302px;">
665
  <div style="width: 302px; height: 422px; position: relative;">
668
  </div>
669
  </div>
670
  <div style="border-style: none; bottom: 12px; left: 25px; margin: 0px; padding: 0px; right: 25px; background: #f9f9f9; border: 1px solid #c1c1c1; border-radius: 3px; height: 60px; width: 300px;">
671
+ <textarea id="g-recaptcha-response" name="g-recaptcha-response" class="g-recaptcha-response" style="width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;"></textarea>
672
  </div>
673
  </div>
674
  </noscript>';
675
  } else {
676
  require_once( 'lib/recaptchalib.php' );
677
+ $content .= '<div id="gglcptch_recaptcha_' . $gglcptch_count . '" class="gglcptch_recaptcha"></div>';
678
+ $content .= gglcptch_recaptcha_get_html( $publickey, null, is_ssl() );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
679
  }
680
  $content .= '</div>';
681
  $gglcptch_count++;
683
  }
684
  }
685
 
686
+ /* Check google captcha */
687
+ if ( ! function_exists( 'gglcptch_check' ) ) {
688
+ function gglcptch_check() {
689
+ global $gglcptch_options;
690
+
691
+ if ( ! gglcptch_get_allow_url_fopen() && isset( $gglcptch_options['recaptcha_version'] ) && $gglcptch_options['recaptcha_version'] == 'v2' ) {
692
+ return array(
693
+ 'response' => false,
694
+ 'reason' => 'ERROR_ALLOW_URL_FOPEN'
695
+ );
696
+ }
697
+
698
+ $publickey = $gglcptch_options['public_key'];
699
+ $privatekey = $gglcptch_options['private_key'];
700
+
701
+ if ( ! $privatekey || ! $publickey ) {
702
+ return array(
703
+ 'response' => false,
704
+ 'reason' => 'ERROR_NO_KEYS'
705
+ );
706
+ }
707
+
708
+ $gglcptch_remote_addr = filter_var( $_SERVER['REMOTE_ADDR'], FILTER_VALIDATE_IP );
709
+
710
+ if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
711
+
712
+ $gglcptch_g_recaptcha_response = '';
713
+
714
+ if ( ! isset( $_POST["g-recaptcha-response"] ) ) {
715
+ return array(
716
+ 'response' => false,
717
+ 'reason' => 'RECAPTCHA_NO_RESPONSE'
718
+ );
719
+ } elseif ( empty( $_POST["g-recaptcha-response"] ) ) {
720
+ return array(
721
+ 'response' => false,
722
+ 'reason' => 'RECAPTCHA_EMPTY_RESPONSE'
723
+ );
724
+ } else {
725
+ $gglcptch_g_recaptcha_response = stripslashes( esc_html( $_POST["g-recaptcha-response"] ) );
726
+ }
727
+
728
+ require_once( 'lib_v2/recaptchalib.php' );
729
+ $reCaptcha = new gglcptch_ReCaptcha( $privatekey );
730
+ $resp = $reCaptcha->verifyResponse( $gglcptch_remote_addr, $gglcptch_g_recaptcha_response );
731
+
732
+ if ( $resp != null && $resp->success ) {
733
+ return array(
734
+ 'response' => true,
735
+ 'reason' => ''
736
+ );
737
+ } else {
738
+ return array(
739
+ 'response' => false,
740
+ 'reason' => 'VERIFICATION_FAILED'
741
+ );
742
+ }
743
+ } else {
744
+ $gglcptch_recaptcha_challenge_field = $gglcptch_recaptcha_response_field = '';
745
+
746
+ if ( ! isset( $_POST['recaptcha_challenge_field'] ) && ! isset( $_POST['recaptcha_response_field'] ) ) {
747
+ return array(
748
+ 'response' => false,
749
+ 'reason' => 'RECAPTCHA_NO_RESPONSE'
750
+ );
751
+ } elseif ( ! empty( $_POST['recaptcha_challenge_field'] ) && empty( $_POST['recaptcha_response_field'] ) ) {
752
+ return array(
753
+ 'response' => false,
754
+ 'reason' => 'RECAPTCHA_EMPTY_RESPONSE'
755
+ );
756
+ } else {
757
+ $gglcptch_recaptcha_challenge_field = stripslashes( esc_html( $_POST['recaptcha_challenge_field'] ) );
758
+ $gglcptch_recaptcha_response_field = stripslashes( esc_html( $_POST['recaptcha_response_field'] ) );
759
+ }
760
+
761
+ require_once( 'lib/recaptchalib.php' );
762
+ $resp = gglcptch_recaptcha_check_answer( $privatekey, $gglcptch_remote_addr, $gglcptch_recaptcha_challenge_field, $gglcptch_recaptcha_response_field );
763
+ if ( ! $resp->is_valid ) {
764
+ return array(
765
+ 'response' => false,
766
+ 'reason' => 'VERIFICATION_FAILED'
767
+ );
768
+ } else {
769
+ return array(
770
+ 'response' => true,
771
+ 'reason' => ''
772
+ );
773
+ }
774
+ }
775
+ }
776
+ }
777
+
778
  /* Add google captcha to the login form */
779
  if ( ! function_exists( 'gglcptch_login_display' ) ) {
780
  function gglcptch_login_display() {
792
  #registerform {
793
  width: <?php echo $from_width; ?>px !important;
794
  }
795
+ #login_error,
796
  .message {
797
  width: <?php echo $from_width + 20; ?>px !important;
798
  }
799
+ #loginform .gglcptch,
800
+ #lostpasswordform .gglcptch,
801
+ #registerform .gglcptch {
802
  margin-bottom: 10px;
803
  }
804
  </style>
810
  /* Check google captcha in login form */
811
  if ( ! function_exists( 'gglcptch_login_check' ) ) {
812
  function gglcptch_login_check( $user ) {
 
813
 
 
 
 
814
 
815
+ $gglcptch_check = gglcptch_check();
 
816
 
817
+ if ( ! $gglcptch_check['response'] ) {
818
+ if ( $gglcptch_check['reason'] == 'ERROR_ALLOW_URL_FOPEN' || $gglcptch_check['reason'] == 'ERROR_NO_KEYS' ) {
819
+ return $user;
820
+ }
821
 
822
+ $error_message = sprintf( '<strong>%s</strong>: %s', __( 'Error', 'google-captcha' ), __( 'You have entered an incorrect reCAPTCHA value.', 'google-captcha' ) );
 
 
 
 
823
 
824
+ if ( $gglcptch_check['reason'] == 'VERIFICATION_FAILED' ) {
 
 
825
  wp_clear_auth_cookie();
826
+ return new WP_Error( 'gglcptch_error', $error_message );
 
 
827
  }
 
 
 
 
 
828
 
 
 
 
 
 
 
 
 
 
829
  if ( isset( $_REQUEST['log'] ) && isset( $_REQUEST['pwd'] ) ) {
830
+ return new WP_Error( 'gglcptch_error', $error_message );
 
 
 
831
  } else {
 
832
  return $user;
833
  }
834
+ } else {
835
+ return $user;
836
  }
837
  }
838
  }
839
 
 
 
 
 
 
 
 
 
 
 
840
  /* Check google captcha in lostpassword form */
841
  if ( ! function_exists( 'gglcptch_lostpassword_check' ) ) {
842
  function gglcptch_lostpassword_check() {
 
843
 
844
+ $gglcptch_check = gglcptch_check();
845
+
846
+ if ( ! $gglcptch_check['response'] ) {
847
+ if ( $gglcptch_check['reason'] == 'ERROR_ALLOW_URL_FOPEN' || $gglcptch_check['reason'] == 'ERROR_NO_KEYS' ) {
848
+ return;
849
+ }
850
+
851
+ $error_message = sprintf( '%s: %s', __( 'Error', 'google-captcha' ), __( 'You have entered an incorrect reCAPTCHA value. Click the BACK button on your browser, and try again.', 'google-captcha' ) );
852
+ wp_die( $error_message );
853
+ } else {
854
  return;
855
  }
856
+ }
857
+ }
858
+
859
+ /* Add google captcha to the multisite login form */
860
+ if ( ! function_exists( 'gglcptch_signup_display' ) ) {
861
+ function gglcptch_signup_display( $errors ) {
862
+ if ( $error_message = $errors->get_error_message( 'gglcptch_error' ) ) {
863
+ printf( '<p class="error gglcptch_error">%s</p>', $error_message );
864
+ }
865
+ echo gglcptch_display();
866
+ }
867
+ }
868
 
869
+ /* Check google captcha in multisite login form */
870
+ if ( ! function_exists( 'gglcptch_signup_check' ) ) {
871
+ function gglcptch_signup_check( $result ) {
872
 
873
+ $gglcptch_check = gglcptch_check();
 
874
 
875
+ if ( ! $gglcptch_check['response'] ) {
876
+ if ( $gglcptch_check['reason'] == 'ERROR_ALLOW_URL_FOPEN' || $gglcptch_check['reason'] == 'ERROR_NO_KEYS' ) {
877
+ return $result;
878
+ }
879
+
880
+ $errors = $result['errors'];
881
+ $error_message = __( 'You have entered an incorrect reCAPTCHA value.', 'google-captcha' );
882
+ $errors->add( 'gglcptch_error', $error_message );
883
+ return $result;
884
+
885
+ } else {
886
+ return $result;
887
+ }
888
+ }
889
+ }
890
+
891
+ /* Add google captcha to the comment form */
892
+ if ( ! function_exists( 'gglcptch_commentform_display' ) ) {
893
+ function gglcptch_commentform_display() {
894
+ if ( gglcptch_check_role() )
895
+ return;
896
+ echo gglcptch_display();
897
+ return true;
898
+ }
899
+ }
900
 
901
+ /* Check JS enabled for comment form */
902
+ if ( ! function_exists( 'gglcptch_commentform_check' ) ) {
903
+ function gglcptch_commentform_check() {
904
+ if ( isset( $_POST['gglcptch_test_enable_js_field'] ) ) {
905
+ if ( wp_verify_nonce( $_POST['gglcptch_test_enable_js_field'], 'gglcptch_recaptcha_nonce' ) )
906
  return;
907
+ else {
908
+ if ( gglcptch_check_role() )
909
+ return;
910
+ gglcptch_lostpassword_check();
911
+ }
912
  } else {
913
+ if ( gglcptch_check_role() )
 
 
 
 
 
 
914
  return;
915
+ gglcptch_lostpassword_check();
916
  }
917
  }
918
  }
919
 
920
  /* display google captcha in Contact form */
921
  if ( ! function_exists( 'gglcptch_cf_display' ) ) {
922
+ function gglcptch_cf_display( $error_message, $content = "" ) {
923
+ return $content . gglcptch_display();
924
+ }
925
+ }
926
+
927
+ /* Check Google Captcha in shortcode and contact form */
928
+ if ( ! function_exists( 'gglcptch_captcha_check' ) ) {
929
+ function gglcptch_captcha_check() {
930
+ $gglcptch_check = gglcptch_check();
931
+ if ( ! $gglcptch_check['response'] ) {
932
+ echo "error";
933
+ } else {
934
+ echo "success";
935
+ }
936
+ die();
937
+ }
938
  }
939
 
940
  if ( ! function_exists( 'gglcptch_action_links' ) ) {
953
  }
954
  }
955
 
956
+ if ( ! function_exists( 'gglcptch_shortcode_button_content' ) ) {
957
+ function gglcptch_shortcode_button_content( $content ) {
958
+ global $wp_version; ?>
959
+ <div id="gglcptch" style="display:none;">
960
+ <input class="bws_default_shortcode" type="hidden" name="default" value="[bws_google_captcha]" />
961
+ </div>
962
+ <script type="text/javascript">
963
+ function gglcptch_shortcode_init() {
964
+ (function($) {
965
+ var current_object = '<?php echo ( $wp_version < 3.9 ) ? "#TB_ajaxContent" : ".mce-reset" ?>';
966
+ $( current_object + ' #bws_shortcode_display' ).bind( 'display_shortcode', function() {
967
+ var shortcode = '[bws_google_captcha]';
968
+ $( this ).text( shortcode );
969
+ });
970
+ })(jQuery);
971
+ }
972
+ </script>
973
+ <?php }
974
+ }
975
+
976
  if ( ! function_exists( 'gglcptch_links' ) ) {
977
  function gglcptch_links( $links, $file ) {
978
  $base = plugin_basename( __FILE__ );
988
 
989
  if ( ! function_exists ( 'gglcptch_plugin_banner' ) ) {
990
  function gglcptch_plugin_banner() {
991
+ global $hook_suffix, $gglcptch_plugin_info, $gglcptch_options;
992
  if ( 'plugins.php' == $hook_suffix ) {
993
+ if ( empty( $gglcptch_options['public_key'] ) || empty( $gglcptch_options['private_key'] ) ) { ?>
994
+ <div class="error">
995
+ <p>
996
+ <?php printf(
997
+ '<strong>%s <a target="_blank" href="https://www.google.com/recaptcha/admin#list">%s</a> %s <a target="_blank" href="%s">%s</a>.</strong>',
998
+ __( 'To use Google Captcha you must get the keys from', 'google-captcha' ),
999
+ __ ( 'here', 'google-captcha' ),
1000
+ __ ( 'and enter them on the', 'google-captcha' ),
1001
+ admin_url( '/admin.php?page=google-captcha.php' ),
1002
+ __( 'plugin setting page', 'google-captcha' )
1003
+ ); ?>
1004
+ </p>
1005
+ </div>
1006
+ <?php }
1007
  if ( isset( $gglcptch_options['first_install'] ) && strtotime( '-1 week' ) > $gglcptch_options['first_install'] )
1008
  bws_plugin_banner( $gglcptch_plugin_info, 'gglcptch', 'google-captcha', '676d9558f9786ab41d7de35335cf5c4d', '109', '//ps.w.org/google-captcha/assets/icon-128x128.png' );
 
 
 
 
 
1009
 
1010
+ bws_plugin_banner_to_settings( $gglcptch_plugin_info, 'gglcptch_options', 'google-captcha', 'admin.php?page=google-captcha.php' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1011
  }
 
1012
  }
1013
  }
1014
 
1015
+ /* add help tab */
1016
+ if ( ! function_exists( 'gglcptch_add_tabs' ) ) {
1017
+ function gglcptch_add_tabs() {
1018
+ $screen = get_current_screen();
1019
+ $args = array(
1020
+ 'id' => 'gglcptch',
1021
+ 'section' => '200538719'
1022
+ );
1023
+ bws_help_tab( $screen, $args );
 
 
 
 
 
 
 
1024
  }
1025
  }
1026
 
1042
  }
1043
  }
1044
 
1045
+ add_action( 'admin_menu', 'gglcptch_admin_menu' );
1046
 
1047
  add_action( 'init', 'gglcptch_init' );
1048
  add_action( 'admin_init', 'gglcptch_admin_init' );
1049
 
1050
  add_action( 'plugins_loaded', 'gglcptch_plugins_loaded' );
1051
 
1052
+ add_action( 'admin_enqueue_scripts', 'gglcptch_add_admin_script_styles' );
1053
+ add_action( 'wp_enqueue_scripts', 'gglcptch_add_site_script_styles' );
1054
 
1055
+ /* custom filter for bws button in tinyMCE */
1056
+ add_filter( 'bws_shortcode_button_content', 'gglcptch_shortcode_button_content' );
1057
  add_shortcode( 'bws_google_captcha', 'gglcptch_display' );
1058
 
1059
  add_filter( 'plugin_action_links', 'gglcptch_action_links', 10, 2 );
images/comments_form.jpg ADDED
Binary file
images/contact_form.jpg ADDED
Binary file
images/login_form.jpg ADDED
Binary file
images/recaptcha_v1.png ADDED
Binary file
images/recaptcha_v2.png ADDED
Binary file
images/registration_form.jpg ADDED
Binary file
images/reset_pwd_form.jpg ADDED
Binary file
js/script.js CHANGED
@@ -1,4 +1,35 @@
1
- (function( $ ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  $( document ).ready(function() {
3
 
4
  if ( parseFloat( $.fn.jquery ) >= 1.7 ) {
@@ -7,20 +38,20 @@
7
  $( '#recaptcha_widget_div #recaptcha_response_field' ).live( 'input paste change', cleanError );
8
  }
9
 
10
- $( 'form' ).not( '[name="loginform"], [name="registerform"], [name="lostpasswordform"]' ).submit( function( e ) {
11
  var $form = $( this ),
12
  $gglcptch = $form.find( '.gglcptch' ),
13
- $captcha = $form.find( '#recaptcha_widget_div:visible' ),
14
- $captcha_v2 = $form.find( '.g-recaptcha:visible' );
15
  if ( $captcha.length ) {
16
  if ( $gglcptch.find( 'input[name="gglcptch_test_enable_js_field"]:hidden' ).length == 0 ) {
17
- $gglcptch.append( '<input type="hidden" value="' + gglcptch_vars.nonce + '" name="gglcptch_test_enable_js_field" />' );
18
  }
19
  $.ajax({
20
  async : false,
21
  cache : false,
22
  type : 'POST',
23
- url : ajaxurl,
24
  headers : {
25
  'Content-Type' : 'application/x-www-form-urlencoded'
26
  },
@@ -32,7 +63,7 @@
32
  success: function( data ) {
33
  if ( data == 'error' ) {
34
  if ( $captcha.next( '#gglcptch_error' ).length == 0 ) {
35
- $captcha.after( '<label id="gglcptch_error">' + gglcptch_error_msg + '</label>' );
36
  }
37
  $( '#recaptcha_reload' ).trigger( 'click' );
38
  e.preventDefault ? e.preventDefault() : (e.returnValue = false);
@@ -51,13 +82,13 @@
51
  $( '#recaptcha_reload' ).trigger( 'click' );
52
  } else if ( $captcha_v2.length ) {
53
  if ( $gglcptch.find( 'input[name="gglcptch_test_enable_js_field"]:hidden' ).length == 0 ) {
54
- $gglcptch.append( '<input type="hidden" value="' + gglcptch_vars.nonce + '" name="gglcptch_test_enable_js_field" />' );
55
  }
56
  $.ajax({
57
  async : false,
58
  cache : false,
59
  type : 'POST',
60
- url : ajaxurl,
61
  headers : {
62
  'Content-Type' : 'application/x-www-form-urlencoded'
63
  },
@@ -68,7 +99,7 @@
68
  success: function( data ) {
69
  if ( data == 'error' ) {
70
  if ( $captcha_v2.next( '#gglcptch_error' ).length == 0 ) {
71
- $captcha_v2.after( '<label id="gglcptch_error">' + gglcptch_error_msg + '</label>' );
72
  $( "#gglcptch_error" ).fadeOut( 4000, function() {
73
  $( "#gglcptch_error" ).remove();
74
  });
@@ -97,4 +128,4 @@
97
  }
98
  }
99
 
100
- })(jQuery);
1
+ (function( $, gglcptch ) {
2
+ gglcptch = gglcptch || {};
3
+
4
+ gglcptch.prepare = function() {
5
+ $( '.gglcptch_v1, .gglcptch_v2' ).each( function() {
6
+ var container = $( this ).find( '.gglcptch_recaptcha' ).attr( 'id' );
7
+ gglcptch.display( container );
8
+ });
9
+ };
10
+
11
+ gglcptch.display = function( container, v1_add_to_last_element ) {
12
+ if ( typeof( container ) == 'undefined' || container == '' || typeof( gglcptch.options ) == 'undefined' ) {
13
+ return;
14
+ }
15
+
16
+ var gglcptch_version = gglcptch.options.version;
17
+ v1_add_to_last_element = v1_add_to_last_element || false;
18
+
19
+ if ( gglcptch_version == 'v1' ) {
20
+ if ( Recaptcha.widget == null || v1_add_to_last_element == true ) {
21
+ Recaptcha.create( gglcptch.options.sitekey, container, { 'theme' : gglcptch.options.theme } );
22
+ }
23
+ }
24
+
25
+ if ( gglcptch_version == 'v2' ) {
26
+ var gglcptch_index = grecaptcha.render( container, { 'sitekey' : gglcptch.options.sitekey, 'theme' : gglcptch.options.theme } );
27
+ $( '#' + container ).data( 'gglcptch_index', gglcptch_index );
28
+ }
29
+ };
30
+
31
+ window.onload = gglcptch.prepare;
32
+
33
  $( document ).ready(function() {
34
 
35
  if ( parseFloat( $.fn.jquery ) >= 1.7 ) {
38
  $( '#recaptcha_widget_div #recaptcha_response_field' ).live( 'input paste change', cleanError );
39
  }
40
 
41
+ $( 'form' ).not( '[name="loginform"], [name="registerform"], [name="lostpasswordform"], #setupform' ).submit( function( e ) {
42
  var $form = $( this ),
43
  $gglcptch = $form.find( '.gglcptch' ),
44
+ $captcha = $gglcptch.filter( '.gglcptch_v1' ).find( '.gglcptch_recaptcha:visible' ),
45
+ $captcha_v2 = $gglcptch.filter( '.gglcptch_v2' ).find( '.gglcptch_recaptcha:visible' );
46
  if ( $captcha.length ) {
47
  if ( $gglcptch.find( 'input[name="gglcptch_test_enable_js_field"]:hidden' ).length == 0 ) {
48
+ $gglcptch.append( '<input type="hidden" value="' + gglcptch.vars.nonce + '" name="gglcptch_test_enable_js_field" />' );
49
  }
50
  $.ajax({
51
  async : false,
52
  cache : false,
53
  type : 'POST',
54
+ url : gglcptch.vars.ajaxurl,
55
  headers : {
56
  'Content-Type' : 'application/x-www-form-urlencoded'
57
  },
63
  success: function( data ) {
64
  if ( data == 'error' ) {
65
  if ( $captcha.next( '#gglcptch_error' ).length == 0 ) {
66
+ $captcha.after( '<label id="gglcptch_error">' + gglcptch.vars.error_msg + '</label>' );
67
  }
68
  $( '#recaptcha_reload' ).trigger( 'click' );
69
  e.preventDefault ? e.preventDefault() : (e.returnValue = false);
82
  $( '#recaptcha_reload' ).trigger( 'click' );
83
  } else if ( $captcha_v2.length ) {
84
  if ( $gglcptch.find( 'input[name="gglcptch_test_enable_js_field"]:hidden' ).length == 0 ) {
85
+ $gglcptch.append( '<input type="hidden" value="' + gglcptch.vars.nonce + '" name="gglcptch_test_enable_js_field" />' );
86
  }
87
  $.ajax({
88
  async : false,
89
  cache : false,
90
  type : 'POST',
91
+ url : gglcptch.vars.ajaxurl,
92
  headers : {
93
  'Content-Type' : 'application/x-www-form-urlencoded'
94
  },
99
  success: function( data ) {
100
  if ( data == 'error' ) {
101
  if ( $captcha_v2.next( '#gglcptch_error' ).length == 0 ) {
102
+ $captcha_v2.after( '<label id="gglcptch_error">' + gglcptch.vars.error_msg + '</label>' );
103
  $( "#gglcptch_error" ).fadeOut( 4000, function() {
104
  $( "#gglcptch_error" ).remove();
105
  });
128
  }
129
  }
130
 
131
+ })(jQuery, gglcptch);
languages/google-captcha-ar.mo CHANGED
Binary file
languages/google-captcha-ar.po CHANGED
@@ -1,16 +1,17 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: google-captcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-02 15:26+0300\n"
6
- "PO-Revision-Date: 2015-10-02 15:26+0300\n"
7
- "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: SAID MOULLA <mor0cc0@live.com >\n"
9
  "Language: uk\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && n%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
 
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Loco-Source-Locale: fr_FR\n"
16
  "X-Poedit-KeywordsList: __;_e\n"
@@ -20,256 +21,278 @@ msgstr ""
20
  "X-Loco-Target-Locale: uk_UA\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
- #: google-captcha.php:34
24
- #: google-captcha.php:272
25
  msgid "Google Captcha Settings"
26
  msgstr "إعدادات Google Captcha"
27
 
28
- #: google-captcha.php:182
 
 
 
 
 
29
  msgid "Normal"
30
  msgstr ""
31
 
32
- #: google-captcha.php:183
33
  msgid "Compact"
34
  msgstr ""
35
 
36
- #: google-captcha.php:189
37
  msgid "Site key"
38
  msgstr "مفتاح الموقع"
39
 
40
- #: google-captcha.php:194
41
  msgid "Secret Key"
42
  msgstr "المفتاح السري"
43
 
44
- #: google-captcha.php:202
45
  msgid "Login form"
46
  msgstr "فورم تسجيل الدخول"
47
 
48
- #: google-captcha.php:203
49
  msgid "Registration form"
50
  msgstr "فورم التسجيل"
51
 
52
- #: google-captcha.php:204
53
  msgid "Reset password form"
54
  msgstr "فورم إعادة تعيين كلمة السر"
55
 
56
- #: google-captcha.php:205
57
  msgid "Comments form"
58
  msgstr "فورم التعليقات"
59
 
60
- #: google-captcha.php:224
61
  msgid "Enter site key"
62
  msgstr "أدخل مفتاح الموقع"
63
 
64
- #: google-captcha.php:225
65
- #: google-captcha.php:231
66
  msgid "WARNING: The captcha will not display while you don't fill key fields."
67
  msgstr "تحذير: الكابتشا لن تعمل في حالة عدم إدخال المفاتيح."
68
 
69
- #: google-captcha.php:230
70
  msgid "Enter secret key"
71
  msgstr "أدخل المفتاح السري"
72
 
73
- #: google-captcha.php:251
74
  msgid "Settings saved"
75
  msgstr "تم حفظ الإعدادات"
76
 
77
- #: google-captcha.php:257
78
  #, fuzzy
79
  msgid "All plugin settings were restored."
80
  msgstr "صفحة إعدادات الإضافة"
81
 
82
- #: google-captcha.php:274
83
- #: google-captcha.php:727
84
- #: google-captcha.php:740
85
  msgid "Settings"
86
  msgstr "إعدادات"
87
 
88
- #: google-captcha.php:275
89
- #: google-captcha.php:741
90
- msgid "FAQ"
91
- msgstr "أسئلة شائعة"
92
-
93
- #: google-captcha.php:276
94
  msgid "Go PRO"
95
  msgstr ""
96
 
97
- #: google-captcha.php:286
98
- msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
99
- msgstr "النسخة الثانية من Google Captcha لن تعمل بشكل جيد، في حالة تم تعطيل الدالة \"allow_url_fopen\" في PHP الإستضافة."
 
 
 
 
 
100
 
101
- #: google-captcha.php:287
102
- msgid "Read more."
103
- msgstr "إقرأ المزيد"
 
 
104
 
105
- #: google-captcha.php:294
106
- #, fuzzy
107
- msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your form:"
108
- msgstr "إذا كنت ترغب في إضافة Google Captcha إلى الفورم، فقط قم بنسخ ولصق هذا الكود في المقال أو الصفحة."
 
 
 
 
109
 
110
- #: google-captcha.php:296
 
 
 
 
 
 
 
 
 
111
  msgid "Authentication"
112
  msgstr "المصادقة"
113
 
114
- #: google-captcha.php:297
115
- #, php-format
116
- msgid "Before you are able to do something, you must to register %s here %s"
117
  msgstr "قبل التفكير في عمل أي شيء، لابد من التسجيل %s من هنا %s"
118
 
119
- #: google-captcha.php:298
120
  msgid "Enter site key and secret key, that you get after registration."
121
  msgstr "أدخل مفتاح الموقع والمفتاح السري، الذي حصلت عليه بعد التسجيل."
122
 
123
- #: google-captcha.php:310
124
  msgid "Options"
125
  msgstr "خيارات"
126
 
127
- #: google-captcha.php:313
128
  msgid "Enable reCAPTCHA for"
129
  msgstr ""
130
 
131
- #: google-captcha.php:321
132
- #: google-captcha.php:324
133
- #: google-captcha.php:328
134
- msgid "powered by"
135
- msgstr "مدعوم من"
136
 
137
- #: google-captcha.php:324
138
- #: google-captcha.php:392
139
- msgid "Activate"
140
  msgstr ""
141
 
142
- #: google-captcha.php:328
143
- #: google-captcha.php:396
144
- msgid "Download"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
145
  msgstr ""
146
 
147
- #: google-captcha.php:333
 
 
 
 
148
  #, fuzzy
149
  msgid "Hide reCAPTCHA in Comments form for"
150
  msgstr "لنسخة reCAPTCHA"
151
 
152
- #: google-captcha.php:341
153
  #, fuzzy
154
  msgid "reCAPTCHA version"
155
  msgstr "نسخة reCAPTCHA:"
156
 
157
- #: google-captcha.php:343
158
- #: google-captcha.php:344
159
  msgid "version"
160
  msgstr "النسخة"
161
 
162
- #: google-captcha.php:349
163
- #: google-captcha.php:362
164
  #, fuzzy
165
  msgid "reCAPTCHA theme"
166
  msgstr "نسخة reCAPTCHA:"
167
 
168
- #: google-captcha.php:350
169
- #: google-captcha.php:363
170
- #: google-captcha.php:406
171
  #, fuzzy
172
  msgid "for version"
173
  msgstr "النسخة"
174
 
175
- #: google-captcha.php:376
176
- msgid "Close"
177
- msgstr ""
178
-
179
- #: google-captcha.php:380
180
  #, fuzzy
181
  msgid "reCAPTCHA language"
182
  msgstr "نسخة reCAPTCHA:"
183
 
184
- #: google-captcha.php:399
185
  msgid "Use the current site language"
186
  msgstr ""
187
 
188
- #: google-captcha.php:399
189
  msgid "Using"
190
  msgstr ""
191
 
192
- #: google-captcha.php:405
193
  #, fuzzy
194
  msgid "reCAPTCHA size"
195
  msgstr "نسخة reCAPTCHA:"
196
 
197
- #: google-captcha.php:422
198
- msgid "Enable CAPTCHA"
199
- msgstr ""
200
-
201
- #: google-captcha.php:429
202
- #: google-captcha.php:433
203
- msgid "You should"
204
- msgstr ""
205
-
206
- #: google-captcha.php:429
207
- msgid "activate"
208
- msgstr ""
209
-
210
- #: google-captcha.php:429
211
- #: google-captcha.php:433
212
- msgid "to use this functionality"
213
- msgstr ""
214
-
215
- #: google-captcha.php:433
216
- msgid "download"
217
- msgstr ""
218
-
219
- #: google-captcha.php:442
220
- msgid "Unlock premium options by upgrading to Pro version"
221
- msgstr ""
222
-
223
- #: google-captcha.php:445
224
- msgid "Learn More"
225
- msgstr ""
226
-
227
- #: google-captcha.php:452
228
  msgid "Save Changes"
229
  msgstr "حفظ التغييرات"
230
 
231
- #: google-captcha.php:508
232
  msgid "To use Google Captcha you must get the keys from"
233
  msgstr "لتفعيل Google Captcha لابد من الحصول على المفاتيح من"
234
 
235
- #: google-captcha.php:509
236
  msgid "here"
237
  msgstr "هنا"
238
 
239
- #: google-captcha.php:510
240
  msgid "and enter them on the"
241
  msgstr "ثم أدخلهم في"
242
 
243
- #: google-captcha.php:512
244
  msgid "plugin setting page"
245
  msgstr "صفحة إعدادات الإضافة"
246
 
247
- #: google-captcha.php:527
248
- #: google-captcha.php:564
249
- msgid "Error: You have entered an incorrect CAPTCHA value."
250
- msgstr "خطأ: لقد أدخلت قيمة كابتشا بشكل خاطئ."
251
-
252
- #: google-captcha.php:633
253
- #: google-captcha.php:645
254
- #: google-captcha.php:654
255
  msgid "Error"
256
  msgstr "خطأ"
257
 
258
- #: google-captcha.php:633
259
- #: google-captcha.php:645
260
- #: google-captcha.php:654
261
- msgid "You have entered an incorrect CAPTCHA value."
262
  msgstr "لقد أدخلت قيمة كابتشا بشكل خاطئ"
263
 
264
- #: google-captcha.php:698
265
- #: google-captcha.php:705
266
- msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
267
- msgstr "خطأ: لقد أدخلت قيمة كابتشا بشكل خاطئ. اضغط زر الرجوع في المتصفح وحاول مجددا."
 
 
 
268
 
269
- #: google-captcha.php:742
270
  msgid "Support"
271
  msgstr "الدعم الفني"
272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
  #~ msgid "Notice:"
274
  #~ msgstr "ملاحظة :"
275
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-10 10:01+0300\n"
6
+ "PO-Revision-Date: 2015-12-10 10:01+0300\n"
7
+ "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: SAID MOULLA <mor0cc0@live.com >\n"
9
  "Language: uk\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && n"
14
+ "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Loco-Source-Locale: fr_FR\n"
17
  "X-Poedit-KeywordsList: __;_e\n"
21
  "X-Loco-Target-Locale: uk_UA\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
+ #: google-captcha.php:34 google-captcha.php:362
 
25
  msgid "Google Captcha Settings"
26
  msgstr "إعدادات Google Captcha"
27
 
28
+ #: google-captcha.php:166
29
+ #, fuzzy
30
+ msgid "Error: You have entered an incorrect reCAPTCHA value."
31
+ msgstr "خطأ: لقد أدخلت قيمة كابتشا بشكل خاطئ."
32
+
33
+ #: google-captcha.php:270
34
  msgid "Normal"
35
  msgstr ""
36
 
37
+ #: google-captcha.php:271
38
  msgid "Compact"
39
  msgstr ""
40
 
41
+ #: google-captcha.php:277
42
  msgid "Site key"
43
  msgstr "مفتاح الموقع"
44
 
45
+ #: google-captcha.php:282
46
  msgid "Secret Key"
47
  msgstr "المفتاح السري"
48
 
49
+ #: google-captcha.php:290
50
  msgid "Login form"
51
  msgstr "فورم تسجيل الدخول"
52
 
53
+ #: google-captcha.php:291
54
  msgid "Registration form"
55
  msgstr "فورم التسجيل"
56
 
57
+ #: google-captcha.php:292
58
  msgid "Reset password form"
59
  msgstr "فورم إعادة تعيين كلمة السر"
60
 
61
+ #: google-captcha.php:293
62
  msgid "Comments form"
63
  msgstr "فورم التعليقات"
64
 
65
+ #: google-captcha.php:312
66
  msgid "Enter site key"
67
  msgstr "أدخل مفتاح الموقع"
68
 
69
+ #: google-captcha.php:313 google-captcha.php:319
 
70
  msgid "WARNING: The captcha will not display while you don't fill key fields."
71
  msgstr "تحذير: الكابتشا لن تعمل في حالة عدم إدخال المفاتيح."
72
 
73
+ #: google-captcha.php:318
74
  msgid "Enter secret key"
75
  msgstr "أدخل المفتاح السري"
76
 
77
+ #: google-captcha.php:341
78
  msgid "Settings saved"
79
  msgstr "تم حفظ الإعدادات"
80
 
81
+ #: google-captcha.php:347
82
  #, fuzzy
83
  msgid "All plugin settings were restored."
84
  msgstr "صفحة إعدادات الإضافة"
85
 
86
+ #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
 
 
87
  msgid "Settings"
88
  msgstr "إعدادات"
89
 
90
+ #: google-captcha.php:365
 
 
 
 
 
91
  msgid "Go PRO"
92
  msgstr ""
93
 
94
+ #: google-captcha.php:370
95
+ #, fuzzy
96
+ msgid ""
97
+ "Google Captcha version 2 will not work correctly, since the option "
98
+ "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
99
+ msgstr ""
100
+ "النسخة الثانية من Google Captcha لن تعمل بشكل جيد، في حالة تم تعطيل الدالة "
101
+ "\"allow_url_fopen\" في PHP الإستضافة."
102
 
103
+ #: google-captcha.php:375
104
+ msgid ""
105
+ "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
106
+ "version 1 features."
107
+ msgstr ""
108
 
109
+ #: google-captcha.php:390
110
+ #, fuzzy, php-format
111
+ msgid ""
112
+ "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
113
+ "please use %s button"
114
+ msgstr ""
115
+ "إذا كنت ترغب في إضافة Google Captcha إلى الفورم، فقط قم بنسخ ولصق هذا الكود "
116
+ "في المقال أو الصفحة."
117
 
118
+ #: google-captcha.php:396
119
+ #, php-format
120
+ msgid ""
121
+ "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
122
+ "on %s button in the content edit block using the Visual mode. If the button "
123
+ "isn't displayed or you would like to add the Google Captcha (reCAPTCHA) to "
124
+ "your own form , please use the shortcode %s"
125
+ msgstr ""
126
+
127
+ #: google-captcha.php:404
128
  msgid "Authentication"
129
  msgstr "المصادقة"
130
 
131
+ #: google-captcha.php:405
132
+ #, fuzzy, php-format
133
+ msgid "Before you are able to do something, you must to register %shere%s"
134
  msgstr "قبل التفكير في عمل أي شيء، لابد من التسجيل %s من هنا %s"
135
 
136
+ #: google-captcha.php:406
137
  msgid "Enter site key and secret key, that you get after registration."
138
  msgstr "أدخل مفتاح الموقع والمفتاح السري، الذي حصلت عليه بعد التسجيل."
139
 
140
+ #: google-captcha.php:418
141
  msgid "Options"
142
  msgstr "خيارات"
143
 
144
+ #: google-captcha.php:421
145
  msgid "Enable reCAPTCHA for"
146
  msgstr ""
147
 
148
+ #: google-captcha.php:425
149
+ msgid "WordPress default"
150
+ msgstr ""
 
 
151
 
152
+ #: google-captcha.php:434
153
+ msgid "This option is available only for network or for main blog"
 
154
  msgstr ""
155
 
156
+ #: google-captcha.php:442
157
+ msgid "Plugins"
158
+ msgstr ""
159
+
160
+ #: google-captcha.php:450 google-captcha.php:455
161
+ #, php-format
162
+ msgid "You should %s to use this functionality"
163
+ msgstr ""
164
+
165
+ #: google-captcha.php:451
166
+ msgid "activate"
167
+ msgstr ""
168
+
169
+ #: google-captcha.php:451
170
+ msgid "for network"
171
+ msgstr ""
172
+
173
+ #: google-captcha.php:456
174
+ msgid "download"
175
+ msgstr ""
176
+
177
+ #: google-captcha.php:468 google-captcha.php:545
178
+ msgid "Close"
179
+ msgstr ""
180
+
181
+ #: google-captcha.php:480 google-captcha.php:581
182
+ msgid "Unlock premium options by upgrading to Pro version"
183
+ msgstr ""
184
+
185
+ #: google-captcha.php:483 google-captcha.php:584
186
+ msgid "Learn More"
187
+ msgstr ""
188
+
189
+ #: google-captcha.php:489
190
+ #, php-format
191
+ msgid ""
192
+ "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
193
  msgstr ""
194
 
195
+ #: google-captcha.php:489 google-captcha.php:982
196
+ msgid "FAQ"
197
+ msgstr "أسئلة شائعة"
198
+
199
+ #: google-captcha.php:494
200
  #, fuzzy
201
  msgid "Hide reCAPTCHA in Comments form for"
202
  msgstr "لنسخة reCAPTCHA"
203
 
204
+ #: google-captcha.php:506
205
  #, fuzzy
206
  msgid "reCAPTCHA version"
207
  msgstr "نسخة reCAPTCHA:"
208
 
209
+ #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
210
+ #: google-captcha.php:512
211
  msgid "version"
212
  msgstr "النسخة"
213
 
214
+ #: google-captcha.php:518 google-captcha.php:531
 
215
  #, fuzzy
216
  msgid "reCAPTCHA theme"
217
  msgstr "نسخة reCAPTCHA:"
218
 
219
+ #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
 
 
220
  #, fuzzy
221
  msgid "for version"
222
  msgstr "النسخة"
223
 
224
+ #: google-captcha.php:549
 
 
 
 
225
  #, fuzzy
226
  msgid "reCAPTCHA language"
227
  msgstr "نسخة reCAPTCHA:"
228
 
229
+ #: google-captcha.php:556
230
  msgid "Use the current site language"
231
  msgstr ""
232
 
233
+ #: google-captcha.php:556
234
  msgid "Using"
235
  msgstr ""
236
 
237
+ #: google-captcha.php:562
238
  #, fuzzy
239
  msgid "reCAPTCHA size"
240
  msgstr "نسخة reCAPTCHA:"
241
 
242
+ #: google-captcha.php:591
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  msgid "Save Changes"
244
  msgstr "حفظ التغييرات"
245
 
246
+ #: google-captcha.php:650 google-captcha.php:998
247
  msgid "To use Google Captcha you must get the keys from"
248
  msgstr "لتفعيل Google Captcha لابد من الحصول على المفاتيح من"
249
 
250
+ #: google-captcha.php:651 google-captcha.php:999
251
  msgid "here"
252
  msgstr "هنا"
253
 
254
+ #: google-captcha.php:652 google-captcha.php:1000
255
  msgid "and enter them on the"
256
  msgstr "ثم أدخلهم في"
257
 
258
+ #: google-captcha.php:654 google-captcha.php:1002
259
  msgid "plugin setting page"
260
  msgstr "صفحة إعدادات الإضافة"
261
 
262
+ #: google-captcha.php:822 google-captcha.php:851
 
 
 
 
 
 
 
263
  msgid "Error"
264
  msgstr "خطأ"
265
 
266
+ #: google-captcha.php:822 google-captcha.php:881
267
+ #, fuzzy
268
+ msgid "You have entered an incorrect reCAPTCHA value."
 
269
  msgstr "لقد أدخلت قيمة كابتشا بشكل خاطئ"
270
 
271
+ #: google-captcha.php:851
272
+ #, fuzzy
273
+ msgid ""
274
+ "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
275
+ "browser, and try again."
276
+ msgstr ""
277
+ "خطأ: لقد أدخلت قيمة كابتشا بشكل خاطئ. اضغط زر الرجوع في المتصفح وحاول مجددا."
278
 
279
+ #: google-captcha.php:983
280
  msgid "Support"
281
  msgstr "الدعم الفني"
282
 
283
+ #~ msgid ""
284
+ #~ "Google Captcha version 2 will not work correctly, since the option "
285
+ #~ "\"allow_url_fopen\" is disabled in the PHP settings of your hosting."
286
+ #~ msgstr ""
287
+ #~ "النسخة الثانية من Google Captcha لن تعمل بشكل جيد، في حالة تم تعطيل "
288
+ #~ "الدالة \"allow_url_fopen\" في PHP الإستضافة."
289
+
290
+ #~ msgid "Read more."
291
+ #~ msgstr "إقرأ المزيد"
292
+
293
+ #~ msgid "powered by"
294
+ #~ msgstr "مدعوم من"
295
+
296
  #~ msgid "Notice:"
297
  #~ msgstr "ملاحظة :"
298
 
languages/google-captcha-bg_BG.mo CHANGED
Binary file
languages/google-captcha-bg_BG.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: google-captcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-02 15:26+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Yasen Georgiev <me@ygeorgiev.com>\n"
9
  "Language: ru_RU\n"
10
  "MIME-Version: 1.0\n"
@@ -12,263 +12,280 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: google-captcha.php:34
20
- #: google-captcha.php:272
21
  msgid "Google Captcha Settings"
22
  msgstr "Настройки на Google Captcha"
23
 
24
- #: google-captcha.php:182
 
 
 
 
 
25
  msgid "Normal"
26
  msgstr ""
27
 
28
- #: google-captcha.php:183
29
  msgid "Compact"
30
  msgstr ""
31
 
32
- #: google-captcha.php:189
33
  msgid "Site key"
34
  msgstr "Ключ"
35
 
36
- #: google-captcha.php:194
37
  msgid "Secret Key"
38
  msgstr "Секретен ключ"
39
 
40
- #: google-captcha.php:202
41
  msgid "Login form"
42
  msgstr "Форма за вход"
43
 
44
- #: google-captcha.php:203
45
  msgid "Registration form"
46
  msgstr "Форма регистрация"
47
 
48
- #: google-captcha.php:204
49
  msgid "Reset password form"
50
  msgstr "Форма за възстановяване на парола"
51
 
52
- #: google-captcha.php:205
53
  msgid "Comments form"
54
  msgstr "Форма за коментиране"
55
 
56
- #: google-captcha.php:224
57
  msgid "Enter site key"
58
  msgstr "Въведете ключ"
59
 
60
- #: google-captcha.php:225
61
- #: google-captcha.php:231
62
  msgid "WARNING: The captcha will not display while you don't fill key fields."
63
- msgstr "ПРЕДУПРЕЖДЕНИЕ: Google Captcha няма да се покаже докато не въведете ключовите полета."
 
 
64
 
65
- #: google-captcha.php:230
66
  msgid "Enter secret key"
67
  msgstr "Въведете секретен ключ"
68
 
69
- #: google-captcha.php:251
70
  msgid "Settings saved"
71
  msgstr "Настройките бяха запазени успешно."
72
 
73
- #: google-captcha.php:257
74
  #, fuzzy
75
  msgid "All plugin settings were restored."
76
  msgstr "настройките на плъгина"
77
 
78
- #: google-captcha.php:274
79
- #: google-captcha.php:727
80
- #: google-captcha.php:740
81
  msgid "Settings"
82
  msgstr "Настройки"
83
 
84
- #: google-captcha.php:275
85
- #: google-captcha.php:741
86
- msgid "FAQ"
87
- msgstr "ЧЗВ"
88
-
89
- #: google-captcha.php:276
90
  msgid "Go PRO"
91
  msgstr ""
92
 
93
- #: google-captcha.php:286
94
- msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
 
 
95
  msgstr ""
96
 
97
- #: google-captcha.php:287
98
- msgid "Read more."
 
 
99
  msgstr ""
100
 
101
- #: google-captcha.php:294
102
- #, fuzzy
103
- msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your form:"
104
- msgstr "Ако искате да добавите Google Captcha към Ваша собствена форма, проста копирайте и поставете този код на желаната публикация или страница:"
 
 
 
 
 
 
 
 
 
 
 
 
 
105
 
106
- #: google-captcha.php:296
107
  msgid "Authentication"
108
  msgstr "Идентификация"
109
 
110
- #: google-captcha.php:297
111
- #, php-format
112
- msgid "Before you are able to do something, you must to register %s here %s"
113
  msgstr "Преди да можете да направите нещо, трябва да се %sрегистрирате%s."
114
 
115
- #: google-captcha.php:298
116
  msgid "Enter site key and secret key, that you get after registration."
117
- msgstr "Въведете ключ и секретен ключ, който взимате след регистрация в Google Captcha."
 
 
118
 
119
- #: google-captcha.php:310
120
  msgid "Options"
121
  msgstr "Опции"
122
 
123
- #: google-captcha.php:313
124
  msgid "Enable reCAPTCHA for"
125
  msgstr ""
126
 
127
- #: google-captcha.php:321
128
- #: google-captcha.php:324
129
- #: google-captcha.php:328
130
- msgid "powered by"
131
- msgstr "разработено от"
132
 
133
- #: google-captcha.php:324
134
- #: google-captcha.php:392
 
 
 
135
  #, fuzzy
136
- msgid "Activate"
 
 
 
 
 
 
 
 
 
 
137
  msgstr "Активировать Contact form"
138
 
139
- #: google-captcha.php:328
140
- #: google-captcha.php:396
141
- msgid "Download"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  msgstr ""
143
 
144
- #: google-captcha.php:333
 
 
 
 
 
 
 
 
 
 
145
  #, fuzzy
146
  msgid "Hide reCAPTCHA in Comments form for"
147
  msgstr "за reCAPTCHA версия"
148
 
149
- #: google-captcha.php:341
150
  #, fuzzy
151
  msgid "reCAPTCHA version"
152
  msgstr "Версия на reCAPTCHA:"
153
 
154
- #: google-captcha.php:343
155
- #: google-captcha.php:344
156
  msgid "version"
157
  msgstr "версия"
158
 
159
- #: google-captcha.php:349
160
- #: google-captcha.php:362
161
  #, fuzzy
162
  msgid "reCAPTCHA theme"
163
  msgstr "Версия на reCAPTCHA:"
164
 
165
- #: google-captcha.php:350
166
- #: google-captcha.php:363
167
- #: google-captcha.php:406
168
  #, fuzzy
169
  msgid "for version"
170
  msgstr "версия"
171
 
172
- #: google-captcha.php:376
173
- msgid "Close"
174
- msgstr ""
175
-
176
- #: google-captcha.php:380
177
  #, fuzzy
178
  msgid "reCAPTCHA language"
179
  msgstr "Версия на reCAPTCHA:"
180
 
181
- #: google-captcha.php:399
182
  msgid "Use the current site language"
183
  msgstr ""
184
 
185
- #: google-captcha.php:399
186
  msgid "Using"
187
  msgstr ""
188
 
189
- #: google-captcha.php:405
190
  #, fuzzy
191
  msgid "reCAPTCHA size"
192
  msgstr "Версия на reCAPTCHA:"
193
 
194
- #: google-captcha.php:422
195
- msgid "Enable CAPTCHA"
196
- msgstr ""
197
-
198
- #: google-captcha.php:429
199
- #: google-captcha.php:433
200
- msgid "You should"
201
- msgstr ""
202
-
203
- #: google-captcha.php:429
204
- #, fuzzy
205
- msgid "activate"
206
- msgstr "Активировать Contact form"
207
-
208
- #: google-captcha.php:429
209
- #: google-captcha.php:433
210
- msgid "to use this functionality"
211
- msgstr ""
212
-
213
- #: google-captcha.php:433
214
- msgid "download"
215
- msgstr ""
216
-
217
- #: google-captcha.php:442
218
- msgid "Unlock premium options by upgrading to Pro version"
219
- msgstr ""
220
-
221
- #: google-captcha.php:445
222
- msgid "Learn More"
223
- msgstr ""
224
-
225
- #: google-captcha.php:452
226
  msgid "Save Changes"
227
  msgstr "Запази промените"
228
 
229
- #: google-captcha.php:508
230
  msgid "To use Google Captcha you must get the keys from"
231
  msgstr "За да използвате Google Captcha трябва да вземете ключовете от"
232
 
233
- #: google-captcha.php:509
234
  msgid "here"
235
  msgstr "тук"
236
 
237
- #: google-captcha.php:510
238
  msgid "and enter them on the"
239
  msgstr "и да ги въведете в"
240
 
241
- #: google-captcha.php:512
242
  msgid "plugin setting page"
243
  msgstr "настройките на плъгина"
244
 
245
- #: google-captcha.php:527
246
- #: google-captcha.php:564
247
- msgid "Error: You have entered an incorrect CAPTCHA value."
248
- msgstr "Грешка: Въвели сте невалиден анти-спам код."
249
-
250
- #: google-captcha.php:633
251
- #: google-captcha.php:645
252
- #: google-captcha.php:654
253
  msgid "Error"
254
  msgstr ""
255
 
256
- #: google-captcha.php:633
257
- #: google-captcha.php:645
258
- #: google-captcha.php:654
259
  #, fuzzy
260
- msgid "You have entered an incorrect CAPTCHA value."
261
  msgstr "Грешка: Въвели сте невалиден анти-спам код."
262
 
263
- #: google-captcha.php:698
264
- #: google-captcha.php:705
265
- msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
266
- msgstr "Грешка: Въвели сте невалиден анти-спам код. Натиснете бутона НАЗАД в браузъра и опитайте отново."
 
 
 
 
267
 
268
- #: google-captcha.php:742
269
  msgid "Support"
270
  msgstr "Поддръжка"
271
 
 
 
 
 
 
 
 
272
  #~ msgid "Notice:"
273
  #~ msgstr "Внимание:"
274
 
@@ -311,9 +328,6 @@ msgstr "Поддръжка"
311
  #~ msgid "Back to the WordPress"
312
  #~ msgstr "Назад към WordPress"
313
 
314
- #~ msgid "Plugins page"
315
- #~ msgstr "Страница с плъгини"
316
-
317
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
318
  #~ msgstr "Ако харесвате нашия плъгин, моля дайде му 5 звезди в WordPress"
319
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-10 10:01+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Yasen Georgiev <me@ygeorgiev.com>\n"
9
  "Language: ru_RU\n"
10
  "MIME-Version: 1.0\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: google-captcha.php:34 google-captcha.php:362
 
20
  msgid "Google Captcha Settings"
21
  msgstr "Настройки на Google Captcha"
22
 
23
+ #: google-captcha.php:166
24
+ #, fuzzy
25
+ msgid "Error: You have entered an incorrect reCAPTCHA value."
26
+ msgstr "Грешка: Въвели сте невалиден анти-спам код."
27
+
28
+ #: google-captcha.php:270
29
  msgid "Normal"
30
  msgstr ""
31
 
32
+ #: google-captcha.php:271
33
  msgid "Compact"
34
  msgstr ""
35
 
36
+ #: google-captcha.php:277
37
  msgid "Site key"
38
  msgstr "Ключ"
39
 
40
+ #: google-captcha.php:282
41
  msgid "Secret Key"
42
  msgstr "Секретен ключ"
43
 
44
+ #: google-captcha.php:290
45
  msgid "Login form"
46
  msgstr "Форма за вход"
47
 
48
+ #: google-captcha.php:291
49
  msgid "Registration form"
50
  msgstr "Форма регистрация"
51
 
52
+ #: google-captcha.php:292
53
  msgid "Reset password form"
54
  msgstr "Форма за възстановяване на парола"
55
 
56
+ #: google-captcha.php:293
57
  msgid "Comments form"
58
  msgstr "Форма за коментиране"
59
 
60
+ #: google-captcha.php:312
61
  msgid "Enter site key"
62
  msgstr "Въведете ключ"
63
 
64
+ #: google-captcha.php:313 google-captcha.php:319
 
65
  msgid "WARNING: The captcha will not display while you don't fill key fields."
66
+ msgstr ""
67
+ "ПРЕДУПРЕЖДЕНИЕ: Google Captcha няма да се покаже докато не въведете "
68
+ "ключовите полета."
69
 
70
+ #: google-captcha.php:318
71
  msgid "Enter secret key"
72
  msgstr "Въведете секретен ключ"
73
 
74
+ #: google-captcha.php:341
75
  msgid "Settings saved"
76
  msgstr "Настройките бяха запазени успешно."
77
 
78
+ #: google-captcha.php:347
79
  #, fuzzy
80
  msgid "All plugin settings were restored."
81
  msgstr "настройките на плъгина"
82
 
83
+ #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
 
 
84
  msgid "Settings"
85
  msgstr "Настройки"
86
 
87
+ #: google-captcha.php:365
 
 
 
 
 
88
  msgid "Go PRO"
89
  msgstr ""
90
 
91
+ #: google-captcha.php:370
92
+ msgid ""
93
+ "Google Captcha version 2 will not work correctly, since the option "
94
+ "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
95
  msgstr ""
96
 
97
+ #: google-captcha.php:375
98
+ msgid ""
99
+ "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
100
+ "version 1 features."
101
  msgstr ""
102
 
103
+ #: google-captcha.php:390
104
+ #, fuzzy, php-format
105
+ msgid ""
106
+ "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
107
+ "please use %s button"
108
+ msgstr ""
109
+ "Ако искате да добавите Google Captcha към Ваша собствена форма, проста "
110
+ "копирайте и поставете този код на желаната публикация или страница:"
111
+
112
+ #: google-captcha.php:396
113
+ #, php-format
114
+ msgid ""
115
+ "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
116
+ "on %s button in the content edit block using the Visual mode. If the button "
117
+ "isn't displayed or you would like to add the Google Captcha (reCAPTCHA) to "
118
+ "your own form , please use the shortcode %s"
119
+ msgstr ""
120
 
121
+ #: google-captcha.php:404
122
  msgid "Authentication"
123
  msgstr "Идентификация"
124
 
125
+ #: google-captcha.php:405
126
+ #, fuzzy, php-format
127
+ msgid "Before you are able to do something, you must to register %shere%s"
128
  msgstr "Преди да можете да направите нещо, трябва да се %sрегистрирате%s."
129
 
130
+ #: google-captcha.php:406
131
  msgid "Enter site key and secret key, that you get after registration."
132
+ msgstr ""
133
+ "Въведете ключ и секретен ключ, който взимате след регистрация в Google "
134
+ "Captcha."
135
 
136
+ #: google-captcha.php:418
137
  msgid "Options"
138
  msgstr "Опции"
139
 
140
+ #: google-captcha.php:421
141
  msgid "Enable reCAPTCHA for"
142
  msgstr ""
143
 
144
+ #: google-captcha.php:425
145
+ msgid "WordPress default"
146
+ msgstr ""
 
 
147
 
148
+ #: google-captcha.php:434
149
+ msgid "This option is available only for network or for main blog"
150
+ msgstr ""
151
+
152
+ #: google-captcha.php:442
153
  #, fuzzy
154
+ msgid "Plugins"
155
+ msgstr "Страница с плъгини"
156
+
157
+ #: google-captcha.php:450 google-captcha.php:455
158
+ #, php-format
159
+ msgid "You should %s to use this functionality"
160
+ msgstr ""
161
+
162
+ #: google-captcha.php:451
163
+ #, fuzzy
164
+ msgid "activate"
165
  msgstr "Активировать Contact form"
166
 
167
+ #: google-captcha.php:451
168
+ msgid "for network"
169
+ msgstr ""
170
+
171
+ #: google-captcha.php:456
172
+ msgid "download"
173
+ msgstr ""
174
+
175
+ #: google-captcha.php:468 google-captcha.php:545
176
+ msgid "Close"
177
+ msgstr ""
178
+
179
+ #: google-captcha.php:480 google-captcha.php:581
180
+ msgid "Unlock premium options by upgrading to Pro version"
181
+ msgstr ""
182
+
183
+ #: google-captcha.php:483 google-captcha.php:584
184
+ msgid "Learn More"
185
  msgstr ""
186
 
187
+ #: google-captcha.php:489
188
+ #, php-format
189
+ msgid ""
190
+ "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
191
+ msgstr ""
192
+
193
+ #: google-captcha.php:489 google-captcha.php:982
194
+ msgid "FAQ"
195
+ msgstr "ЧЗВ"
196
+
197
+ #: google-captcha.php:494
198
  #, fuzzy
199
  msgid "Hide reCAPTCHA in Comments form for"
200
  msgstr "за reCAPTCHA версия"
201
 
202
+ #: google-captcha.php:506
203
  #, fuzzy
204
  msgid "reCAPTCHA version"
205
  msgstr "Версия на reCAPTCHA:"
206
 
207
+ #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
208
+ #: google-captcha.php:512
209
  msgid "version"
210
  msgstr "версия"
211
 
212
+ #: google-captcha.php:518 google-captcha.php:531
 
213
  #, fuzzy
214
  msgid "reCAPTCHA theme"
215
  msgstr "Версия на reCAPTCHA:"
216
 
217
+ #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
 
 
218
  #, fuzzy
219
  msgid "for version"
220
  msgstr "версия"
221
 
222
+ #: google-captcha.php:549
 
 
 
 
223
  #, fuzzy
224
  msgid "reCAPTCHA language"
225
  msgstr "Версия на reCAPTCHA:"
226
 
227
+ #: google-captcha.php:556
228
  msgid "Use the current site language"
229
  msgstr ""
230
 
231
+ #: google-captcha.php:556
232
  msgid "Using"
233
  msgstr ""
234
 
235
+ #: google-captcha.php:562
236
  #, fuzzy
237
  msgid "reCAPTCHA size"
238
  msgstr "Версия на reCAPTCHA:"
239
 
240
+ #: google-captcha.php:591
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
  msgid "Save Changes"
242
  msgstr "Запази промените"
243
 
244
+ #: google-captcha.php:650 google-captcha.php:998
245
  msgid "To use Google Captcha you must get the keys from"
246
  msgstr "За да използвате Google Captcha трябва да вземете ключовете от"
247
 
248
+ #: google-captcha.php:651 google-captcha.php:999
249
  msgid "here"
250
  msgstr "тук"
251
 
252
+ #: google-captcha.php:652 google-captcha.php:1000
253
  msgid "and enter them on the"
254
  msgstr "и да ги въведете в"
255
 
256
+ #: google-captcha.php:654 google-captcha.php:1002
257
  msgid "plugin setting page"
258
  msgstr "настройките на плъгина"
259
 
260
+ #: google-captcha.php:822 google-captcha.php:851
 
 
 
 
 
 
 
261
  msgid "Error"
262
  msgstr ""
263
 
264
+ #: google-captcha.php:822 google-captcha.php:881
 
 
265
  #, fuzzy
266
+ msgid "You have entered an incorrect reCAPTCHA value."
267
  msgstr "Грешка: Въвели сте невалиден анти-спам код."
268
 
269
+ #: google-captcha.php:851
270
+ #, fuzzy
271
+ msgid ""
272
+ "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
273
+ "browser, and try again."
274
+ msgstr ""
275
+ "Грешка: Въвели сте невалиден анти-спам код. Натиснете бутона НАЗАД в "
276
+ "браузъра и опитайте отново."
277
 
278
+ #: google-captcha.php:983
279
  msgid "Support"
280
  msgstr "Поддръжка"
281
 
282
+ #~ msgid "powered by"
283
+ #~ msgstr "разработено от"
284
+
285
+ #, fuzzy
286
+ #~ msgid "Activate"
287
+ #~ msgstr "Активировать Contact form"
288
+
289
  #~ msgid "Notice:"
290
  #~ msgstr "Внимание:"
291
 
328
  #~ msgid "Back to the WordPress"
329
  #~ msgstr "Назад към WordPress"
330
 
 
 
 
331
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
332
  #~ msgstr "Ако харесвате нашия плъгин, моля дайде му 5 звезди в WordPress"
333
 
languages/google-captcha-de_DE.mo CHANGED
Binary file
languages/google-captcha-de_DE.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: google-captcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-02 15:26+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Fred Zimmer <fred.zimmer@medienconsulting.at>\n"
9
  "Language: de_DE\n"
10
  "MIME-Version: 1.0\n"
@@ -17,258 +17,293 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:34
21
- #: google-captcha.php:272
22
  msgid "Google Captcha Settings"
23
  msgstr "Google Captcha-Einstellungen"
24
 
25
- #: google-captcha.php:182
 
 
 
 
 
26
  msgid "Normal"
27
  msgstr ""
28
 
29
- #: google-captcha.php:183
30
  msgid "Compact"
31
  msgstr ""
32
 
33
- #: google-captcha.php:189
34
  msgid "Site key"
35
  msgstr "Site-Schlüssel"
36
 
37
- #: google-captcha.php:194
38
  msgid "Secret Key"
39
  msgstr "Geheimer Schlüssel"
40
 
41
- #: google-captcha.php:202
42
  msgid "Login form"
43
  msgstr "Login Formular"
44
 
45
- #: google-captcha.php:203
46
  msgid "Registration form"
47
  msgstr "Registrierungsformular"
48
 
49
- #: google-captcha.php:204
50
  msgid "Reset password form"
51
  msgstr "Passwort Forumlar zurücksetzen"
52
 
53
- #: google-captcha.php:205
54
  msgid "Comments form"
55
  msgstr "Kommentarformular"
56
 
57
- #: google-captcha.php:224
58
  msgid "Enter site key"
59
  msgstr "Geben Sie den Site-Schlüssel ein"
60
 
61
- #: google-captcha.php:225
62
- #: google-captcha.php:231
63
  msgid "WARNING: The captcha will not display while you don't fill key fields."
64
- msgstr "WARNUNG: das CAPTCHA wird nicht angezeigt wenn die Schlüsselfelder nicht ausgefüllt sind!"
 
 
65
 
66
- #: google-captcha.php:230
67
  msgid "Enter secret key"
68
  msgstr "Geben Sie den geheimen Schlüssel ein"
69
 
70
- #: google-captcha.php:251
71
  msgid "Settings saved"
72
  msgstr "Einstellungen gespeichert"
73
 
74
- #: google-captcha.php:257
75
  #, fuzzy
76
  msgid "All plugin settings were restored."
77
  msgstr "Plugin Einstellungsseite"
78
 
79
- #: google-captcha.php:274
80
- #: google-captcha.php:727
81
- #: google-captcha.php:740
82
  msgid "Settings"
83
  msgstr "Einstellungen"
84
 
85
- #: google-captcha.php:275
86
- #: google-captcha.php:741
87
- msgid "FAQ"
88
- msgstr "FAQ"
89
-
90
- #: google-captcha.php:276
91
  msgid "Go PRO"
92
  msgstr ""
93
 
94
- #: google-captcha.php:286
95
- msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
96
- msgstr "Google Captcha Version 2 funktioniert nicht ordnungsgemäß, da die Option \"Allow_url_fopen\" in den PHP-Einstellungen von Ihrem hosting deaktiviert ist."
 
 
 
 
 
 
97
 
98
- #: google-captcha.php:287
99
- msgid "Read more."
100
- msgstr "weiterlesen"
 
 
101
 
102
- #: google-captcha.php:294
103
- #, fuzzy
104
- msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your form:"
105
- msgstr "Wenn Sie Ihrem eigenen Formular Google CAPTCHA hinzufügen wollen, dann kopieren Sie diesen Shortcode in Ihren Beitrag oder Seite"
 
 
 
 
 
 
 
 
 
 
 
 
 
106
 
107
- #: google-captcha.php:296
108
  msgid "Authentication"
109
  msgstr "Authentifizierung"
110
 
111
- #: google-captcha.php:297
112
- #, php-format
113
- msgid "Before you are able to do something, you must to register %s here %s"
114
  msgstr "Bevor Sie etwas tun können, müssen Sie %s hier %s registrieren"
115
 
116
- #: google-captcha.php:298
117
  msgid "Enter site key and secret key, that you get after registration."
118
- msgstr "Geben Sie den Site- und Geheimen Schlüssel ein, den Sie nach der Registrierung erhalten werden."
 
 
119
 
120
- #: google-captcha.php:310
121
  msgid "Options"
122
  msgstr "Optionen"
123
 
124
- #: google-captcha.php:313
125
  msgid "Enable reCAPTCHA for"
126
  msgstr ""
127
 
128
- #: google-captcha.php:321
129
- #: google-captcha.php:324
130
- #: google-captcha.php:328
131
- msgid "powered by"
132
- msgstr "Bereitgestellt von"
 
 
 
 
 
 
 
133
 
134
- #: google-captcha.php:324
135
- #: google-captcha.php:392
 
 
 
 
136
  #, fuzzy
137
- msgid "Activate"
138
  msgstr "Oberfläche aktivieren"
139
 
140
- #: google-captcha.php:328
141
- #: google-captcha.php:396
142
- msgid "Download"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
143
  msgstr ""
144
 
145
- #: google-captcha.php:333
 
 
 
 
146
  #, fuzzy
147
  msgid "Hide reCAPTCHA in Comments form for"
148
  msgstr "für ReCAPTCHA-version"
149
 
150
- #: google-captcha.php:341
151
  #, fuzzy
152
  msgid "reCAPTCHA version"
153
  msgstr "ReCAPTCHA Version:"
154
 
155
- #: google-captcha.php:343
156
- #: google-captcha.php:344
157
  msgid "version"
158
  msgstr "Version"
159
 
160
- #: google-captcha.php:349
161
- #: google-captcha.php:362
162
  #, fuzzy
163
  msgid "reCAPTCHA theme"
164
  msgstr "ReCAPTCHA Version:"
165
 
166
- #: google-captcha.php:350
167
- #: google-captcha.php:363
168
- #: google-captcha.php:406
169
  #, fuzzy
170
  msgid "for version"
171
  msgstr "Version"
172
 
173
- #: google-captcha.php:376
174
- msgid "Close"
175
- msgstr ""
176
-
177
- #: google-captcha.php:380
178
  #, fuzzy
179
  msgid "reCAPTCHA language"
180
  msgstr "ReCAPTCHA Version:"
181
 
182
- #: google-captcha.php:399
183
  msgid "Use the current site language"
184
  msgstr ""
185
 
186
- #: google-captcha.php:399
187
  msgid "Using"
188
  msgstr ""
189
 
190
- #: google-captcha.php:405
191
  #, fuzzy
192
  msgid "reCAPTCHA size"
193
  msgstr "ReCAPTCHA Version:"
194
 
195
- #: google-captcha.php:422
196
- msgid "Enable CAPTCHA"
197
- msgstr ""
198
-
199
- #: google-captcha.php:429
200
- #: google-captcha.php:433
201
- msgid "You should"
202
- msgstr ""
203
-
204
- #: google-captcha.php:429
205
- #, fuzzy
206
- msgid "activate"
207
- msgstr "Oberfläche aktivieren"
208
-
209
- #: google-captcha.php:429
210
- #: google-captcha.php:433
211
- msgid "to use this functionality"
212
- msgstr ""
213
-
214
- #: google-captcha.php:433
215
- msgid "download"
216
- msgstr ""
217
-
218
- #: google-captcha.php:442
219
- msgid "Unlock premium options by upgrading to Pro version"
220
- msgstr ""
221
-
222
- #: google-captcha.php:445
223
- msgid "Learn More"
224
- msgstr ""
225
-
226
- #: google-captcha.php:452
227
  msgid "Save Changes"
228
  msgstr "Änderungen speichern"
229
 
230
- #: google-captcha.php:508
231
  msgid "To use Google Captcha you must get the keys from"
232
- msgstr "Um Google Catpcha verwenden zu können, müssen Sie sich die Schlüssel holen bei"
 
 
233
 
234
- #: google-captcha.php:509
235
  msgid "here"
236
  msgstr "hier"
237
 
238
- #: google-captcha.php:510
239
  msgid "and enter them on the"
240
  msgstr "und geben Sie sie ein auf"
241
 
242
- #: google-captcha.php:512
243
  msgid "plugin setting page"
244
  msgstr "Plugin Einstellungsseite"
245
 
246
- #: google-captcha.php:527
247
- #: google-captcha.php:564
248
- msgid "Error: You have entered an incorrect CAPTCHA value."
249
- msgstr "Fehler: Sie haben den CAPTCHA nicht korrekt eingegeben."
250
-
251
- #: google-captcha.php:633
252
- #: google-captcha.php:645
253
- #: google-captcha.php:654
254
  msgid "Error"
255
  msgstr "Fehler"
256
 
257
- #: google-captcha.php:633
258
- #: google-captcha.php:645
259
- #: google-captcha.php:654
260
- msgid "You have entered an incorrect CAPTCHA value."
261
  msgstr "Sie haben den CAPTCHA nicht korrekt eingegeben."
262
 
263
- #: google-captcha.php:698
264
- #: google-captcha.php:705
265
- msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
266
- msgstr "Fehler: Sie haben den CAPTCHA nicht korrekt eingegeben. Klicken Sie auf den \"zurück\" Knopf im Browser und versuchen Sie es nochmal."
 
 
 
 
267
 
268
- #: google-captcha.php:742
269
  msgid "Support"
270
  msgstr "Support"
271
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
272
  #~ msgid "Notice:"
273
  #~ msgstr "Hinweis:"
274
 
@@ -313,9 +348,6 @@ msgstr "Support"
313
  #~ msgid "Back to the WordPress"
314
  #~ msgstr "Zurück zu Wordpress"
315
 
316
- #~ msgid "Plugins page"
317
- #~ msgstr "Plugins Seite"
318
-
319
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
320
  #~ msgstr ""
321
  #~ "Bewerten Sie das Plugin mit 5 Sternen auf WordPress, wenn Sie es mögen."
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-10 10:02+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Fred Zimmer <fred.zimmer@medienconsulting.at>\n"
9
  "Language: de_DE\n"
10
  "MIME-Version: 1.0\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:362
 
21
  msgid "Google Captcha Settings"
22
  msgstr "Google Captcha-Einstellungen"
23
 
24
+ #: google-captcha.php:166
25
+ #, fuzzy
26
+ msgid "Error: You have entered an incorrect reCAPTCHA value."
27
+ msgstr "Fehler: Sie haben den CAPTCHA nicht korrekt eingegeben."
28
+
29
+ #: google-captcha.php:270
30
  msgid "Normal"
31
  msgstr ""
32
 
33
+ #: google-captcha.php:271
34
  msgid "Compact"
35
  msgstr ""
36
 
37
+ #: google-captcha.php:277
38
  msgid "Site key"
39
  msgstr "Site-Schlüssel"
40
 
41
+ #: google-captcha.php:282
42
  msgid "Secret Key"
43
  msgstr "Geheimer Schlüssel"
44
 
45
+ #: google-captcha.php:290
46
  msgid "Login form"
47
  msgstr "Login Formular"
48
 
49
+ #: google-captcha.php:291
50
  msgid "Registration form"
51
  msgstr "Registrierungsformular"
52
 
53
+ #: google-captcha.php:292
54
  msgid "Reset password form"
55
  msgstr "Passwort Forumlar zurücksetzen"
56
 
57
+ #: google-captcha.php:293
58
  msgid "Comments form"
59
  msgstr "Kommentarformular"
60
 
61
+ #: google-captcha.php:312
62
  msgid "Enter site key"
63
  msgstr "Geben Sie den Site-Schlüssel ein"
64
 
65
+ #: google-captcha.php:313 google-captcha.php:319
 
66
  msgid "WARNING: The captcha will not display while you don't fill key fields."
67
+ msgstr ""
68
+ "WARNUNG: das CAPTCHA wird nicht angezeigt wenn die Schlüsselfelder nicht "
69
+ "ausgefüllt sind!"
70
 
71
+ #: google-captcha.php:318
72
  msgid "Enter secret key"
73
  msgstr "Geben Sie den geheimen Schlüssel ein"
74
 
75
+ #: google-captcha.php:341
76
  msgid "Settings saved"
77
  msgstr "Einstellungen gespeichert"
78
 
79
+ #: google-captcha.php:347
80
  #, fuzzy
81
  msgid "All plugin settings were restored."
82
  msgstr "Plugin Einstellungsseite"
83
 
84
+ #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
 
 
85
  msgid "Settings"
86
  msgstr "Einstellungen"
87
 
88
+ #: google-captcha.php:365
 
 
 
 
 
89
  msgid "Go PRO"
90
  msgstr ""
91
 
92
+ #: google-captcha.php:370
93
+ #, fuzzy
94
+ msgid ""
95
+ "Google Captcha version 2 will not work correctly, since the option "
96
+ "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
97
+ msgstr ""
98
+ "Google Captcha Version 2 funktioniert nicht ordnungsgemäß, da die Option "
99
+ "\"Allow_url_fopen\" in den PHP-Einstellungen von Ihrem hosting deaktiviert "
100
+ "ist."
101
 
102
+ #: google-captcha.php:375
103
+ msgid ""
104
+ "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
105
+ "version 1 features."
106
+ msgstr ""
107
 
108
+ #: google-captcha.php:390
109
+ #, fuzzy, php-format
110
+ msgid ""
111
+ "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
112
+ "please use %s button"
113
+ msgstr ""
114
+ "Wenn Sie Ihrem eigenen Formular Google CAPTCHA hinzufügen wollen, dann "
115
+ "kopieren Sie diesen Shortcode in Ihren Beitrag oder Seite"
116
+
117
+ #: google-captcha.php:396
118
+ #, php-format
119
+ msgid ""
120
+ "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
121
+ "on %s button in the content edit block using the Visual mode. If the button "
122
+ "isn't displayed or you would like to add the Google Captcha (reCAPTCHA) to "
123
+ "your own form , please use the shortcode %s"
124
+ msgstr ""
125
 
126
+ #: google-captcha.php:404
127
  msgid "Authentication"
128
  msgstr "Authentifizierung"
129
 
130
+ #: google-captcha.php:405
131
+ #, fuzzy, php-format
132
+ msgid "Before you are able to do something, you must to register %shere%s"
133
  msgstr "Bevor Sie etwas tun können, müssen Sie %s hier %s registrieren"
134
 
135
+ #: google-captcha.php:406
136
  msgid "Enter site key and secret key, that you get after registration."
137
+ msgstr ""
138
+ "Geben Sie den Site- und Geheimen Schlüssel ein, den Sie nach der "
139
+ "Registrierung erhalten werden."
140
 
141
+ #: google-captcha.php:418
142
  msgid "Options"
143
  msgstr "Optionen"
144
 
145
+ #: google-captcha.php:421
146
  msgid "Enable reCAPTCHA for"
147
  msgstr ""
148
 
149
+ #: google-captcha.php:425
150
+ msgid "WordPress default"
151
+ msgstr ""
152
+
153
+ #: google-captcha.php:434
154
+ msgid "This option is available only for network or for main blog"
155
+ msgstr ""
156
+
157
+ #: google-captcha.php:442
158
+ #, fuzzy
159
+ msgid "Plugins"
160
+ msgstr "Plugins Seite"
161
 
162
+ #: google-captcha.php:450 google-captcha.php:455
163
+ #, php-format
164
+ msgid "You should %s to use this functionality"
165
+ msgstr ""
166
+
167
+ #: google-captcha.php:451
168
  #, fuzzy
169
+ msgid "activate"
170
  msgstr "Oberfläche aktivieren"
171
 
172
+ #: google-captcha.php:451
173
+ msgid "for network"
174
+ msgstr ""
175
+
176
+ #: google-captcha.php:456
177
+ msgid "download"
178
+ msgstr ""
179
+
180
+ #: google-captcha.php:468 google-captcha.php:545
181
+ msgid "Close"
182
+ msgstr ""
183
+
184
+ #: google-captcha.php:480 google-captcha.php:581
185
+ msgid "Unlock premium options by upgrading to Pro version"
186
+ msgstr ""
187
+
188
+ #: google-captcha.php:483 google-captcha.php:584
189
+ msgid "Learn More"
190
+ msgstr ""
191
+
192
+ #: google-captcha.php:489
193
+ #, php-format
194
+ msgid ""
195
+ "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
196
  msgstr ""
197
 
198
+ #: google-captcha.php:489 google-captcha.php:982
199
+ msgid "FAQ"
200
+ msgstr "FAQ"
201
+
202
+ #: google-captcha.php:494
203
  #, fuzzy
204
  msgid "Hide reCAPTCHA in Comments form for"
205
  msgstr "für ReCAPTCHA-version"
206
 
207
+ #: google-captcha.php:506
208
  #, fuzzy
209
  msgid "reCAPTCHA version"
210
  msgstr "ReCAPTCHA Version:"
211
 
212
+ #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
213
+ #: google-captcha.php:512
214
  msgid "version"
215
  msgstr "Version"
216
 
217
+ #: google-captcha.php:518 google-captcha.php:531
 
218
  #, fuzzy
219
  msgid "reCAPTCHA theme"
220
  msgstr "ReCAPTCHA Version:"
221
 
222
+ #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
 
 
223
  #, fuzzy
224
  msgid "for version"
225
  msgstr "Version"
226
 
227
+ #: google-captcha.php:549
 
 
 
 
228
  #, fuzzy
229
  msgid "reCAPTCHA language"
230
  msgstr "ReCAPTCHA Version:"
231
 
232
+ #: google-captcha.php:556
233
  msgid "Use the current site language"
234
  msgstr ""
235
 
236
+ #: google-captcha.php:556
237
  msgid "Using"
238
  msgstr ""
239
 
240
+ #: google-captcha.php:562
241
  #, fuzzy
242
  msgid "reCAPTCHA size"
243
  msgstr "ReCAPTCHA Version:"
244
 
245
+ #: google-captcha.php:591
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
  msgid "Save Changes"
247
  msgstr "Änderungen speichern"
248
 
249
+ #: google-captcha.php:650 google-captcha.php:998
250
  msgid "To use Google Captcha you must get the keys from"
251
+ msgstr ""
252
+ "Um Google Catpcha verwenden zu können, müssen Sie sich die Schlüssel holen "
253
+ "bei"
254
 
255
+ #: google-captcha.php:651 google-captcha.php:999
256
  msgid "here"
257
  msgstr "hier"
258
 
259
+ #: google-captcha.php:652 google-captcha.php:1000
260
  msgid "and enter them on the"
261
  msgstr "und geben Sie sie ein auf"
262
 
263
+ #: google-captcha.php:654 google-captcha.php:1002
264
  msgid "plugin setting page"
265
  msgstr "Plugin Einstellungsseite"
266
 
267
+ #: google-captcha.php:822 google-captcha.php:851
 
 
 
 
 
 
 
268
  msgid "Error"
269
  msgstr "Fehler"
270
 
271
+ #: google-captcha.php:822 google-captcha.php:881
272
+ #, fuzzy
273
+ msgid "You have entered an incorrect reCAPTCHA value."
 
274
  msgstr "Sie haben den CAPTCHA nicht korrekt eingegeben."
275
 
276
+ #: google-captcha.php:851
277
+ #, fuzzy
278
+ msgid ""
279
+ "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
280
+ "browser, and try again."
281
+ msgstr ""
282
+ "Fehler: Sie haben den CAPTCHA nicht korrekt eingegeben. Klicken Sie auf den "
283
+ "\"zurück\" Knopf im Browser und versuchen Sie es nochmal."
284
 
285
+ #: google-captcha.php:983
286
  msgid "Support"
287
  msgstr "Support"
288
 
289
+ #~ msgid ""
290
+ #~ "Google Captcha version 2 will not work correctly, since the option "
291
+ #~ "\"allow_url_fopen\" is disabled in the PHP settings of your hosting."
292
+ #~ msgstr ""
293
+ #~ "Google Captcha Version 2 funktioniert nicht ordnungsgemäß, da die Option "
294
+ #~ "\"Allow_url_fopen\" in den PHP-Einstellungen von Ihrem hosting "
295
+ #~ "deaktiviert ist."
296
+
297
+ #~ msgid "Read more."
298
+ #~ msgstr "weiterlesen"
299
+
300
+ #~ msgid "powered by"
301
+ #~ msgstr "Bereitgestellt von"
302
+
303
+ #, fuzzy
304
+ #~ msgid "Activate"
305
+ #~ msgstr "Oberfläche aktivieren"
306
+
307
  #~ msgid "Notice:"
308
  #~ msgstr "Hinweis:"
309
 
348
  #~ msgid "Back to the WordPress"
349
  #~ msgstr "Zurück zu Wordpress"
350
 
 
 
 
351
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
352
  #~ msgstr ""
353
  #~ "Bewerten Sie das Plugin mit 5 Sternen auf WordPress, wenn Sie es mögen."
languages/google-captcha-el.mo CHANGED
Binary file
languages/google-captcha-el.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: google-captcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-02 15:27+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Dimitris Karantonis\n"
9
  "Language: uk\n"
10
  "MIME-Version: 1.0\n"
@@ -16,259 +16,294 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: google-captcha.php:34
20
- #: google-captcha.php:272
21
  msgid "Google Captcha Settings"
22
  msgstr "Ρυθμίσεις Google Captcha"
23
 
24
- #: google-captcha.php:182
 
 
 
 
 
25
  msgid "Normal"
26
  msgstr ""
27
 
28
- #: google-captcha.php:183
29
  msgid "Compact"
30
  msgstr ""
31
 
32
- #: google-captcha.php:189
33
  msgid "Site key"
34
  msgstr "Κλειδί ιστοσελίδας"
35
 
36
- #: google-captcha.php:194
37
  msgid "Secret Key"
38
  msgstr "Μυστικό κλειδί"
39
 
40
- #: google-captcha.php:202
41
  msgid "Login form"
42
  msgstr "Φόρμα εισόδου"
43
 
44
- #: google-captcha.php:203
45
  msgid "Registration form"
46
  msgstr "Φόρμα εγγραφής"
47
 
48
- #: google-captcha.php:204
49
  msgid "Reset password form"
50
  msgstr "Φόρμα ανάκτησης κωδικού πρόσβασης"
51
 
52
- #: google-captcha.php:205
53
  msgid "Comments form"
54
  msgstr "Φόρμα για σχόλια"
55
 
56
- #: google-captcha.php:224
57
  msgid "Enter site key"
58
  msgstr "Εισάγετε το κλειδί της ιστοσελίδας"
59
 
60
- #: google-captcha.php:225
61
- #: google-captcha.php:231
62
  msgid "WARNING: The captcha will not display while you don't fill key fields."
63
- msgstr "ΠΡΟΣΟΧΗ: Το captcha δεν θα εμφανιστεί εάν δεν συμπληρώσετε τα κλειδιά στα πεδία."
 
 
64
 
65
- #: google-captcha.php:230
66
  msgid "Enter secret key"
67
  msgstr "Εισάγετε το μυστικό κλειδί"
68
 
69
- #: google-captcha.php:251
70
  msgid "Settings saved"
71
  msgstr "Οι ρυμθίσεις αποθηκεύτηκαν"
72
 
73
- #: google-captcha.php:257
74
  #, fuzzy
75
  msgid "All plugin settings were restored."
76
  msgstr "σελίδα ρυθμίσεων της επέκτασης"
77
 
78
- #: google-captcha.php:274
79
- #: google-captcha.php:727
80
- #: google-captcha.php:740
81
  msgid "Settings"
82
  msgstr "Ρυθμίσεις"
83
 
84
- #: google-captcha.php:275
85
- #: google-captcha.php:741
86
- msgid "FAQ"
87
- msgstr "Συχνές Ερωτήσεις"
88
-
89
- #: google-captcha.php:276
90
  msgid "Go PRO"
91
  msgstr ""
92
 
93
- #: google-captcha.php:286
94
- msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
95
- msgstr "Η έκδοση 2 του Google Captcha δεν θα λειτουργήσει σωστά, αφού η επιλογή \"allow_url_fopen\" είναι απενεργοποιημένη στις ρυθμίσεις PHP του παρόχου φιλοξενίας σας."
 
 
 
 
 
 
96
 
97
- #: google-captcha.php:287
98
- msgid "Read more."
99
- msgstr "Διαβάστε περισσότερα."
 
 
100
 
101
- #: google-captcha.php:294
102
- #, fuzzy
103
- msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your form:"
104
- msgstr "Αν θέλετε να προσθέσετε το Google Captcha στη δική σας φόρμα, απλά αντιγράψτε και επικολλήστε αυτό το σύντομο κωδικό στη δημοσίευση ή στη σελίδα σας:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
105
 
106
- #: google-captcha.php:296
107
  msgid "Authentication"
108
  msgstr "Πιστοποίηση"
109
 
110
- #: google-captcha.php:297
111
- #, php-format
112
- msgid "Before you are able to do something, you must to register %s here %s"
113
- msgstr "Πριν να είστε σε θέση να κάνετε κάτι, θα πρέπει να εγγραφείτε %s εδώ %s"
 
114
 
115
- #: google-captcha.php:298
116
  msgid "Enter site key and secret key, that you get after registration."
117
- msgstr "Πληκτρολογήστε το κλειδί της ιστοσελίδας και το μυστικό κλειδί, τα οποία παραλάβατε μετά την εγγραφή."
 
 
118
 
119
- #: google-captcha.php:310
120
  msgid "Options"
121
  msgstr "Επιλογές"
122
 
123
- #: google-captcha.php:313
124
  msgid "Enable reCAPTCHA for"
125
  msgstr ""
126
 
127
- #: google-captcha.php:321
128
- #: google-captcha.php:324
129
- #: google-captcha.php:328
130
- msgid "powered by"
131
- msgstr "υποστήριξη από"
 
 
 
 
 
 
 
 
 
 
 
 
132
 
133
- #: google-captcha.php:324
134
- #: google-captcha.php:392
135
  #, fuzzy
136
- msgid "Activate"
137
  msgstr "Активировать Contact form"
138
 
139
- #: google-captcha.php:328
140
- #: google-captcha.php:396
141
- msgid "Download"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  msgstr ""
143
 
144
- #: google-captcha.php:333
 
 
 
 
 
 
 
 
 
 
145
  #, fuzzy
146
  msgid "Hide reCAPTCHA in Comments form for"
147
  msgstr "για την έκδοση reCAPTCHA"
148
 
149
- #: google-captcha.php:341
150
  #, fuzzy
151
  msgid "reCAPTCHA version"
152
  msgstr "Έκδοση reCAPTCHA:"
153
 
154
- #: google-captcha.php:343
155
- #: google-captcha.php:344
156
  msgid "version"
157
  msgstr "έκδοση"
158
 
159
- #: google-captcha.php:349
160
- #: google-captcha.php:362
161
  #, fuzzy
162
  msgid "reCAPTCHA theme"
163
  msgstr "Έκδοση reCAPTCHA:"
164
 
165
- #: google-captcha.php:350
166
- #: google-captcha.php:363
167
- #: google-captcha.php:406
168
  #, fuzzy
169
  msgid "for version"
170
  msgstr "έκδοση"
171
 
172
- #: google-captcha.php:376
173
- msgid "Close"
174
- msgstr ""
175
-
176
- #: google-captcha.php:380
177
  #, fuzzy
178
  msgid "reCAPTCHA language"
179
  msgstr "Έκδοση reCAPTCHA:"
180
 
181
- #: google-captcha.php:399
182
  msgid "Use the current site language"
183
  msgstr ""
184
 
185
- #: google-captcha.php:399
186
  msgid "Using"
187
  msgstr ""
188
 
189
- #: google-captcha.php:405
190
  #, fuzzy
191
  msgid "reCAPTCHA size"
192
  msgstr "Έκδοση reCAPTCHA:"
193
 
194
- #: google-captcha.php:422
195
- msgid "Enable CAPTCHA"
196
- msgstr ""
197
-
198
- #: google-captcha.php:429
199
- #: google-captcha.php:433
200
- msgid "You should"
201
- msgstr ""
202
-
203
- #: google-captcha.php:429
204
- #, fuzzy
205
- msgid "activate"
206
- msgstr "Активировать Contact form"
207
-
208
- #: google-captcha.php:429
209
- #: google-captcha.php:433
210
- msgid "to use this functionality"
211
- msgstr ""
212
-
213
- #: google-captcha.php:433
214
- msgid "download"
215
- msgstr ""
216
-
217
- #: google-captcha.php:442
218
- msgid "Unlock premium options by upgrading to Pro version"
219
- msgstr ""
220
-
221
- #: google-captcha.php:445
222
- msgid "Learn More"
223
- msgstr ""
224
-
225
- #: google-captcha.php:452
226
  msgid "Save Changes"
227
  msgstr "Αποθήκευση αλλαγών"
228
 
229
- #: google-captcha.php:508
230
  msgid "To use Google Captcha you must get the keys from"
231
- msgstr "Για να χρησιμοποιήσετε το Google Captcha θα πρέπει να πάρετε τα κλειδιά από"
 
232
 
233
- #: google-captcha.php:509
234
  msgid "here"
235
  msgstr "εδώ"
236
 
237
- #: google-captcha.php:510
238
  msgid "and enter them on the"
239
  msgstr "και να τα εισάγετε στη"
240
 
241
- #: google-captcha.php:512
242
  msgid "plugin setting page"
243
  msgstr "σελίδα ρυθμίσεων της επέκτασης"
244
 
245
- #: google-captcha.php:527
246
- #: google-captcha.php:564
247
- msgid "Error: You have entered an incorrect CAPTCHA value."
248
- msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
249
-
250
- #: google-captcha.php:633
251
- #: google-captcha.php:645
252
- #: google-captcha.php:654
253
  msgid "Error"
254
  msgstr ""
255
 
256
- #: google-captcha.php:633
257
- #: google-captcha.php:645
258
- #: google-captcha.php:654
259
  #, fuzzy
260
- msgid "You have entered an incorrect CAPTCHA value."
261
  msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
262
 
263
- #: google-captcha.php:698
264
- #: google-captcha.php:705
265
- msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
266
- msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA. Κάντε κλικ στο κουμπί Πίσω στον περιηγητή σας, και δοκιμάστε ξανά."
 
 
 
 
267
 
268
- #: google-captcha.php:742
269
  msgid "Support"
270
  msgstr "Υποστήριξη"
271
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
272
  #~ msgid "Notice:"
273
  #~ msgstr "Σημείωση:"
274
 
@@ -313,9 +348,6 @@ msgstr "Υποστήριξη"
313
  #~ msgid "Back to the WordPress"
314
  #~ msgstr "Επιστροφή στο WordPress"
315
 
316
- #~ msgid "Plugins page"
317
- #~ msgstr "Σελίδα επεκτάσεων"
318
-
319
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
320
  #~ msgstr ""
321
  #~ "Αν σας αρέσει η επέκτασή μας, παρακαλούμε βαθμολογήστε το με 5 αστέρια "
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-10 10:02+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Dimitris Karantonis\n"
9
  "Language: uk\n"
10
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: google-captcha.php:34 google-captcha.php:362
 
20
  msgid "Google Captcha Settings"
21
  msgstr "Ρυθμίσεις Google Captcha"
22
 
23
+ #: google-captcha.php:166
24
+ #, fuzzy
25
+ msgid "Error: You have entered an incorrect reCAPTCHA value."
26
+ msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
27
+
28
+ #: google-captcha.php:270
29
  msgid "Normal"
30
  msgstr ""
31
 
32
+ #: google-captcha.php:271
33
  msgid "Compact"
34
  msgstr ""
35
 
36
+ #: google-captcha.php:277
37
  msgid "Site key"
38
  msgstr "Κλειδί ιστοσελίδας"
39
 
40
+ #: google-captcha.php:282
41
  msgid "Secret Key"
42
  msgstr "Μυστικό κλειδί"
43
 
44
+ #: google-captcha.php:290
45
  msgid "Login form"
46
  msgstr "Φόρμα εισόδου"
47
 
48
+ #: google-captcha.php:291
49
  msgid "Registration form"
50
  msgstr "Φόρμα εγγραφής"
51
 
52
+ #: google-captcha.php:292
53
  msgid "Reset password form"
54
  msgstr "Φόρμα ανάκτησης κωδικού πρόσβασης"
55
 
56
+ #: google-captcha.php:293
57
  msgid "Comments form"
58
  msgstr "Φόρμα για σχόλια"
59
 
60
+ #: google-captcha.php:312
61
  msgid "Enter site key"
62
  msgstr "Εισάγετε το κλειδί της ιστοσελίδας"
63
 
64
+ #: google-captcha.php:313 google-captcha.php:319
 
65
  msgid "WARNING: The captcha will not display while you don't fill key fields."
66
+ msgstr ""
67
+ "ΠΡΟΣΟΧΗ: Το captcha δεν θα εμφανιστεί εάν δεν συμπληρώσετε τα κλειδιά στα "
68
+ "πεδία."
69
 
70
+ #: google-captcha.php:318
71
  msgid "Enter secret key"
72
  msgstr "Εισάγετε το μυστικό κλειδί"
73
 
74
+ #: google-captcha.php:341
75
  msgid "Settings saved"
76
  msgstr "Οι ρυμθίσεις αποθηκεύτηκαν"
77
 
78
+ #: google-captcha.php:347
79
  #, fuzzy
80
  msgid "All plugin settings were restored."
81
  msgstr "σελίδα ρυθμίσεων της επέκτασης"
82
 
83
+ #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
 
 
84
  msgid "Settings"
85
  msgstr "Ρυθμίσεις"
86
 
87
+ #: google-captcha.php:365
 
 
 
 
 
88
  msgid "Go PRO"
89
  msgstr ""
90
 
91
+ #: google-captcha.php:370
92
+ #, fuzzy
93
+ msgid ""
94
+ "Google Captcha version 2 will not work correctly, since the option "
95
+ "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
96
+ msgstr ""
97
+ "Η έκδοση 2 του Google Captcha δεν θα λειτουργήσει σωστά, αφού η επιλογή "
98
+ "\"allow_url_fopen\" είναι απενεργοποιημένη στις ρυθμίσεις PHP του παρόχου "
99
+ "φιλοξενίας σας."
100
 
101
+ #: google-captcha.php:375
102
+ msgid ""
103
+ "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
104
+ "version 1 features."
105
+ msgstr ""
106
 
107
+ #: google-captcha.php:390
108
+ #, fuzzy, php-format
109
+ msgid ""
110
+ "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
111
+ "please use %s button"
112
+ msgstr ""
113
+ "Αν θέλετε να προσθέσετε το Google Captcha στη δική σας φόρμα, απλά "
114
+ "αντιγράψτε και επικολλήστε αυτό το σύντομο κωδικό στη δημοσίευση ή στη "
115
+ "σελίδα σας:"
116
+
117
+ #: google-captcha.php:396
118
+ #, php-format
119
+ msgid ""
120
+ "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
121
+ "on %s button in the content edit block using the Visual mode. If the button "
122
+ "isn't displayed or you would like to add the Google Captcha (reCAPTCHA) to "
123
+ "your own form , please use the shortcode %s"
124
+ msgstr ""
125
 
126
+ #: google-captcha.php:404
127
  msgid "Authentication"
128
  msgstr "Πιστοποίηση"
129
 
130
+ #: google-captcha.php:405
131
+ #, fuzzy, php-format
132
+ msgid "Before you are able to do something, you must to register %shere%s"
133
+ msgstr ""
134
+ "Πριν να είστε σε θέση να κάνετε κάτι, θα πρέπει να εγγραφείτε %s εδώ %s"
135
 
136
+ #: google-captcha.php:406
137
  msgid "Enter site key and secret key, that you get after registration."
138
+ msgstr ""
139
+ "Πληκτρολογήστε το κλειδί της ιστοσελίδας και το μυστικό κλειδί, τα οποία "
140
+ "παραλάβατε μετά την εγγραφή."
141
 
142
+ #: google-captcha.php:418
143
  msgid "Options"
144
  msgstr "Επιλογές"
145
 
146
+ #: google-captcha.php:421
147
  msgid "Enable reCAPTCHA for"
148
  msgstr ""
149
 
150
+ #: google-captcha.php:425
151
+ msgid "WordPress default"
152
+ msgstr ""
153
+
154
+ #: google-captcha.php:434
155
+ msgid "This option is available only for network or for main blog"
156
+ msgstr ""
157
+
158
+ #: google-captcha.php:442
159
+ #, fuzzy
160
+ msgid "Plugins"
161
+ msgstr "Σελίδα επεκτάσεων"
162
+
163
+ #: google-captcha.php:450 google-captcha.php:455
164
+ #, php-format
165
+ msgid "You should %s to use this functionality"
166
+ msgstr ""
167
 
168
+ #: google-captcha.php:451
 
169
  #, fuzzy
170
+ msgid "activate"
171
  msgstr "Активировать Contact form"
172
 
173
+ #: google-captcha.php:451
174
+ msgid "for network"
175
+ msgstr ""
176
+
177
+ #: google-captcha.php:456
178
+ msgid "download"
179
+ msgstr ""
180
+
181
+ #: google-captcha.php:468 google-captcha.php:545
182
+ msgid "Close"
183
+ msgstr ""
184
+
185
+ #: google-captcha.php:480 google-captcha.php:581
186
+ msgid "Unlock premium options by upgrading to Pro version"
187
+ msgstr ""
188
+
189
+ #: google-captcha.php:483 google-captcha.php:584
190
+ msgid "Learn More"
191
  msgstr ""
192
 
193
+ #: google-captcha.php:489
194
+ #, php-format
195
+ msgid ""
196
+ "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
197
+ msgstr ""
198
+
199
+ #: google-captcha.php:489 google-captcha.php:982
200
+ msgid "FAQ"
201
+ msgstr "Συχνές Ερωτήσεις"
202
+
203
+ #: google-captcha.php:494
204
  #, fuzzy
205
  msgid "Hide reCAPTCHA in Comments form for"
206
  msgstr "για την έκδοση reCAPTCHA"
207
 
208
+ #: google-captcha.php:506
209
  #, fuzzy
210
  msgid "reCAPTCHA version"
211
  msgstr "Έκδοση reCAPTCHA:"
212
 
213
+ #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
214
+ #: google-captcha.php:512
215
  msgid "version"
216
  msgstr "έκδοση"
217
 
218
+ #: google-captcha.php:518 google-captcha.php:531
 
219
  #, fuzzy
220
  msgid "reCAPTCHA theme"
221
  msgstr "Έκδοση reCAPTCHA:"
222
 
223
+ #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
 
 
224
  #, fuzzy
225
  msgid "for version"
226
  msgstr "έκδοση"
227
 
228
+ #: google-captcha.php:549
 
 
 
 
229
  #, fuzzy
230
  msgid "reCAPTCHA language"
231
  msgstr "Έκδοση reCAPTCHA:"
232
 
233
+ #: google-captcha.php:556
234
  msgid "Use the current site language"
235
  msgstr ""
236
 
237
+ #: google-captcha.php:556
238
  msgid "Using"
239
  msgstr ""
240
 
241
+ #: google-captcha.php:562
242
  #, fuzzy
243
  msgid "reCAPTCHA size"
244
  msgstr "Έκδοση reCAPTCHA:"
245
 
246
+ #: google-captcha.php:591
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  msgid "Save Changes"
248
  msgstr "Αποθήκευση αλλαγών"
249
 
250
+ #: google-captcha.php:650 google-captcha.php:998
251
  msgid "To use Google Captcha you must get the keys from"
252
+ msgstr ""
253
+ "Για να χρησιμοποιήσετε το Google Captcha θα πρέπει να πάρετε τα κλειδιά από"
254
 
255
+ #: google-captcha.php:651 google-captcha.php:999
256
  msgid "here"
257
  msgstr "εδώ"
258
 
259
+ #: google-captcha.php:652 google-captcha.php:1000
260
  msgid "and enter them on the"
261
  msgstr "και να τα εισάγετε στη"
262
 
263
+ #: google-captcha.php:654 google-captcha.php:1002
264
  msgid "plugin setting page"
265
  msgstr "σελίδα ρυθμίσεων της επέκτασης"
266
 
267
+ #: google-captcha.php:822 google-captcha.php:851
 
 
 
 
 
 
 
268
  msgid "Error"
269
  msgstr ""
270
 
271
+ #: google-captcha.php:822 google-captcha.php:881
 
 
272
  #, fuzzy
273
+ msgid "You have entered an incorrect reCAPTCHA value."
274
  msgstr "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA."
275
 
276
+ #: google-captcha.php:851
277
+ #, fuzzy
278
+ msgid ""
279
+ "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
280
+ "browser, and try again."
281
+ msgstr ""
282
+ "Σφάλμα: Έχετε εισάγει μια εσφαλμένη τιμή CAPTCHA. Κάντε κλικ στο κουμπί Πίσω "
283
+ "στον περιηγητή σας, και δοκιμάστε ξανά."
284
 
285
+ #: google-captcha.php:983
286
  msgid "Support"
287
  msgstr "Υποστήριξη"
288
 
289
+ #~ msgid ""
290
+ #~ "Google Captcha version 2 will not work correctly, since the option "
291
+ #~ "\"allow_url_fopen\" is disabled in the PHP settings of your hosting."
292
+ #~ msgstr ""
293
+ #~ "Η έκδοση 2 του Google Captcha δεν θα λειτουργήσει σωστά, αφού η επιλογή "
294
+ #~ "\"allow_url_fopen\" είναι απενεργοποιημένη στις ρυθμίσεις PHP του παρόχου "
295
+ #~ "φιλοξενίας σας."
296
+
297
+ #~ msgid "Read more."
298
+ #~ msgstr "Διαβάστε περισσότερα."
299
+
300
+ #~ msgid "powered by"
301
+ #~ msgstr "υποστήριξη από"
302
+
303
+ #, fuzzy
304
+ #~ msgid "Activate"
305
+ #~ msgstr "Активировать Contact form"
306
+
307
  #~ msgid "Notice:"
308
  #~ msgstr "Σημείωση:"
309
 
348
  #~ msgid "Back to the WordPress"
349
  #~ msgstr "Επιστροφή στο WordPress"
350
 
 
 
 
351
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
352
  #~ msgstr ""
353
  #~ "Αν σας αρέσει η επέκτασή μας, παρακαλούμε βαθμολογήστε το με 5 αστέρια "
languages/google-captcha-es_ES.mo CHANGED
Binary file
languages/google-captcha-es_ES.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: google-captcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-02 15:27+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Cloudzeroxyz <cloudzeroxyz@gmail.com>\n"
9
  "Language: es_419\n"
10
  "MIME-Version: 1.0\n"
@@ -12,261 +12,278 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:34
21
- #: google-captcha.php:272
22
  msgid "Google Captcha Settings"
23
  msgstr "Googe Captcha Ajustes"
24
 
25
- #: google-captcha.php:182
 
 
 
 
 
26
  msgid "Normal"
27
  msgstr ""
28
 
29
- #: google-captcha.php:183
30
  msgid "Compact"
31
  msgstr ""
32
 
33
- #: google-captcha.php:189
34
  msgid "Site key"
35
  msgstr ""
36
 
37
- #: google-captcha.php:194
38
  msgid "Secret Key"
39
  msgstr ""
40
 
41
- #: google-captcha.php:202
42
  msgid "Login form"
43
  msgstr "Formulario de acceso"
44
 
45
- #: google-captcha.php:203
46
  msgid "Registration form"
47
  msgstr "Formulario de registro"
48
 
49
- #: google-captcha.php:204
50
  msgid "Reset password form"
51
  msgstr "Formulario de restablecimiento de contraseña"
52
 
53
- #: google-captcha.php:205
54
  msgid "Comments form"
55
  msgstr "Formulario de comentarios"
56
 
57
- #: google-captcha.php:224
58
  #, fuzzy
59
  msgid "Enter site key"
60
  msgstr "Introduce la clave privada"
61
 
62
- #: google-captcha.php:225
63
- #: google-captcha.php:231
64
  msgid "WARNING: The captcha will not display while you don't fill key fields."
65
- msgstr "ADVERTENCIA: El Captcha no se mostrará mientras usted no llene los campos clave."
 
 
66
 
67
- #: google-captcha.php:230
68
  #, fuzzy
69
  msgid "Enter secret key"
70
  msgstr "Introduce la clave privada"
71
 
72
- #: google-captcha.php:251
73
  msgid "Settings saved"
74
  msgstr "Configuración guardada"
75
 
76
- #: google-captcha.php:257
77
  #, fuzzy
78
  msgid "All plugin settings were restored."
79
  msgstr "página de configuración de plugin"
80
 
81
- #: google-captcha.php:274
82
- #: google-captcha.php:727
83
- #: google-captcha.php:740
84
  msgid "Settings"
85
  msgstr "Ajustes"
86
 
87
- #: google-captcha.php:275
88
- #: google-captcha.php:741
89
- msgid "FAQ"
90
- msgstr "Preguntas Frecuentes"
91
-
92
- #: google-captcha.php:276
93
  msgid "Go PRO"
94
  msgstr ""
95
 
96
- #: google-captcha.php:286
97
- msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
 
 
98
  msgstr ""
99
 
100
- #: google-captcha.php:287
101
- msgid "Read more."
 
 
102
  msgstr ""
103
 
104
- #: google-captcha.php:294
105
- #, fuzzy
106
- msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your form:"
107
- msgstr "Si quisiera añadir el Google Captcha para su formulario, simplemente copia y pega este código corto en tu post o página:"
 
 
 
 
 
 
 
 
 
 
 
 
 
108
 
109
- #: google-captcha.php:296
110
  msgid "Authentication"
111
  msgstr "Autentificación"
112
 
113
- #: google-captcha.php:297
114
- #, php-format
115
- msgid "Before you are able to do something, you must to register %s here %s"
116
  msgstr "Antes de que pueda hacer algo, debe registrar %s aquí %s"
117
 
118
- #: google-captcha.php:298
119
  #, fuzzy
120
  msgid "Enter site key and secret key, that you get after registration."
121
- msgstr "Introduzca las claves pública y privada, que se obtiene después de Registrarse."
 
 
122
 
123
- #: google-captcha.php:310
124
  msgid "Options"
125
  msgstr "Opciones"
126
 
127
- #: google-captcha.php:313
128
  msgid "Enable reCAPTCHA for"
129
  msgstr ""
130
 
131
- #: google-captcha.php:321
132
- #: google-captcha.php:324
133
- #: google-captcha.php:328
134
- msgid "powered by"
135
- msgstr "impulsado por"
 
 
136
 
137
- #: google-captcha.php:324
138
- #: google-captcha.php:392
139
  #, fuzzy
140
- msgid "Activate"
141
- msgstr "Tema Activado"
142
 
143
- #: google-captcha.php:328
144
- #: google-captcha.php:396
145
- msgid "Download"
146
  msgstr ""
147
 
148
- #: google-captcha.php:333
149
- msgid "Hide reCAPTCHA in Comments form for"
150
- msgstr ""
 
151
 
152
- #: google-captcha.php:341
153
- msgid "reCAPTCHA version"
154
  msgstr ""
155
 
156
- #: google-captcha.php:343
157
- #: google-captcha.php:344
158
- msgid "version"
159
  msgstr ""
160
 
161
- #: google-captcha.php:349
162
- #: google-captcha.php:362
163
- msgid "reCAPTCHA theme"
164
  msgstr ""
165
 
166
- #: google-captcha.php:350
167
- #: google-captcha.php:363
168
- #: google-captcha.php:406
169
- msgid "for version"
170
  msgstr ""
171
 
172
- #: google-captcha.php:376
173
- msgid "Close"
174
  msgstr ""
175
 
176
- #: google-captcha.php:380
177
- msgid "reCAPTCHA language"
 
 
178
  msgstr ""
179
 
180
- #: google-captcha.php:399
181
- msgid "Use the current site language"
182
- msgstr ""
183
 
184
- #: google-captcha.php:399
185
- msgid "Using"
186
  msgstr ""
187
 
188
- #: google-captcha.php:405
189
- msgid "reCAPTCHA size"
190
  msgstr ""
191
 
192
- #: google-captcha.php:422
193
- msgid "Enable CAPTCHA"
 
194
  msgstr ""
195
 
196
- #: google-captcha.php:429
197
- #: google-captcha.php:433
198
- msgid "You should"
199
  msgstr ""
200
 
201
- #: google-captcha.php:429
202
- #, fuzzy
203
- msgid "activate"
204
- msgstr "Tema Activado"
205
 
206
- #: google-captcha.php:429
207
- #: google-captcha.php:433
208
- msgid "to use this functionality"
209
  msgstr ""
210
 
211
- #: google-captcha.php:433
212
- msgid "download"
213
  msgstr ""
214
 
215
- #: google-captcha.php:442
216
- msgid "Unlock premium options by upgrading to Pro version"
217
  msgstr ""
218
 
219
- #: google-captcha.php:445
220
- msgid "Learn More"
221
  msgstr ""
222
 
223
- #: google-captcha.php:452
224
  msgid "Save Changes"
225
  msgstr "Guardar Cambios"
226
 
227
- #: google-captcha.php:508
228
  msgid "To use Google Captcha you must get the keys from"
229
  msgstr "Para utilizar Google Captcha debe obtener las claves de"
230
 
231
- #: google-captcha.php:509
232
  msgid "here"
233
  msgstr "aquí"
234
 
235
- #: google-captcha.php:510
236
  msgid "and enter them on the"
237
  msgstr "e introducirlas en"
238
 
239
- #: google-captcha.php:512
240
  msgid "plugin setting page"
241
  msgstr "página de configuración de plugin"
242
 
243
- #: google-captcha.php:527
244
- #: google-captcha.php:564
245
- msgid "Error: You have entered an incorrect CAPTCHA value."
246
- msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
247
-
248
- #: google-captcha.php:633
249
- #: google-captcha.php:645
250
- #: google-captcha.php:654
251
  msgid "Error"
252
  msgstr ""
253
 
254
- #: google-captcha.php:633
255
- #: google-captcha.php:645
256
- #: google-captcha.php:654
257
  #, fuzzy
258
- msgid "You have entered an incorrect CAPTCHA value."
259
  msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
260
 
261
- #: google-captcha.php:698
262
- #: google-captcha.php:705
263
- msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
264
- msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA. Haga clic en el botón Regresar de su navegador y vuelva a intentarlo."
 
 
 
 
265
 
266
- #: google-captcha.php:742
267
  msgid "Support"
268
  msgstr "Soporte"
269
 
 
 
 
 
 
 
 
270
  #~ msgid "Contact form"
271
  #~ msgstr "Formulario de contacto"
272
 
@@ -301,9 +318,6 @@ msgstr "Soporte"
301
  #~ msgid "Back to the WordPress"
302
  #~ msgstr "Volver a WordPress"
303
 
304
- #~ msgid "Plugins page"
305
- #~ msgstr "Página de Plugins"
306
-
307
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
308
  #~ msgstr ""
309
  #~ "Si te gusta nuestro plugin, por favor, dale 5 estrellas en WordPress"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-10 10:02+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Cloudzeroxyz <cloudzeroxyz@gmail.com>\n"
9
  "Language: es_419\n"
10
  "MIME-Version: 1.0\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.5.4\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:362
 
21
  msgid "Google Captcha Settings"
22
  msgstr "Googe Captcha Ajustes"
23
 
24
+ #: google-captcha.php:166
25
+ #, fuzzy
26
+ msgid "Error: You have entered an incorrect reCAPTCHA value."
27
+ msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
28
+
29
+ #: google-captcha.php:270
30
  msgid "Normal"
31
  msgstr ""
32
 
33
+ #: google-captcha.php:271
34
  msgid "Compact"
35
  msgstr ""
36
 
37
+ #: google-captcha.php:277
38
  msgid "Site key"
39
  msgstr ""
40
 
41
+ #: google-captcha.php:282
42
  msgid "Secret Key"
43
  msgstr ""
44
 
45
+ #: google-captcha.php:290
46
  msgid "Login form"
47
  msgstr "Formulario de acceso"
48
 
49
+ #: google-captcha.php:291
50
  msgid "Registration form"
51
  msgstr "Formulario de registro"
52
 
53
+ #: google-captcha.php:292
54
  msgid "Reset password form"
55
  msgstr "Formulario de restablecimiento de contraseña"
56
 
57
+ #: google-captcha.php:293
58
  msgid "Comments form"
59
  msgstr "Formulario de comentarios"
60
 
61
+ #: google-captcha.php:312
62
  #, fuzzy
63
  msgid "Enter site key"
64
  msgstr "Introduce la clave privada"
65
 
66
+ #: google-captcha.php:313 google-captcha.php:319
 
67
  msgid "WARNING: The captcha will not display while you don't fill key fields."
68
+ msgstr ""
69
+ "ADVERTENCIA: El Captcha no se mostrará mientras usted no llene los campos "
70
+ "clave."
71
 
72
+ #: google-captcha.php:318
73
  #, fuzzy
74
  msgid "Enter secret key"
75
  msgstr "Introduce la clave privada"
76
 
77
+ #: google-captcha.php:341
78
  msgid "Settings saved"
79
  msgstr "Configuración guardada"
80
 
81
+ #: google-captcha.php:347
82
  #, fuzzy
83
  msgid "All plugin settings were restored."
84
  msgstr "página de configuración de plugin"
85
 
86
+ #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
 
 
87
  msgid "Settings"
88
  msgstr "Ajustes"
89
 
90
+ #: google-captcha.php:365
 
 
 
 
 
91
  msgid "Go PRO"
92
  msgstr ""
93
 
94
+ #: google-captcha.php:370
95
+ msgid ""
96
+ "Google Captcha version 2 will not work correctly, since the option "
97
+ "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
98
  msgstr ""
99
 
100
+ #: google-captcha.php:375
101
+ msgid ""
102
+ "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
103
+ "version 1 features."
104
  msgstr ""
105
 
106
+ #: google-captcha.php:390
107
+ #, fuzzy, php-format
108
+ msgid ""
109
+ "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
110
+ "please use %s button"
111
+ msgstr ""
112
+ "Si quisiera añadir el Google Captcha para su formulario, simplemente copia y "
113
+ "pega este código corto en tu post o página:"
114
+
115
+ #: google-captcha.php:396
116
+ #, php-format
117
+ msgid ""
118
+ "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
119
+ "on %s button in the content edit block using the Visual mode. If the button "
120
+ "isn't displayed or you would like to add the Google Captcha (reCAPTCHA) to "
121
+ "your own form , please use the shortcode %s"
122
+ msgstr ""
123
 
124
+ #: google-captcha.php:404
125
  msgid "Authentication"
126
  msgstr "Autentificación"
127
 
128
+ #: google-captcha.php:405
129
+ #, fuzzy, php-format
130
+ msgid "Before you are able to do something, you must to register %shere%s"
131
  msgstr "Antes de que pueda hacer algo, debe registrar %s aquí %s"
132
 
133
+ #: google-captcha.php:406
134
  #, fuzzy
135
  msgid "Enter site key and secret key, that you get after registration."
136
+ msgstr ""
137
+ "Introduzca las claves pública y privada, que se obtiene después de "
138
+ "Registrarse."
139
 
140
+ #: google-captcha.php:418
141
  msgid "Options"
142
  msgstr "Opciones"
143
 
144
+ #: google-captcha.php:421
145
  msgid "Enable reCAPTCHA for"
146
  msgstr ""
147
 
148
+ #: google-captcha.php:425
149
+ msgid "WordPress default"
150
+ msgstr ""
151
+
152
+ #: google-captcha.php:434
153
+ msgid "This option is available only for network or for main blog"
154
+ msgstr ""
155
 
156
+ #: google-captcha.php:442
 
157
  #, fuzzy
158
+ msgid "Plugins"
159
+ msgstr "Página de Plugins"
160
 
161
+ #: google-captcha.php:450 google-captcha.php:455
162
+ #, php-format
163
+ msgid "You should %s to use this functionality"
164
  msgstr ""
165
 
166
+ #: google-captcha.php:451
167
+ #, fuzzy
168
+ msgid "activate"
169
+ msgstr "Tema Activado"
170
 
171
+ #: google-captcha.php:451
172
+ msgid "for network"
173
  msgstr ""
174
 
175
+ #: google-captcha.php:456
176
+ msgid "download"
 
177
  msgstr ""
178
 
179
+ #: google-captcha.php:468 google-captcha.php:545
180
+ msgid "Close"
 
181
  msgstr ""
182
 
183
+ #: google-captcha.php:480 google-captcha.php:581
184
+ msgid "Unlock premium options by upgrading to Pro version"
 
 
185
  msgstr ""
186
 
187
+ #: google-captcha.php:483 google-captcha.php:584
188
+ msgid "Learn More"
189
  msgstr ""
190
 
191
+ #: google-captcha.php:489
192
+ #, php-format
193
+ msgid ""
194
+ "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
195
  msgstr ""
196
 
197
+ #: google-captcha.php:489 google-captcha.php:982
198
+ msgid "FAQ"
199
+ msgstr "Preguntas Frecuentes"
200
 
201
+ #: google-captcha.php:494
202
+ msgid "Hide reCAPTCHA in Comments form for"
203
  msgstr ""
204
 
205
+ #: google-captcha.php:506
206
+ msgid "reCAPTCHA version"
207
  msgstr ""
208
 
209
+ #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
210
+ #: google-captcha.php:512
211
+ msgid "version"
212
  msgstr ""
213
 
214
+ #: google-captcha.php:518 google-captcha.php:531
215
+ msgid "reCAPTCHA theme"
 
216
  msgstr ""
217
 
218
+ #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
219
+ msgid "for version"
220
+ msgstr ""
 
221
 
222
+ #: google-captcha.php:549
223
+ msgid "reCAPTCHA language"
 
224
  msgstr ""
225
 
226
+ #: google-captcha.php:556
227
+ msgid "Use the current site language"
228
  msgstr ""
229
 
230
+ #: google-captcha.php:556
231
+ msgid "Using"
232
  msgstr ""
233
 
234
+ #: google-captcha.php:562
235
+ msgid "reCAPTCHA size"
236
  msgstr ""
237
 
238
+ #: google-captcha.php:591
239
  msgid "Save Changes"
240
  msgstr "Guardar Cambios"
241
 
242
+ #: google-captcha.php:650 google-captcha.php:998
243
  msgid "To use Google Captcha you must get the keys from"
244
  msgstr "Para utilizar Google Captcha debe obtener las claves de"
245
 
246
+ #: google-captcha.php:651 google-captcha.php:999
247
  msgid "here"
248
  msgstr "aquí"
249
 
250
+ #: google-captcha.php:652 google-captcha.php:1000
251
  msgid "and enter them on the"
252
  msgstr "e introducirlas en"
253
 
254
+ #: google-captcha.php:654 google-captcha.php:1002
255
  msgid "plugin setting page"
256
  msgstr "página de configuración de plugin"
257
 
258
+ #: google-captcha.php:822 google-captcha.php:851
 
 
 
 
 
 
 
259
  msgid "Error"
260
  msgstr ""
261
 
262
+ #: google-captcha.php:822 google-captcha.php:881
 
 
263
  #, fuzzy
264
+ msgid "You have entered an incorrect reCAPTCHA value."
265
  msgstr "Error: Ha introducido un valor incorrecto de CAPTCHA."
266
 
267
+ #: google-captcha.php:851
268
+ #, fuzzy
269
+ msgid ""
270
+ "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
271
+ "browser, and try again."
272
+ msgstr ""
273
+ "Error: Ha introducido un valor incorrecto de CAPTCHA. Haga clic en el botón "
274
+ "Regresar de su navegador y vuelva a intentarlo."
275
 
276
+ #: google-captcha.php:983
277
  msgid "Support"
278
  msgstr "Soporte"
279
 
280
+ #~ msgid "powered by"
281
+ #~ msgstr "impulsado por"
282
+
283
+ #, fuzzy
284
+ #~ msgid "Activate"
285
+ #~ msgstr "Tema Activado"
286
+
287
  #~ msgid "Contact form"
288
  #~ msgstr "Formulario de contacto"
289
 
318
  #~ msgid "Back to the WordPress"
319
  #~ msgstr "Volver a WordPress"
320
 
 
 
 
321
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
322
  #~ msgstr ""
323
  #~ "Si te gusta nuestro plugin, por favor, dale 5 estrellas en WordPress"
languages/google-captcha-fa_IR.mo ADDED
Binary file
languages/google-captcha-fa_IR.po ADDED
@@ -0,0 +1,331 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Google Сaptcha\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-10 10:02+0300\n"
6
+ "PO-Revision-Date: 2015-12-10 10:02+0300\n"
7
+ "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
+ "Language-Team: Amirreza Nasiri <nasiri.amirreza.96@gmail.com>\n"
9
+ "Language: fa_IR\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && n"
14
+ "%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Loco-Source-Locale: fr_FR\n"
17
+ "X-Poedit-KeywordsList: __;_e\n"
18
+ "X-Poedit-Basepath: ..\n"
19
+ "X-Generator: Poedit 1.5.4\n"
20
+ "X-Loco-Parser: loco_parse_po\n"
21
+ "X-Loco-Target-Locale: uk_UA\n"
22
+ "X-Poedit-SearchPath-0: .\n"
23
+
24
+ #: google-captcha.php:34 google-captcha.php:362
25
+ msgid "Google Captcha Settings"
26
+ msgstr "تنظیمات Google Captcha"
27
+
28
+ #: google-captcha.php:166
29
+ #, fuzzy
30
+ msgid "Error: You have entered an incorrect reCAPTCHA value."
31
+ msgstr "خطا: شما مقدار CAPTCHA اشتباهی را وارد کرده اید."
32
+
33
+ #: google-captcha.php:270
34
+ msgid "Normal"
35
+ msgstr "عادی"
36
+
37
+ #: google-captcha.php:271
38
+ msgid "Compact"
39
+ msgstr "فشرده"
40
+
41
+ #: google-captcha.php:277
42
+ msgid "Site key"
43
+ msgstr "کلید سایت (site key در تنظیمات گوگل)"
44
+
45
+ #: google-captcha.php:282
46
+ msgid "Secret Key"
47
+ msgstr "کلید سری (secret key در تنظیمات گوگل)"
48
+
49
+ #: google-captcha.php:290
50
+ msgid "Login form"
51
+ msgstr "فرم ورود"
52
+
53
+ #: google-captcha.php:291
54
+ msgid "Registration form"
55
+ msgstr "فرم ثبت نام"
56
+
57
+ #: google-captcha.php:292
58
+ msgid "Reset password form"
59
+ msgstr "فرم فراموش رمز عبور"
60
+
61
+ #: google-captcha.php:293
62
+ msgid "Comments form"
63
+ msgstr "فرم دیدگاه ها"
64
+
65
+ #: google-captcha.php:312
66
+ msgid "Enter site key"
67
+ msgstr "کلید سایت را وارد کنید"
68
+
69
+ #: google-captcha.php:313 google-captcha.php:319
70
+ msgid "WARNING: The captcha will not display while you don't fill key fields."
71
+ msgstr ""
72
+ "تذکر: Captcha تا زمانی که فیلد مربوط به کلیدها را وارد نکنید، نشان داده "
73
+ "نخواهد شد."
74
+
75
+ #: google-captcha.php:318
76
+ msgid "Enter secret key"
77
+ msgstr "کلید سری را وارد کنید"
78
+
79
+ #: google-captcha.php:341
80
+ msgid "Settings saved"
81
+ msgstr "تنظیمات ذخیره شدند"
82
+
83
+ #: google-captcha.php:347
84
+ msgid "All plugin settings were restored."
85
+ msgstr "تمام تنظیمات پلاگین بازگردانده شدند."
86
+
87
+ #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
88
+ msgid "Settings"
89
+ msgstr "تنظیمات"
90
+
91
+ #: google-captcha.php:365
92
+ msgid "Go PRO"
93
+ msgstr "ارتقاء به نسخه حرفه ای"
94
+
95
+ #: google-captcha.php:370
96
+ #, fuzzy
97
+ msgid ""
98
+ "Google Captcha version 2 will not work correctly, since the option "
99
+ "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
100
+ msgstr ""
101
+ "Google Captcha نسخه 2 به درستی کار نخواهد کرد چون گزینه \"allow_url_fopen\" "
102
+ "در تنظیمات PHP هاست شما غیرفعال شده است."
103
+
104
+ #: google-captcha.php:375
105
+ msgid ""
106
+ "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
107
+ "version 1 features."
108
+ msgstr ""
109
+
110
+ #: google-captcha.php:390
111
+ #, fuzzy, php-format
112
+ msgid ""
113
+ "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
114
+ "please use %s button"
115
+ msgstr ""
116
+ "اگر می خواهید که Google Captcha را به فرم دلخواه خود اضافه کنید، کافیست شورت "
117
+ "کد زیر را کپی کرده و درون فرم مورد نظر بچسبانید:"
118
+
119
+ #: google-captcha.php:396
120
+ #, php-format
121
+ msgid ""
122
+ "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
123
+ "on %s button in the content edit block using the Visual mode. If the button "
124
+ "isn't displayed or you would like to add the Google Captcha (reCAPTCHA) to "
125
+ "your own form , please use the shortcode %s"
126
+ msgstr ""
127
+
128
+ #: google-captcha.php:404
129
+ msgid "Authentication"
130
+ msgstr "تایید هویت"
131
+
132
+ #: google-captcha.php:405
133
+ #, fuzzy, php-format
134
+ msgid "Before you are able to do something, you must to register %shere%s"
135
+ msgstr "قبل از این که قادر به انجام کاری باشید، باید ثبت نام کنید %s در %s"
136
+
137
+ #: google-captcha.php:406
138
+ msgid "Enter site key and secret key, that you get after registration."
139
+ msgstr "کلید سایت و کلید سری را که بعد از ثبت نام دریافت کردید، وارد کنید."
140
+
141
+ #: google-captcha.php:418
142
+ msgid "Options"
143
+ msgstr "تنظیمات"
144
+
145
+ #: google-captcha.php:421
146
+ msgid "Enable reCAPTCHA for"
147
+ msgstr "فعال کردن reCAPTCHA برای"
148
+
149
+ #: google-captcha.php:425
150
+ msgid "WordPress default"
151
+ msgstr ""
152
+
153
+ #: google-captcha.php:434
154
+ msgid "This option is available only for network or for main blog"
155
+ msgstr ""
156
+
157
+ #: google-captcha.php:442
158
+ msgid "Plugins"
159
+ msgstr ""
160
+
161
+ #: google-captcha.php:450 google-captcha.php:455
162
+ #, fuzzy, php-format
163
+ msgid "You should %s to use this functionality"
164
+ msgstr "تا از این قابلیت استفاده کنید"
165
+
166
+ #: google-captcha.php:451
167
+ msgid "activate"
168
+ msgstr "فعال کنید"
169
+
170
+ #: google-captcha.php:451
171
+ msgid "for network"
172
+ msgstr ""
173
+
174
+ #: google-captcha.php:456
175
+ msgid "download"
176
+ msgstr "دانلود"
177
+
178
+ #: google-captcha.php:468 google-captcha.php:545
179
+ msgid "Close"
180
+ msgstr "بستن"
181
+
182
+ #: google-captcha.php:480 google-captcha.php:581
183
+ msgid "Unlock premium options by upgrading to Pro version"
184
+ msgstr "گزینه های اضافی را با آپگرید کردن به نسخه حرفه ای باز کنید"
185
+
186
+ #: google-captcha.php:483 google-captcha.php:584
187
+ msgid "Learn More"
188
+ msgstr "بیشتر بدانید"
189
+
190
+ #: google-captcha.php:489
191
+ #, php-format
192
+ msgid ""
193
+ "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
194
+ msgstr ""
195
+
196
+ #: google-captcha.php:489 google-captcha.php:982
197
+ msgid "FAQ"
198
+ msgstr "سوالات متداول"
199
+
200
+ #: google-captcha.php:494
201
+ msgid "Hide reCAPTCHA in Comments form for"
202
+ msgstr "reCAPTCHA را در فرم دیدگاه ها مخفی کن در"
203
+
204
+ #: google-captcha.php:506
205
+ msgid "reCAPTCHA version"
206
+ msgstr "نسخه reCAPTCHA"
207
+
208
+ #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
209
+ #: google-captcha.php:512
210
+ msgid "version"
211
+ msgstr "نسخه"
212
+
213
+ #: google-captcha.php:518 google-captcha.php:531
214
+ msgid "reCAPTCHA theme"
215
+ msgstr "پوسته reCAPTCHA"
216
+
217
+ #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
218
+ msgid "for version"
219
+ msgstr "برای نسخه"
220
+
221
+ #: google-captcha.php:549
222
+ msgid "reCAPTCHA language"
223
+ msgstr "زبان reCAPTCHA "
224
+
225
+ #: google-captcha.php:556
226
+ msgid "Use the current site language"
227
+ msgstr "از زبان کنونی سایت استفاده کن"
228
+
229
+ #: google-captcha.php:556
230
+ msgid "Using"
231
+ msgstr "استفاده کردن"
232
+
233
+ #: google-captcha.php:562
234
+ msgid "reCAPTCHA size"
235
+ msgstr "اندازه reCAPTCHA"
236
+
237
+ #: google-captcha.php:591
238
+ msgid "Save Changes"
239
+ msgstr "ذخیره کردن تنظیمات"
240
+
241
+ #: google-captcha.php:650 google-captcha.php:998
242
+ msgid "To use Google Captcha you must get the keys from"
243
+ msgstr "برای استفاده از Google Captcha باید کلید ها را تهیه کنید از"
244
+
245
+ #: google-captcha.php:651 google-captcha.php:999
246
+ msgid "here"
247
+ msgstr "اینجا"
248
+
249
+ #: google-captcha.php:652 google-captcha.php:1000
250
+ msgid "and enter them on the"
251
+ msgstr "و آنها را وارد کنید در"
252
+
253
+ #: google-captcha.php:654 google-captcha.php:1002
254
+ msgid "plugin setting page"
255
+ msgstr "صفحه تنظیمات افزونه"
256
+
257
+ #: google-captcha.php:822 google-captcha.php:851
258
+ msgid "Error"
259
+ msgstr "خطا"
260
+
261
+ #: google-captcha.php:822 google-captcha.php:881
262
+ #, fuzzy
263
+ msgid "You have entered an incorrect reCAPTCHA value."
264
+ msgstr "شما مقدار CAPTCHA اشتباهی را وارد کرده اید."
265
+
266
+ #: google-captcha.php:851
267
+ #, fuzzy
268
+ msgid ""
269
+ "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
270
+ "browser, and try again."
271
+ msgstr ""
272
+ "خطا: شما مقدار CAPTCHA اشتباهی را وارد کرده اید. به صفحه قبلی بازگشته و "
273
+ "دوباره تلاش کنید."
274
+
275
+ #: google-captcha.php:983
276
+ msgid "Support"
277
+ msgstr "پشتیبانی"
278
+
279
+ #~ msgid ""
280
+ #~ "Google Captcha version 2 will not work correctly, since the option "
281
+ #~ "\"allow_url_fopen\" is disabled in the PHP settings of your hosting."
282
+ #~ msgstr ""
283
+ #~ "Google Captcha نسخه 2 به درستی کار نخواهد کرد چون گزینه \"allow_url_fopen"
284
+ #~ "\" در تنظیمات PHP هاست شما غیرفعال شده است."
285
+
286
+ #~ msgid "Read more."
287
+ #~ msgstr "بیشتر بخوانید."
288
+
289
+ #~ msgid "powered by"
290
+ #~ msgstr "قدرت گرفته از"
291
+
292
+ #~ msgid "Activate"
293
+ #~ msgstr "فعال"
294
+
295
+ #~ msgid "Download"
296
+ #~ msgstr "دانلود"
297
+
298
+ #~ msgid "Enable CAPTCHA"
299
+ #~ msgstr "فعال کردن CAPTCHA"
300
+
301
+ #~ msgid "You should"
302
+ #~ msgstr "شما باید"
303
+
304
+ #~ msgid "Notice:"
305
+ #~ msgstr "ملاحظة :"
306
+
307
+ #~ msgid ""
308
+ #~ "The plugin's settings have been changed. In order to save them please "
309
+ #~ "don't forget to click the 'Save Changes' button."
310
+ #~ msgstr "تم حفظ إعدادات الإضافة بنجاح."
311
+
312
+ #~ msgid "Contact form"
313
+ #~ msgstr "فورم الإتصال"
314
+
315
+ #~ msgid "Activate contact form"
316
+ #~ msgstr "تفعيل فورم الإتصال"
317
+
318
+ #~ msgid "Download contact form"
319
+ #~ msgstr "تحميل فورم الإتصال"
320
+
321
+ #~ msgid "Enable Google Captcha for:"
322
+ #~ msgstr "تفعيل Google Captcha في كل من :"
323
+
324
+ #~ msgid "Hide captcha for:"
325
+ #~ msgstr "تعطيل Google Captcha ل :"
326
+
327
+ #~ msgid "Theme:"
328
+ #~ msgstr "الإستايل :"
329
+
330
+ #~ msgid "Google Captcha"
331
+ #~ msgstr "Google Captcha"
languages/google-captcha-fr_FR.mo ADDED
Binary file
languages/google-captcha-fr_FR.po ADDED
@@ -0,0 +1,378 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Google Сaptcha\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-10 10:02+0300\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
+ "Language-Team: Denis Bodorr <lefinnois@lefinnois.net>\n"
9
+ "Language: fr_FR\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.5.4\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:362
21
+ msgid "Google Captcha Settings"
22
+ msgstr "Configuration Google Captcha"
23
+
24
+ #: google-captcha.php:166
25
+ #, fuzzy
26
+ msgid "Error: You have entered an incorrect reCAPTCHA value."
27
+ msgstr "ERREUR: Vous avez saisi une valeur de CAPTCHA incorrecte"
28
+
29
+ #: google-captcha.php:270
30
+ msgid "Normal"
31
+ msgstr ""
32
+
33
+ #: google-captcha.php:271
34
+ msgid "Compact"
35
+ msgstr ""
36
+
37
+ #: google-captcha.php:277
38
+ msgid "Site key"
39
+ msgstr "Clé du site"
40
+
41
+ #: google-captcha.php:282
42
+ msgid "Secret Key"
43
+ msgstr "Clé secrète"
44
+
45
+ #: google-captcha.php:290
46
+ msgid "Login form"
47
+ msgstr "Formulaire de connexion"
48
+
49
+ #: google-captcha.php:291
50
+ msgid "Registration form"
51
+ msgstr "Formulaire d'enregistrement"
52
+
53
+ #: google-captcha.php:292
54
+ msgid "Reset password form"
55
+ msgstr "Formulaire de réinitialisation de mot de passe"
56
+
57
+ #: google-captcha.php:293
58
+ msgid "Comments form"
59
+ msgstr "Formulaire de commentaire"
60
+
61
+ #: google-captcha.php:312
62
+ msgid "Enter site key"
63
+ msgstr "Saisissez la clé du site"
64
+
65
+ #: google-captcha.php:313 google-captcha.php:319
66
+ msgid "WARNING: The captcha will not display while you don't fill key fields."
67
+ msgstr ""
68
+ "ATTENTION: Le captcha ne s'affichera pas tant que vous n'avez pas spécifié "
69
+ "les clés"
70
+
71
+ #: google-captcha.php:318
72
+ msgid "Enter secret key"
73
+ msgstr "Saisissez la clé secrète"
74
+
75
+ #: google-captcha.php:341
76
+ msgid "Settings saved"
77
+ msgstr "Configuration enregistrée"
78
+
79
+ #: google-captcha.php:347
80
+ #, fuzzy
81
+ msgid "All plugin settings were restored."
82
+ msgstr "Tous les paramètre sont restaurés"
83
+
84
+ #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
85
+ msgid "Settings"
86
+ msgstr "Configuration"
87
+
88
+ #: google-captcha.php:365
89
+ msgid "Go PRO"
90
+ msgstr "Version PRO"
91
+
92
+ #: google-captcha.php:370
93
+ #, fuzzy
94
+ msgid ""
95
+ "Google Captcha version 2 will not work correctly, since the option "
96
+ "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
97
+ msgstr ""
98
+ "Google Captcha version 2 ne fonctionnera pas correctement, car l'option "
99
+ "\"allow_url_fopen\" est désactivée dans la configuration PHP de votre "
100
+ "hébergement"
101
+
102
+ #: google-captcha.php:375
103
+ msgid ""
104
+ "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
105
+ "version 1 features."
106
+ msgstr ""
107
+
108
+ #: google-captcha.php:390
109
+ #, fuzzy, php-format
110
+ msgid ""
111
+ "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
112
+ "please use %s button"
113
+ msgstr ""
114
+ "Si vous voulez ajouter Google Captcha à vos propres formulaires, copiez/"
115
+ "collez simplement ce code:"
116
+
117
+ #: google-captcha.php:396
118
+ #, php-format
119
+ msgid ""
120
+ "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
121
+ "on %s button in the content edit block using the Visual mode. If the button "
122
+ "isn't displayed or you would like to add the Google Captcha (reCAPTCHA) to "
123
+ "your own form , please use the shortcode %s"
124
+ msgstr ""
125
+
126
+ #: google-captcha.php:404
127
+ msgid "Authentication"
128
+ msgstr "Authentification"
129
+
130
+ #: google-captcha.php:405
131
+ #, fuzzy, php-format
132
+ msgid "Before you are able to do something, you must to register %shere%s"
133
+ msgstr ""
134
+ "Avant de pouvoir faire quoi que ce soit, vous devez vous enregistrer %s ici "
135
+ "%s"
136
+
137
+ #: google-captcha.php:406
138
+ msgid "Enter site key and secret key, that you get after registration."
139
+ msgstr ""
140
+ "Saisissez la clé du site et la clé secrète que vous avez obtenues après "
141
+ "enregistrement"
142
+
143
+ #: google-captcha.php:418
144
+ msgid "Options"
145
+ msgstr "Options"
146
+
147
+ #: google-captcha.php:421
148
+ msgid "Enable reCAPTCHA for"
149
+ msgstr "Activer reCAPTCHA pour"
150
+
151
+ #: google-captcha.php:425
152
+ msgid "WordPress default"
153
+ msgstr ""
154
+
155
+ #: google-captcha.php:434
156
+ msgid "This option is available only for network or for main blog"
157
+ msgstr ""
158
+
159
+ #: google-captcha.php:442
160
+ #, fuzzy
161
+ msgid "Plugins"
162
+ msgstr "Plugins Seite"
163
+
164
+ #: google-captcha.php:450 google-captcha.php:455
165
+ #, fuzzy, php-format
166
+ msgid "You should %s to use this functionality"
167
+ msgstr "pour utiliser cette fonctionnalité"
168
+
169
+ #: google-captcha.php:451
170
+ #, fuzzy
171
+ msgid "activate"
172
+ msgstr "activer"
173
+
174
+ #: google-captcha.php:451
175
+ msgid "for network"
176
+ msgstr ""
177
+
178
+ #: google-captcha.php:456
179
+ msgid "download"
180
+ msgstr "télécharger"
181
+
182
+ #: google-captcha.php:468 google-captcha.php:545
183
+ msgid "Close"
184
+ msgstr "Fermer"
185
+
186
+ #: google-captcha.php:480 google-captcha.php:581
187
+ msgid "Unlock premium options by upgrading to Pro version"
188
+ msgstr "Débloquez les options premium en mettant à jour vers la version Pro"
189
+
190
+ #: google-captcha.php:483 google-captcha.php:584
191
+ msgid "Learn More"
192
+ msgstr "En savoir plus"
193
+
194
+ #: google-captcha.php:489
195
+ #, php-format
196
+ msgid ""
197
+ "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
198
+ msgstr ""
199
+
200
+ #: google-captcha.php:489 google-captcha.php:982
201
+ msgid "FAQ"
202
+ msgstr "FAQ"
203
+
204
+ #: google-captcha.php:494
205
+ msgid "Hide reCAPTCHA in Comments form for"
206
+ msgstr "Cacher reCAPTCHA dans le formulaire de commentaires pour"
207
+
208
+ #: google-captcha.php:506
209
+ msgid "reCAPTCHA version"
210
+ msgstr "Version reCAPTCHA"
211
+
212
+ #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
213
+ #: google-captcha.php:512
214
+ msgid "version"
215
+ msgstr "Version"
216
+
217
+ #: google-captcha.php:518 google-captcha.php:531
218
+ msgid "reCAPTCHA theme"
219
+ msgstr "Thème reCAPTCHA"
220
+
221
+ #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
222
+ msgid "for version"
223
+ msgstr "pour la version"
224
+
225
+ #: google-captcha.php:549
226
+ msgid "reCAPTCHA language"
227
+ msgstr "Langue reCAPTCHA"
228
+
229
+ #: google-captcha.php:556
230
+ msgid "Use the current site language"
231
+ msgstr "Utiliser le langage courant du site"
232
+
233
+ #: google-captcha.php:556
234
+ msgid "Using"
235
+ msgstr "Utilisant"
236
+
237
+ #: google-captcha.php:562
238
+ msgid "reCAPTCHA size"
239
+ msgstr "Taille ReCAPTCHA"
240
+
241
+ #: google-captcha.php:591
242
+ msgid "Save Changes"
243
+ msgstr "Enregistrer les modifications"
244
+
245
+ #: google-captcha.php:650 google-captcha.php:998
246
+ msgid "To use Google Captcha you must get the keys from"
247
+ msgstr "Pour utiliser Google Captcha vous devez obtenir les clés depuis"
248
+
249
+ #: google-captcha.php:651 google-captcha.php:999
250
+ msgid "here"
251
+ msgstr "ici"
252
+
253
+ #: google-captcha.php:652 google-captcha.php:1000
254
+ msgid "and enter them on the"
255
+ msgstr "et les saisir sur la"
256
+
257
+ #: google-captcha.php:654 google-captcha.php:1002
258
+ msgid "plugin setting page"
259
+ msgstr "page de configuration de l'extension"
260
+
261
+ #: google-captcha.php:822 google-captcha.php:851
262
+ msgid "Error"
263
+ msgstr "Erreur"
264
+
265
+ #: google-captcha.php:822 google-captcha.php:881
266
+ #, fuzzy
267
+ msgid "You have entered an incorrect reCAPTCHA value."
268
+ msgstr "Vous avez saisi une valeur de CAPTCHA incorrecte"
269
+
270
+ #: google-captcha.php:851
271
+ #, fuzzy
272
+ msgid ""
273
+ "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
274
+ "browser, and try again."
275
+ msgstr ""
276
+ "Erreur: Vous avez saisi une valeur de CAPTCHA incorrecte. Cliquez sur le "
277
+ "bouton \"Revenir en arrière\" de votre navigateur et essayez à nouveau"
278
+
279
+ #: google-captcha.php:983
280
+ msgid "Support"
281
+ msgstr "Support"
282
+
283
+ #~ msgid ""
284
+ #~ "Google Captcha version 2 will not work correctly, since the option "
285
+ #~ "\"allow_url_fopen\" is disabled in the PHP settings of your hosting."
286
+ #~ msgstr ""
287
+ #~ "Google Captcha version 2 ne fonctionnera pas correctement, car l'option "
288
+ #~ "\"allow_url_fopen\" est désactivée dans la configuration PHP de votre "
289
+ #~ "hébergement"
290
+
291
+ #~ msgid "Read more."
292
+ #~ msgstr "Lire plus"
293
+
294
+ #~ msgid "powered by"
295
+ #~ msgstr "par"
296
+
297
+ #~ msgid "Activate"
298
+ #~ msgstr "Activer"
299
+
300
+ #~ msgid "Download"
301
+ #~ msgstr "Télécharger"
302
+
303
+ #~ msgid "Enable CAPTCHA"
304
+ #~ msgstr "Activer CAPTCHA"
305
+
306
+ #~ msgid "You should"
307
+ #~ msgstr "Vous devez"
308
+
309
+ #~ msgid "Notice:"
310
+ #~ msgstr "Hinweis:"
311
+
312
+ #~ msgid ""
313
+ #~ "The plugin's settings have been changed. In order to save them please "
314
+ #~ "don't forget to click the 'Save Changes' button."
315
+ #~ msgstr ""
316
+ #~ "Das Plugin-Einstellungen wurden geändert. Vergessen Sie nicht auf die "
317
+ #~ "Schaltfläche 'Änderungen speichern' zu klicken."
318
+
319
+ #~ msgid "Contact form"
320
+ #~ msgstr "Kontaktformular"
321
+
322
+ #~ msgid "Activate contact form"
323
+ #~ msgstr "Kontaktformular aktivieren"
324
+
325
+ #~ msgid "Download contact form"
326
+ #~ msgstr "Kontaktformular herunterladen"
327
+
328
+ #~ msgid "Enable Google Captcha for:"
329
+ #~ msgstr "Aktivieren Sie Google Captcha für:"
330
+
331
+ #~ msgid "Hide captcha for:"
332
+ #~ msgstr "CAPTCHA verbergen bei:"
333
+
334
+ #~ msgid "Theme:"
335
+ #~ msgstr "Theme:"
336
+
337
+ #~ msgid "Google Captcha"
338
+ #~ msgstr "Google Captcha"
339
+
340
+ #~ msgid "requires"
341
+ #~ msgstr "erfordert"
342
+
343
+ #~ msgid ""
344
+ #~ "or higher, that is why it has been deactivated! Please upgrade WordPress "
345
+ #~ "and try again."
346
+ #~ msgstr ""
347
+ #~ "oder höher, deshalb ist es deaktiviert! Bitte aktualisieren Sie WordPress "
348
+ #~ "und versuchen Sie es erneut."
349
+
350
+ #~ msgid "Back to the WordPress"
351
+ #~ msgstr "Zurück zu Wordpress"
352
+
353
+ #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
354
+ #~ msgstr ""
355
+ #~ "Bewerten Sie das Plugin mit 5 Sternen auf WordPress, wenn Sie es mögen."
356
+
357
+ #~ msgid "Rate the plugin"
358
+ #~ msgstr "Plugin bewerten"
359
+
360
+ #~ msgid "If there is something wrong about it, please contact us"
361
+ #~ msgstr "Wenn etwas nicht passt, kontieren Sie uns bitte"
362
+
363
+ #~ msgid "Public Key"
364
+ #~ msgstr "Öffentlicher Schlüssel"
365
+
366
+ #~ msgid "Private Key"
367
+ #~ msgstr "Privater Schlüssel"
368
+
369
+ #~ msgid "Enter public key"
370
+ #~ msgstr "Öffentlichen Schlüssel eingeben"
371
+
372
+ #~ msgid "Themes"
373
+ #~ msgstr "Themes"
374
+
375
+ #~ msgid "WARNING: The captcha will not display while you not fill key fields."
376
+ #~ msgstr ""
377
+ #~ "Warnung: es werden keine CAPTCHA Felder angezeigt, solange die Schlüssel "
378
+ #~ "nicht eingegeben sind."
languages/google-captcha-hi.mo CHANGED
Binary file
languages/google-captcha-hi.po CHANGED
@@ -1,11 +1,12 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: google-captcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-02 15:27+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
- "Language-Team: Development Logics Solutions Pvt Ltd <contact@developmentlogics.com>\n"
 
9
  "Language: hi\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -17,257 +18,284 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:34
21
- #: google-captcha.php:272
22
  msgid "Google Captcha Settings"
23
  msgstr "गूगल कॅप्चा सेटिंग्स"
24
 
25
- #: google-captcha.php:182
 
 
 
 
 
26
  msgid "Normal"
27
  msgstr ""
28
 
29
- #: google-captcha.php:183
30
  msgid "Compact"
31
  msgstr ""
32
 
33
- #: google-captcha.php:189
34
  msgid "Site key"
35
  msgstr "साइट कुंजी "
36
 
37
- #: google-captcha.php:194
38
  msgid "Secret Key"
39
  msgstr "गुप्त कुंजी"
40
 
41
- #: google-captcha.php:202
42
  msgid "Login form"
43
  msgstr "प्रवेश फार्म"
44
 
45
- #: google-captcha.php:203
46
  msgid "Registration form"
47
  msgstr "पंजीकरण फॉर्म"
48
 
49
- #: google-captcha.php:204
50
  msgid "Reset password form"
51
  msgstr "पुन: पासवर्ड फार्म"
52
 
53
- #: google-captcha.php:205
54
  msgid "Comments form"
55
  msgstr "टिप्पणियां फार्म"
56
 
57
- #: google-captcha.php:224
58
  msgid "Enter site key"
59
  msgstr "दर्ज साइट कुंजी "
60
 
61
- #: google-captcha.php:225
62
- #: google-captcha.php:231
63
  msgid "WARNING: The captcha will not display while you don't fill key fields."
64
  msgstr "चेतावनी: यदि आप कुंजी क्षेत्र नहीं भरेंगें तो कैप्चा प्रदर्शित नहीं करेगा।"
65
 
66
- #: google-captcha.php:230
67
  msgid "Enter secret key"
68
  msgstr "दर्ज गुप्त कुंजी"
69
 
70
- #: google-captcha.php:251
71
  msgid "Settings saved"
72
  msgstr "सेटिंग्स सुरक्षित"
73
 
74
- #: google-captcha.php:257
75
  #, fuzzy
76
  msgid "All plugin settings were restored."
77
  msgstr "प्लगइन सेटिंग पृष्ठ पर "
78
 
79
- #: google-captcha.php:274
80
- #: google-captcha.php:727
81
- #: google-captcha.php:740
82
  msgid "Settings"
83
  msgstr "सेटिंग्स"
84
 
85
- #: google-captcha.php:275
86
- #: google-captcha.php:741
87
- msgid "FAQ"
88
- msgstr "सामान्यतःपूछे जाने वाले प्रश्न (फ ए क्यू )"
89
-
90
- #: google-captcha.php:276
91
  msgid "Go PRO"
92
  msgstr ""
93
 
94
- #: google-captcha.php:286
95
- msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
96
- msgstr "गूगल कैप्चा संस्करण 2 सही ढंग से काम नहीं करेगा, क्यूंकि विकल्प \"allow_url_fopen\" आपके होस्टिंग के पीएचपी सेटिंग में अक्षम है ।"
 
 
 
 
 
 
 
 
 
 
 
97
 
98
- #: google-captcha.php:287
99
- msgid "Read more."
100
- msgstr "और पढ़ें।"
 
 
 
 
 
101
 
102
- #: google-captcha.php:294
103
- #, fuzzy
104
- msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your form:"
105
- msgstr "अगर आप अपने खुद के फार्म में गूगल कैप्चा जोड़ना चाहते हैं तो बस इस शॉर्टकोड को अपने पृष्ठ या पोस्ट पर कॉपी और पेस्ट करेँ ।"
 
 
 
 
106
 
107
- #: google-captcha.php:296
108
  msgid "Authentication"
109
  msgstr "प्रमाणीकरण"
110
 
111
- #: google-captcha.php:297
112
- #, php-format
113
- msgid "Before you are able to do something, you must to register %s here %s"
114
  msgstr " कुछ भी करने से पहले %s यहाँ %s पंजीकरण करायें "
115
 
116
- #: google-captcha.php:298
117
  msgid "Enter site key and secret key, that you get after registration."
118
  msgstr "पंजीकरण के बाद जो साइट कुंजी और गुप्त कुंजी मिलती है उसे दर्ज करें।"
119
 
120
- #: google-captcha.php:310
121
  msgid "Options"
122
  msgstr "विकल्प"
123
 
124
- #: google-captcha.php:313
125
  msgid "Enable reCAPTCHA for"
126
  msgstr ""
127
 
128
- #: google-captcha.php:321
129
- #: google-captcha.php:324
130
- #: google-captcha.php:328
131
- msgid "powered by"
132
- msgstr "के द्वारा संचालित"
 
 
 
 
 
 
 
 
 
 
 
 
133
 
134
- #: google-captcha.php:324
135
- #: google-captcha.php:392
136
- msgid "Activate"
137
  msgstr "सक्रिय"
138
 
139
- #: google-captcha.php:328
140
- #: google-captcha.php:396
141
- msgid "Download"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  msgstr ""
143
 
144
- #: google-captcha.php:333
 
 
 
 
 
 
 
 
 
 
145
  #, fuzzy
146
  msgid "Hide reCAPTCHA in Comments form for"
147
  msgstr "रीकैप्चा संस्करण के लिए"
148
 
149
- #: google-captcha.php:341
150
  #, fuzzy
151
  msgid "reCAPTCHA version"
152
  msgstr "रीकैप्चा संस्करण:"
153
 
154
- #: google-captcha.php:343
155
- #: google-captcha.php:344
156
  msgid "version"
157
  msgstr "संस्करण"
158
 
159
- #: google-captcha.php:349
160
- #: google-captcha.php:362
161
  #, fuzzy
162
  msgid "reCAPTCHA theme"
163
  msgstr "रीकैप्चा संस्करण:"
164
 
165
- #: google-captcha.php:350
166
- #: google-captcha.php:363
167
- #: google-captcha.php:406
168
  #, fuzzy
169
  msgid "for version"
170
  msgstr "संस्करण"
171
 
172
- #: google-captcha.php:376
173
- msgid "Close"
174
- msgstr ""
175
-
176
- #: google-captcha.php:380
177
  #, fuzzy
178
  msgid "reCAPTCHA language"
179
  msgstr "रीकैप्चा संस्करण:"
180
 
181
- #: google-captcha.php:399
182
  msgid "Use the current site language"
183
  msgstr ""
184
 
185
- #: google-captcha.php:399
186
  msgid "Using"
187
  msgstr ""
188
 
189
- #: google-captcha.php:405
190
  #, fuzzy
191
  msgid "reCAPTCHA size"
192
  msgstr "रीकैप्चा संस्करण:"
193
 
194
- #: google-captcha.php:422
195
- msgid "Enable CAPTCHA"
196
- msgstr ""
197
-
198
- #: google-captcha.php:429
199
- #: google-captcha.php:433
200
- msgid "You should"
201
- msgstr ""
202
-
203
- #: google-captcha.php:429
204
- #, fuzzy
205
- msgid "activate"
206
- msgstr "सक्रिय"
207
-
208
- #: google-captcha.php:429
209
- #: google-captcha.php:433
210
- msgid "to use this functionality"
211
- msgstr ""
212
-
213
- #: google-captcha.php:433
214
- msgid "download"
215
- msgstr ""
216
-
217
- #: google-captcha.php:442
218
- msgid "Unlock premium options by upgrading to Pro version"
219
- msgstr ""
220
-
221
- #: google-captcha.php:445
222
- msgid "Learn More"
223
- msgstr ""
224
-
225
- #: google-captcha.php:452
226
  msgid "Save Changes"
227
  msgstr "परिवर्तनों को सुरक्षित करें"
228
 
229
- #: google-captcha.php:508
230
  msgid "To use Google Captcha you must get the keys from"
231
  msgstr "गूगल कॅप्चा का उपयोग करने के लिए,आप कुंजी लें "
232
 
233
- #: google-captcha.php:509
234
  msgid "here"
235
  msgstr "यहाँ से "
236
 
237
- #: google-captcha.php:510
238
  msgid "and enter them on the"
239
  msgstr "और उन्हें दर्ज करें "
240
 
241
- #: google-captcha.php:512
242
  msgid "plugin setting page"
243
  msgstr "प्लगइन सेटिंग पृष्ठ पर "
244
 
245
- #: google-captcha.php:527
246
- #: google-captcha.php:564
247
- msgid "Error: You have entered an incorrect CAPTCHA value."
248
- msgstr "त्रुटि: आपने एक गलत कॅप्चा मान दर्ज किया है।"
249
-
250
- #: google-captcha.php:633
251
- #: google-captcha.php:645
252
- #: google-captcha.php:654
253
  msgid "Error"
254
  msgstr "त्रुटि"
255
 
256
- #: google-captcha.php:633
257
- #: google-captcha.php:645
258
- #: google-captcha.php:654
259
- msgid "You have entered an incorrect CAPTCHA value."
260
  msgstr "आपने एक गलत कॅप्चा मान दर्ज किया है।"
261
 
262
- #: google-captcha.php:698
263
- #: google-captcha.php:705
264
- msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
265
- msgstr "त्रुटि: आपने एक गलत कॅप्चा मान दर्ज किया है। अपने ब्राउज़र पर वापस बटन क्लिक करें, और फिर कोशिश करें।"
 
 
 
 
266
 
267
- #: google-captcha.php:742
268
  msgid "Support"
269
  msgstr "सहयोग"
270
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
271
  #~ msgid "Notice:"
272
  #~ msgstr "सूचना:"
273
 
@@ -399,9 +427,6 @@ msgstr "सहयोग"
399
  #~ msgid "Home URL"
400
  #~ msgstr "गृह URL "
401
 
402
- #~ msgid "WordPress Version"
403
- #~ msgstr "वर्डप्रेस संस्करण"
404
-
405
  #~ msgid "WordPress DB Version"
406
  #~ msgstr "वर्डप्रेस DB संस्करण"
407
 
@@ -423,9 +448,6 @@ msgstr "सहयोग"
423
  #~ msgid "Sorry, email message could not be delivered."
424
  #~ msgstr "क्षमा करें, ईमेल संदेश वितरित नहीं किया जा सका है।"
425
 
426
- #~ msgid "Plugins"
427
- #~ msgstr "प्लगइन्स"
428
-
429
  #~ msgid "Themes"
430
  #~ msgstr "विषयों"
431
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-10 10:02+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
+ "Language-Team: Development Logics Solutions Pvt Ltd "
9
+ "<contact@developmentlogics.com>\n"
10
  "Language: hi\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: google-captcha.php:34 google-captcha.php:362
 
22
  msgid "Google Captcha Settings"
23
  msgstr "गूगल कॅप्चा सेटिंग्स"
24
 
25
+ #: google-captcha.php:166
26
+ #, fuzzy
27
+ msgid "Error: You have entered an incorrect reCAPTCHA value."
28
+ msgstr "त्रुटि: आपने एक गलत कॅप्चा मान दर्ज किया है।"
29
+
30
+ #: google-captcha.php:270
31
  msgid "Normal"
32
  msgstr ""
33
 
34
+ #: google-captcha.php:271
35
  msgid "Compact"
36
  msgstr ""
37
 
38
+ #: google-captcha.php:277
39
  msgid "Site key"
40
  msgstr "साइट कुंजी "
41
 
42
+ #: google-captcha.php:282
43
  msgid "Secret Key"
44
  msgstr "गुप्त कुंजी"
45
 
46
+ #: google-captcha.php:290
47
  msgid "Login form"
48
  msgstr "प्रवेश फार्म"
49
 
50
+ #: google-captcha.php:291
51
  msgid "Registration form"
52
  msgstr "पंजीकरण फॉर्म"
53
 
54
+ #: google-captcha.php:292
55
  msgid "Reset password form"
56
  msgstr "पुन: पासवर्ड फार्म"
57
 
58
+ #: google-captcha.php:293
59
  msgid "Comments form"
60
  msgstr "टिप्पणियां फार्म"
61
 
62
+ #: google-captcha.php:312
63
  msgid "Enter site key"
64
  msgstr "दर्ज साइट कुंजी "
65
 
66
+ #: google-captcha.php:313 google-captcha.php:319
 
67
  msgid "WARNING: The captcha will not display while you don't fill key fields."
68
  msgstr "चेतावनी: यदि आप कुंजी क्षेत्र नहीं भरेंगें तो कैप्चा प्रदर्शित नहीं करेगा।"
69
 
70
+ #: google-captcha.php:318
71
  msgid "Enter secret key"
72
  msgstr "दर्ज गुप्त कुंजी"
73
 
74
+ #: google-captcha.php:341
75
  msgid "Settings saved"
76
  msgstr "सेटिंग्स सुरक्षित"
77
 
78
+ #: google-captcha.php:347
79
  #, fuzzy
80
  msgid "All plugin settings were restored."
81
  msgstr "प्लगइन सेटिंग पृष्ठ पर "
82
 
83
+ #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
 
 
84
  msgid "Settings"
85
  msgstr "सेटिंग्स"
86
 
87
+ #: google-captcha.php:365
 
 
 
 
 
88
  msgid "Go PRO"
89
  msgstr ""
90
 
91
+ #: google-captcha.php:370
92
+ #, fuzzy
93
+ msgid ""
94
+ "Google Captcha version 2 will not work correctly, since the option "
95
+ "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
96
+ msgstr ""
97
+ "गूगल कैप्चा संस्करण 2 सही ढंग से काम नहीं करेगा, क्यूंकि विकल्प \"allow_url_fopen\" आपके "
98
+ "होस्टिंग के पीएचपी सेटिंग में अक्षम है ।"
99
+
100
+ #: google-captcha.php:375
101
+ msgid ""
102
+ "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
103
+ "version 1 features."
104
+ msgstr ""
105
 
106
+ #: google-captcha.php:390
107
+ #, fuzzy, php-format
108
+ msgid ""
109
+ "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
110
+ "please use %s button"
111
+ msgstr ""
112
+ "अगर आप अपने खुद के फार्म में गूगल कैप्चा जोड़ना चाहते हैं तो बस इस शॉर्टकोड को अपने पृष्ठ या "
113
+ "पोस्ट पर कॉपी और पेस्ट करेँ ।"
114
 
115
+ #: google-captcha.php:396
116
+ #, php-format
117
+ msgid ""
118
+ "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
119
+ "on %s button in the content edit block using the Visual mode. If the button "
120
+ "isn't displayed or you would like to add the Google Captcha (reCAPTCHA) to "
121
+ "your own form , please use the shortcode %s"
122
+ msgstr ""
123
 
124
+ #: google-captcha.php:404
125
  msgid "Authentication"
126
  msgstr "प्रमाणीकरण"
127
 
128
+ #: google-captcha.php:405
129
+ #, fuzzy, php-format
130
+ msgid "Before you are able to do something, you must to register %shere%s"
131
  msgstr " कुछ भी करने से पहले %s यहाँ %s पंजीकरण करायें "
132
 
133
+ #: google-captcha.php:406
134
  msgid "Enter site key and secret key, that you get after registration."
135
  msgstr "पंजीकरण के बाद जो साइट कुंजी और गुप्त कुंजी मिलती है उसे दर्ज करें।"
136
 
137
+ #: google-captcha.php:418
138
  msgid "Options"
139
  msgstr "विकल्प"
140
 
141
+ #: google-captcha.php:421
142
  msgid "Enable reCAPTCHA for"
143
  msgstr ""
144
 
145
+ #: google-captcha.php:425
146
+ #, fuzzy
147
+ msgid "WordPress default"
148
+ msgstr "वर्डप्रेस संस्करण"
149
+
150
+ #: google-captcha.php:434
151
+ msgid "This option is available only for network or for main blog"
152
+ msgstr ""
153
+
154
+ #: google-captcha.php:442
155
+ msgid "Plugins"
156
+ msgstr "प्लगइन्स"
157
+
158
+ #: google-captcha.php:450 google-captcha.php:455
159
+ #, php-format
160
+ msgid "You should %s to use this functionality"
161
+ msgstr ""
162
 
163
+ #: google-captcha.php:451
164
+ #, fuzzy
165
+ msgid "activate"
166
  msgstr "सक्रिय"
167
 
168
+ #: google-captcha.php:451
169
+ msgid "for network"
170
+ msgstr ""
171
+
172
+ #: google-captcha.php:456
173
+ msgid "download"
174
+ msgstr ""
175
+
176
+ #: google-captcha.php:468 google-captcha.php:545
177
+ msgid "Close"
178
+ msgstr ""
179
+
180
+ #: google-captcha.php:480 google-captcha.php:581
181
+ msgid "Unlock premium options by upgrading to Pro version"
182
+ msgstr ""
183
+
184
+ #: google-captcha.php:483 google-captcha.php:584
185
+ msgid "Learn More"
186
  msgstr ""
187
 
188
+ #: google-captcha.php:489
189
+ #, php-format
190
+ msgid ""
191
+ "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
192
+ msgstr ""
193
+
194
+ #: google-captcha.php:489 google-captcha.php:982
195
+ msgid "FAQ"
196
+ msgstr "सामान्यतःपूछे जाने वाले प्रश्न (फ ए क्यू )"
197
+
198
+ #: google-captcha.php:494
199
  #, fuzzy
200
  msgid "Hide reCAPTCHA in Comments form for"
201
  msgstr "रीकैप्चा संस्करण के लिए"
202
 
203
+ #: google-captcha.php:506
204
  #, fuzzy
205
  msgid "reCAPTCHA version"
206
  msgstr "रीकैप्चा संस्करण:"
207
 
208
+ #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
209
+ #: google-captcha.php:512
210
  msgid "version"
211
  msgstr "संस्करण"
212
 
213
+ #: google-captcha.php:518 google-captcha.php:531
 
214
  #, fuzzy
215
  msgid "reCAPTCHA theme"
216
  msgstr "रीकैप्चा संस्करण:"
217
 
218
+ #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
 
 
219
  #, fuzzy
220
  msgid "for version"
221
  msgstr "संस्करण"
222
 
223
+ #: google-captcha.php:549
 
 
 
 
224
  #, fuzzy
225
  msgid "reCAPTCHA language"
226
  msgstr "रीकैप्चा संस्करण:"
227
 
228
+ #: google-captcha.php:556
229
  msgid "Use the current site language"
230
  msgstr ""
231
 
232
+ #: google-captcha.php:556
233
  msgid "Using"
234
  msgstr ""
235
 
236
+ #: google-captcha.php:562
237
  #, fuzzy
238
  msgid "reCAPTCHA size"
239
  msgstr "रीकैप्चा संस्करण:"
240
 
241
+ #: google-captcha.php:591
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
242
  msgid "Save Changes"
243
  msgstr "परिवर्तनों को सुरक्षित करें"
244
 
245
+ #: google-captcha.php:650 google-captcha.php:998
246
  msgid "To use Google Captcha you must get the keys from"
247
  msgstr "गूगल कॅप्चा का उपयोग करने के लिए,आप कुंजी लें "
248
 
249
+ #: google-captcha.php:651 google-captcha.php:999
250
  msgid "here"
251
  msgstr "यहाँ से "
252
 
253
+ #: google-captcha.php:652 google-captcha.php:1000
254
  msgid "and enter them on the"
255
  msgstr "और उन्हें दर्ज करें "
256
 
257
+ #: google-captcha.php:654 google-captcha.php:1002
258
  msgid "plugin setting page"
259
  msgstr "प्लगइन सेटिंग पृष्ठ पर "
260
 
261
+ #: google-captcha.php:822 google-captcha.php:851
 
 
 
 
 
 
 
262
  msgid "Error"
263
  msgstr "त्रुटि"
264
 
265
+ #: google-captcha.php:822 google-captcha.php:881
266
+ #, fuzzy
267
+ msgid "You have entered an incorrect reCAPTCHA value."
 
268
  msgstr "आपने एक गलत कॅप्चा मान दर्ज किया है।"
269
 
270
+ #: google-captcha.php:851
271
+ #, fuzzy
272
+ msgid ""
273
+ "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
274
+ "browser, and try again."
275
+ msgstr ""
276
+ "त्रुटि: आपने एक गलत कॅप्चा मान दर्ज किया है। अपने ब्राउज़र पर वापस बटन क्लिक करें, और फिर "
277
+ "कोशिश करें।"
278
 
279
+ #: google-captcha.php:983
280
  msgid "Support"
281
  msgstr "सहयोग"
282
 
283
+ #~ msgid ""
284
+ #~ "Google Captcha version 2 will not work correctly, since the option "
285
+ #~ "\"allow_url_fopen\" is disabled in the PHP settings of your hosting."
286
+ #~ msgstr ""
287
+ #~ "गूगल कैप्चा संस्करण 2 सही ढंग से काम नहीं करेगा, क्यूंकि विकल्प \"allow_url_fopen\" "
288
+ #~ "आपके होस्टिंग के पीएचपी सेटिंग में अक्षम है ।"
289
+
290
+ #~ msgid "Read more."
291
+ #~ msgstr "और पढ़ें।"
292
+
293
+ #~ msgid "powered by"
294
+ #~ msgstr "के द्वारा संचालित"
295
+
296
+ #~ msgid "Activate"
297
+ #~ msgstr "सक्रिय"
298
+
299
  #~ msgid "Notice:"
300
  #~ msgstr "सूचना:"
301
 
427
  #~ msgid "Home URL"
428
  #~ msgstr "गृह URL "
429
 
 
 
 
430
  #~ msgid "WordPress DB Version"
431
  #~ msgstr "वर्डप्रेस DB संस्करण"
432
 
448
  #~ msgid "Sorry, email message could not be delivered."
449
  #~ msgstr "क्षमा करें, ईमेल संदेश वितरित नहीं किया जा सका है।"
450
 
 
 
 
451
  #~ msgid "Themes"
452
  #~ msgstr "विषयों"
453
 
languages/google-captcha-it_IT.mo CHANGED
Binary file
languages/google-captcha-it_IT.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: google-captcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-02 15:27+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Istvan <wart17@hotmail.com>\n"
9
  "Language: es_419\n"
10
  "MIME-Version: 1.0\n"
@@ -12,264 +12,293 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:34
21
- #: google-captcha.php:272
22
  msgid "Google Captcha Settings"
23
  msgstr "Impostazioni Google Captcha"
24
 
25
- #: google-captcha.php:182
 
 
 
 
 
26
  msgid "Normal"
27
  msgstr ""
28
 
29
- #: google-captcha.php:183
30
  msgid "Compact"
31
  msgstr ""
32
 
33
- #: google-captcha.php:189
34
  msgid "Site key"
35
  msgstr "Chiave del sito"
36
 
37
- #: google-captcha.php:194
38
  msgid "Secret Key"
39
  msgstr "Chiave segreta"
40
 
41
- #: google-captcha.php:202
42
  msgid "Login form"
43
  msgstr "Form di accesso"
44
 
45
- #: google-captcha.php:203
46
  msgid "Registration form"
47
  msgstr "Form di registrazione"
48
 
49
- #: google-captcha.php:204
50
  msgid "Reset password form"
51
  msgstr "Form per resettare la password"
52
 
53
- #: google-captcha.php:205
54
  msgid "Comments form"
55
  msgstr "Form dei commenti"
56
 
57
- #: google-captcha.php:224
58
  msgid "Enter site key"
59
  msgstr "Introduci la Chiave del sito"
60
 
61
- #: google-captcha.php:225
62
- #: google-captcha.php:231
63
  msgid "WARNING: The captcha will not display while you don't fill key fields."
64
- msgstr "ATTENZIONE: Il Captcha non verrà mostrato mentre non riempi i campi chiave."
 
65
 
66
- #: google-captcha.php:230
67
  msgid "Enter secret key"
68
  msgstr "Introduci la Chiave segreta"
69
 
70
- #: google-captcha.php:251
71
  msgid "Settings saved"
72
  msgstr "Impostazioni salvate"
73
 
74
- #: google-captcha.php:257
75
  #, fuzzy
76
  msgid "All plugin settings were restored."
77
  msgstr "pagina di configurazione del plugin"
78
 
79
- #: google-captcha.php:274
80
- #: google-captcha.php:727
81
- #: google-captcha.php:740
82
  msgid "Settings"
83
  msgstr "Impostazioni"
84
 
85
- #: google-captcha.php:275
86
- #: google-captcha.php:741
87
- msgid "FAQ"
88
- msgstr "Domande frequenti"
89
-
90
- #: google-captcha.php:276
91
  msgid "Go PRO"
92
  msgstr ""
93
 
94
- #: google-captcha.php:286
95
- msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
96
- msgstr "Google Captcha versione 2 non funzionerà correttamente perchè l'opzione \"allow_url_fopen\" è disabilitata nelle impostazioni PHP del tuo hosting."
 
 
 
 
 
 
 
 
 
 
 
97
 
98
- #: google-captcha.php:287
99
- msgid "Read more."
100
- msgstr "Continua a leggere."
 
 
 
 
 
101
 
102
- #: google-captcha.php:294
103
- #, fuzzy
104
- msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your form:"
105
- msgstr "Se desideri aggiungere Google Captcha ad un tuo form, devi semplicemente copiare ed incollare questo codice nel tuo post o pagina:"
 
 
 
 
106
 
107
- #: google-captcha.php:296
108
  msgid "Authentication"
109
  msgstr "Autenticazione"
110
 
111
- #: google-captcha.php:297
112
- #, php-format
113
- msgid "Before you are able to do something, you must to register %s here %s"
114
  msgstr "Prima di poter fare qualcosa, devi registrare %s qui %s"
115
 
116
- #: google-captcha.php:298
117
  msgid "Enter site key and secret key, that you get after registration."
118
- msgstr "Introduci la Chiave del sito e la Chiave segreta, che si ottengono dopo la registrazione."
 
 
119
 
120
- #: google-captcha.php:310
121
  msgid "Options"
122
  msgstr "Opzioni"
123
 
124
- #: google-captcha.php:313
125
  msgid "Enable reCAPTCHA for"
126
  msgstr ""
127
 
128
- #: google-captcha.php:321
129
- #: google-captcha.php:324
130
- #: google-captcha.php:328
131
- msgid "powered by"
132
- msgstr "powered by"
 
 
 
 
 
 
 
 
 
 
 
 
133
 
134
- #: google-captcha.php:324
135
- #: google-captcha.php:392
136
  #, fuzzy
137
- msgid "Activate"
138
  msgstr "Tema Activado"
139
 
140
- #: google-captcha.php:328
141
- #: google-captcha.php:396
142
- msgid "Download"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
143
  msgstr ""
144
 
145
- #: google-captcha.php:333
 
 
 
 
 
 
 
 
 
 
146
  #, fuzzy
147
  msgid "Hide reCAPTCHA in Comments form for"
148
  msgstr "per reCAPTCHA versione"
149
 
150
- #: google-captcha.php:341
151
  #, fuzzy
152
  msgid "reCAPTCHA version"
153
  msgstr "reCAPTCHA versione:"
154
 
155
- #: google-captcha.php:343
156
- #: google-captcha.php:344
157
  msgid "version"
158
  msgstr "versione"
159
 
160
- #: google-captcha.php:349
161
- #: google-captcha.php:362
162
  #, fuzzy
163
  msgid "reCAPTCHA theme"
164
  msgstr "reCAPTCHA versione:"
165
 
166
- #: google-captcha.php:350
167
- #: google-captcha.php:363
168
- #: google-captcha.php:406
169
  #, fuzzy
170
  msgid "for version"
171
  msgstr "versione"
172
 
173
- #: google-captcha.php:376
174
- msgid "Close"
175
- msgstr ""
176
-
177
- #: google-captcha.php:380
178
  #, fuzzy
179
  msgid "reCAPTCHA language"
180
  msgstr "reCAPTCHA versione:"
181
 
182
- #: google-captcha.php:399
183
  msgid "Use the current site language"
184
  msgstr ""
185
 
186
- #: google-captcha.php:399
187
  msgid "Using"
188
  msgstr ""
189
 
190
- #: google-captcha.php:405
191
  #, fuzzy
192
  msgid "reCAPTCHA size"
193
  msgstr "reCAPTCHA versione:"
194
 
195
- #: google-captcha.php:422
196
- msgid "Enable CAPTCHA"
197
- msgstr ""
198
-
199
- #: google-captcha.php:429
200
- #: google-captcha.php:433
201
- msgid "You should"
202
- msgstr ""
203
-
204
- #: google-captcha.php:429
205
- #, fuzzy
206
- msgid "activate"
207
- msgstr "Tema Activado"
208
-
209
- #: google-captcha.php:429
210
- #: google-captcha.php:433
211
- msgid "to use this functionality"
212
- msgstr ""
213
-
214
- #: google-captcha.php:433
215
- msgid "download"
216
- msgstr ""
217
-
218
- #: google-captcha.php:442
219
- msgid "Unlock premium options by upgrading to Pro version"
220
- msgstr ""
221
-
222
- #: google-captcha.php:445
223
- msgid "Learn More"
224
- msgstr ""
225
-
226
- #: google-captcha.php:452
227
  msgid "Save Changes"
228
  msgstr "Salva modifiche"
229
 
230
- #: google-captcha.php:508
231
  msgid "To use Google Captcha you must get the keys from"
232
  msgstr "Per utilizzare Google Captcha devi ottenere le chiavi da"
233
 
234
- #: google-captcha.php:509
235
  msgid "here"
236
  msgstr "qui"
237
 
238
- #: google-captcha.php:510
239
  msgid "and enter them on the"
240
  msgstr "ed introducili in"
241
 
242
- #: google-captcha.php:512
243
  msgid "plugin setting page"
244
  msgstr "pagina di configurazione del plugin"
245
 
246
- #: google-captcha.php:527
247
- #: google-captcha.php:564
248
- msgid "Error: You have entered an incorrect CAPTCHA value."
249
- msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
250
-
251
- #: google-captcha.php:633
252
- #: google-captcha.php:645
253
- #: google-captcha.php:654
254
  msgid "Error"
255
  msgstr ""
256
 
257
- #: google-captcha.php:633
258
- #: google-captcha.php:645
259
- #: google-captcha.php:654
260
  #, fuzzy
261
- msgid "You have entered an incorrect CAPTCHA value."
262
  msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
263
 
264
- #: google-captcha.php:698
265
- #: google-captcha.php:705
266
- msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
267
- msgstr "Errore: Hai introdotto un valore CAPTCHA errato. Fai click sul bottone Indietro del tuo browser e riprova."
 
 
 
 
268
 
269
- #: google-captcha.php:742
270
  msgid "Support"
271
  msgstr "Supporto"
272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
  #~ msgid "Notice:"
274
  #~ msgstr "Avviso:"
275
 
@@ -314,9 +343,6 @@ msgstr "Supporto"
314
  #~ msgid "Back to the WordPress"
315
  #~ msgstr "Torna a WordPress"
316
 
317
- #~ msgid "Plugins page"
318
- #~ msgstr "Pagina dei plugins"
319
-
320
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
321
  #~ msgstr ""
322
  #~ "Se ti piace il nostro plugin, per favore dacci 5 stelle su WordPress"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-10 10:03+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Istvan <wart17@hotmail.com>\n"
9
  "Language: es_419\n"
10
  "MIME-Version: 1.0\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.5.4\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:362
 
21
  msgid "Google Captcha Settings"
22
  msgstr "Impostazioni Google Captcha"
23
 
24
+ #: google-captcha.php:166
25
+ #, fuzzy
26
+ msgid "Error: You have entered an incorrect reCAPTCHA value."
27
+ msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
28
+
29
+ #: google-captcha.php:270
30
  msgid "Normal"
31
  msgstr ""
32
 
33
+ #: google-captcha.php:271
34
  msgid "Compact"
35
  msgstr ""
36
 
37
+ #: google-captcha.php:277
38
  msgid "Site key"
39
  msgstr "Chiave del sito"
40
 
41
+ #: google-captcha.php:282
42
  msgid "Secret Key"
43
  msgstr "Chiave segreta"
44
 
45
+ #: google-captcha.php:290
46
  msgid "Login form"
47
  msgstr "Form di accesso"
48
 
49
+ #: google-captcha.php:291
50
  msgid "Registration form"
51
  msgstr "Form di registrazione"
52
 
53
+ #: google-captcha.php:292
54
  msgid "Reset password form"
55
  msgstr "Form per resettare la password"
56
 
57
+ #: google-captcha.php:293
58
  msgid "Comments form"
59
  msgstr "Form dei commenti"
60
 
61
+ #: google-captcha.php:312
62
  msgid "Enter site key"
63
  msgstr "Introduci la Chiave del sito"
64
 
65
+ #: google-captcha.php:313 google-captcha.php:319
 
66
  msgid "WARNING: The captcha will not display while you don't fill key fields."
67
+ msgstr ""
68
+ "ATTENZIONE: Il Captcha non verrà mostrato mentre non riempi i campi chiave."
69
 
70
+ #: google-captcha.php:318
71
  msgid "Enter secret key"
72
  msgstr "Introduci la Chiave segreta"
73
 
74
+ #: google-captcha.php:341
75
  msgid "Settings saved"
76
  msgstr "Impostazioni salvate"
77
 
78
+ #: google-captcha.php:347
79
  #, fuzzy
80
  msgid "All plugin settings were restored."
81
  msgstr "pagina di configurazione del plugin"
82
 
83
+ #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
 
 
84
  msgid "Settings"
85
  msgstr "Impostazioni"
86
 
87
+ #: google-captcha.php:365
 
 
 
 
 
88
  msgid "Go PRO"
89
  msgstr ""
90
 
91
+ #: google-captcha.php:370
92
+ #, fuzzy
93
+ msgid ""
94
+ "Google Captcha version 2 will not work correctly, since the option "
95
+ "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
96
+ msgstr ""
97
+ "Google Captcha versione 2 non funzionerà correttamente perchè l'opzione "
98
+ "\"allow_url_fopen\" è disabilitata nelle impostazioni PHP del tuo hosting."
99
+
100
+ #: google-captcha.php:375
101
+ msgid ""
102
+ "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
103
+ "version 1 features."
104
+ msgstr ""
105
 
106
+ #: google-captcha.php:390
107
+ #, fuzzy, php-format
108
+ msgid ""
109
+ "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
110
+ "please use %s button"
111
+ msgstr ""
112
+ "Se desideri aggiungere Google Captcha ad un tuo form, devi semplicemente "
113
+ "copiare ed incollare questo codice nel tuo post o pagina:"
114
 
115
+ #: google-captcha.php:396
116
+ #, php-format
117
+ msgid ""
118
+ "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
119
+ "on %s button in the content edit block using the Visual mode. If the button "
120
+ "isn't displayed or you would like to add the Google Captcha (reCAPTCHA) to "
121
+ "your own form , please use the shortcode %s"
122
+ msgstr ""
123
 
124
+ #: google-captcha.php:404
125
  msgid "Authentication"
126
  msgstr "Autenticazione"
127
 
128
+ #: google-captcha.php:405
129
+ #, fuzzy, php-format
130
+ msgid "Before you are able to do something, you must to register %shere%s"
131
  msgstr "Prima di poter fare qualcosa, devi registrare %s qui %s"
132
 
133
+ #: google-captcha.php:406
134
  msgid "Enter site key and secret key, that you get after registration."
135
+ msgstr ""
136
+ "Introduci la Chiave del sito e la Chiave segreta, che si ottengono dopo la "
137
+ "registrazione."
138
 
139
+ #: google-captcha.php:418
140
  msgid "Options"
141
  msgstr "Opzioni"
142
 
143
+ #: google-captcha.php:421
144
  msgid "Enable reCAPTCHA for"
145
  msgstr ""
146
 
147
+ #: google-captcha.php:425
148
+ msgid "WordPress default"
149
+ msgstr ""
150
+
151
+ #: google-captcha.php:434
152
+ msgid "This option is available only for network or for main blog"
153
+ msgstr ""
154
+
155
+ #: google-captcha.php:442
156
+ #, fuzzy
157
+ msgid "Plugins"
158
+ msgstr "Pagina dei plugins"
159
+
160
+ #: google-captcha.php:450 google-captcha.php:455
161
+ #, php-format
162
+ msgid "You should %s to use this functionality"
163
+ msgstr ""
164
 
165
+ #: google-captcha.php:451
 
166
  #, fuzzy
167
+ msgid "activate"
168
  msgstr "Tema Activado"
169
 
170
+ #: google-captcha.php:451
171
+ msgid "for network"
172
+ msgstr ""
173
+
174
+ #: google-captcha.php:456
175
+ msgid "download"
176
+ msgstr ""
177
+
178
+ #: google-captcha.php:468 google-captcha.php:545
179
+ msgid "Close"
180
+ msgstr ""
181
+
182
+ #: google-captcha.php:480 google-captcha.php:581
183
+ msgid "Unlock premium options by upgrading to Pro version"
184
+ msgstr ""
185
+
186
+ #: google-captcha.php:483 google-captcha.php:584
187
+ msgid "Learn More"
188
  msgstr ""
189
 
190
+ #: google-captcha.php:489
191
+ #, php-format
192
+ msgid ""
193
+ "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
194
+ msgstr ""
195
+
196
+ #: google-captcha.php:489 google-captcha.php:982
197
+ msgid "FAQ"
198
+ msgstr "Domande frequenti"
199
+
200
+ #: google-captcha.php:494
201
  #, fuzzy
202
  msgid "Hide reCAPTCHA in Comments form for"
203
  msgstr "per reCAPTCHA versione"
204
 
205
+ #: google-captcha.php:506
206
  #, fuzzy
207
  msgid "reCAPTCHA version"
208
  msgstr "reCAPTCHA versione:"
209
 
210
+ #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
211
+ #: google-captcha.php:512
212
  msgid "version"
213
  msgstr "versione"
214
 
215
+ #: google-captcha.php:518 google-captcha.php:531
 
216
  #, fuzzy
217
  msgid "reCAPTCHA theme"
218
  msgstr "reCAPTCHA versione:"
219
 
220
+ #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
 
 
221
  #, fuzzy
222
  msgid "for version"
223
  msgstr "versione"
224
 
225
+ #: google-captcha.php:549
 
 
 
 
226
  #, fuzzy
227
  msgid "reCAPTCHA language"
228
  msgstr "reCAPTCHA versione:"
229
 
230
+ #: google-captcha.php:556
231
  msgid "Use the current site language"
232
  msgstr ""
233
 
234
+ #: google-captcha.php:556
235
  msgid "Using"
236
  msgstr ""
237
 
238
+ #: google-captcha.php:562
239
  #, fuzzy
240
  msgid "reCAPTCHA size"
241
  msgstr "reCAPTCHA versione:"
242
 
243
+ #: google-captcha.php:591
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
  msgid "Save Changes"
245
  msgstr "Salva modifiche"
246
 
247
+ #: google-captcha.php:650 google-captcha.php:998
248
  msgid "To use Google Captcha you must get the keys from"
249
  msgstr "Per utilizzare Google Captcha devi ottenere le chiavi da"
250
 
251
+ #: google-captcha.php:651 google-captcha.php:999
252
  msgid "here"
253
  msgstr "qui"
254
 
255
+ #: google-captcha.php:652 google-captcha.php:1000
256
  msgid "and enter them on the"
257
  msgstr "ed introducili in"
258
 
259
+ #: google-captcha.php:654 google-captcha.php:1002
260
  msgid "plugin setting page"
261
  msgstr "pagina di configurazione del plugin"
262
 
263
+ #: google-captcha.php:822 google-captcha.php:851
 
 
 
 
 
 
 
264
  msgid "Error"
265
  msgstr ""
266
 
267
+ #: google-captcha.php:822 google-captcha.php:881
 
 
268
  #, fuzzy
269
+ msgid "You have entered an incorrect reCAPTCHA value."
270
  msgstr "Errore: Hai introdotto un valore CAPTCHA errato."
271
 
272
+ #: google-captcha.php:851
273
+ #, fuzzy
274
+ msgid ""
275
+ "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
276
+ "browser, and try again."
277
+ msgstr ""
278
+ "Errore: Hai introdotto un valore CAPTCHA errato. Fai click sul bottone "
279
+ "Indietro del tuo browser e riprova."
280
 
281
+ #: google-captcha.php:983
282
  msgid "Support"
283
  msgstr "Supporto"
284
 
285
+ #~ msgid ""
286
+ #~ "Google Captcha version 2 will not work correctly, since the option "
287
+ #~ "\"allow_url_fopen\" is disabled in the PHP settings of your hosting."
288
+ #~ msgstr ""
289
+ #~ "Google Captcha versione 2 non funzionerà correttamente perchè l'opzione "
290
+ #~ "\"allow_url_fopen\" è disabilitata nelle impostazioni PHP del tuo hosting."
291
+
292
+ #~ msgid "Read more."
293
+ #~ msgstr "Continua a leggere."
294
+
295
+ #~ msgid "powered by"
296
+ #~ msgstr "powered by"
297
+
298
+ #, fuzzy
299
+ #~ msgid "Activate"
300
+ #~ msgstr "Tema Activado"
301
+
302
  #~ msgid "Notice:"
303
  #~ msgstr "Avviso:"
304
 
343
  #~ msgid "Back to the WordPress"
344
  #~ msgstr "Torna a WordPress"
345
 
 
 
 
346
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
347
  #~ msgstr ""
348
  #~ "Se ti piace il nostro plugin, per favore dacci 5 stelle su WordPress"
languages/google-captcha-pl_PL.mo CHANGED
Binary file
languages/google-captcha-pl_PL.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: google-captcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-02 15:27+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
9
  "Language: pl_PL\n"
10
  "MIME-Version: 1.0\n"
@@ -12,261 +12,278 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
- "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:34
21
- #: google-captcha.php:272
22
  msgid "Google Captcha Settings"
23
  msgstr "Ustawienia Google Captcha"
24
 
25
- #: google-captcha.php:182
 
 
 
 
 
26
  msgid "Normal"
27
  msgstr ""
28
 
29
- #: google-captcha.php:183
30
  msgid "Compact"
31
  msgstr ""
32
 
33
- #: google-captcha.php:189
34
  msgid "Site key"
35
  msgstr ""
36
 
37
- #: google-captcha.php:194
38
  msgid "Secret Key"
39
  msgstr ""
40
 
41
- #: google-captcha.php:202
42
  msgid "Login form"
43
  msgstr "Formularz logowania"
44
 
45
- #: google-captcha.php:203
46
  msgid "Registration form"
47
  msgstr "Formularz rejestracji"
48
 
49
- #: google-captcha.php:204
50
  msgid "Reset password form"
51
  msgstr "Formularz odzyskiwania hasła"
52
 
53
- #: google-captcha.php:205
54
  msgid "Comments form"
55
  msgstr "Formularz komentarza"
56
 
57
- #: google-captcha.php:224
58
  #, fuzzy
59
  msgid "Enter site key"
60
  msgstr "Wprowadź klucz prywatny"
61
 
62
- #: google-captcha.php:225
63
- #: google-captcha.php:231
64
  msgid "WARNING: The captcha will not display while you don't fill key fields."
65
- msgstr "OSTRZEŻENIE: Kod captcha nie będzie wyświetlany, jeżeli nie wprowadzisz kluczy."
 
 
66
 
67
- #: google-captcha.php:230
68
  #, fuzzy
69
  msgid "Enter secret key"
70
  msgstr "Wprowadź klucz prywatny"
71
 
72
- #: google-captcha.php:251
73
  msgid "Settings saved"
74
  msgstr "Ustawienia zapisane"
75
 
76
- #: google-captcha.php:257
77
  #, fuzzy
78
  msgid "All plugin settings were restored."
79
  msgstr "stronie ustawień wtyczki"
80
 
81
- #: google-captcha.php:274
82
- #: google-captcha.php:727
83
- #: google-captcha.php:740
84
  msgid "Settings"
85
  msgstr "Ustawienia"
86
 
87
- #: google-captcha.php:275
88
- #: google-captcha.php:741
89
- msgid "FAQ"
90
- msgstr "FAQ"
91
-
92
- #: google-captcha.php:276
93
  msgid "Go PRO"
94
  msgstr ""
95
 
96
- #: google-captcha.php:286
97
- msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
 
 
98
  msgstr ""
99
 
100
- #: google-captcha.php:287
101
- msgid "Read more."
 
 
102
  msgstr ""
103
 
104
- #: google-captcha.php:294
105
- #, fuzzy
106
- msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your form:"
107
- msgstr "Jeżeli chcesz umieścić wtyczkę Google Captcha we własnym formularzu, po prostu skopiuj i wklej ten kod w swoim poście lub na swojej stronie:"
 
 
 
 
 
 
 
 
 
 
 
 
 
108
 
109
- #: google-captcha.php:296
110
  msgid "Authentication"
111
  msgstr "Uwierzytelnianie"
112
 
113
- #: google-captcha.php:297
114
- #, php-format
115
- msgid "Before you are able to do something, you must to register %s here %s"
116
  msgstr "Aby móc cokolwiek zrobić, musisz się zarejestrować %s tutaj %s"
117
 
118
- #: google-captcha.php:298
119
  #, fuzzy
120
  msgid "Enter site key and secret key, that you get after registration."
121
- msgstr "Wprowadź swój klucz publiczny i prywatny, uzyskane po dokonaniu rejestracji."
 
122
 
123
- #: google-captcha.php:310
124
  msgid "Options"
125
  msgstr "Opcje"
126
 
127
- #: google-captcha.php:313
128
  msgid "Enable reCAPTCHA for"
129
  msgstr ""
130
 
131
- #: google-captcha.php:321
132
- #: google-captcha.php:324
133
- #: google-captcha.php:328
134
- msgid "powered by"
135
- msgstr "opracowany przez"
 
 
136
 
137
- #: google-captcha.php:324
138
- #: google-captcha.php:392
139
  #, fuzzy
140
- msgid "Activate"
141
- msgstr "Motyw aktywny"
142
 
143
- #: google-captcha.php:328
144
- #: google-captcha.php:396
145
- msgid "Download"
146
  msgstr ""
147
 
148
- #: google-captcha.php:333
149
- msgid "Hide reCAPTCHA in Comments form for"
150
- msgstr ""
 
151
 
152
- #: google-captcha.php:341
153
- msgid "reCAPTCHA version"
154
  msgstr ""
155
 
156
- #: google-captcha.php:343
157
- #: google-captcha.php:344
158
- msgid "version"
159
  msgstr ""
160
 
161
- #: google-captcha.php:349
162
- #: google-captcha.php:362
163
- msgid "reCAPTCHA theme"
164
  msgstr ""
165
 
166
- #: google-captcha.php:350
167
- #: google-captcha.php:363
168
- #: google-captcha.php:406
169
- msgid "for version"
170
  msgstr ""
171
 
172
- #: google-captcha.php:376
173
- msgid "Close"
174
  msgstr ""
175
 
176
- #: google-captcha.php:380
177
- msgid "reCAPTCHA language"
 
 
178
  msgstr ""
179
 
180
- #: google-captcha.php:399
181
- msgid "Use the current site language"
182
- msgstr ""
183
 
184
- #: google-captcha.php:399
185
- msgid "Using"
186
  msgstr ""
187
 
188
- #: google-captcha.php:405
189
- msgid "reCAPTCHA size"
190
  msgstr ""
191
 
192
- #: google-captcha.php:422
193
- msgid "Enable CAPTCHA"
 
194
  msgstr ""
195
 
196
- #: google-captcha.php:429
197
- #: google-captcha.php:433
198
- msgid "You should"
199
  msgstr ""
200
 
201
- #: google-captcha.php:429
202
- #, fuzzy
203
- msgid "activate"
204
- msgstr "Motyw aktywny"
205
 
206
- #: google-captcha.php:429
207
- #: google-captcha.php:433
208
- msgid "to use this functionality"
209
  msgstr ""
210
 
211
- #: google-captcha.php:433
212
- msgid "download"
213
  msgstr ""
214
 
215
- #: google-captcha.php:442
216
- msgid "Unlock premium options by upgrading to Pro version"
217
  msgstr ""
218
 
219
- #: google-captcha.php:445
220
- msgid "Learn More"
221
  msgstr ""
222
 
223
- #: google-captcha.php:452
224
  msgid "Save Changes"
225
  msgstr "Zapisz zmiany"
226
 
227
- #: google-captcha.php:508
228
  msgid "To use Google Captcha you must get the keys from"
229
  msgstr "Aby korzystać z Google Captcha, musisz najpierw uzyskać klucze"
230
 
231
- #: google-captcha.php:509
232
  msgid "here"
233
  msgstr "stąd"
234
 
235
- #: google-captcha.php:510
236
  msgid "and enter them on the"
237
  msgstr "i wprowadzić je na"
238
 
239
- #: google-captcha.php:512
240
  msgid "plugin setting page"
241
  msgstr "stronie ustawień wtyczki"
242
 
243
- #: google-captcha.php:527
244
- #: google-captcha.php:564
245
- msgid "Error: You have entered an incorrect CAPTCHA value."
246
- msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
247
-
248
- #: google-captcha.php:633
249
- #: google-captcha.php:645
250
- #: google-captcha.php:654
251
  msgid "Error"
252
  msgstr ""
253
 
254
- #: google-captcha.php:633
255
- #: google-captcha.php:645
256
- #: google-captcha.php:654
257
  #, fuzzy
258
- msgid "You have entered an incorrect CAPTCHA value."
259
  msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
260
 
261
- #: google-captcha.php:698
262
- #: google-captcha.php:705
263
- msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
264
- msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA. Kliknij przycisk WSTECZ na pasku przeglądarki i spróbuj ponownie."
 
 
 
 
265
 
266
- #: google-captcha.php:742
267
  msgid "Support"
268
  msgstr "Wsparcie"
269
 
 
 
 
 
 
 
 
270
  #~ msgid "Contact form"
271
  #~ msgstr "Formularz kontaktowy"
272
 
@@ -301,9 +318,6 @@ msgstr "Wsparcie"
301
  #~ msgid "Back to the WordPress"
302
  #~ msgstr "Wróć do WordPress"
303
 
304
- #~ msgid "Plugins page"
305
- #~ msgstr "Strona Wtyczki"
306
-
307
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
308
  #~ msgstr ""
309
  #~ "Jeżeli podoba Ci się nasza wtyczka, oceń ją 5 gwiazdkami w witrynie "
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-10 10:03+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
9
  "Language: pl_PL\n"
10
  "MIME-Version: 1.0\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
18
+ "|| n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: google-captcha.php:34 google-captcha.php:362
 
22
  msgid "Google Captcha Settings"
23
  msgstr "Ustawienia Google Captcha"
24
 
25
+ #: google-captcha.php:166
26
+ #, fuzzy
27
+ msgid "Error: You have entered an incorrect reCAPTCHA value."
28
+ msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
29
+
30
+ #: google-captcha.php:270
31
  msgid "Normal"
32
  msgstr ""
33
 
34
+ #: google-captcha.php:271
35
  msgid "Compact"
36
  msgstr ""
37
 
38
+ #: google-captcha.php:277
39
  msgid "Site key"
40
  msgstr ""
41
 
42
+ #: google-captcha.php:282
43
  msgid "Secret Key"
44
  msgstr ""
45
 
46
+ #: google-captcha.php:290
47
  msgid "Login form"
48
  msgstr "Formularz logowania"
49
 
50
+ #: google-captcha.php:291
51
  msgid "Registration form"
52
  msgstr "Formularz rejestracji"
53
 
54
+ #: google-captcha.php:292
55
  msgid "Reset password form"
56
  msgstr "Formularz odzyskiwania hasła"
57
 
58
+ #: google-captcha.php:293
59
  msgid "Comments form"
60
  msgstr "Formularz komentarza"
61
 
62
+ #: google-captcha.php:312
63
  #, fuzzy
64
  msgid "Enter site key"
65
  msgstr "Wprowadź klucz prywatny"
66
 
67
+ #: google-captcha.php:313 google-captcha.php:319
 
68
  msgid "WARNING: The captcha will not display while you don't fill key fields."
69
+ msgstr ""
70
+ "OSTRZEŻENIE: Kod captcha nie będzie wyświetlany, jeżeli nie wprowadzisz "
71
+ "kluczy."
72
 
73
+ #: google-captcha.php:318
74
  #, fuzzy
75
  msgid "Enter secret key"
76
  msgstr "Wprowadź klucz prywatny"
77
 
78
+ #: google-captcha.php:341
79
  msgid "Settings saved"
80
  msgstr "Ustawienia zapisane"
81
 
82
+ #: google-captcha.php:347
83
  #, fuzzy
84
  msgid "All plugin settings were restored."
85
  msgstr "stronie ustawień wtyczki"
86
 
87
+ #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
 
 
88
  msgid "Settings"
89
  msgstr "Ustawienia"
90
 
91
+ #: google-captcha.php:365
 
 
 
 
 
92
  msgid "Go PRO"
93
  msgstr ""
94
 
95
+ #: google-captcha.php:370
96
+ msgid ""
97
+ "Google Captcha version 2 will not work correctly, since the option "
98
+ "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
99
  msgstr ""
100
 
101
+ #: google-captcha.php:375
102
+ msgid ""
103
+ "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
104
+ "version 1 features."
105
  msgstr ""
106
 
107
+ #: google-captcha.php:390
108
+ #, fuzzy, php-format
109
+ msgid ""
110
+ "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
111
+ "please use %s button"
112
+ msgstr ""
113
+ "Jeżeli chcesz umieścić wtyczkę Google Captcha we własnym formularzu, po "
114
+ "prostu skopiuj i wklej ten kod w swoim poście lub na swojej stronie:"
115
+
116
+ #: google-captcha.php:396
117
+ #, php-format
118
+ msgid ""
119
+ "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
120
+ "on %s button in the content edit block using the Visual mode. If the button "
121
+ "isn't displayed or you would like to add the Google Captcha (reCAPTCHA) to "
122
+ "your own form , please use the shortcode %s"
123
+ msgstr ""
124
 
125
+ #: google-captcha.php:404
126
  msgid "Authentication"
127
  msgstr "Uwierzytelnianie"
128
 
129
+ #: google-captcha.php:405
130
+ #, fuzzy, php-format
131
+ msgid "Before you are able to do something, you must to register %shere%s"
132
  msgstr "Aby móc cokolwiek zrobić, musisz się zarejestrować %s tutaj %s"
133
 
134
+ #: google-captcha.php:406
135
  #, fuzzy
136
  msgid "Enter site key and secret key, that you get after registration."
137
+ msgstr ""
138
+ "Wprowadź swój klucz publiczny i prywatny, uzyskane po dokonaniu rejestracji."
139
 
140
+ #: google-captcha.php:418
141
  msgid "Options"
142
  msgstr "Opcje"
143
 
144
+ #: google-captcha.php:421
145
  msgid "Enable reCAPTCHA for"
146
  msgstr ""
147
 
148
+ #: google-captcha.php:425
149
+ msgid "WordPress default"
150
+ msgstr ""
151
+
152
+ #: google-captcha.php:434
153
+ msgid "This option is available only for network or for main blog"
154
+ msgstr ""
155
 
156
+ #: google-captcha.php:442
 
157
  #, fuzzy
158
+ msgid "Plugins"
159
+ msgstr "Strona Wtyczki"
160
 
161
+ #: google-captcha.php:450 google-captcha.php:455
162
+ #, php-format
163
+ msgid "You should %s to use this functionality"
164
  msgstr ""
165
 
166
+ #: google-captcha.php:451
167
+ #, fuzzy
168
+ msgid "activate"
169
+ msgstr "Motyw aktywny"
170
 
171
+ #: google-captcha.php:451
172
+ msgid "for network"
173
  msgstr ""
174
 
175
+ #: google-captcha.php:456
176
+ msgid "download"
 
177
  msgstr ""
178
 
179
+ #: google-captcha.php:468 google-captcha.php:545
180
+ msgid "Close"
 
181
  msgstr ""
182
 
183
+ #: google-captcha.php:480 google-captcha.php:581
184
+ msgid "Unlock premium options by upgrading to Pro version"
 
 
185
  msgstr ""
186
 
187
+ #: google-captcha.php:483 google-captcha.php:584
188
+ msgid "Learn More"
189
  msgstr ""
190
 
191
+ #: google-captcha.php:489
192
+ #, php-format
193
+ msgid ""
194
+ "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
195
  msgstr ""
196
 
197
+ #: google-captcha.php:489 google-captcha.php:982
198
+ msgid "FAQ"
199
+ msgstr "FAQ"
200
 
201
+ #: google-captcha.php:494
202
+ msgid "Hide reCAPTCHA in Comments form for"
203
  msgstr ""
204
 
205
+ #: google-captcha.php:506
206
+ msgid "reCAPTCHA version"
207
  msgstr ""
208
 
209
+ #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
210
+ #: google-captcha.php:512
211
+ msgid "version"
212
  msgstr ""
213
 
214
+ #: google-captcha.php:518 google-captcha.php:531
215
+ msgid "reCAPTCHA theme"
 
216
  msgstr ""
217
 
218
+ #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
219
+ msgid "for version"
220
+ msgstr ""
 
221
 
222
+ #: google-captcha.php:549
223
+ msgid "reCAPTCHA language"
 
224
  msgstr ""
225
 
226
+ #: google-captcha.php:556
227
+ msgid "Use the current site language"
228
  msgstr ""
229
 
230
+ #: google-captcha.php:556
231
+ msgid "Using"
232
  msgstr ""
233
 
234
+ #: google-captcha.php:562
235
+ msgid "reCAPTCHA size"
236
  msgstr ""
237
 
238
+ #: google-captcha.php:591
239
  msgid "Save Changes"
240
  msgstr "Zapisz zmiany"
241
 
242
+ #: google-captcha.php:650 google-captcha.php:998
243
  msgid "To use Google Captcha you must get the keys from"
244
  msgstr "Aby korzystać z Google Captcha, musisz najpierw uzyskać klucze"
245
 
246
+ #: google-captcha.php:651 google-captcha.php:999
247
  msgid "here"
248
  msgstr "stąd"
249
 
250
+ #: google-captcha.php:652 google-captcha.php:1000
251
  msgid "and enter them on the"
252
  msgstr "i wprowadzić je na"
253
 
254
+ #: google-captcha.php:654 google-captcha.php:1002
255
  msgid "plugin setting page"
256
  msgstr "stronie ustawień wtyczki"
257
 
258
+ #: google-captcha.php:822 google-captcha.php:851
 
 
 
 
 
 
 
259
  msgid "Error"
260
  msgstr ""
261
 
262
+ #: google-captcha.php:822 google-captcha.php:881
 
 
263
  #, fuzzy
264
+ msgid "You have entered an incorrect reCAPTCHA value."
265
  msgstr "Błąd: wprowadzono nieprawidłowy kod CAPTCHA."
266
 
267
+ #: google-captcha.php:851
268
+ #, fuzzy
269
+ msgid ""
270
+ "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
271
+ "browser, and try again."
272
+ msgstr ""
273
+ "Błąd: wprowadzono nieprawidłowy kod CAPTCHA. Kliknij przycisk WSTECZ na "
274
+ "pasku przeglądarki i spróbuj ponownie."
275
 
276
+ #: google-captcha.php:983
277
  msgid "Support"
278
  msgstr "Wsparcie"
279
 
280
+ #~ msgid "powered by"
281
+ #~ msgstr "opracowany przez"
282
+
283
+ #, fuzzy
284
+ #~ msgid "Activate"
285
+ #~ msgstr "Motyw aktywny"
286
+
287
  #~ msgid "Contact form"
288
  #~ msgstr "Formularz kontaktowy"
289
 
318
  #~ msgid "Back to the WordPress"
319
  #~ msgstr "Wróć do WordPress"
320
 
 
 
 
321
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
322
  #~ msgstr ""
323
  #~ "Jeżeli podoba Ci się nasza wtyczka, oceń ją 5 gwiazdkami w witrynie "
languages/google-captcha-pt_BR.mo CHANGED
Binary file
languages/google-captcha-pt_BR.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: google-captcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-02 15:27+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Elton Peetz Prado <epeetz@gmail.com>\n"
9
  "Language: pt_BR\n"
10
  "MIME-Version: 1.0\n"
@@ -17,264 +17,282 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:34
21
- #: google-captcha.php:272
22
  msgid "Google Captcha Settings"
23
  msgstr "Configurações Google Captcha"
24
 
25
- #: google-captcha.php:182
 
 
 
 
 
26
  msgid "Normal"
27
  msgstr ""
28
 
29
- #: google-captcha.php:183
30
  msgid "Compact"
31
  msgstr ""
32
 
33
- #: google-captcha.php:189
34
  #, fuzzy
35
  msgid "Site key"
36
  msgstr "URL do site"
37
 
38
- #: google-captcha.php:194
39
  msgid "Secret Key"
40
  msgstr ""
41
 
42
- #: google-captcha.php:202
43
  msgid "Login form"
44
  msgstr "Formulário de login"
45
 
46
- #: google-captcha.php:203
47
  msgid "Registration form"
48
  msgstr "Formulário de registro"
49
 
50
- #: google-captcha.php:204
51
  msgid "Reset password form"
52
  msgstr "Formulário de alterar senha"
53
 
54
- #: google-captcha.php:205
55
  msgid "Comments form"
56
  msgstr "Fomulário de comentários"
57
 
58
- #: google-captcha.php:224
59
  #, fuzzy
60
  msgid "Enter site key"
61
  msgstr "Digite a chave privada"
62
 
63
- #: google-captcha.php:225
64
- #: google-captcha.php:231
65
  msgid "WARNING: The captcha will not display while you don't fill key fields."
66
- msgstr "AVISO: O captcha não será exibido enquanto você não preencher os campos-chave."
 
 
67
 
68
- #: google-captcha.php:230
69
  #, fuzzy
70
  msgid "Enter secret key"
71
  msgstr "Digite a chave privada"
72
 
73
- #: google-captcha.php:251
74
  msgid "Settings saved"
75
  msgstr "Configurações salvas"
76
 
77
- #: google-captcha.php:257
78
  #, fuzzy
79
  msgid "All plugin settings were restored."
80
  msgstr "página de configuração do plugin"
81
 
82
- #: google-captcha.php:274
83
- #: google-captcha.php:727
84
- #: google-captcha.php:740
85
  msgid "Settings"
86
  msgstr "Configurações"
87
 
88
- #: google-captcha.php:275
89
- #: google-captcha.php:741
90
- msgid "FAQ"
91
- msgstr "FAQ"
92
-
93
- #: google-captcha.php:276
94
  msgid "Go PRO"
95
  msgstr ""
96
 
97
- #: google-captcha.php:286
98
- msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
 
 
99
  msgstr ""
100
 
101
- #: google-captcha.php:287
102
- #, fuzzy
103
- msgid "Read more."
104
- msgstr "Saber mais"
 
105
 
106
- #: google-captcha.php:294
107
- #, fuzzy
108
- msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your form:"
109
- msgstr "Se você quiser adicionar o Google Captcha para seu próprio formulário, basta copiar e colar este shortcode para o seu post ou página:"
 
 
 
 
110
 
111
- #: google-captcha.php:296
 
 
 
 
 
 
 
 
 
112
  msgid "Authentication"
113
  msgstr "Autenticação"
114
 
115
- #: google-captcha.php:297
116
- #, php-format
117
- msgid "Before you are able to do something, you must to register %s here %s"
118
  msgstr "Antes de você fazer alguma coisa, deve se registrar %s aqui %s"
119
 
120
- #: google-captcha.php:298
121
  #, fuzzy
122
  msgid "Enter site key and secret key, that you get after registration."
123
  msgstr "Digite as chaves públicas e privadas, que você recebe após o registro."
124
 
125
- #: google-captcha.php:310
126
  msgid "Options"
127
  msgstr "Opções"
128
 
129
- #: google-captcha.php:313
130
  msgid "Enable reCAPTCHA for"
131
  msgstr ""
132
 
133
- #: google-captcha.php:321
134
- #: google-captcha.php:324
135
- #: google-captcha.php:328
136
- msgid "powered by"
137
- msgstr "distribuído por"
 
 
 
 
 
 
 
 
 
 
 
 
138
 
139
- #: google-captcha.php:324
140
- #: google-captcha.php:392
141
- msgid "Activate"
142
  msgstr "Ativar"
143
 
144
- #: google-captcha.php:328
145
- #: google-captcha.php:396
146
- msgid "Download"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
  msgstr ""
148
 
149
- #: google-captcha.php:333
 
 
 
 
 
 
 
 
 
 
150
  #, fuzzy
151
  msgid "Hide reCAPTCHA in Comments form for"
152
  msgstr "Versão do PHP"
153
 
154
- #: google-captcha.php:341
155
  #, fuzzy
156
  msgid "reCAPTCHA version"
157
  msgstr "Versão do PHP"
158
 
159
- #: google-captcha.php:343
160
- #: google-captcha.php:344
161
  #, fuzzy
162
  msgid "version"
163
  msgstr "Versão do PHP"
164
 
165
- #: google-captcha.php:349
166
- #: google-captcha.php:362
167
  #, fuzzy
168
  msgid "reCAPTCHA theme"
169
  msgstr "Versão do PHP"
170
 
171
- #: google-captcha.php:350
172
- #: google-captcha.php:363
173
- #: google-captcha.php:406
174
  #, fuzzy
175
  msgid "for version"
176
  msgstr "Versão do PHP"
177
 
178
- #: google-captcha.php:376
179
- msgid "Close"
180
- msgstr ""
181
-
182
- #: google-captcha.php:380
183
  #, fuzzy
184
  msgid "reCAPTCHA language"
185
  msgstr "Versão do PHP"
186
 
187
- #: google-captcha.php:399
188
  msgid "Use the current site language"
189
  msgstr ""
190
 
191
- #: google-captcha.php:399
192
  msgid "Using"
193
  msgstr ""
194
 
195
- #: google-captcha.php:405
196
  #, fuzzy
197
  msgid "reCAPTCHA size"
198
  msgstr "Versão do PHP"
199
 
200
- #: google-captcha.php:422
201
- msgid "Enable CAPTCHA"
202
- msgstr ""
203
-
204
- #: google-captcha.php:429
205
- #: google-captcha.php:433
206
- msgid "You should"
207
- msgstr ""
208
-
209
- #: google-captcha.php:429
210
- #, fuzzy
211
- msgid "activate"
212
- msgstr "Ativar"
213
-
214
- #: google-captcha.php:429
215
- #: google-captcha.php:433
216
- msgid "to use this functionality"
217
- msgstr ""
218
-
219
- #: google-captcha.php:433
220
- msgid "download"
221
- msgstr ""
222
-
223
- #: google-captcha.php:442
224
- msgid "Unlock premium options by upgrading to Pro version"
225
- msgstr ""
226
-
227
- #: google-captcha.php:445
228
- msgid "Learn More"
229
- msgstr ""
230
-
231
- #: google-captcha.php:452
232
  msgid "Save Changes"
233
  msgstr "Salvar alterações"
234
 
235
- #: google-captcha.php:508
236
  msgid "To use Google Captcha you must get the keys from"
237
  msgstr "Para usar o Google Captcha é necessário obter as chaves de"
238
 
239
- #: google-captcha.php:509
240
  msgid "here"
241
  msgstr "aqui"
242
 
243
- #: google-captcha.php:510
244
  msgid "and enter them on the"
245
  msgstr "e inserí-los no"
246
 
247
- #: google-captcha.php:512
248
  msgid "plugin setting page"
249
  msgstr "página de configuração do plugin"
250
 
251
- #: google-captcha.php:527
252
- #: google-captcha.php:564
253
- msgid "Error: You have entered an incorrect CAPTCHA value."
254
- msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
255
-
256
- #: google-captcha.php:633
257
- #: google-captcha.php:645
258
- #: google-captcha.php:654
259
  msgid "Error"
260
  msgstr ""
261
 
262
- #: google-captcha.php:633
263
- #: google-captcha.php:645
264
- #: google-captcha.php:654
265
  #, fuzzy
266
- msgid "You have entered an incorrect CAPTCHA value."
267
  msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
268
 
269
- #: google-captcha.php:698
270
- #: google-captcha.php:705
271
- msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
272
- msgstr "Erro: Você digitou um CAPTCHA com valor incorreto. Clique no botão Voltar do seu navegador e tente novamente."
 
 
 
 
273
 
274
- #: google-captcha.php:742
275
  msgid "Support"
276
  msgstr "Suporte"
277
 
 
 
 
 
 
 
 
 
 
 
278
  #~ msgid "Contact form"
279
  #~ msgstr "Formulário de contato"
280
 
@@ -397,9 +415,6 @@ msgstr "Suporte"
397
  #~ msgid "Home URL"
398
  #~ msgstr "URL do início"
399
 
400
- #~ msgid "WordPress Version"
401
- #~ msgstr "Versão do WordPress"
402
-
403
  #~ msgid "WordPress DB Version"
404
  #~ msgstr "Versão do DB WordPress"
405
 
@@ -421,9 +436,6 @@ msgstr "Suporte"
421
  #~ msgid "Sorry, email message could not be delivered."
422
  #~ msgstr "Desculpe, mensagem de e-mail não pôde ser entregue."
423
 
424
- #~ msgid "Plugins"
425
- #~ msgstr "Plugins"
426
-
427
  #~ msgid "Themes"
428
  #~ msgstr "Temas"
429
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-10 10:03+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Elton Peetz Prado <epeetz@gmail.com>\n"
9
  "Language: pt_BR\n"
10
  "MIME-Version: 1.0\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:362
 
21
  msgid "Google Captcha Settings"
22
  msgstr "Configurações Google Captcha"
23
 
24
+ #: google-captcha.php:166
25
+ #, fuzzy
26
+ msgid "Error: You have entered an incorrect reCAPTCHA value."
27
+ msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
28
+
29
+ #: google-captcha.php:270
30
  msgid "Normal"
31
  msgstr ""
32
 
33
+ #: google-captcha.php:271
34
  msgid "Compact"
35
  msgstr ""
36
 
37
+ #: google-captcha.php:277
38
  #, fuzzy
39
  msgid "Site key"
40
  msgstr "URL do site"
41
 
42
+ #: google-captcha.php:282
43
  msgid "Secret Key"
44
  msgstr ""
45
 
46
+ #: google-captcha.php:290
47
  msgid "Login form"
48
  msgstr "Formulário de login"
49
 
50
+ #: google-captcha.php:291
51
  msgid "Registration form"
52
  msgstr "Formulário de registro"
53
 
54
+ #: google-captcha.php:292
55
  msgid "Reset password form"
56
  msgstr "Formulário de alterar senha"
57
 
58
+ #: google-captcha.php:293
59
  msgid "Comments form"
60
  msgstr "Fomulário de comentários"
61
 
62
+ #: google-captcha.php:312
63
  #, fuzzy
64
  msgid "Enter site key"
65
  msgstr "Digite a chave privada"
66
 
67
+ #: google-captcha.php:313 google-captcha.php:319
 
68
  msgid "WARNING: The captcha will not display while you don't fill key fields."
69
+ msgstr ""
70
+ "AVISO: O captcha não será exibido enquanto você não preencher os campos-"
71
+ "chave."
72
 
73
+ #: google-captcha.php:318
74
  #, fuzzy
75
  msgid "Enter secret key"
76
  msgstr "Digite a chave privada"
77
 
78
+ #: google-captcha.php:341
79
  msgid "Settings saved"
80
  msgstr "Configurações salvas"
81
 
82
+ #: google-captcha.php:347
83
  #, fuzzy
84
  msgid "All plugin settings were restored."
85
  msgstr "página de configuração do plugin"
86
 
87
+ #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
 
 
88
  msgid "Settings"
89
  msgstr "Configurações"
90
 
91
+ #: google-captcha.php:365
 
 
 
 
 
92
  msgid "Go PRO"
93
  msgstr ""
94
 
95
+ #: google-captcha.php:370
96
+ msgid ""
97
+ "Google Captcha version 2 will not work correctly, since the option "
98
+ "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
99
  msgstr ""
100
 
101
+ #: google-captcha.php:375
102
+ msgid ""
103
+ "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
104
+ "version 1 features."
105
+ msgstr ""
106
 
107
+ #: google-captcha.php:390
108
+ #, fuzzy, php-format
109
+ msgid ""
110
+ "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
111
+ "please use %s button"
112
+ msgstr ""
113
+ "Se você quiser adicionar o Google Captcha para seu próprio formulário, basta "
114
+ "copiar e colar este shortcode para o seu post ou página:"
115
 
116
+ #: google-captcha.php:396
117
+ #, php-format
118
+ msgid ""
119
+ "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
120
+ "on %s button in the content edit block using the Visual mode. If the button "
121
+ "isn't displayed or you would like to add the Google Captcha (reCAPTCHA) to "
122
+ "your own form , please use the shortcode %s"
123
+ msgstr ""
124
+
125
+ #: google-captcha.php:404
126
  msgid "Authentication"
127
  msgstr "Autenticação"
128
 
129
+ #: google-captcha.php:405
130
+ #, fuzzy, php-format
131
+ msgid "Before you are able to do something, you must to register %shere%s"
132
  msgstr "Antes de você fazer alguma coisa, deve se registrar %s aqui %s"
133
 
134
+ #: google-captcha.php:406
135
  #, fuzzy
136
  msgid "Enter site key and secret key, that you get after registration."
137
  msgstr "Digite as chaves públicas e privadas, que você recebe após o registro."
138
 
139
+ #: google-captcha.php:418
140
  msgid "Options"
141
  msgstr "Opções"
142
 
143
+ #: google-captcha.php:421
144
  msgid "Enable reCAPTCHA for"
145
  msgstr ""
146
 
147
+ #: google-captcha.php:425
148
+ #, fuzzy
149
+ msgid "WordPress default"
150
+ msgstr "Versão do WordPress"
151
+
152
+ #: google-captcha.php:434
153
+ msgid "This option is available only for network or for main blog"
154
+ msgstr ""
155
+
156
+ #: google-captcha.php:442
157
+ msgid "Plugins"
158
+ msgstr "Plugins"
159
+
160
+ #: google-captcha.php:450 google-captcha.php:455
161
+ #, php-format
162
+ msgid "You should %s to use this functionality"
163
+ msgstr ""
164
 
165
+ #: google-captcha.php:451
166
+ #, fuzzy
167
+ msgid "activate"
168
  msgstr "Ativar"
169
 
170
+ #: google-captcha.php:451
171
+ msgid "for network"
172
+ msgstr ""
173
+
174
+ #: google-captcha.php:456
175
+ msgid "download"
176
+ msgstr ""
177
+
178
+ #: google-captcha.php:468 google-captcha.php:545
179
+ msgid "Close"
180
+ msgstr ""
181
+
182
+ #: google-captcha.php:480 google-captcha.php:581
183
+ msgid "Unlock premium options by upgrading to Pro version"
184
+ msgstr ""
185
+
186
+ #: google-captcha.php:483 google-captcha.php:584
187
+ msgid "Learn More"
188
  msgstr ""
189
 
190
+ #: google-captcha.php:489
191
+ #, php-format
192
+ msgid ""
193
+ "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
194
+ msgstr ""
195
+
196
+ #: google-captcha.php:489 google-captcha.php:982
197
+ msgid "FAQ"
198
+ msgstr "FAQ"
199
+
200
+ #: google-captcha.php:494
201
  #, fuzzy
202
  msgid "Hide reCAPTCHA in Comments form for"
203
  msgstr "Versão do PHP"
204
 
205
+ #: google-captcha.php:506
206
  #, fuzzy
207
  msgid "reCAPTCHA version"
208
  msgstr "Versão do PHP"
209
 
210
+ #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
211
+ #: google-captcha.php:512
212
  #, fuzzy
213
  msgid "version"
214
  msgstr "Versão do PHP"
215
 
216
+ #: google-captcha.php:518 google-captcha.php:531
 
217
  #, fuzzy
218
  msgid "reCAPTCHA theme"
219
  msgstr "Versão do PHP"
220
 
221
+ #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
 
 
222
  #, fuzzy
223
  msgid "for version"
224
  msgstr "Versão do PHP"
225
 
226
+ #: google-captcha.php:549
 
 
 
 
227
  #, fuzzy
228
  msgid "reCAPTCHA language"
229
  msgstr "Versão do PHP"
230
 
231
+ #: google-captcha.php:556
232
  msgid "Use the current site language"
233
  msgstr ""
234
 
235
+ #: google-captcha.php:556
236
  msgid "Using"
237
  msgstr ""
238
 
239
+ #: google-captcha.php:562
240
  #, fuzzy
241
  msgid "reCAPTCHA size"
242
  msgstr "Versão do PHP"
243
 
244
+ #: google-captcha.php:591
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
245
  msgid "Save Changes"
246
  msgstr "Salvar alterações"
247
 
248
+ #: google-captcha.php:650 google-captcha.php:998
249
  msgid "To use Google Captcha you must get the keys from"
250
  msgstr "Para usar o Google Captcha é necessário obter as chaves de"
251
 
252
+ #: google-captcha.php:651 google-captcha.php:999
253
  msgid "here"
254
  msgstr "aqui"
255
 
256
+ #: google-captcha.php:652 google-captcha.php:1000
257
  msgid "and enter them on the"
258
  msgstr "e inserí-los no"
259
 
260
+ #: google-captcha.php:654 google-captcha.php:1002
261
  msgid "plugin setting page"
262
  msgstr "página de configuração do plugin"
263
 
264
+ #: google-captcha.php:822 google-captcha.php:851
 
 
 
 
 
 
 
265
  msgid "Error"
266
  msgstr ""
267
 
268
+ #: google-captcha.php:822 google-captcha.php:881
 
 
269
  #, fuzzy
270
+ msgid "You have entered an incorrect reCAPTCHA value."
271
  msgstr "Erro: Você digitou um CAPTCHA com valor incorreto."
272
 
273
+ #: google-captcha.php:851
274
+ #, fuzzy
275
+ msgid ""
276
+ "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
277
+ "browser, and try again."
278
+ msgstr ""
279
+ "Erro: Você digitou um CAPTCHA com valor incorreto. Clique no botão Voltar do "
280
+ "seu navegador e tente novamente."
281
 
282
+ #: google-captcha.php:983
283
  msgid "Support"
284
  msgstr "Suporte"
285
 
286
+ #, fuzzy
287
+ #~ msgid "Read more."
288
+ #~ msgstr "Saber mais"
289
+
290
+ #~ msgid "powered by"
291
+ #~ msgstr "distribuído por"
292
+
293
+ #~ msgid "Activate"
294
+ #~ msgstr "Ativar"
295
+
296
  #~ msgid "Contact form"
297
  #~ msgstr "Formulário de contato"
298
 
415
  #~ msgid "Home URL"
416
  #~ msgstr "URL do início"
417
 
 
 
 
418
  #~ msgid "WordPress DB Version"
419
  #~ msgstr "Versão do DB WordPress"
420
 
436
  #~ msgid "Sorry, email message could not be delivered."
437
  #~ msgstr "Desculpe, mensagem de e-mail não pôde ser entregue."
438
 
 
 
 
439
  #~ msgid "Themes"
440
  #~ msgstr "Temas"
441
 
languages/google-captcha-ru_RU.mo CHANGED
Binary file
languages/google-captcha-ru_RU.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: google-captcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-02 15:27+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
10
  "MIME-Version: 1.0\n"
@@ -12,252 +12,297 @@ msgstr ""
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: google-captcha.php:34
20
- #: google-captcha.php:272
21
  msgid "Google Captcha Settings"
22
  msgstr "Настройки Google Captcha"
23
 
24
- #: google-captcha.php:182
 
 
 
 
25
  msgid "Normal"
26
  msgstr "Нормальный"
27
 
28
- #: google-captcha.php:183
29
  msgid "Compact"
30
  msgstr "Компактный"
31
 
32
- #: google-captcha.php:189
33
  msgid "Site key"
34
  msgstr "Ключ"
35
 
36
- #: google-captcha.php:194
37
  msgid "Secret Key"
38
  msgstr "Секретный ключ"
39
 
40
- #: google-captcha.php:202
41
  msgid "Login form"
42
  msgstr "Форма логина"
43
 
44
- #: google-captcha.php:203
45
  msgid "Registration form"
46
  msgstr "Форма регистрации"
47
 
48
- #: google-captcha.php:204
49
  msgid "Reset password form"
50
  msgstr "Форма восстановления пароля"
51
 
52
- #: google-captcha.php:205
53
  msgid "Comments form"
54
  msgstr "Форма комментариев"
55
 
56
- #: google-captcha.php:224
57
  msgid "Enter site key"
58
  msgstr "Введите ключ"
59
 
60
- #: google-captcha.php:225
61
- #: google-captcha.php:231
62
  msgid "WARNING: The captcha will not display while you don't fill key fields."
63
- msgstr "ПРЕДУПРЕЖДЕНИЕ: Google Captcha не будет отображаться пока вы не заполните ключевые поля."
 
 
64
 
65
- #: google-captcha.php:230
66
  msgid "Enter secret key"
67
  msgstr "Введите секретный ключ"
68
 
69
- #: google-captcha.php:251
70
  msgid "Settings saved"
71
  msgstr "Настройки сохранены"
72
 
73
- #: google-captcha.php:257
74
  msgid "All plugin settings were restored."
75
  msgstr "Настройки плагина были восстановлены."
76
 
77
- #: google-captcha.php:274
78
- #: google-captcha.php:727
79
- #: google-captcha.php:740
80
  msgid "Settings"
81
  msgstr "Настройки"
82
 
83
- #: google-captcha.php:275
84
- #: google-captcha.php:741
85
- msgid "FAQ"
86
- msgstr "FAQ"
87
-
88
- #: google-captcha.php:276
89
  msgid "Go PRO"
90
  msgstr "Перейти на PRO версию"
91
 
92
- #: google-captcha.php:286
93
- msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
94
- msgstr "Google Captcha версии 2 не будет работать корректно, потому что отключена опция \"allow_url_fopen\" в настройках PHP вашего хостинга."
 
 
 
 
 
95
 
96
- #: google-captcha.php:287
97
- msgid "Read more."
98
- msgstr "Подробнее."
 
 
 
 
99
 
100
- #: google-captcha.php:294
101
- msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your form:"
102
- msgstr "Если вы хотите добавить Google Captcha в свою форму, просто скопируйте и вставьте в контент вашей формы:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
 
104
- #: google-captcha.php:296
105
  msgid "Authentication"
106
  msgstr "Идентификация"
107
 
108
- #: google-captcha.php:297
109
  #, php-format
110
- msgid "Before you are able to do something, you must to register %s here %s"
111
- msgstr "Прежде чем вы сможете сделать что-нибудь, вы должны зарегистрироваться %s здесь %s"
 
 
112
 
113
- #: google-captcha.php:298
114
  msgid "Enter site key and secret key, that you get after registration."
115
  msgstr "Введите ключ и секретный ключ, которые вы получили после регистрации."
116
 
117
- #: google-captcha.php:310
118
  msgid "Options"
119
  msgstr "Опции"
120
 
121
- #: google-captcha.php:313
122
  msgid "Enable reCAPTCHA for"
123
  msgstr "Включить reCAPTCHA для"
124
 
125
- #: google-captcha.php:321
126
- #: google-captcha.php:324
127
- #: google-captcha.php:328
128
- msgid "powered by"
129
- msgstr "разработано компанией"
130
 
131
- #: google-captcha.php:324
132
- #: google-captcha.php:392
133
- msgid "Activate"
134
- msgstr "Активировать"
135
 
136
- #: google-captcha.php:328
137
- #: google-captcha.php:396
138
- msgid "Download"
139
- msgstr "Скачать"
 
 
 
 
 
 
 
 
140
 
141
- #: google-captcha.php:333
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  msgid "Hide reCAPTCHA in Comments form for"
143
  msgstr "Скрыть reCAPTCHA в Форма комментариев для"
144
 
145
- #: google-captcha.php:341
146
  msgid "reCAPTCHA version"
147
  msgstr "Версия reCAPTCHA"
148
 
149
- #: google-captcha.php:343
150
- #: google-captcha.php:344
151
  msgid "version"
152
  msgstr "версия"
153
 
154
- #: google-captcha.php:349
155
- #: google-captcha.php:362
156
  msgid "reCAPTCHA theme"
157
  msgstr "Тема reCAPTCHA"
158
 
159
- #: google-captcha.php:350
160
- #: google-captcha.php:363
161
- #: google-captcha.php:406
162
  msgid "for version"
163
  msgstr "для версии"
164
 
165
- #: google-captcha.php:376
166
- msgid "Close"
167
- msgstr "Закрыть"
168
-
169
- #: google-captcha.php:380
170
  msgid "reCAPTCHA language"
171
  msgstr "Язык reCAPTCHA"
172
 
173
- #: google-captcha.php:399
174
  msgid "Use the current site language"
175
  msgstr "Использовать текущий язык сайта"
176
 
177
- #: google-captcha.php:399
178
  msgid "Using"
179
  msgstr "Используя"
180
 
181
- #: google-captcha.php:405
182
  msgid "reCAPTCHA size"
183
  msgstr "Размер reCAPTCHA"
184
 
185
- #: google-captcha.php:422
186
- msgid "Enable CAPTCHA"
187
- msgstr "Включить CAPTCHA"
188
-
189
- #: google-captcha.php:429
190
- #: google-captcha.php:433
191
- msgid "You should"
192
- msgstr "Вам нужно"
193
-
194
- #: google-captcha.php:429
195
- msgid "activate"
196
- msgstr "активировать"
197
-
198
- #: google-captcha.php:429
199
- #: google-captcha.php:433
200
- msgid "to use this functionality"
201
- msgstr "чтобы использовать этот функционал"
202
-
203
- #: google-captcha.php:433
204
- msgid "download"
205
- msgstr "загрузить"
206
-
207
- #: google-captcha.php:442
208
- msgid "Unlock premium options by upgrading to Pro version"
209
- msgstr "Активируйте премиум опции обновившись до Pro версии"
210
-
211
- #: google-captcha.php:445
212
- msgid "Learn More"
213
- msgstr "Подробнее"
214
-
215
- #: google-captcha.php:452
216
  msgid "Save Changes"
217
  msgstr "Сохранить изменения"
218
 
219
- #: google-captcha.php:508
220
  msgid "To use Google Captcha you must get the keys from"
221
  msgstr "Чтобы использовать Google Captcha вам необходимо получить ключи"
222
 
223
- #: google-captcha.php:509
224
  msgid "here"
225
  msgstr "здесь"
226
 
227
- #: google-captcha.php:510
228
  msgid "and enter them on the"
229
  msgstr "и вставить их на"
230
 
231
- #: google-captcha.php:512
232
  msgid "plugin setting page"
233
  msgstr "страницу настроек плагина"
234
 
235
- #: google-captcha.php:527
236
- #: google-captcha.php:564
237
- msgid "Error: You have entered an incorrect CAPTCHA value."
238
- msgstr "Ошибка: Вы ввели неверное значение Captcha."
239
-
240
- #: google-captcha.php:633
241
- #: google-captcha.php:645
242
- #: google-captcha.php:654
243
  msgid "Error"
244
  msgstr "Ошибка"
245
 
246
- #: google-captcha.php:633
247
- #: google-captcha.php:645
248
- #: google-captcha.php:654
249
- msgid "You have entered an incorrect CAPTCHA value."
250
- msgstr "Ошибка: Вы ввели неверное значение Captcha."
251
 
252
- #: google-captcha.php:698
253
- #: google-captcha.php:705
254
- msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
255
- msgstr "Ошибка: Вы ввели неверное значение Captcha. Нажмите копку НАЗАД в своем браузере и попытайтесь еще."
 
 
 
256
 
257
- #: google-captcha.php:742
258
  msgid "Support"
259
  msgstr "Поддержка"
260
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
261
  #~ msgid "Notice:"
262
  #~ msgstr "Обратите внимание:"
263
 
@@ -309,9 +354,6 @@ msgstr "Поддержка"
309
  #~ msgid "Back to the WordPress"
310
  #~ msgstr "Вернуться назад на WordPress"
311
 
312
- #~ msgid "Plugins page"
313
- #~ msgstr "Страницу плагинов"
314
-
315
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
316
  #~ msgstr ""
317
  #~ "Если вам понравился плагин, пожалуйста, поставте нам 5 звезд на WordPress"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-10 10:03+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
10
  "MIME-Version: 1.0\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: google-captcha.php:34 google-captcha.php:362
 
20
  msgid "Google Captcha Settings"
21
  msgstr "Настройки Google Captcha"
22
 
23
+ #: google-captcha.php:166
24
+ msgid "Error: You have entered an incorrect reCAPTCHA value."
25
+ msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
26
+
27
+ #: google-captcha.php:270
28
  msgid "Normal"
29
  msgstr "Нормальный"
30
 
31
+ #: google-captcha.php:271
32
  msgid "Compact"
33
  msgstr "Компактный"
34
 
35
+ #: google-captcha.php:277
36
  msgid "Site key"
37
  msgstr "Ключ"
38
 
39
+ #: google-captcha.php:282
40
  msgid "Secret Key"
41
  msgstr "Секретный ключ"
42
 
43
+ #: google-captcha.php:290
44
  msgid "Login form"
45
  msgstr "Форма логина"
46
 
47
+ #: google-captcha.php:291
48
  msgid "Registration form"
49
  msgstr "Форма регистрации"
50
 
51
+ #: google-captcha.php:292
52
  msgid "Reset password form"
53
  msgstr "Форма восстановления пароля"
54
 
55
+ #: google-captcha.php:293
56
  msgid "Comments form"
57
  msgstr "Форма комментариев"
58
 
59
+ #: google-captcha.php:312
60
  msgid "Enter site key"
61
  msgstr "Введите ключ"
62
 
63
+ #: google-captcha.php:313 google-captcha.php:319
 
64
  msgid "WARNING: The captcha will not display while you don't fill key fields."
65
+ msgstr ""
66
+ "ПРЕДУПРЕЖДЕНИЕ: Google Captcha не будет отображаться пока вы не заполните "
67
+ "ключевые поля."
68
 
69
+ #: google-captcha.php:318
70
  msgid "Enter secret key"
71
  msgstr "Введите секретный ключ"
72
 
73
+ #: google-captcha.php:341
74
  msgid "Settings saved"
75
  msgstr "Настройки сохранены"
76
 
77
+ #: google-captcha.php:347
78
  msgid "All plugin settings were restored."
79
  msgstr "Настройки плагина были восстановлены."
80
 
81
+ #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
 
 
82
  msgid "Settings"
83
  msgstr "Настройки"
84
 
85
+ #: google-captcha.php:365
 
 
 
 
 
86
  msgid "Go PRO"
87
  msgstr "Перейти на PRO версию"
88
 
89
+ #: google-captcha.php:370
90
+ msgid ""
91
+ "Google Captcha version 2 will not work correctly, since the option "
92
+ "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
93
+ msgstr ""
94
+ "Google Captcha версии 2 не будет работать корректно, потому что отключена "
95
+ "опция \"allow_url_fopen\". Пожалуйста, обратитесь в службу поддержки вашего "
96
+ "хостинга."
97
 
98
+ #: google-captcha.php:375
99
+ msgid ""
100
+ "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
101
+ "version 1 features."
102
+ msgstr ""
103
+ "В связи с особенностями работы reCAPTCHA версии 1 на странице может "
104
+ "отображаться только одна reCAPTCHA."
105
 
106
+ #: google-captcha.php:390
107
+ #, php-format
108
+ msgid ""
109
+ "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
110
+ "please use %s button"
111
+ msgstr ""
112
+ "Если вы хотите добавить Google Captcha (reCAPTCHA) на вашу страницу или "
113
+ "пост, то используйте кнопку %s"
114
+
115
+ #: google-captcha.php:396
116
+ #, php-format
117
+ msgid ""
118
+ "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
119
+ "on %s button in the content edit block using the Visual mode. If the button "
120
+ "isn't displayed or you would like to add the Google Captcha (reCAPTCHA) to "
121
+ "your own form , please use the shortcode %s"
122
+ msgstr ""
123
+ "Вы можете добавить Google Captcha (reCAPTCHA) на вашу страницу или пост, "
124
+ "нажав на кнопку %s в блоке редактирования контента в режиме Visual. Если "
125
+ "кнопка не отображается или вы хотите добавить Google Captcha (reCAPTCHA) в "
126
+ "вашу собственную форму, пожалуйста, используйте шорткод %s"
127
 
128
+ #: google-captcha.php:404
129
  msgid "Authentication"
130
  msgstr "Идентификация"
131
 
132
+ #: google-captcha.php:405
133
  #, php-format
134
+ msgid "Before you are able to do something, you must to register %shere%s"
135
+ msgstr ""
136
+ "Прежде чем вы сможете сделать что-нибудь, вы должны зарегистрироваться "
137
+ "%sздесь%s"
138
 
139
+ #: google-captcha.php:406
140
  msgid "Enter site key and secret key, that you get after registration."
141
  msgstr "Введите ключ и секретный ключ, которые вы получили после регистрации."
142
 
143
+ #: google-captcha.php:418
144
  msgid "Options"
145
  msgstr "Опции"
146
 
147
+ #: google-captcha.php:421
148
  msgid "Enable reCAPTCHA for"
149
  msgstr "Включить reCAPTCHA для"
150
 
151
+ #: google-captcha.php:425
152
+ msgid "WordPress default"
153
+ msgstr "Стандартных форм WordPress"
 
 
154
 
155
+ #: google-captcha.php:434
156
+ msgid "This option is available only for network or for main blog"
157
+ msgstr "Эта опция доступна только для сети или для основного блога"
 
158
 
159
+ #: google-captcha.php:442
160
+ msgid "Plugins"
161
+ msgstr "Плагинов"
162
+
163
+ #: google-captcha.php:450 google-captcha.php:455
164
+ #, php-format
165
+ msgid "You should %s to use this functionality"
166
+ msgstr "Чтобы использовать этот функционал %s"
167
+
168
+ #: google-captcha.php:451
169
+ msgid "activate"
170
+ msgstr "активируйте"
171
 
172
+ #: google-captcha.php:451
173
+ msgid "for network"
174
+ msgstr "для сети"
175
+
176
+ #: google-captcha.php:456
177
+ msgid "download"
178
+ msgstr "загрузить"
179
+
180
+ #: google-captcha.php:468 google-captcha.php:545
181
+ msgid "Close"
182
+ msgstr "Закрыть"
183
+
184
+ #: google-captcha.php:480 google-captcha.php:581
185
+ msgid "Unlock premium options by upgrading to Pro version"
186
+ msgstr "Активируйте премиум опции обновившись до Pro версии"
187
+
188
+ #: google-captcha.php:483 google-captcha.php:584
189
+ msgid "Learn More"
190
+ msgstr "Подробнее"
191
+
192
+ #: google-captcha.php:489
193
+ #, php-format
194
+ msgid ""
195
+ "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
196
+ msgstr ""
197
+ "Если вы хотите добавить Google Captcha (reCAPTCHA) в кастомную форму, "
198
+ "смотрите %s"
199
+
200
+ #: google-captcha.php:489 google-captcha.php:982
201
+ msgid "FAQ"
202
+ msgstr "FAQ"
203
+
204
+ #: google-captcha.php:494
205
  msgid "Hide reCAPTCHA in Comments form for"
206
  msgstr "Скрыть reCAPTCHA в Форма комментариев для"
207
 
208
+ #: google-captcha.php:506
209
  msgid "reCAPTCHA version"
210
  msgstr "Версия reCAPTCHA"
211
 
212
+ #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
213
+ #: google-captcha.php:512
214
  msgid "version"
215
  msgstr "версия"
216
 
217
+ #: google-captcha.php:518 google-captcha.php:531
 
218
  msgid "reCAPTCHA theme"
219
  msgstr "Тема reCAPTCHA"
220
 
221
+ #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
 
 
222
  msgid "for version"
223
  msgstr "для версии"
224
 
225
+ #: google-captcha.php:549
 
 
 
 
226
  msgid "reCAPTCHA language"
227
  msgstr "Язык reCAPTCHA"
228
 
229
+ #: google-captcha.php:556
230
  msgid "Use the current site language"
231
  msgstr "Использовать текущий язык сайта"
232
 
233
+ #: google-captcha.php:556
234
  msgid "Using"
235
  msgstr "Используя"
236
 
237
+ #: google-captcha.php:562
238
  msgid "reCAPTCHA size"
239
  msgstr "Размер reCAPTCHA"
240
 
241
+ #: google-captcha.php:591
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
242
  msgid "Save Changes"
243
  msgstr "Сохранить изменения"
244
 
245
+ #: google-captcha.php:650 google-captcha.php:998
246
  msgid "To use Google Captcha you must get the keys from"
247
  msgstr "Чтобы использовать Google Captcha вам необходимо получить ключи"
248
 
249
+ #: google-captcha.php:651 google-captcha.php:999
250
  msgid "here"
251
  msgstr "здесь"
252
 
253
+ #: google-captcha.php:652 google-captcha.php:1000
254
  msgid "and enter them on the"
255
  msgstr "и вставить их на"
256
 
257
+ #: google-captcha.php:654 google-captcha.php:1002
258
  msgid "plugin setting page"
259
  msgstr "страницу настроек плагина"
260
 
261
+ #: google-captcha.php:822 google-captcha.php:851
 
 
 
 
 
 
 
262
  msgid "Error"
263
  msgstr "Ошибка"
264
 
265
+ #: google-captcha.php:822 google-captcha.php:881
266
+ msgid "You have entered an incorrect reCAPTCHA value."
267
+ msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
 
 
268
 
269
+ #: google-captcha.php:851
270
+ msgid ""
271
+ "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
272
+ "browser, and try again."
273
+ msgstr ""
274
+ "Ошибка: Вы ввели неверное значение reCAPTCHA. Нажмите копку НАЗАД в своем "
275
+ "браузере и попытайтесь снова."
276
 
277
+ #: google-captcha.php:983
278
  msgid "Support"
279
  msgstr "Поддержка"
280
 
281
+ #~ msgid ""
282
+ #~ "Google Captcha version 2 will not work correctly, since the option "
283
+ #~ "\"allow_url_fopen\" is disabled in the PHP settings of your hosting."
284
+ #~ msgstr ""
285
+ #~ "Google Captcha версии 2 не будет работать корректно, потому что отключена "
286
+ #~ "опция \"allow_url_fopen\" в настройках PHP вашего хостинга."
287
+
288
+ #~ msgid "Read more."
289
+ #~ msgstr "Подробнее."
290
+
291
+ #~ msgid "powered by"
292
+ #~ msgstr "разработано компанией"
293
+
294
+ #~ msgid "Activate"
295
+ #~ msgstr "Активировать"
296
+
297
+ #~ msgid "Download"
298
+ #~ msgstr "Скачать"
299
+
300
+ #~ msgid "Enable CAPTCHA"
301
+ #~ msgstr "Включить CAPTCHA"
302
+
303
+ #~ msgid "You should"
304
+ #~ msgstr "Вам нужно"
305
+
306
  #~ msgid "Notice:"
307
  #~ msgstr "Обратите внимание:"
308
 
354
  #~ msgid "Back to the WordPress"
355
  #~ msgstr "Вернуться назад на WordPress"
356
 
 
 
 
357
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
358
  #~ msgstr ""
359
  #~ "Если вам понравился плагин, пожалуйста, поставте нам 5 звезд на WordPress"
languages/google-captcha-uk.mo CHANGED
Binary file
languages/google-captcha-uk.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: google-captcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-02 15:27+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
9
  "Language: uk\n"
10
  "MIME-Version: 1.0\n"
@@ -16,248 +16,292 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: google-captcha.php:34
20
- #: google-captcha.php:272
21
  msgid "Google Captcha Settings"
22
  msgstr "Налаштування Google Captcha"
23
 
24
- #: google-captcha.php:182
 
 
 
 
 
 
25
  msgid "Normal"
26
  msgstr "Нормальний"
27
 
28
- #: google-captcha.php:183
29
  msgid "Compact"
30
  msgstr "Компактний"
31
 
32
- #: google-captcha.php:189
33
  msgid "Site key"
34
  msgstr "Ключ сайту"
35
 
36
- #: google-captcha.php:194
37
  msgid "Secret Key"
38
  msgstr "Секретний ключ"
39
 
40
- #: google-captcha.php:202
41
  msgid "Login form"
42
  msgstr "Форма логіну"
43
 
44
- #: google-captcha.php:203
45
  msgid "Registration form"
46
  msgstr "Форма реєстрації"
47
 
48
- #: google-captcha.php:204
49
  msgid "Reset password form"
50
  msgstr "Форма відновлення паролю"
51
 
52
- #: google-captcha.php:205
53
  msgid "Comments form"
54
  msgstr "Форма коментарів"
55
 
56
- #: google-captcha.php:224
57
  msgid "Enter site key"
58
  msgstr "Введіть ключ сайту"
59
 
60
- #: google-captcha.php:225
61
- #: google-captcha.php:231
62
  msgid "WARNING: The captcha will not display while you don't fill key fields."
63
- msgstr "УВАГА: Капча не буде відображатись, поки ви не заповните необхідні поля."
 
64
 
65
- #: google-captcha.php:230
66
  msgid "Enter secret key"
67
  msgstr "Введіть секретний ключ"
68
 
69
- #: google-captcha.php:251
70
  msgid "Settings saved"
71
  msgstr "Налаштування збережено"
72
 
73
- #: google-captcha.php:257
74
  msgid "All plugin settings were restored."
75
  msgstr "Налаштування плагіна були відновлені."
76
 
77
- #: google-captcha.php:274
78
- #: google-captcha.php:727
79
- #: google-captcha.php:740
80
  msgid "Settings"
81
  msgstr "Налаштування"
82
 
83
- #: google-captcha.php:275
84
- #: google-captcha.php:741
85
- msgid "FAQ"
86
- msgstr "FAQ"
87
-
88
- #: google-captcha.php:276
89
  msgid "Go PRO"
90
  msgstr "Перейти на PRO версію"
91
 
92
- #: google-captcha.php:286
93
- msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
94
- msgstr "версія 2 плагіну Google Captcha не працюватиме коректно, тому що опція \"allow_url_fopen\" заблокована в PHP налаштуваннях вашого хостінгу."
 
 
 
 
 
 
 
 
 
 
 
 
 
95
 
96
- #: google-captcha.php:287
97
- msgid "Read more."
98
- msgstr "Дізнатись більше."
 
 
 
 
 
99
 
100
- #: google-captcha.php:294
101
- msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your form:"
102
- msgstr "Якщо ви хочете додати Google Captcha у свою форму, просто вставте цей шорткод в контент форми:"
 
 
 
 
 
 
 
 
 
103
 
104
- #: google-captcha.php:296
105
  msgid "Authentication"
106
  msgstr "Ідентифікація"
107
 
108
- #: google-captcha.php:297
109
  #, php-format
110
- msgid "Before you are able to do something, you must to register %s here %s"
111
- msgstr "Щоб виконувати якісь дії, спершу зареєструйтесь %s тут %s"
112
 
113
- #: google-captcha.php:298
114
  msgid "Enter site key and secret key, that you get after registration."
115
  msgstr "Введіть відкритий і секретний ключі, які ви отримали після реєстрації."
116
 
117
- #: google-captcha.php:310
118
  msgid "Options"
119
  msgstr "Опції"
120
 
121
- #: google-captcha.php:313
122
  msgid "Enable reCAPTCHA for"
123
  msgstr "Включити reCAPTCHA для"
124
 
125
- #: google-captcha.php:321
126
- #: google-captcha.php:324
127
- #: google-captcha.php:328
128
- msgid "powered by"
129
- msgstr "розроблено компанією"
130
 
131
- #: google-captcha.php:324
132
- #: google-captcha.php:392
133
- msgid "Activate"
134
- msgstr "Активувати"
135
 
136
- #: google-captcha.php:328
137
- #: google-captcha.php:396
138
- msgid "Download"
139
- msgstr "Завантажити"
 
 
 
 
 
 
 
 
140
 
141
- #: google-captcha.php:333
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  msgid "Hide reCAPTCHA in Comments form for"
143
  msgstr "Приховати reCAPTCHA у Форма коментарів для"
144
 
145
- #: google-captcha.php:341
146
  msgid "reCAPTCHA version"
147
  msgstr "Версія reCAPTCHA"
148
 
149
- #: google-captcha.php:343
150
- #: google-captcha.php:344
151
  msgid "version"
152
  msgstr "версія"
153
 
154
- #: google-captcha.php:349
155
- #: google-captcha.php:362
156
  msgid "reCAPTCHA theme"
157
  msgstr "reCAPTCHA theme"
158
 
159
- #: google-captcha.php:350
160
- #: google-captcha.php:363
161
- #: google-captcha.php:406
162
  msgid "for version"
163
  msgstr "для версії"
164
 
165
- #: google-captcha.php:376
166
- msgid "Close"
167
- msgstr "Закрити"
168
-
169
- #: google-captcha.php:380
170
  msgid "reCAPTCHA language"
171
  msgstr "Мова reCAPTCHA"
172
 
173
- #: google-captcha.php:399
174
  msgid "Use the current site language"
175
  msgstr "Використовувати поточну мову сайту"
176
 
177
- #: google-captcha.php:399
178
  msgid "Using"
179
  msgstr "Використовуючи"
180
 
181
- #: google-captcha.php:405
182
  msgid "reCAPTCHA size"
183
  msgstr "Розмір reCAPTCHA"
184
 
185
- #: google-captcha.php:422
186
- msgid "Enable CAPTCHA"
187
- msgstr "Включити reCAPTCHA"
188
-
189
- #: google-captcha.php:429
190
- #: google-captcha.php:433
191
- msgid "You should"
192
- msgstr "Вам слід"
193
-
194
- #: google-captcha.php:429
195
- msgid "activate"
196
- msgstr "активувати"
197
-
198
- #: google-captcha.php:429
199
- #: google-captcha.php:433
200
- msgid "to use this functionality"
201
- msgstr "щоб використовувати даний функціонал"
202
-
203
- #: google-captcha.php:433
204
- msgid "download"
205
- msgstr "завантажити"
206
-
207
- #: google-captcha.php:442
208
- msgid "Unlock premium options by upgrading to Pro version"
209
- msgstr "Активуйте преміум опції оновившись до Pro версії"
210
-
211
- #: google-captcha.php:445
212
- msgid "Learn More"
213
- msgstr "Детальніше"
214
-
215
- #: google-captcha.php:452
216
  msgid "Save Changes"
217
  msgstr "Зберегти зміни"
218
 
219
- #: google-captcha.php:508
220
  msgid "To use Google Captcha you must get the keys from"
221
  msgstr "Щоб використовувати Google Captcha, вам необхідно отримати ключі з"
222
 
223
- #: google-captcha.php:509
224
  msgid "here"
225
  msgstr "тут"
226
 
227
- #: google-captcha.php:510
228
  msgid "and enter them on the"
229
  msgstr "і вставте їх у"
230
 
231
- #: google-captcha.php:512
232
  msgid "plugin setting page"
233
  msgstr "сторінку налаштувань плагіну"
234
 
235
- #: google-captcha.php:527
236
- #: google-captcha.php:564
237
- msgid "Error: You have entered an incorrect CAPTCHA value."
238
- msgstr "Помилка: Ви ввели невірне значення Captcha."
239
-
240
- #: google-captcha.php:633
241
- #: google-captcha.php:645
242
- #: google-captcha.php:654
243
  msgid "Error"
244
  msgstr "Помилка"
245
 
246
- #: google-captcha.php:633
247
- #: google-captcha.php:645
248
- #: google-captcha.php:654
249
- msgid "You have entered an incorrect CAPTCHA value."
250
- msgstr "Ви ввели невірне значення Captcha."
251
 
252
- #: google-captcha.php:698
253
- #: google-captcha.php:705
254
- msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
255
- msgstr "Помилка: Ви ввели невірне значення Captcha. Клікніть НАЗАД у своєму браузері та спробуйте ще раз."
 
 
 
256
 
257
- #: google-captcha.php:742
258
  msgid "Support"
259
  msgstr "Техпідтримка"
260
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
261
  #~ msgid "Notice:"
262
  #~ msgstr "Увага:"
263
 
@@ -309,9 +353,6 @@ msgstr "Техпідтримка"
309
  #~ msgid "Back to the WordPress"
310
  #~ msgstr "Повернутися на WordPress"
311
 
312
- #~ msgid "Plugins page"
313
- #~ msgstr "На сторінку плагінів"
314
-
315
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
316
  #~ msgstr ""
317
  #~ "Якщо вам сподобався наш плагін, будь ласка, поставте нам 5 зірочок на "
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-10 10:03+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
9
  "Language: uk\n"
10
  "MIME-Version: 1.0\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: google-captcha.php:34 google-captcha.php:362
 
20
  msgid "Google Captcha Settings"
21
  msgstr "Налаштування Google Captcha"
22
 
23
+ #: google-captcha.php:166
24
+ msgid "Error: You have entered an incorrect reCAPTCHA value."
25
+ msgstr ""
26
+ "Помилка: Ви ввели невірне значення Captcha.Помилка: Ви ввели невірне "
27
+ "значення reCAPTCHA."
28
+
29
+ #: google-captcha.php:270
30
  msgid "Normal"
31
  msgstr "Нормальний"
32
 
33
+ #: google-captcha.php:271
34
  msgid "Compact"
35
  msgstr "Компактний"
36
 
37
+ #: google-captcha.php:277
38
  msgid "Site key"
39
  msgstr "Ключ сайту"
40
 
41
+ #: google-captcha.php:282
42
  msgid "Secret Key"
43
  msgstr "Секретний ключ"
44
 
45
+ #: google-captcha.php:290
46
  msgid "Login form"
47
  msgstr "Форма логіну"
48
 
49
+ #: google-captcha.php:291
50
  msgid "Registration form"
51
  msgstr "Форма реєстрації"
52
 
53
+ #: google-captcha.php:292
54
  msgid "Reset password form"
55
  msgstr "Форма відновлення паролю"
56
 
57
+ #: google-captcha.php:293
58
  msgid "Comments form"
59
  msgstr "Форма коментарів"
60
 
61
+ #: google-captcha.php:312
62
  msgid "Enter site key"
63
  msgstr "Введіть ключ сайту"
64
 
65
+ #: google-captcha.php:313 google-captcha.php:319
 
66
  msgid "WARNING: The captcha will not display while you don't fill key fields."
67
+ msgstr ""
68
+ "УВАГА: Капча не буде відображатись, поки ви не заповните необхідні поля."
69
 
70
+ #: google-captcha.php:318
71
  msgid "Enter secret key"
72
  msgstr "Введіть секретний ключ"
73
 
74
+ #: google-captcha.php:341
75
  msgid "Settings saved"
76
  msgstr "Налаштування збережено"
77
 
78
+ #: google-captcha.php:347
79
  msgid "All plugin settings were restored."
80
  msgstr "Налаштування плагіна були відновлені."
81
 
82
+ #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
 
 
83
  msgid "Settings"
84
  msgstr "Налаштування"
85
 
86
+ #: google-captcha.php:365
 
 
 
 
 
87
  msgid "Go PRO"
88
  msgstr "Перейти на PRO версію"
89
 
90
+ #: google-captcha.php:370
91
+ msgid ""
92
+ "Google Captcha version 2 will not work correctly, since the option "
93
+ "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
94
+ msgstr ""
95
+ "Google Captcha версії 2 не працюватиме коректно, тому що відключена опція "
96
+ "\"allow_url_fopen \". Будь ласка, зверніться в службу підтримки вашого "
97
+ "хостингу."
98
+
99
+ #: google-captcha.php:375
100
+ msgid ""
101
+ "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
102
+ "version 1 features."
103
+ msgstr ""
104
+ "У зв'язку з особливостями роботи reCAPTCHA версії 1 на сторінці може "
105
+ "відображатися тільки одна reCAPTCHA."
106
 
107
+ #: google-captcha.php:390
108
+ #, php-format
109
+ msgid ""
110
+ "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
111
+ "please use %s button"
112
+ msgstr ""
113
+ "Якщо ви хочете додати Google Captcha (reCAPTCHA) на вашу сторінку або пост, "
114
+ "то використовуйте кнопку %s"
115
 
116
+ #: google-captcha.php:396
117
+ #, php-format
118
+ msgid ""
119
+ "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
120
+ "on %s button in the content edit block using the Visual mode. If the button "
121
+ "isn't displayed or you would like to add the Google Captcha (reCAPTCHA) to "
122
+ "your own form , please use the shortcode %s"
123
+ msgstr ""
124
+ "Ви можете додати Google Captcha (reCAPTCHA) на вашу сторінку або пост, "
125
+ "натиснувши на кнопку %s в блоці редагування контенту в режимі Visual. Якщо "
126
+ "кнопка не відображається або ви хочете додати Google Captcha (reCAPTCHA) в "
127
+ "вашу власну форму, будь ласка, використовуйте шорткод %s"
128
 
129
+ #: google-captcha.php:404
130
  msgid "Authentication"
131
  msgstr "Ідентифікація"
132
 
133
+ #: google-captcha.php:405
134
  #, php-format
135
+ msgid "Before you are able to do something, you must to register %shere%s"
136
+ msgstr "Щоб виконувати якісь дії, спершу зареєструйтесь %sтут%s"
137
 
138
+ #: google-captcha.php:406
139
  msgid "Enter site key and secret key, that you get after registration."
140
  msgstr "Введіть відкритий і секретний ключі, які ви отримали після реєстрації."
141
 
142
+ #: google-captcha.php:418
143
  msgid "Options"
144
  msgstr "Опції"
145
 
146
+ #: google-captcha.php:421
147
  msgid "Enable reCAPTCHA for"
148
  msgstr "Включити reCAPTCHA для"
149
 
150
+ #: google-captcha.php:425
151
+ msgid "WordPress default"
152
+ msgstr "Стандартних форм WordPress"
 
 
153
 
154
+ #: google-captcha.php:434
155
+ msgid "This option is available only for network or for main blog"
156
+ msgstr "Ця опція доступна тільки для мережі або для основного блогу"
 
157
 
158
+ #: google-captcha.php:442
159
+ msgid "Plugins"
160
+ msgstr "Плагінів"
161
+
162
+ #: google-captcha.php:450 google-captcha.php:455
163
+ #, php-format
164
+ msgid "You should %s to use this functionality"
165
+ msgstr "Щоб використовувати цей функціонал %s"
166
+
167
+ #: google-captcha.php:451
168
+ msgid "activate"
169
+ msgstr "активувати"
170
 
171
+ #: google-captcha.php:451
172
+ msgid "for network"
173
+ msgstr "для мережі"
174
+
175
+ #: google-captcha.php:456
176
+ msgid "download"
177
+ msgstr "завантажити"
178
+
179
+ #: google-captcha.php:468 google-captcha.php:545
180
+ msgid "Close"
181
+ msgstr "Закрити"
182
+
183
+ #: google-captcha.php:480 google-captcha.php:581
184
+ msgid "Unlock premium options by upgrading to Pro version"
185
+ msgstr "Активуйте преміум опції оновившись до Pro версії"
186
+
187
+ #: google-captcha.php:483 google-captcha.php:584
188
+ msgid "Learn More"
189
+ msgstr "Детальніше"
190
+
191
+ #: google-captcha.php:489
192
+ #, php-format
193
+ msgid ""
194
+ "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
195
+ msgstr ""
196
+ "Якщо ви хочете додати Google Captcha (reCAPTCHA) в кастомний форму, дивіться "
197
+ "%s"
198
+
199
+ #: google-captcha.php:489 google-captcha.php:982
200
+ msgid "FAQ"
201
+ msgstr "FAQ"
202
+
203
+ #: google-captcha.php:494
204
  msgid "Hide reCAPTCHA in Comments form for"
205
  msgstr "Приховати reCAPTCHA у Форма коментарів для"
206
 
207
+ #: google-captcha.php:506
208
  msgid "reCAPTCHA version"
209
  msgstr "Версія reCAPTCHA"
210
 
211
+ #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
212
+ #: google-captcha.php:512
213
  msgid "version"
214
  msgstr "версія"
215
 
216
+ #: google-captcha.php:518 google-captcha.php:531
 
217
  msgid "reCAPTCHA theme"
218
  msgstr "reCAPTCHA theme"
219
 
220
+ #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
 
 
221
  msgid "for version"
222
  msgstr "для версії"
223
 
224
+ #: google-captcha.php:549
 
 
 
 
225
  msgid "reCAPTCHA language"
226
  msgstr "Мова reCAPTCHA"
227
 
228
+ #: google-captcha.php:556
229
  msgid "Use the current site language"
230
  msgstr "Використовувати поточну мову сайту"
231
 
232
+ #: google-captcha.php:556
233
  msgid "Using"
234
  msgstr "Використовуючи"
235
 
236
+ #: google-captcha.php:562
237
  msgid "reCAPTCHA size"
238
  msgstr "Розмір reCAPTCHA"
239
 
240
+ #: google-captcha.php:591
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
  msgid "Save Changes"
242
  msgstr "Зберегти зміни"
243
 
244
+ #: google-captcha.php:650 google-captcha.php:998
245
  msgid "To use Google Captcha you must get the keys from"
246
  msgstr "Щоб використовувати Google Captcha, вам необхідно отримати ключі з"
247
 
248
+ #: google-captcha.php:651 google-captcha.php:999
249
  msgid "here"
250
  msgstr "тут"
251
 
252
+ #: google-captcha.php:652 google-captcha.php:1000
253
  msgid "and enter them on the"
254
  msgstr "і вставте їх у"
255
 
256
+ #: google-captcha.php:654 google-captcha.php:1002
257
  msgid "plugin setting page"
258
  msgstr "сторінку налаштувань плагіну"
259
 
260
+ #: google-captcha.php:822 google-captcha.php:851
 
 
 
 
 
 
 
261
  msgid "Error"
262
  msgstr "Помилка"
263
 
264
+ #: google-captcha.php:822 google-captcha.php:881
265
+ msgid "You have entered an incorrect reCAPTCHA value."
266
+ msgstr "Ви ввели невірне значення reCAPTCHA."
 
 
267
 
268
+ #: google-captcha.php:851
269
+ msgid ""
270
+ "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
271
+ "browser, and try again."
272
+ msgstr ""
273
+ "Помилка: Ви ввели невірне значення Captcha. Клікніть НАЗАД у своєму браузері "
274
+ "та спробуйте знову."
275
 
276
+ #: google-captcha.php:983
277
  msgid "Support"
278
  msgstr "Техпідтримка"
279
 
280
+ #~ msgid ""
281
+ #~ "Google Captcha version 2 will not work correctly, since the option "
282
+ #~ "\"allow_url_fopen\" is disabled in the PHP settings of your hosting."
283
+ #~ msgstr ""
284
+ #~ "версія 2 плагіну Google Captcha не працюватиме коректно, тому що опція "
285
+ #~ "\"allow_url_fopen\" заблокована в PHP налаштуваннях вашого хостінгу."
286
+
287
+ #~ msgid "Read more."
288
+ #~ msgstr "Дізнатись більше."
289
+
290
+ #~ msgid "powered by"
291
+ #~ msgstr "розроблено компанією"
292
+
293
+ #~ msgid "Activate"
294
+ #~ msgstr "Активувати"
295
+
296
+ #~ msgid "Download"
297
+ #~ msgstr "Завантажити"
298
+
299
+ #~ msgid "Enable CAPTCHA"
300
+ #~ msgstr "Включити reCAPTCHA"
301
+
302
+ #~ msgid "You should"
303
+ #~ msgstr "Вам слід"
304
+
305
  #~ msgid "Notice:"
306
  #~ msgstr "Увага:"
307
 
353
  #~ msgid "Back to the WordPress"
354
  #~ msgstr "Повернутися на WordPress"
355
 
 
 
 
356
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
357
  #~ msgstr ""
358
  #~ "Якщо вам сподобався наш плагін, будь ласка, поставте нам 5 зірочок на "
languages/google-captcha-zh_TW.mo CHANGED
Binary file
languages/google-captcha-zh_TW.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: google-captcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-02 15:28+0300\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Nick Lai <nick20080808@gmail.com>\n"
9
  "Language: zh_TW\n"
10
  "MIME-Version: 1.0\n"
@@ -17,256 +17,266 @@ msgstr ""
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: google-captcha.php:34
21
- #: google-captcha.php:272
22
  msgid "Google Captcha Settings"
23
  msgstr "reCAPTCHA 驗證碼設置"
24
 
25
- #: google-captcha.php:182
 
 
 
 
 
26
  msgid "Normal"
27
  msgstr ""
28
 
29
- #: google-captcha.php:183
30
  msgid "Compact"
31
  msgstr ""
32
 
33
- #: google-captcha.php:189
34
  msgid "Site key"
35
  msgstr ""
36
 
37
- #: google-captcha.php:194
38
  msgid "Secret Key"
39
  msgstr ""
40
 
41
- #: google-captcha.php:202
42
  msgid "Login form"
43
  msgstr "登入頁"
44
 
45
- #: google-captcha.php:203
46
  msgid "Registration form"
47
  msgstr "用戶註冊頁"
48
 
49
- #: google-captcha.php:204
50
  msgid "Reset password form"
51
  msgstr "重設密碼頁"
52
 
53
- #: google-captcha.php:205
54
  msgid "Comments form"
55
  msgstr "發表迴響框"
56
 
57
- #: google-captcha.php:224
58
  #, fuzzy
59
  msgid "Enter site key"
60
  msgstr "輸入私有密鑰"
61
 
62
- #: google-captcha.php:225
63
- #: google-captcha.php:231
64
  msgid "WARNING: The captcha will not display while you don't fill key fields."
65
  msgstr "警告:如果你不填寫此欄,驗證碼將不會顯示。"
66
 
67
- #: google-captcha.php:230
68
  #, fuzzy
69
  msgid "Enter secret key"
70
  msgstr "輸入私有密鑰"
71
 
72
- #: google-captcha.php:251
73
  msgid "Settings saved"
74
  msgstr "設定已儲存"
75
 
76
- #: google-captcha.php:257
77
  #, fuzzy
78
  msgid "All plugin settings were restored."
79
  msgstr "外掛設置頁"
80
 
81
- #: google-captcha.php:274
82
- #: google-captcha.php:727
83
- #: google-captcha.php:740
84
  msgid "Settings"
85
  msgstr "設定"
86
 
87
- #: google-captcha.php:275
88
- #: google-captcha.php:741
89
- msgid "FAQ"
90
- msgstr "常見問題"
91
-
92
- #: google-captcha.php:276
93
  msgid "Go PRO"
94
  msgstr ""
95
 
96
- #: google-captcha.php:286
97
- msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
 
 
98
  msgstr ""
99
 
100
- #: google-captcha.php:287
101
- msgid "Read more."
 
 
102
  msgstr ""
103
 
104
- #: google-captcha.php:294
105
- #, fuzzy
106
- msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your form:"
107
- msgstr "如果您想在自己的表格中加入reCAPTCHA驗證碼,只需貼上此代號到您的文章或頁面:"
 
 
 
 
 
 
 
 
 
 
 
 
108
 
109
- #: google-captcha.php:296
110
  msgid "Authentication"
111
  msgstr "身份驗證"
112
 
113
- #: google-captcha.php:297
114
- #, php-format
115
- msgid "Before you are able to do something, you must to register %s here %s"
116
  msgstr "在開始使用本外掛之先,請到%s這裡%s註冊。"
117
 
118
- #: google-captcha.php:298
119
  #, fuzzy
120
  msgid "Enter site key and secret key, that you get after registration."
121
  msgstr "然後複製公開金鑰(Public Key)和私有密鑰(Private Key)到到以下方框。"
122
 
123
- #: google-captcha.php:310
124
  msgid "Options"
125
  msgstr "選項"
126
 
127
- #: google-captcha.php:313
128
  msgid "Enable reCAPTCHA for"
129
  msgstr ""
130
 
131
- #: google-captcha.php:321
132
- #: google-captcha.php:324
133
- #: google-captcha.php:328
134
- msgid "powered by"
135
- msgstr "服務提供者:"
 
 
136
 
137
- #: google-captcha.php:324
138
- #: google-captcha.php:392
139
  #, fuzzy
140
- msgid "Activate"
141
- msgstr "Активировать Contact form"
142
 
143
- #: google-captcha.php:328
144
- #: google-captcha.php:396
145
- msgid "Download"
146
  msgstr ""
147
 
148
- #: google-captcha.php:333
149
- msgid "Hide reCAPTCHA in Comments form for"
150
- msgstr ""
 
151
 
152
- #: google-captcha.php:341
153
- msgid "reCAPTCHA version"
154
  msgstr ""
155
 
156
- #: google-captcha.php:343
157
- #: google-captcha.php:344
158
- msgid "version"
159
  msgstr ""
160
 
161
- #: google-captcha.php:349
162
- #: google-captcha.php:362
163
- msgid "reCAPTCHA theme"
164
  msgstr ""
165
 
166
- #: google-captcha.php:350
167
- #: google-captcha.php:363
168
- #: google-captcha.php:406
169
- msgid "for version"
170
  msgstr ""
171
 
172
- #: google-captcha.php:376
173
- msgid "Close"
174
  msgstr ""
175
 
176
- #: google-captcha.php:380
177
- msgid "reCAPTCHA language"
 
 
178
  msgstr ""
179
 
180
- #: google-captcha.php:399
181
- msgid "Use the current site language"
182
- msgstr ""
183
 
184
- #: google-captcha.php:399
185
- msgid "Using"
186
  msgstr ""
187
 
188
- #: google-captcha.php:405
189
- msgid "reCAPTCHA size"
190
  msgstr ""
191
 
192
- #: google-captcha.php:422
193
- msgid "Enable CAPTCHA"
 
194
  msgstr ""
195
 
196
- #: google-captcha.php:429
197
- #: google-captcha.php:433
198
- msgid "You should"
199
  msgstr ""
200
 
201
- #: google-captcha.php:429
202
- #, fuzzy
203
- msgid "activate"
204
- msgstr "Активировать Contact form"
205
 
206
- #: google-captcha.php:429
207
- #: google-captcha.php:433
208
- msgid "to use this functionality"
209
  msgstr ""
210
 
211
- #: google-captcha.php:433
212
- msgid "download"
213
  msgstr ""
214
 
215
- #: google-captcha.php:442
216
- msgid "Unlock premium options by upgrading to Pro version"
217
  msgstr ""
218
 
219
- #: google-captcha.php:445
220
- msgid "Learn More"
221
  msgstr ""
222
 
223
- #: google-captcha.php:452
224
  msgid "Save Changes"
225
  msgstr "儲存變更"
226
 
227
- #: google-captcha.php:508
228
  msgid "To use Google Captcha you must get the keys from"
229
  msgstr "如要用reCAPTCHA驗證碼,你必須輸入兩組金鑰。您可以在這裡領取:"
230
 
231
- #: google-captcha.php:509
232
  msgid "here"
233
  msgstr "點我"
234
 
235
- #: google-captcha.php:510
236
  msgid "and enter them on the"
237
  msgstr "然後將他們輸入到"
238
 
239
- #: google-captcha.php:512
240
  msgid "plugin setting page"
241
  msgstr "外掛設置頁"
242
 
243
- #: google-captcha.php:527
244
- #: google-captcha.php:564
245
- msgid "Error: You have entered an incorrect CAPTCHA value."
246
- msgstr "錯誤:您輸入的驗證碼不正確。"
247
-
248
- #: google-captcha.php:633
249
- #: google-captcha.php:645
250
- #: google-captcha.php:654
251
  msgid "Error"
252
  msgstr ""
253
 
254
- #: google-captcha.php:633
255
- #: google-captcha.php:645
256
- #: google-captcha.php:654
257
  #, fuzzy
258
- msgid "You have entered an incorrect CAPTCHA value."
259
  msgstr "錯誤:您輸入的驗證碼不正確。"
260
 
261
- #: google-captcha.php:698
262
- #: google-captcha.php:705
263
- msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
 
 
264
  msgstr "錯誤:您輸入的驗證碼不正確。請回到上一頁,然後重新輸入。"
265
 
266
- #: google-captcha.php:742
267
  msgid "Support"
268
  msgstr "支援"
269
 
 
 
 
 
 
 
 
270
  #~ msgid "Contact form"
271
  #~ msgstr "聯絡表格"
272
 
@@ -299,9 +309,6 @@ msgstr "支援"
299
  #~ msgid "Back to the WordPress"
300
  #~ msgstr "回到WordPress"
301
 
302
- #~ msgid "Plugins page"
303
- #~ msgstr "外掛頁面"
304
-
305
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
306
  #~ msgstr "如果你喜歡本外掛,請到WordPress給它五星評級!"
307
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Google Сaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-10 10:03+0300\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: Nick Lai <nick20080808@gmail.com>\n"
9
  "Language: zh_TW\n"
10
  "MIME-Version: 1.0\n"
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: google-captcha.php:34 google-captcha.php:362
 
21
  msgid "Google Captcha Settings"
22
  msgstr "reCAPTCHA 驗證碼設置"
23
 
24
+ #: google-captcha.php:166
25
+ #, fuzzy
26
+ msgid "Error: You have entered an incorrect reCAPTCHA value."
27
+ msgstr "錯誤:您輸入的驗證碼不正確。"
28
+
29
+ #: google-captcha.php:270
30
  msgid "Normal"
31
  msgstr ""
32
 
33
+ #: google-captcha.php:271
34
  msgid "Compact"
35
  msgstr ""
36
 
37
+ #: google-captcha.php:277
38
  msgid "Site key"
39
  msgstr ""
40
 
41
+ #: google-captcha.php:282
42
  msgid "Secret Key"
43
  msgstr ""
44
 
45
+ #: google-captcha.php:290
46
  msgid "Login form"
47
  msgstr "登入頁"
48
 
49
+ #: google-captcha.php:291
50
  msgid "Registration form"
51
  msgstr "用戶註冊頁"
52
 
53
+ #: google-captcha.php:292
54
  msgid "Reset password form"
55
  msgstr "重設密碼頁"
56
 
57
+ #: google-captcha.php:293
58
  msgid "Comments form"
59
  msgstr "發表迴響框"
60
 
61
+ #: google-captcha.php:312
62
  #, fuzzy
63
  msgid "Enter site key"
64
  msgstr "輸入私有密鑰"
65
 
66
+ #: google-captcha.php:313 google-captcha.php:319
 
67
  msgid "WARNING: The captcha will not display while you don't fill key fields."
68
  msgstr "警告:如果你不填寫此欄,驗證碼將不會顯示。"
69
 
70
+ #: google-captcha.php:318
71
  #, fuzzy
72
  msgid "Enter secret key"
73
  msgstr "輸入私有密鑰"
74
 
75
+ #: google-captcha.php:341
76
  msgid "Settings saved"
77
  msgstr "設定已儲存"
78
 
79
+ #: google-captcha.php:347
80
  #, fuzzy
81
  msgid "All plugin settings were restored."
82
  msgstr "外掛設置頁"
83
 
84
+ #: google-captcha.php:364 google-captcha.php:948 google-captcha.php:981
 
 
85
  msgid "Settings"
86
  msgstr "設定"
87
 
88
+ #: google-captcha.php:365
 
 
 
 
 
89
  msgid "Go PRO"
90
  msgstr ""
91
 
92
+ #: google-captcha.php:370
93
+ msgid ""
94
+ "Google Captcha version 2 will not work correctly, since the option "
95
+ "\"allow_url_fopen\" is disabled. Please contact your hosting support service."
96
  msgstr ""
97
 
98
+ #: google-captcha.php:375
99
+ msgid ""
100
+ "Only one reCAPTCHA can be displayed on the page, it's related to reCAPTCHA "
101
+ "version 1 features."
102
  msgstr ""
103
 
104
+ #: google-captcha.php:390
105
+ #, fuzzy, php-format
106
+ msgid ""
107
+ "If you would like to add a Google Captcha (reCAPTCHA) to your page or post, "
108
+ "please use %s button"
109
+ msgstr ""
110
+ "如果您想在自己的表格中加入reCAPTCHA驗證碼,只需貼上此代號到您的文章或頁面:"
111
+
112
+ #: google-captcha.php:396
113
+ #, php-format
114
+ msgid ""
115
+ "You can add the Google Captcha (reCAPTCHA) to your page or post by clicking "
116
+ "on %s button in the content edit block using the Visual mode. If the button "
117
+ "isn't displayed or you would like to add the Google Captcha (reCAPTCHA) to "
118
+ "your own form , please use the shortcode %s"
119
+ msgstr ""
120
 
121
+ #: google-captcha.php:404
122
  msgid "Authentication"
123
  msgstr "身份驗證"
124
 
125
+ #: google-captcha.php:405
126
+ #, fuzzy, php-format
127
+ msgid "Before you are able to do something, you must to register %shere%s"
128
  msgstr "在開始使用本外掛之先,請到%s這裡%s註冊。"
129
 
130
+ #: google-captcha.php:406
131
  #, fuzzy
132
  msgid "Enter site key and secret key, that you get after registration."
133
  msgstr "然後複製公開金鑰(Public Key)和私有密鑰(Private Key)到到以下方框。"
134
 
135
+ #: google-captcha.php:418
136
  msgid "Options"
137
  msgstr "選項"
138
 
139
+ #: google-captcha.php:421
140
  msgid "Enable reCAPTCHA for"
141
  msgstr ""
142
 
143
+ #: google-captcha.php:425
144
+ msgid "WordPress default"
145
+ msgstr ""
146
+
147
+ #: google-captcha.php:434
148
+ msgid "This option is available only for network or for main blog"
149
+ msgstr ""
150
 
151
+ #: google-captcha.php:442
 
152
  #, fuzzy
153
+ msgid "Plugins"
154
+ msgstr "外掛頁面"
155
 
156
+ #: google-captcha.php:450 google-captcha.php:455
157
+ #, php-format
158
+ msgid "You should %s to use this functionality"
159
  msgstr ""
160
 
161
+ #: google-captcha.php:451
162
+ #, fuzzy
163
+ msgid "activate"
164
+ msgstr "Активировать Contact form"
165
 
166
+ #: google-captcha.php:451
167
+ msgid "for network"
168
  msgstr ""
169
 
170
+ #: google-captcha.php:456
171
+ msgid "download"
 
172
  msgstr ""
173
 
174
+ #: google-captcha.php:468 google-captcha.php:545
175
+ msgid "Close"
 
176
  msgstr ""
177
 
178
+ #: google-captcha.php:480 google-captcha.php:581
179
+ msgid "Unlock premium options by upgrading to Pro version"
 
 
180
  msgstr ""
181
 
182
+ #: google-captcha.php:483 google-captcha.php:584
183
+ msgid "Learn More"
184
  msgstr ""
185
 
186
+ #: google-captcha.php:489
187
+ #, php-format
188
+ msgid ""
189
+ "If you would like to add Google Captcha (reCAPTCHA) to a custom form see %s"
190
  msgstr ""
191
 
192
+ #: google-captcha.php:489 google-captcha.php:982
193
+ msgid "FAQ"
194
+ msgstr "常見問題"
195
 
196
+ #: google-captcha.php:494
197
+ msgid "Hide reCAPTCHA in Comments form for"
198
  msgstr ""
199
 
200
+ #: google-captcha.php:506
201
+ msgid "reCAPTCHA version"
202
  msgstr ""
203
 
204
+ #: google-captcha.php:509 google-captcha.php:510 google-captcha.php:511
205
+ #: google-captcha.php:512
206
+ msgid "version"
207
  msgstr ""
208
 
209
+ #: google-captcha.php:518 google-captcha.php:531
210
+ msgid "reCAPTCHA theme"
 
211
  msgstr ""
212
 
213
+ #: google-captcha.php:519 google-captcha.php:532 google-captcha.php:563
214
+ msgid "for version"
215
+ msgstr ""
 
216
 
217
+ #: google-captcha.php:549
218
+ msgid "reCAPTCHA language"
 
219
  msgstr ""
220
 
221
+ #: google-captcha.php:556
222
+ msgid "Use the current site language"
223
  msgstr ""
224
 
225
+ #: google-captcha.php:556
226
+ msgid "Using"
227
  msgstr ""
228
 
229
+ #: google-captcha.php:562
230
+ msgid "reCAPTCHA size"
231
  msgstr ""
232
 
233
+ #: google-captcha.php:591
234
  msgid "Save Changes"
235
  msgstr "儲存變更"
236
 
237
+ #: google-captcha.php:650 google-captcha.php:998
238
  msgid "To use Google Captcha you must get the keys from"
239
  msgstr "如要用reCAPTCHA驗證碼,你必須輸入兩組金鑰。您可以在這裡領取:"
240
 
241
+ #: google-captcha.php:651 google-captcha.php:999
242
  msgid "here"
243
  msgstr "點我"
244
 
245
+ #: google-captcha.php:652 google-captcha.php:1000
246
  msgid "and enter them on the"
247
  msgstr "然後將他們輸入到"
248
 
249
+ #: google-captcha.php:654 google-captcha.php:1002
250
  msgid "plugin setting page"
251
  msgstr "外掛設置頁"
252
 
253
+ #: google-captcha.php:822 google-captcha.php:851
 
 
 
 
 
 
 
254
  msgid "Error"
255
  msgstr ""
256
 
257
+ #: google-captcha.php:822 google-captcha.php:881
 
 
258
  #, fuzzy
259
+ msgid "You have entered an incorrect reCAPTCHA value."
260
  msgstr "錯誤:您輸入的驗證碼不正確。"
261
 
262
+ #: google-captcha.php:851
263
+ #, fuzzy
264
+ msgid ""
265
+ "You have entered an incorrect reCAPTCHA value. Click the BACK button on your "
266
+ "browser, and try again."
267
  msgstr "錯誤:您輸入的驗證碼不正確。請回到上一頁,然後重新輸入。"
268
 
269
+ #: google-captcha.php:983
270
  msgid "Support"
271
  msgstr "支援"
272
 
273
+ #~ msgid "powered by"
274
+ #~ msgstr "服務提供者:"
275
+
276
+ #, fuzzy
277
+ #~ msgid "Activate"
278
+ #~ msgstr "Активировать Contact form"
279
+
280
  #~ msgid "Contact form"
281
  #~ msgstr "聯絡表格"
282
 
309
  #~ msgid "Back to the WordPress"
310
  #~ msgstr "回到WordPress"
311
 
 
 
 
312
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
313
  #~ msgstr "如果你喜歡本外掛,請到WordPress給它五星評級!"
314
 
lib/recaptchalib.php CHANGED
@@ -96,7 +96,7 @@ function gglcptch_recaptcha_get_html ($pubkey, $error = null, $use_ssl = false)
96
  if ($pubkey == null || $pubkey == '') {
97
  die ("To use reCAPTCHA you must get an API key from <a href='https://www.google.com/recaptcha/admin/create'>https://www.google.com/recaptcha/admin/create</a>");
98
  }
99
-
100
  if ($use_ssl) {
101
  $server = "https://www.google.com/recaptcha/api";
102
  } else {
@@ -107,13 +107,11 @@ function gglcptch_recaptcha_get_html ($pubkey, $error = null, $use_ssl = false)
107
  if ($error) {
108
  $errorpart = "&amp;error=" . $error;
109
  }
110
- return '<script type="text/javascript" src="'. $server . '/challenge?&k=' . $pubkey . $errorpart . '"></script>
111
-
112
- <noscript>
113
- <iframe src="'. $server . '/noscript?k=' . $pubkey . $errorpart . '" height="300" width="320" frameborder="0"></iframe><br/>
114
- <textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
115
- <input type="hidden" name="recaptcha_response_field" value="manual_challenge"/>
116
- </noscript>';
117
  }
118
 
119
  /**
@@ -143,8 +141,8 @@ function gglcptch_recaptcha_check_answer ($privkey, $remoteip, $challenge, $resp
143
  die ("For security reasons, you must pass the remote ip to reCAPTCHA");
144
  }
145
 
146
-
147
-
148
  //discard spam submissions
149
  if ($challenge == null || strlen($challenge) == 0 || $response == null || strlen($response) == 0) {
150
  $recaptcha_response = new gglcptch_ReCaptchaResponse();
@@ -199,7 +197,7 @@ function gglcptch_recaptcha_aes_encrypt($val,$ky) {
199
  if (! function_exists ("mcrypt_encrypt")) {
200
  die ("To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed.");
201
  }
202
- $mode=MCRYPT_MODE_CBC;
203
  $enc=MCRYPT_RIJNDAEL_128;
204
  $val=gglcptch_recaptcha_aes_pad($val);
205
  return mcrypt_encrypt($enc, $ky, $val, $mode, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0");
@@ -216,11 +214,11 @@ function gglcptch_recaptcha_mailhide_url($pubkey, $privkey, $email) {
216
  die ("To use reCAPTCHA Mailhide, you have to sign up for a public and private key, " .
217
  "you can do so at <a href='http://www.google.com/recaptcha/mailhide/apikey'>http://www.google.com/recaptcha/mailhide/apikey</a>");
218
  }
219
-
220
 
221
  $ky = pack('H*', $privkey);
222
  $cryptmail = gglcptch_recaptcha_aes_encrypt ($email, $ky);
223
-
224
  return "http://www.google.com/recaptcha/mailhide/d?k=" . $pubkey . "&c=" . gglcptch_recaptcha_mailhide_urlbase64 ($cryptmail);
225
  }
226
 
@@ -251,10 +249,10 @@ function gglcptch_recaptcha_mailhide_email_parts ($email) {
251
  function gglcptch_recaptcha_mailhide_html($pubkey, $privkey, $email) {
252
  $emailparts = gglcptch_recaptcha_mailhide_email_parts ($email);
253
  $url = gglcptch_recaptcha_mailhide_url ($pubkey, $privkey, $email);
254
-
255
  return htmlentities($emailparts[0]) . "<a href='" . htmlentities ($url) .
256
  "' onclick=\"window.open('" . htmlentities ($url) . "', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;\" title=\"Reveal this e-mail address\">...</a>@" . htmlentities ($emailparts [1]);
257
 
258
- }
259
 
260
  ?>
96
  if ($pubkey == null || $pubkey == '') {
97
  die ("To use reCAPTCHA you must get an API key from <a href='https://www.google.com/recaptcha/admin/create'>https://www.google.com/recaptcha/admin/create</a>");
98
  }
99
+
100
  if ($use_ssl) {
101
  $server = "https://www.google.com/recaptcha/api";
102
  } else {
107
  if ($error) {
108
  $errorpart = "&amp;error=" . $error;
109
  }
110
+ return '<noscript>
111
+ <iframe src="'. $server . '/noscript?k=' . $pubkey . $errorpart . '" height="300" width="320" frameborder="0"></iframe><br/>
112
+ <textarea name="recaptcha_challenge_field" rows="3" cols="40" style="width: 320px !important; border: 1px solid #333 !important; resize: none !important;"></textarea>
113
+ <input type="hidden" name="recaptcha_response_field" value="manual_challenge"/>
114
+ </noscript>';
 
 
115
  }
116
 
117
  /**
141
  die ("For security reasons, you must pass the remote ip to reCAPTCHA");
142
  }
143
 
144
+
145
+
146
  //discard spam submissions
147
  if ($challenge == null || strlen($challenge) == 0 || $response == null || strlen($response) == 0) {
148
  $recaptcha_response = new gglcptch_ReCaptchaResponse();
197
  if (! function_exists ("mcrypt_encrypt")) {
198
  die ("To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed.");
199
  }
200
+ $mode=MCRYPT_MODE_CBC;
201
  $enc=MCRYPT_RIJNDAEL_128;
202
  $val=gglcptch_recaptcha_aes_pad($val);
203
  return mcrypt_encrypt($enc, $ky, $val, $mode, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0");
214
  die ("To use reCAPTCHA Mailhide, you have to sign up for a public and private key, " .
215
  "you can do so at <a href='http://www.google.com/recaptcha/mailhide/apikey'>http://www.google.com/recaptcha/mailhide/apikey</a>");
216
  }
217
+
218
 
219
  $ky = pack('H*', $privkey);
220
  $cryptmail = gglcptch_recaptcha_aes_encrypt ($email, $ky);
221
+
222
  return "http://www.google.com/recaptcha/mailhide/d?k=" . $pubkey . "&c=" . gglcptch_recaptcha_mailhide_urlbase64 ($cryptmail);
223
  }
224
 
249
  function gglcptch_recaptcha_mailhide_html($pubkey, $privkey, $email) {
250
  $emailparts = gglcptch_recaptcha_mailhide_email_parts ($email);
251
  $url = gglcptch_recaptcha_mailhide_url ($pubkey, $privkey, $email);
252
+
253
  return htmlentities($emailparts[0]) . "<a href='" . htmlentities ($url) .
254
  "' onclick=\"window.open('" . htmlentities ($url) . "', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;\" title=\"Reveal this e-mail address\">...</a>@" . htmlentities ($emailparts [1]);
255
 
256
+ }
257
 
258
  ?>
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
3
  Donate link: http://bestwebsoft.com/donate/
4
  Tags: anti, anti-spam, antispam, antispam security, anti-spam security, antispambot, arithmetic actions, block spam, bot, bots, best google captcha, best recaptcha, best google recaptcha, best wordpress captcha, recaptcha, capcha, captha, catcha, captcha theme, captcha bank, captcha, captcha plugin, recaptcha plugin, captcha protection, recaptcha protection, comment captcha, comment, comments, cpatcha, digitize books, digitize newspapers, digitize radio shows, e-mail, email, email address, filter, form, forms, form captcha, forgot password captcha, free, gogle, google, google captcha, google recaptcha, login, lost password, login captcha, login recaptcha, mail, match captcha, plugin, protect, protection, popular captcha, popular recaptcha, protection shield, re captcha, re-captcha, register, registration, registration spam, robot, robots, register captcha, rest password captcha, registration captcha security, spam, secure, security, signup, signup spam, spam blocker, spam comments, spam filter, spambot, shield, simple captcha, simple recaptcha, spam control, spam protection, text captcha, user, user registration spam, users, web form protection, wordpress google captcha, wp google recapthca, wp recaptcha, wordpress protection, wordpress security loss password captcha, register captcha, wp captcha
5
  Requires at least: 3.8
6
- Tested up to: 4.3.1
7
- Stable tag: 1.20
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -15,7 +15,7 @@ This plugin allows you to implement Google Captcha (reCAPTCHA) into web forms.
15
  Google Captcha (reCAPTCHA) plugin allows you to implement a super security Captcha into web forms. Google Captcha (reCAPTCHA) is a free CAPTCHA service that helps to digitize books, newspapers older radio shows.
16
  This plugin can be used for login, registration, password recovery, comments forms.
17
 
18
- http://www.youtube.com/watch?v=10ImOhmM0Cs
19
 
20
  <a href="http://www.youtube.com/watch?v=RUJ9VwZLFSY" target="_blank">Google Captcha (reCAPTCHA) by BestWebSoft Video instruction on Installation</a>
21
 
@@ -51,6 +51,8 @@ There is also a premium version of the plugin <a href="http://bestwebsoft.com/pr
51
  * Brazilian Portuguese (pt_BR) (thanks to <a href="mailto:epeetz@gmail.com">Elton Fernandes Peetz Prado</a>)
52
  * Bulgarian (bg_BG) (thanks to <a href="mailto:me@ygeorgiev.com">Yasen Georgiev</a>)
53
  * Chinese Traditional (zh_TW) (thanks to <a href="mailto:nick20080808@gmail.com">Nick Lai</a>)
 
 
54
  * German (de_DE) (thanks to <a href="mailto:fred.zimmer@medienconsulting.at">Fred Zimmer</a>,www.medienconsulting.at)
55
  * Greek (el) (thanks to Dimitris Karantonis, www.soft4real.com/en-UK)
56
  * Hindi (hi) (thanks to <a href="mailto:contact@developmentlogics.com">Development Logics Solutions Pvt Ltd</a>, www.developmentlogics.com)
@@ -93,7 +95,7 @@ On the next screen you will see your public and private keys.
93
  You should go to the Settings page and select the roles, for which you want to hide Google Captcha.
94
  Then you must click 'Save Changes' button.
95
 
96
- = How to chage Google Captcha (reCAPTCHA) style? =
97
 
98
  You should go to the Settings page and select Theme from dropdown list.
99
  Then you must click the 'Save Changes' button.
@@ -144,7 +146,7 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
144
  1. the link to the page where the problem occurs
145
  2. the name of the plugin and its version. If you are using a pro version - your order number.
146
  3. the version of your WordPress installation
147
- 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">Instuction on System Status</a>
148
 
149
  == Screenshots ==
150
 
@@ -159,6 +161,11 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
159
 
160
  == Changelog ==
161
 
 
 
 
 
 
162
  = V1.20 - 02.10.2015 =
163
  * Update : Textdomain was changed.
164
 
@@ -254,6 +261,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
254
 
255
  == Upgrade Notice ==
256
 
 
 
 
257
  = V1.20 =
258
  Textdomain was changed.
259
 
3
  Donate link: http://bestwebsoft.com/donate/
4
  Tags: anti, anti-spam, antispam, antispam security, anti-spam security, antispambot, arithmetic actions, block spam, bot, bots, best google captcha, best recaptcha, best google recaptcha, best wordpress captcha, recaptcha, capcha, captha, catcha, captcha theme, captcha bank, captcha, captcha plugin, recaptcha plugin, captcha protection, recaptcha protection, comment captcha, comment, comments, cpatcha, digitize books, digitize newspapers, digitize radio shows, e-mail, email, email address, filter, form, forms, form captcha, forgot password captcha, free, gogle, google, google captcha, google recaptcha, login, lost password, login captcha, login recaptcha, mail, match captcha, plugin, protect, protection, popular captcha, popular recaptcha, protection shield, re captcha, re-captcha, register, registration, registration spam, robot, robots, register captcha, rest password captcha, registration captcha security, spam, secure, security, signup, signup spam, spam blocker, spam comments, spam filter, spambot, shield, simple captcha, simple recaptcha, spam control, spam protection, text captcha, user, user registration spam, users, web form protection, wordpress google captcha, wp google recapthca, wp recaptcha, wordpress protection, wordpress security loss password captcha, register captcha, wp captcha
5
  Requires at least: 3.8
6
+ Tested up to: 4.4
7
+ Stable tag: 1.21
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
15
  Google Captcha (reCAPTCHA) plugin allows you to implement a super security Captcha into web forms. Google Captcha (reCAPTCHA) is a free CAPTCHA service that helps to digitize books, newspapers older radio shows.
16
  This plugin can be used for login, registration, password recovery, comments forms.
17
 
18
+ http://www.youtube.com/watch?v=qwHsW3IJ7gQ
19
 
20
  <a href="http://www.youtube.com/watch?v=RUJ9VwZLFSY" target="_blank">Google Captcha (reCAPTCHA) by BestWebSoft Video instruction on Installation</a>
21
 
51
  * Brazilian Portuguese (pt_BR) (thanks to <a href="mailto:epeetz@gmail.com">Elton Fernandes Peetz Prado</a>)
52
  * Bulgarian (bg_BG) (thanks to <a href="mailto:me@ygeorgiev.com">Yasen Georgiev</a>)
53
  * Chinese Traditional (zh_TW) (thanks to <a href="mailto:nick20080808@gmail.com">Nick Lai</a>)
54
+ * Farsi/Persian (fa_IR) (thanks to <a href="mailto:nasiri.amirreza.96@gmail.com">Amirreza Nasiri</a>, www.bytegate.ir)
55
+ * French (fr_FR) (thanks to <a href="mailto:lefinnois@lefinnois.net">Denis Bodorr</a>)
56
  * German (de_DE) (thanks to <a href="mailto:fred.zimmer@medienconsulting.at">Fred Zimmer</a>,www.medienconsulting.at)
57
  * Greek (el) (thanks to Dimitris Karantonis, www.soft4real.com/en-UK)
58
  * Hindi (hi) (thanks to <a href="mailto:contact@developmentlogics.com">Development Logics Solutions Pvt Ltd</a>, www.developmentlogics.com)
95
  You should go to the Settings page and select the roles, for which you want to hide Google Captcha.
96
  Then you must click 'Save Changes' button.
97
 
98
+ = How to change Google Captcha (reCAPTCHA) style? =
99
 
100
  You should go to the Settings page and select Theme from dropdown list.
101
  Then you must click the 'Save Changes' button.
146
  1. the link to the page where the problem occurs
147
  2. the name of the plugin and its version. If you are using a pro version - your order number.
148
  3. the version of your WordPress installation
149
+ 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>
150
 
151
  == Screenshots ==
152
 
161
 
162
  == Changelog ==
163
 
164
+ = V1.21 - 10.12.2015 =
165
+ * NEW : A button for Google Captcha (reCAPTCHA) shortcode inserting to the content was added.
166
+ * NEW : The Farsi/Persian language file was added.
167
+ * NEW : The French language file was added.
168
+
169
  = V1.20 - 02.10.2015 =
170
  * Update : Textdomain was changed.
171
 
261
 
262
  == Upgrade Notice ==
263
 
264
+ = V1.21 =
265
+ A button for Google Captcha (reCAPTCHA) shortcode inserting to the content was added. The Farsi/Persian language file was added. The French language file was added.
266
+
267
  = V1.20 =
268
  Textdomain was changed.
269
 
screenshot-1.png CHANGED
Binary file
screenshot-2.png CHANGED
Binary file
screenshot-3.png CHANGED
Binary file
screenshot-4.png CHANGED
Binary file