Contact Form by BestWebSoft - Version 4.0.1

Version Description

  • 19.07.2016 =
  • Update : An ability to enable/disable Captcha, Google Captcha, Subscribe checkbox and an ability to save email to the database for each multi forms (if Contact Form Multi is activated).
  • Update : Color picker script was replaced.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Contact Form by BestWebSoft
Version 4.0.1
Comparing to
See all releases

Code changes from version 4.0.0 to 4.0.1

Files changed (52) hide show
  1. bws_menu/bws_functions.php +37 -21
  2. bws_menu/bws_menu.php +33 -29
  3. bws_menu/css/general_style.css +1 -4
  4. bws_menu/css/style.css +15 -18
  5. bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
  6. bws_menu/languages/bestwebsoft-fr_FR.po +173 -175
  7. bws_menu/languages/bestwebsoft-pl_PL.mo +0 -0
  8. bws_menu/languages/bestwebsoft-pl_PL.po +90 -93
  9. bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
  10. bws_menu/languages/bestwebsoft-ru_RU.po +102 -97
  11. bws_menu/languages/bestwebsoft-uk.mo +0 -0
  12. bws_menu/languages/bestwebsoft-uk.po +102 -97
  13. bws_menu/product_list.php +136 -116
  14. contact_form.php +1099 -727
  15. css/style.css +60 -7
  16. js/script.js +5 -3
  17. languages/contact-form-plugin-af_ZA.mo +0 -0
  18. languages/contact-form-plugin-af_ZA.po +315 -308
  19. languages/contact-form-plugin-ca.mo +0 -0
  20. languages/contact-form-plugin-ca.po +320 -313
  21. languages/contact-form-plugin-cs_CZ.mo +0 -0
  22. languages/contact-form-plugin-cs_CZ.po +322 -312
  23. languages/contact-form-plugin-da_DK.mo +0 -0
  24. languages/contact-form-plugin-da_DK.po +323 -315
  25. languages/contact-form-plugin-de_DE.mo +0 -0
  26. languages/contact-form-plugin-de_DE.po +319 -309
  27. languages/contact-form-plugin-el.mo +0 -0
  28. languages/contact-form-plugin-el.po +334 -323
  29. languages/contact-form-plugin-es_ES.mo +0 -0
  30. languages/contact-form-plugin-es_ES.po +324 -311
  31. languages/contact-form-plugin-et.mo +0 -0
  32. languages/contact-form-plugin-et.po +322 -312
  33. languages/contact-form-plugin-fr_FR.mo +0 -0
  34. languages/contact-form-plugin-fr_FR.po +327 -314
  35. languages/contact-form-plugin-ja.mo +0 -0
  36. languages/contact-form-plugin-ja.po +318 -311
  37. languages/contact-form-plugin-nb_NO.mo +0 -0
  38. languages/contact-form-plugin-nb_NO.po +322 -312
  39. languages/contact-form-plugin-nl_NL.mo +0 -0
  40. languages/contact-form-plugin-nl_NL.po +324 -313
  41. languages/contact-form-plugin-pt_BR.mo +0 -0
  42. languages/contact-form-plugin-pt_BR.po +332 -327
  43. languages/contact-form-plugin-ru_RU.mo +0 -0
  44. languages/contact-form-plugin-ru_RU.po +299 -350
  45. languages/contact-form-plugin-sk_SK.mo +0 -0
  46. languages/contact-form-plugin-sk_SK.po +321 -311
  47. languages/contact-form-plugin-sv_SE.mo +0 -0
  48. languages/contact-form-plugin-sv_SE.po +321 -314
  49. languages/contact-form-plugin-tr.mo +0 -0
  50. languages/contact-form-plugin-tr.po +323 -314
  51. languages/contact-form-plugin-uk.mo +0 -0
  52. languages/contact-form-plugin-uk.po +248 -293
bws_menu/bws_functions.php CHANGED
@@ -27,15 +27,15 @@ if ( ! function_exists ( 'bws_general_menu' ) ) {
27
  if ( ! $bws_general_menu_exist ) {
28
  /* we check also menu exist in global array as in old plugins $bws_general_menu_exist variable not exist */
29
  foreach ( $menu as $value_menu ) {
30
- if ( 'bws_plugins' == $value_menu[2] ) {
31
  $bws_general_menu_exist = true;
32
  return;
33
  }
34
  }
35
 
36
- add_menu_page( 'BWS Panel', 'BWS Panel', 'manage_options', 'bws_panel', 'bws_add_menu_render', plugins_url( 'images/bestwebsoft-logo-white.svg', __FILE__ ), '2.1' );
37
 
38
- add_submenu_page( 'bws_panel', __( 'Plugins', 'bestwebsoft' ), __( 'Plugins', 'bestwebsoft' ), 'manage_options', 'bws_plugins', 'bws_add_menu_render' );
39
  add_submenu_page( 'bws_panel', __( 'Themes', 'bestwebsoft' ), __( 'Themes', 'bestwebsoft' ), 'manage_options', 'bws_themes', 'bws_add_menu_render' );
40
  add_submenu_page( 'bws_panel', __( 'System Status', 'bestwebsoft' ), __( 'System Status', 'bestwebsoft' ), 'manage_options', 'bws_system_status', 'bws_add_menu_render' );
41
 
@@ -323,7 +323,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
323
  } elseif ( "you_are_banned" == $value->package ) {
324
  $result['error'] = __( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' );
325
  } elseif ( "time_out" == $value->package ) {
326
- $result['error'] = __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your", 'bestwebsoft' ) . ' <a href="http://bestwebsoft.com/wp-admin/admin.php?page=bws_plugins_client_area">Client area</a>';
327
  } elseif ( "duplicate_domen_for_trial" == $value->package ) {
328
  $result['error'] = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
329
  }
@@ -736,14 +736,19 @@ if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
736
  function bws_plugin_banner_to_settings( $plugin_info, $plugin_options_name, $banner_url_or_slug, $settings_url, $post_type_url = false ) {
737
  global $wp_version, $bws_plugin_banner_to_settings;
738
 
739
- $plugin_options = get_option( $plugin_options_name );
 
 
740
 
741
  if ( isset( $plugin_options['display_settings_notice'] ) && 0 == $plugin_options['display_settings_notice'] )
742
  return;
743
 
744
  if ( isset( $_POST['bws_hide_settings_notice_' . $plugin_options_name ] ) && check_admin_referer( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ) ) {
745
  $plugin_options['display_settings_notice'] = 0;
746
- update_option( $plugin_options_name, $plugin_options );
 
 
 
747
  return;
748
  }
749
 
@@ -765,27 +770,33 @@ if ( ! function_exists( 'bws_plugin_suggest_feature_banner' ) ) {
765
  function bws_plugin_suggest_feature_banner( $plugin_info, $plugin_options_name, $banner_url_or_slug ) {
766
  global $wp_version;
767
 
768
- $plugin_options = get_option( $plugin_options_name );
 
 
769
 
770
  if ( isset( $plugin_options['display_suggest_feature_banner'] ) && 0 == $plugin_options['display_suggest_feature_banner'] )
771
  return;
772
 
773
  if ( ! isset( $plugin_options['first_install'] ) ) {
774
  $plugin_options['first_install'] = strtotime( "now" );
775
- update_option( $plugin_options_name, $plugin_options );
776
- $return = true;
777
  } elseif ( strtotime( '-2 week' ) < $plugin_options['first_install'] ) {
778
  $return = true;
779
  }
780
 
781
  if ( ! isset( $plugin_options['go_settings_counter'] ) ) {
782
  $plugin_options['go_settings_counter'] = 1;
783
- update_option( $plugin_options_name, $plugin_options );
784
- $return = true;
785
  } elseif ( 20 > $plugin_options['go_settings_counter'] ) {
786
  $plugin_options['go_settings_counter'] = $plugin_options['go_settings_counter'] + 1;
787
- update_option( $plugin_options_name, $plugin_options );
788
- $return = true;
 
 
 
 
 
 
789
  }
790
 
791
  if ( isset( $return ) )
@@ -793,7 +804,10 @@ if ( ! function_exists( 'bws_plugin_suggest_feature_banner' ) ) {
793
 
794
  if ( isset( $_POST['bws_hide_suggest_feature_banner_' . $plugin_options_name ] ) && check_admin_referer( $plugin_info['Name'], 'bws_settings_nonce_name' ) ) {
795
  $plugin_options['display_suggest_feature_banner'] = 0;
796
- update_option( $plugin_options_name, $plugin_options );
 
 
 
797
  return;
798
  }
799
 
@@ -862,7 +876,7 @@ if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
862
  $result = activate_plugin( $plugin, '', is_network_admin() );
863
  if ( is_wp_error( $result ) ) {
864
  if ( 'unexpected_output' == $result->get_error_code() ) {
865
- $redirect = self_admin_url( 'admin.php?page=bws_plugins&error=true&charsout=' . strlen( $result->get_error_data() ) . '&plugin=' . $plugin );
866
  wp_redirect( add_query_arg( '_error_nonce', wp_create_nonce( 'plugin-activation-error_' . $plugin ), $redirect ) );
867
  exit();
868
  } else {
@@ -879,11 +893,11 @@ if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
879
  unset( $recent[ $plugin ] );
880
  update_site_option( 'recently_activated', $recent );
881
  }
882
- wp_redirect( self_admin_url( 'admin.php?page=bws_plugins&activate=true' ) );
883
  exit();
884
  }
885
 
886
- if ( isset( $_GET['page'] ) && $_GET['page'] == 'bws_plugins' ) {
887
  if ( ! session_id() )
888
  @session_start();
889
  }
@@ -898,7 +912,7 @@ if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
898
  wp_enqueue_style( 'bws-admin-css', plugins_url( 'css/general_style.css', __FILE__ ) );
899
  wp_enqueue_script( 'bws-admin-scripts', plugins_url( 'js/general_script.js', __FILE__ ), array( 'jquery' ) );
900
 
901
- if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array( 'bws_panel', 'bws_plugins', 'bws_themes', 'bws_system_status' ) ) ) {
902
  wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
903
  wp_enqueue_script( 'bws_menu_script', plugins_url( 'js/bws_menu.js' , __FILE__ ) );
904
  wp_enqueue_script( 'theme-install' );
@@ -911,7 +925,7 @@ if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
911
  if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
912
  function bws_plugins_admin_head() {
913
  global $bws_shortcode_list, $wp_version, $post_type;
914
- if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) { ?>
915
  <noscript>
916
  <style type="text/css">
917
  .bws_product_button {
@@ -1222,7 +1236,9 @@ if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
1222
  /* add help tab */
1223
  if ( ! function_exists( 'bws_help_tab' ) ) {
1224
  function bws_help_tab( $screen, $args ) {
1225
- $content = '<p><a href="http://support.bestwebsoft.com/hc/en-us/sections/' . $args['section'] . '" target="_blank">' . __( 'Visit Help Center', 'bestwebsoft' ) . '</a></p>';
 
 
1226
 
1227
  $screen->add_help_tab(
1228
  array(
@@ -1380,7 +1396,7 @@ if ( ! function_exists( 'bws_custom_code_tab' ) ) {
1380
  } ?>
1381
  </big></p>
1382
  <p><label><input type="checkbox" name="bws_custom_<?php echo $extension; ?>_active" value="1" <?php if ( ${"is_{$extension}_active"} ) echo "checked"; ?> /> <?php _e( 'Activate', 'bestwebsoft' ); ?></label></p>
1383
- <textarea cols="70" rows="25" name="bws_newcontent_<?php echo $extension; ?>" id="bws_newcontent_<?php echo $extension; ?>"><?php echo ${"content_{$extension}"}; ?></textarea>
1384
  <p class="description">
1385
  <a href="<?php echo ( 'css' == $extension ) ? 'https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Getting_started' : 'http://php.net/' ?>" target="_blank">
1386
  <?php printf( __( 'Learn more about %s', 'bestwebsoft' ), strtoupper( $extension ) ); ?>
27
  if ( ! $bws_general_menu_exist ) {
28
  /* we check also menu exist in global array as in old plugins $bws_general_menu_exist variable not exist */
29
  foreach ( $menu as $value_menu ) {
30
+ if ( 'bws_panel' == $value_menu[2] ) {
31
  $bws_general_menu_exist = true;
32
  return;
33
  }
34
  }
35
 
36
+ add_menu_page( 'BWS Panel', 'BWS Panel', 'manage_options', 'bws_panel', 'bws_add_menu_render', plugins_url( 'images/bestwebsoft-logo-white.svg', __FILE__ ), '1001' );
37
 
38
+ add_submenu_page( 'bws_panel', __( 'Plugins', 'bestwebsoft' ), __( 'Plugins', 'bestwebsoft' ), 'manage_options', 'bws_panel', 'bws_add_menu_render' );
39
  add_submenu_page( 'bws_panel', __( 'Themes', 'bestwebsoft' ), __( 'Themes', 'bestwebsoft' ), 'manage_options', 'bws_themes', 'bws_add_menu_render' );
40
  add_submenu_page( 'bws_panel', __( 'System Status', 'bestwebsoft' ), __( 'System Status', 'bestwebsoft' ), 'manage_options', 'bws_system_status', 'bws_add_menu_render' );
41
 
323
  } elseif ( "you_are_banned" == $value->package ) {
324
  $result['error'] = __( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' );
325
  } elseif ( "time_out" == $value->package ) {
326
+ $result['error'] = __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your", 'bestwebsoft' ) . ' <a href="http://bestwebsoft.com/wp-admin/admin.php?page=client-area">Client area</a>';
327
  } elseif ( "duplicate_domen_for_trial" == $value->package ) {
328
  $result['error'] = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
329
  }
736
  function bws_plugin_banner_to_settings( $plugin_info, $plugin_options_name, $banner_url_or_slug, $settings_url, $post_type_url = false ) {
737
  global $wp_version, $bws_plugin_banner_to_settings;
738
 
739
+ $is_network_admin = is_network_admin();
740
+
741
+ $plugin_options = $is_network_admin ? get_site_option( $plugin_options_name ) : get_option( $plugin_options_name );
742
 
743
  if ( isset( $plugin_options['display_settings_notice'] ) && 0 == $plugin_options['display_settings_notice'] )
744
  return;
745
 
746
  if ( isset( $_POST['bws_hide_settings_notice_' . $plugin_options_name ] ) && check_admin_referer( plugin_basename( __FILE__ ), 'bws_settings_nonce_name' ) ) {
747
  $plugin_options['display_settings_notice'] = 0;
748
+ if ( $is_network_admin )
749
+ update_site_option( $plugin_options_name, $plugin_options );
750
+ else
751
+ update_option( $plugin_options_name, $plugin_options );
752
  return;
753
  }
754
 
770
  function bws_plugin_suggest_feature_banner( $plugin_info, $plugin_options_name, $banner_url_or_slug ) {
771
  global $wp_version;
772
 
773
+ $is_network_admin = is_network_admin();
774
+
775
+ $plugin_options = $is_network_admin ? get_site_option( $plugin_options_name ) : get_option( $plugin_options_name );
776
 
777
  if ( isset( $plugin_options['display_suggest_feature_banner'] ) && 0 == $plugin_options['display_suggest_feature_banner'] )
778
  return;
779
 
780
  if ( ! isset( $plugin_options['first_install'] ) ) {
781
  $plugin_options['first_install'] = strtotime( "now" );
782
+ $update_option = $return = true;
 
783
  } elseif ( strtotime( '-2 week' ) < $plugin_options['first_install'] ) {
784
  $return = true;
785
  }
786
 
787
  if ( ! isset( $plugin_options['go_settings_counter'] ) ) {
788
  $plugin_options['go_settings_counter'] = 1;
789
+ $update_option = $return = true;
 
790
  } elseif ( 20 > $plugin_options['go_settings_counter'] ) {
791
  $plugin_options['go_settings_counter'] = $plugin_options['go_settings_counter'] + 1;
792
+ $update_option = $return = true;
793
+ }
794
+
795
+ if ( isset( $update_option ) ) {
796
+ if ( $is_network_admin )
797
+ update_site_option( $plugin_options_name, $plugin_options );
798
+ else
799
+ update_option( $plugin_options_name, $plugin_options );
800
  }
801
 
802
  if ( isset( $return ) )
804
 
805
  if ( isset( $_POST['bws_hide_suggest_feature_banner_' . $plugin_options_name ] ) && check_admin_referer( $plugin_info['Name'], 'bws_settings_nonce_name' ) ) {
806
  $plugin_options['display_suggest_feature_banner'] = 0;
807
+ if ( $is_network_admin )
808
+ update_site_option( $plugin_options_name, $plugin_options );
809
+ else
810
+ update_option( $plugin_options_name, $plugin_options );
811
  return;
812
  }
813
 
876
  $result = activate_plugin( $plugin, '', is_network_admin() );
877
  if ( is_wp_error( $result ) ) {
878
  if ( 'unexpected_output' == $result->get_error_code() ) {
879
+ $redirect = self_admin_url( 'admin.php?page=bws_panel&error=true&charsout=' . strlen( $result->get_error_data() ) . '&plugin=' . $plugin );
880
  wp_redirect( add_query_arg( '_error_nonce', wp_create_nonce( 'plugin-activation-error_' . $plugin ), $redirect ) );
881
  exit();
882
  } else {
893
  unset( $recent[ $plugin ] );
894
  update_site_option( 'recently_activated', $recent );
895
  }
896
+ wp_redirect( self_admin_url( 'admin.php?page=bws_panel&activate=true' ) );
897
  exit();
898
  }
899
 
900
+ if ( isset( $_GET['page'] ) && $_GET['page'] == 'bws_panel' ) {
901
  if ( ! session_id() )
902
  @session_start();
903
  }
912
  wp_enqueue_style( 'bws-admin-css', plugins_url( 'css/general_style.css', __FILE__ ) );
913
  wp_enqueue_script( 'bws-admin-scripts', plugins_url( 'js/general_script.js', __FILE__ ), array( 'jquery' ) );
914
 
915
+ if ( isset( $_GET['page'] ) && in_array( $_GET['page'], array( 'bws_panel', 'bws_themes', 'bws_system_status' ) ) ) {
916
  wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
917
  wp_enqueue_script( 'bws_menu_script', plugins_url( 'js/bws_menu.js' , __FILE__ ) );
918
  wp_enqueue_script( 'theme-install' );
925
  if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
926
  function bws_plugins_admin_head() {
927
  global $bws_shortcode_list, $wp_version, $post_type;
928
+ if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_panel" ) { ?>
929
  <noscript>
930
  <style type="text/css">
931
  .bws_product_button {
1236
  /* add help tab */
1237
  if ( ! function_exists( 'bws_help_tab' ) ) {
1238
  function bws_help_tab( $screen, $args ) {
1239
+ $url = ( ! empty( $args['section'] ) ) ? 'http://support.bestwebsoft.com/hc/en-us/sections/' . $args['section'] : 'http://support.bestwebsoft.com/';
1240
+
1241
+ $content = '<p><a href="' . $url . '" target="_blank">' . __( 'Visit Help Center', 'bestwebsoft' ) . '</a></p>';
1242
 
1243
  $screen->add_help_tab(
1244
  array(
1396
  } ?>
1397
  </big></p>
1398
  <p><label><input type="checkbox" name="bws_custom_<?php echo $extension; ?>_active" value="1" <?php if ( ${"is_{$extension}_active"} ) echo "checked"; ?> /> <?php _e( 'Activate', 'bestwebsoft' ); ?></label></p>
1399
+ <textarea cols="70" rows="25" name="bws_newcontent_<?php echo $extension; ?>" id="bws_newcontent_<?php echo $extension; ?>"><?php if ( isset( ${"content_{$extension}"} ) ) echo ${"content_{$extension}"}; ?></textarea>
1400
  <p class="description">
1401
  <a href="<?php echo ( 'css' == $extension ) ? 'https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Getting_started' : 'http://php.net/' ?>" target="_blank">
1402
  <?php printf( __( 'Learn more about %s', 'bestwebsoft' ), strtoupper( $extension ) ); ?>
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 1.8.8
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
@@ -12,7 +12,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
12
  global $wpdb, $wp_version, $bws_plugin_info, $bstwbsftwppdtplgns_options;
13
  $error = $message = $bwsmn_form_email = '';
14
 
15
- if ( 'bws_plugins' == $_GET['page'] || 'bws_panel' == $_GET['page'] ) {
16
 
17
  if ( ! function_exists( 'is_plugin_active_for_network' ) )
18
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
@@ -26,12 +26,14 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
26
  $update_availible_all = get_site_transient( 'update_plugins' );
27
 
28
  $plugin_category = isset( $_GET['category'] ) ? $_GET['category'] : 'all';
29
- $plugin_categories_count = array();
30
 
31
  if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || ! isset( $_GET['sub'] ) ) {
32
  $bws_plugins_update_availible = $bws_plugins_expired = array();
33
  foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
34
- $plugin_categories_count[ $value_plugin['category'] ] = isset( $plugin_categories_count[ $value_plugin['category'] ] ) ? $plugin_categories_count[ $value_plugin['category'] ] + 1 : 1;
 
 
 
35
 
36
  $is_installed = array_key_exists( $key_plugin, $all_plugins );
37
  $is_pro_installed = false;
@@ -59,7 +61,9 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
59
  $bws_plugins = $bws_plugins_update_availible + $bws_plugins_expired + $bws_plugins;
60
  } else {
61
  foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
62
- $plugin_categories_count[ $value_plugin['category'] ] = isset( $plugin_categories_count[ $value_plugin['category'] ] ) ? $plugin_categories_count[ $value_plugin['category'] ] + 1 : 1;
 
 
63
  }
64
  }
65
 
@@ -109,11 +113,11 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
109
  if ( "wrong_license_key" == $value->package ) {
110
  $error = __( "Wrong license key", 'bestwebsoft' );
111
  } elseif ( "wrong_domain" == $value->package ) {
112
- $error = __( 'This license key is bind to another website. Change it via personal Client Area.', 'bestwebsoft' ) . '<a target="_blank" href="http://bestwebsoft.com/wp-admin/admin.php?page=bws_plugins_client_area">' . __( 'Log in', 'bestwebsoft' ) . '</a>';
113
  } elseif ( "you_are_banned" == $value->package ) {
114
  $error = __( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' );
115
  } elseif ( "time_out" == $value->package ) {
116
- $error = __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your", 'bestwebsoft' ) . ' <a target="_blank" href="http://bestwebsoft.com/wp-admin/admin.php?page=bws_plugins_client_area">Client Area</a>';
117
  } elseif ( "duplicate_domen_for_trial" == $value->package ) {
118
  $error = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
119
  } elseif ( is_array( $value->package ) && ! empty( $value->package ) ) {
@@ -142,7 +146,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
142
  update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
143
  }
144
  } else {
145
- $error = __( "Please, enter Your license key", 'bestwebsoft' );
146
  }
147
  }
148
  }
@@ -275,22 +279,20 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
275
  </div>
276
  <div class="bws-menu-item-icon">&#8226;&#8226;&#8226;</div>
277
  <div class="bws-nav-tab-wrapper">
278
- <a class="bws-nav-tab<?php if ( 'bws_plugins' == $_GET['page'] || 'bws_panel' == $_GET['page'] ) echo ' bws-nav-tab-active'; ?>" href="admin.php?page=bws_plugins"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
279
  <a class="bws-nav-tab<?php if ( 'bws_themes' == $_GET['page'] ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_themes' ); ?>"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
280
  </div>
281
  <div class="bws-help-links-wrapper">
282
  <a <?php if ( 'bws_system_status' == $_GET['page'] ) echo ' class="bws-nav-tab-active"'; ?> href="<?php echo self_admin_url( 'admin.php?page=bws_system_status' ); ?>"><?php _e( 'System status', 'bestwebsoft' ); ?></a>
283
  <a href="<?php echo esc_url( 'http://support.bestwebsoft.com/home' ); ?>" target="_blank"><?php _e( 'Support', 'bestwebsoft' ); ?></a>
284
- <a href="<?php echo esc_url( 'http://bestwebsoft.com/wp-login.php' ); ?>" target="_blank" title="<?php _e( 'Manage purchased licenses & subscriptions', 'bestwebsoft' ); ?>"><?php _e( 'My Account', 'bestwebsoft' ); ?></a>
285
  </div>
286
  <div class="clear"></div>
287
  </div>
288
- <?php if ( ( 'bws_plugins' == $_GET['page'] || 'bws_panel' == $_GET['page'] ) && ! isset( $_POST['bws_plugin_action_submit'] ) ) { ?>
289
  <div class="bws-membership-wrap">
290
  <div class="bws-membership-backround"></div>
291
  <div class="bws-membership">
292
- <div class="bws-membership-title"><?php printf( __( 'Get Access to %s+ Premium Plugins', 'bestwebsoft' ), '30' ); ?></div>
293
- <div class="bws-membership-description"><?php printf( __( 'Join BestWebSoft Pro Membership today, cancel any time and use all plugins on a single website %s for only %s per month.', 'bestwebsoft' ), "<br/>", '$40' ); ?></div>
294
  <form method="post" action="">
295
  <?php if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) &&
296
  '5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
@@ -315,12 +317,12 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
315
  <div class="bws_error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><?php echo $error; ?></div>
316
  <?php } ?>
317
  </form>
318
- <div class="bws-membership-link"><?php _e( 'Don’t have valid license key yet?', 'bestwebsoft' ); ?> <a target="_blank" href="http://bestwebsoft.com/membership/"><?php _e( 'Subscribe to Pro Membership', 'bestwebsoft' ); ?></a></div>
319
  </div>
320
  </div>
321
  <?php } ?>
322
  <div class="bws-wrap-content wrap">
323
- <?php if ( 'bws_plugins' == $_GET['page'] || 'bws_panel' == $_GET['page'] ) { ?>
324
  <div class="updated notice is-dismissible inline" <?php if ( '' == $message || '' != $error ) echo "style=\"display:none\""; ?>><p><?php echo $message; ?></p></div>
325
  <h1>
326
  <?php _e( 'Plugins', 'bestwebsoft' ); ?>
@@ -431,10 +433,10 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
431
  <span>(<?php echo count( $bws_plugins ); ?>)</span>
432
  </a>
433
  </li>
434
- <?php foreach ( $bws_plugins_category as $key => $value ) { ?>
435
  <li>
436
- <a <?php if ( $key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url . '&amp;category=' . $key ) ); ?>"><?php echo $value; ?>
437
- <span>(<?php echo $plugin_categories_count[ $key ]; ?>)</span>
438
  </a>
439
  </li>
440
  <?php } ?>
@@ -445,7 +447,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
445
  <?php $nothing_found = true;
446
  foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
447
 
448
- if ( 'all' != $plugin_category && isset( $bws_plugins_category[ $plugin_category ] ) && $plugin_category != $value_plugin['category'] )
449
  continue;
450
 
451
  $key_plugin_explode = explode( '/', $key_plugin );
@@ -465,27 +467,29 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
465
  ( isset( $_GET['sub'] ) && 'not_installed' == $_GET['sub'] && ( $is_pro_installed || $is_installed ) ) )
466
  continue;
467
 
 
 
468
  $nothing_found = false; ?>
469
  <div class="bws_product_box<?php if ( $is_active || $is_pro_active ) echo ' bws_product_active'; ?>">
470
  <div class="bws_product_image">
471
- <a href="<?php echo esc_url( self_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $key_plugin_explode[0] .
472
- '&from=import&TB_iframe=true&width=600&height=550' ) ); ?>" class="thickbox open-plugin-details-modal"><img src="<?php echo $icon; ?>"/></a>
473
  </div>
474
  <div class="bws_product_content">
475
- <div class="bws_product_title"><a href="<?php echo esc_url( self_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $key_plugin_explode[0] .
476
- '&from=import&TB_iframe=true&width=600&height=550' ) ); ?>" class="thickbox open-plugin-details-modal"><?php echo $value_plugin['name']; ?></a></div>
477
  <div class="bws-version">
478
  <?php
479
  if ( $is_pro_installed ) {
480
  echo '<span';
481
  if ( ! empty( $value_plugin['expired'] ) || ! empty( $value_plugin['update_availible'] ) )
482
  echo ' class="bws-update-available"';
483
- echo '>' . $all_plugins[ $value_plugin['pro_version'] ]['Version'] . '</span>';
484
  } elseif ( $is_installed ) {
485
  echo '<span';
486
  if ( ! empty( $value_plugin['expired'] ) || ! empty( $value_plugin['update_availible'] ) )
487
  echo ' class="bws-update-available"';
488
- echo '>' . $all_plugins[ $key_plugin ]['Version'] . '</span>';
 
 
489
  }
490
 
491
  if ( ! empty( $value_plugin['expired'] ) ) {
@@ -496,7 +500,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
496
  } ?>
497
  </div>
498
  <div class="bws_product_description">
499
- <?php echo ( strlen( $value_plugin['description'] ) > 80 ) ? substr( $value_plugin['description'], 0, 80 ) . '...' : $value_plugin['description']; ?>
500
  </div>
501
  <div class="bws_product_links">
502
  <?php if ( $is_active || $is_pro_active ) {
@@ -558,10 +562,10 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
558
  <span>(<?php echo count( $bws_plugins ); ?>)</span>
559
  </a>
560
  </li>
561
- <?php foreach ( $bws_plugins_category as $key => $value ) { ?>
562
  <li>
563
- <a <?php if ( $key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url . '&amp;category=' . $key ) ); ?>"><?php echo $value; ?>
564
- <span>(<?php echo $plugin_categories_count[ $key ]; ?>)</span>
565
  </a>
566
  </li>
567
  <?php } ?>
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 1.9.1
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
12
  global $wpdb, $wp_version, $bws_plugin_info, $bstwbsftwppdtplgns_options;
13
  $error = $message = $bwsmn_form_email = '';
14
 
15
+ if ( 'bws_panel' == $_GET['page'] ) {
16
 
17
  if ( ! function_exists( 'is_plugin_active_for_network' ) )
18
  require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
26
  $update_availible_all = get_site_transient( 'update_plugins' );
27
 
28
  $plugin_category = isset( $_GET['category'] ) ? $_GET['category'] : 'all';
 
29
 
30
  if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || ! isset( $_GET['sub'] ) ) {
31
  $bws_plugins_update_availible = $bws_plugins_expired = array();
32
  foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
33
+
34
+ foreach ( $value_plugin['category'] as $category_key ) {
35
+ $bws_plugins_category[ $category_key ]['count'] = isset( $bws_plugins_category[ $category_key ]['count'] ) ? $bws_plugins_category[ $category_key ]['count'] + 1 : 1;
36
+ }
37
 
38
  $is_installed = array_key_exists( $key_plugin, $all_plugins );
39
  $is_pro_installed = false;
61
  $bws_plugins = $bws_plugins_update_availible + $bws_plugins_expired + $bws_plugins;
62
  } else {
63
  foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
64
+ foreach ( $value_plugin['category'] as $category_key ) {
65
+ $bws_plugins_category[ $category_key ]['count'] = isset( $bws_plugins_category[ $category_key ]['count'] ) ? $bws_plugins_category[ $category_key ]['count'] + 1 : 1;
66
+ }
67
  }
68
  }
69
 
113
  if ( "wrong_license_key" == $value->package ) {
114
  $error = __( "Wrong license key", 'bestwebsoft' );
115
  } elseif ( "wrong_domain" == $value->package ) {
116
+ $error = __( 'This license key is bind to another website. Change it via personal Client Area.', 'bestwebsoft' ) . '<a target="_blank" href="http://bestwebsoft.com/wp-admin/admin.php?page=client-area">' . __( 'Log in', 'bestwebsoft' ) . '</a>';
117
  } elseif ( "you_are_banned" == $value->package ) {
118
  $error = __( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' );
119
  } elseif ( "time_out" == $value->package ) {
120
+ $error = __( "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your", 'bestwebsoft' ) . ' <a target="_blank" href="http://bestwebsoft.com/wp-admin/admin.php?page=client-area">Client Area</a>';
121
  } elseif ( "duplicate_domen_for_trial" == $value->package ) {
122
  $error = __( "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once.", 'bestwebsoft' );
123
  } elseif ( is_array( $value->package ) && ! empty( $value->package ) ) {
146
  update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
147
  }
148
  } else {
149
+ $error = __( "Please enter your license key.", 'bestwebsoft' );
150
  }
151
  }
152
  }
279
  </div>
280
  <div class="bws-menu-item-icon">&#8226;&#8226;&#8226;</div>
281
  <div class="bws-nav-tab-wrapper">
282
+ <a class="bws-nav-tab<?php if ( 'bws_panel' == $_GET['page'] ) echo ' bws-nav-tab-active'; ?>" href="admin.php?page=bws_panel"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
283
  <a class="bws-nav-tab<?php if ( 'bws_themes' == $_GET['page'] ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_themes' ); ?>"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
284
  </div>
285
  <div class="bws-help-links-wrapper">
286
  <a <?php if ( 'bws_system_status' == $_GET['page'] ) echo ' class="bws-nav-tab-active"'; ?> href="<?php echo self_admin_url( 'admin.php?page=bws_system_status' ); ?>"><?php _e( 'System status', 'bestwebsoft' ); ?></a>
287
  <a href="<?php echo esc_url( 'http://support.bestwebsoft.com/home' ); ?>" target="_blank"><?php _e( 'Support', 'bestwebsoft' ); ?></a>
288
+ <a href="<?php echo esc_url( 'http://bestwebsoft.com/wp-admin/admin.php?page=client-area' ); ?>" target="_blank" title="<?php _e( 'Manage purchased licenses & subscriptions', 'bestwebsoft' ); ?>"><?php _e( 'Client Area', 'bestwebsoft' ); ?></a>
289
  </div>
290
  <div class="clear"></div>
291
  </div>
292
+ <?php if ( 'bws_panel' == $_GET['page'] && ! isset( $_POST['bws_plugin_action_submit'] ) ) { ?>
293
  <div class="bws-membership-wrap">
294
  <div class="bws-membership-backround"></div>
295
  <div class="bws-membership">
 
 
296
  <form method="post" action="">
297
  <?php if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) &&
298
  '5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
317
  <div class="bws_error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><?php echo $error; ?></div>
318
  <?php } ?>
319
  </form>
320
+ <div class="bws-membership-link"><?php _e( 'Don’t have valid license key yet?', 'bestwebsoft' ); ?> <a target="_blank" href="http://bestwebsoft.com/membership/"><?php _e( 'Subscribe to Pro Membership Now', 'bestwebsoft' ); ?></a></div>
321
  </div>
322
  </div>
323
  <?php } ?>
324
  <div class="bws-wrap-content wrap">
325
+ <?php if ( 'bws_panel' == $_GET['page'] ) { ?>
326
  <div class="updated notice is-dismissible inline" <?php if ( '' == $message || '' != $error ) echo "style=\"display:none\""; ?>><p><?php echo $message; ?></p></div>
327
  <h1>
328
  <?php _e( 'Plugins', 'bestwebsoft' ); ?>
433
  <span>(<?php echo count( $bws_plugins ); ?>)</span>
434
  </a>
435
  </li>
436
+ <?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
437
  <li>
438
+ <a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url . '&amp;category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
439
+ <span>(<?php echo $category_value['count']; ?>)</span>
440
  </a>
441
  </li>
442
  <?php } ?>
447
  <?php $nothing_found = true;
448
  foreach ( $bws_plugins as $key_plugin => $value_plugin ) {
449
 
450
+ if ( 'all' != $plugin_category && isset( $bws_plugins_category[ $plugin_category ] ) && ! in_array( $plugin_category, $value_plugin['category'] ) )
451
  continue;
452
 
453
  $key_plugin_explode = explode( '/', $key_plugin );
467
  ( isset( $_GET['sub'] ) && 'not_installed' == $_GET['sub'] && ( $is_pro_installed || $is_installed ) ) )
468
  continue;
469
 
470
+ $link_attr = isset( $value_plugin['install_url'] ) ? 'href="' . $value_plugin['install_url'] . '" target="_blank"' : 'href="' . esc_url( self_admin_url( 'plugin-install.php?tab=plugin-information&plugin=' . $key_plugin_explode[0] . '&from=import&TB_iframe=true&width=600&height=550' ) ) . '" class="thickbox open-plugin-details-modal"';
471
+
472
  $nothing_found = false; ?>
473
  <div class="bws_product_box<?php if ( $is_active || $is_pro_active ) echo ' bws_product_active'; ?>">
474
  <div class="bws_product_image">
475
+ <a <?php echo $link_attr; ?>><img src="<?php echo $icon; ?>"/></a>
 
476
  </div>
477
  <div class="bws_product_content">
478
+ <div class="bws_product_title"><a <?php echo $link_attr; ?>><?php echo $value_plugin['name']; ?></a></div>
 
479
  <div class="bws-version">
480
  <?php
481
  if ( $is_pro_installed ) {
482
  echo '<span';
483
  if ( ! empty( $value_plugin['expired'] ) || ! empty( $value_plugin['update_availible'] ) )
484
  echo ' class="bws-update-available"';
485
+ echo '>v ' . $all_plugins[ $value_plugin['pro_version'] ]['Version'] . '</span>';
486
  } elseif ( $is_installed ) {
487
  echo '<span';
488
  if ( ! empty( $value_plugin['expired'] ) || ! empty( $value_plugin['update_availible'] ) )
489
  echo ' class="bws-update-available"';
490
+ echo '>v ' . $all_plugins[ $key_plugin ]['Version'] . '</span>';
491
+ } else {
492
+ echo '<span>' . __( 'Not installed', 'bestwebsoft' ) . '</span>';
493
  }
494
 
495
  if ( ! empty( $value_plugin['expired'] ) ) {
500
  } ?>
501
  </div>
502
  <div class="bws_product_description">
503
+ <?php echo ( strlen( $value_plugin['description'] ) > 100 ) ? substr( $value_plugin['description'], 0, 100 ) . '...' : $value_plugin['description']; ?>
504
  </div>
505
  <div class="bws_product_links">
506
  <?php if ( $is_active || $is_pro_active ) {
562
  <span>(<?php echo count( $bws_plugins ); ?>)</span>
563
  </a>
564
  </li>
565
+ <?php foreach ( $bws_plugins_category as $category_key => $category_value ) { ?>
566
  <li>
567
+ <a <?php if ( $category_key == $plugin_category ) echo ' class="bws-active"'; ?> href="<?php echo esc_url( self_admin_url( 'admin.php?page=bws_panel' . $sub_in_url . '&amp;category=' . $category_key ) ); ?>"><?php echo $category_value['name']; ?>
568
+ <span>(<?php echo $category_value['count']; ?>)</span>
569
  </a>
570
  </li>
571
  <?php } ?>
bws_menu/css/general_style.css CHANGED
@@ -4,10 +4,7 @@
4
  #adminmenu #toplevel_page_bws_panel.wp-has-current-submenu div.wp-menu-image img {
5
  width: 18px;
6
  }
7
- #adminmenu #toplevel_page_bws_panel .wp-submenu .wp-first-item {
8
- display: none;
9
- }
10
- #adminmenu #toplevel_page_bws_panel .wp-submenu li:nth-child(5) a {
11
  border-bottom: 1px solid #444;
12
  padding-bottom: 12px;
13
  margin-bottom: 5px;
4
  #adminmenu #toplevel_page_bws_panel.wp-has-current-submenu div.wp-menu-image img {
5
  width: 18px;
6
  }
7
+ #adminmenu #toplevel_page_bws_panel .wp-submenu li:nth-child(4) a {
 
 
 
8
  border-bottom: 1px solid #444;
9
  padding-bottom: 12px;
10
  margin-bottom: 5px;
bws_menu/css/style.css CHANGED
@@ -2,14 +2,12 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
2
  display: none;
3
  }
4
  .toplevel_page_bws_panel #wpcontent,
5
- .bws-panel_page_bws_plugins #wpcontent,
6
  .bws-panel_page_bws_themes #wpcontent,
7
  .bws-panel_page_bws_system_status #wpcontent {
8
  padding-left: 0;
9
  padding-right: 0;
10
  }
11
  .toplevel_page_bws_panel .update-nag,
12
- .bws-panel_page_bws_plugins .update-nag,
13
  .bws-panel_page_bws_themes .update-nag,
14
  .bws-panel_page_bws_system_status .update-nag {
15
  display: none;
@@ -36,7 +34,7 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
36
  }
37
  .bws-title {
38
  text-transform: uppercase;
39
- font-weight: bold;
40
  font-size: 18px;
41
  letter-spacing: 0.1em;
42
  margin-top: 15px;
@@ -112,6 +110,8 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
112
  background: url("../images/membership-background.jpg") no-repeat center #fff;
113
  overflow: hidden;
114
  position: relative;
 
 
115
  }
116
  .bws-membership-backround {
117
  background-color: #000;
@@ -131,23 +131,11 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
131
  .bws-membership * {
132
  text-align: center;
133
  }
134
- .bws-membership-title {
135
- font-size: 27px;
136
- font-weight: bolder;
137
- line-height: initial;
138
- }
139
- .bws-membership-description {
140
- font-size: 15px;
141
- line-height: 24px;
142
- margin: 18px 0 23px;
143
- color: #999;
144
- }
145
  .bws-membership input[type="text"] {
146
  border-radius: 3px;
147
  border: none;
148
  font-size: 16.14px;
149
- line-height: 18.16px;
150
- padding: 9px 20px;
151
  text-align: left;
152
  }
153
  .bws-membership .bws-button {
@@ -157,7 +145,7 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
157
  display: inline-block;
158
  text-decoration: none;
159
  font-size: 16px;
160
- font-weight: bolder;
161
  padding: 8px 30px;
162
  border-radius: 3px;
163
  border: none;
@@ -174,6 +162,9 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
174
  text-decoration: none;
175
  border-bottom: 1px solid #999;
176
  }
 
 
 
177
  .bws_error {
178
  color: #c5412b;
179
  margin-top: 5px;
@@ -219,6 +210,9 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
219
  margin-right: 10px;
220
  max-width: 400px;
221
  }
 
 
 
222
  .bws_system_info th {
223
  padding: 10px 0;
224
  text-align: left;
@@ -273,6 +267,7 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
273
  }
274
  .bws_product_title a {
275
  color: #444;
 
276
  }
277
  .bws_product_title a:hover {
278
  color: #00a0d2;
@@ -295,6 +290,7 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
295
  font-size: 13px;
296
  line-height: 18px;
297
  margin: 6px 0 2px;
 
298
  }
299
  .bws_product_links {
300
  margin: 15px 0;
@@ -316,6 +312,7 @@ a.toplevel_page_bws_panel.wp-has-current-submenu:after {
316
  background: #dd6930;
317
  border: 1px solid #c16436;
318
  color: #fff;
 
319
  }
320
  a.bws_settings,
321
  a.bws_donate {
@@ -405,7 +402,7 @@ a.bws_donate {
405
  width: 1020px;
406
  }
407
  }
408
- @media screen and (max-width: 1450px) {
409
  .bws-products {
410
  width: 700px;
411
  }
2
  display: none;
3
  }
4
  .toplevel_page_bws_panel #wpcontent,
 
5
  .bws-panel_page_bws_themes #wpcontent,
6
  .bws-panel_page_bws_system_status #wpcontent {
7
  padding-left: 0;
8
  padding-right: 0;
9
  }
10
  .toplevel_page_bws_panel .update-nag,
 
11
  .bws-panel_page_bws_themes .update-nag,
12
  .bws-panel_page_bws_system_status .update-nag {
13
  display: none;
34
  }
35
  .bws-title {
36
  text-transform: uppercase;
37
+ font-weight: 600;
38
  font-size: 18px;
39
  letter-spacing: 0.1em;
40
  margin-top: 15px;
110
  background: url("../images/membership-background.jpg") no-repeat center #fff;
111
  overflow: hidden;
112
  position: relative;
113
+ margin: 20px 20px 0 20px;
114
+ border-radius: 4px;
115
  }
116
  .bws-membership-backround {
117
  background-color: #000;
131
  .bws-membership * {
132
  text-align: center;
133
  }
 
 
 
 
 
 
 
 
 
 
 
134
  .bws-membership input[type="text"] {
135
  border-radius: 3px;
136
  border: none;
137
  font-size: 16.14px;
138
+ padding: 8px 20px 8px 10px;
 
139
  text-align: left;
140
  }
141
  .bws-membership .bws-button {
145
  display: inline-block;
146
  text-decoration: none;
147
  font-size: 16px;
148
+ font-weight: 600;
149
  padding: 8px 30px;
150
  border-radius: 3px;
151
  border: none;
162
  text-decoration: none;
163
  border-bottom: 1px solid #999;
164
  }
165
+ .bws-membership-link a:hover {
166
+ border-bottom: none;
167
+ }
168
  .bws_error {
169
  color: #c5412b;
170
  margin-top: 5px;
210
  margin-right: 10px;
211
  max-width: 400px;
212
  }
213
+ .rtl .bws_system_info {
214
+ float: right;
215
+ }
216
  .bws_system_info th {
217
  padding: 10px 0;
218
  text-align: left;
267
  }
268
  .bws_product_title a {
269
  color: #444;
270
+ font-weight: 600;
271
  }
272
  .bws_product_title a:hover {
273
  color: #00a0d2;
290
  font-size: 13px;
291
  line-height: 18px;
292
  margin: 6px 0 2px;
293
+ color: #666;
294
  }
295
  .bws_product_links {
296
  margin: 15px 0;
312
  background: #dd6930;
313
  border: 1px solid #c16436;
314
  color: #fff;
315
+ margin-right: 12px;
316
  }
317
  a.bws_settings,
318
  a.bws_donate {
402
  width: 1020px;
403
  }
404
  }
405
+ @media screen and (max-width: 1425px) {
406
  .bws-products {
407
  width: 700px;
408
  }
bws_menu/languages/bestwebsoft-fr_FR.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-06-20 18:01+0300\n"
6
- "PO-Revision-Date: 2016-06-20 18:01+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
@@ -17,7 +17,7 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
21
  msgid "Plugins"
22
  msgstr "Extensions"
23
 
@@ -26,9 +26,8 @@ msgid "Themes"
26
  msgstr "Thèmes"
27
 
28
  #: bws_functions.php:40
29
- #, fuzzy
30
  msgid "System Status"
31
- msgstr "System status"
32
 
33
  #: bws_functions.php:75 bws_functions.php:101
34
  msgid "requires"
@@ -80,24 +79,21 @@ msgid "Add New"
80
  msgstr "Ajouter"
81
 
82
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
83
- #: bws_functions.php:724 bws_functions.php:814
84
  msgid "Close notice"
85
  msgstr "Effacer l'avertissement"
86
 
87
  #: bws_functions.php:142
88
- #, fuzzy
89
  msgid "Thank you for installing plugins by BestWebSoft!"
90
- msgstr "Merci d'avoir installé"
91
 
92
  #: bws_functions.php:144
93
- #, fuzzy
94
  msgid "More Details"
95
- msgstr "Détails"
96
 
97
  #: bws_functions.php:145
98
- #, fuzzy
99
  msgid "Less Details"
100
- msgstr "Détails"
101
 
102
  #: bws_functions.php:218
103
  msgid "It’s time to upgrade your"
@@ -137,7 +133,7 @@ msgstr "Si vous avez une question, n'hésitez pas à nous contacter"
137
 
138
  #: bws_functions.php:247
139
  msgid "Donations play an important role in supporting great projects"
140
- msgstr ""
141
 
142
  #: bws_functions.php:277
143
  msgid "Check premium options on the plugin settings page!"
@@ -193,19 +189,19 @@ msgstr ""
193
  "peut-être installée qu'une seule fois."
194
 
195
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
196
- #: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
197
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
198
  msgstr ""
199
  "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
200
  "manuellement."
201
 
202
- #: bws_functions.php:361 bws_menu.php:387
203
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
204
  msgstr ""
205
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
206
  "manuellement."
207
 
208
- #: bws_functions.php:367 bws_menu.php:394
209
  msgid ""
210
  "Your server does not support either ZipArchive or Phar. Please, upload the "
211
  "plugin manually"
@@ -213,7 +209,7 @@ msgstr ""
213
  "Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
214
  "de télécharger l'extension manuellement."
215
 
216
- #: bws_functions.php:374 bws_menu.php:404
217
  msgid "UploadDir is not writable. Please, upload the plugin manually"
218
  msgstr ""
219
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
@@ -227,12 +223,11 @@ msgstr ""
227
  "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
228
  "l'extension manuellement.Nous sommes désolés pour le désagrément."
229
 
230
- #: bws_functions.php:422 bws_menu.php:149
231
  msgid "Please, enter Your license key"
232
  msgstr "Merci de saisir votre clé de licence"
233
 
234
  #: bws_functions.php:452
235
- #, fuzzy
236
  msgid ""
237
  "Congratulations! Pro version of the plugin is successfully installed and "
238
  "activated."
@@ -258,22 +253,20 @@ msgstr "Voir les fonctionnalités de la version PRO"
258
 
259
  #: bws_functions.php:469
260
  msgid "Enter your license key to install and activate"
261
- msgstr ""
262
 
263
  #: bws_functions.php:471
264
- #, fuzzy
265
  msgid "version of the plugin."
266
- msgstr "Voter pour l'extension"
267
 
268
  #: bws_functions.php:473 bws_functions.php:514
269
  msgid "License key can be found in the"
270
- msgstr ""
271
 
272
  #: bws_functions.php:475 bws_functions.php:516
273
- #, fuzzy
274
  msgid "(your username is the email address specified during the purchase)."
275
  msgstr ""
276
- "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de "
277
  "l'achat de l'extension)."
278
 
279
  #: bws_functions.php:479
@@ -282,7 +275,7 @@ msgid "Start Your Free %s-Day Trial Now"
282
  msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
283
 
284
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
285
- #: bws_functions.php:532 bws_functions.php:1382 bws_menu.php:531
286
  #: bws_menu.php:540
287
  msgid "Activate"
288
  msgstr "Activé"
@@ -300,7 +293,7 @@ msgid "After that you can activate it by entering your license key."
300
  msgstr ""
301
  " Après vous pouvez activer cette extension en donnant votre clé de licence."
302
 
303
- #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:306
304
  msgid "Unfortunately, you have exceeded the number of available tries per day."
305
  msgstr ""
306
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
@@ -371,16 +364,15 @@ msgstr ""
371
  "licence sur votre page personnelle (zone client) sur notre site web."
372
 
373
  #: bws_functions.php:647
374
- #, fuzzy
375
  msgid ""
376
  "(your username is the email address specified during the purchase). If "
377
  "necessary, please submit \"Lost your password?\" request."
378
  msgstr ""
379
- "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de "
380
  "l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de "
381
  "mot de passe perdu."
382
 
383
- #: bws_functions.php:651 bws_menu.php:304 bws_menu.php:315
384
  msgid "Check license key"
385
  msgstr "Vérifier la clé de licence"
386
 
@@ -417,7 +409,7 @@ msgstr ""
417
  "Votre licence est terminée. Pour continuer à disposer du support rapide et "
418
  "des mises à jour de l'extension vous devez la renouveller."
419
 
420
- #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1337
421
  msgid "Learn more"
422
  msgstr "En savoir plus"
423
 
@@ -447,11 +439,11 @@ msgstr "se termine le"
447
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
448
  msgstr "et vous ne disposerez plus du support rapide et des mises à jour."
449
 
450
- #: bws_functions.php:809
451
  msgid "Thank you for choosing"
452
  msgstr "Merci d'avoir choisi"
453
 
454
- #: bws_functions.php:810
455
  msgid ""
456
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
457
  "we'd love to hear about it!"
@@ -459,23 +451,23 @@ msgstr ""
459
  "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
460
  "souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
461
 
462
- #: bws_functions.php:811
463
  msgid "Suggest a Feature"
464
  msgstr "Proposer une fonctionnalité"
465
 
466
- #: bws_functions.php:827
467
  msgid "Notice"
468
  msgstr "Avertissement"
469
 
470
- #: bws_functions.php:827
471
  msgid "The plugin's settings have been changed."
472
  msgstr "Les paramètres de l'extension ont été modifiés."
473
 
474
- #: bws_functions.php:828 bws_functions.php:1393
475
  msgid "Save Changes"
476
  msgstr "Sauvegarder les modifications"
477
 
478
- #: bws_functions.php:842
479
  msgid ""
480
  "You can always look at premium options by clicking on the \"Show Pro features"
481
  "\" in the \"Go PRO\" tab"
@@ -483,124 +475,125 @@ msgstr ""
483
  "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
484
  "\"Voir les fonctionnalités de la version PRO\" dans l'onglet Passer PRO"
485
 
486
- #: bws_functions.php:971
487
  msgid "Add shortcode"
488
  msgstr "Ajouter le code court"
489
 
490
- #: bws_functions.php:971
491
  msgid "Add BestWebSoft plugins' shortcodes using this button."
492
  msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
493
 
494
- #: bws_functions.php:1020
495
  msgid "Close"
496
  msgstr "Fermer"
497
 
498
- #: bws_functions.php:1112
499
  msgid "Restore all plugin settings to defaults"
500
  msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
501
 
502
- #: bws_functions.php:1114
503
  msgid "Restore settings"
504
  msgstr "Remettre les paramètres"
505
 
506
- #: bws_functions.php:1125
507
  msgid "Are you sure you want to restore all settings by default?"
508
  msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
509
 
510
- #: bws_functions.php:1128
511
  msgid "Yes, restore all settings"
512
  msgstr "Oui, remettre les valeurs par défaut"
513
 
514
- #: bws_functions.php:1129
515
  msgid "No, go back to the settings page"
516
  msgstr "Non, retourner à la page des paramètres"
517
 
518
- #: bws_functions.php:1175
519
  msgid "Plugin"
520
  msgstr "Extension"
521
 
522
- #: bws_functions.php:1184
523
  msgid "Shortcode settings"
524
  msgstr "Paramètres du code court"
525
 
526
- #: bws_functions.php:1189
527
  msgid "The shortcode will be inserted"
528
  msgstr "Le code court sera inséré"
529
 
530
- #: bws_functions.php:1194
531
  msgid "Insert"
532
  msgstr "Insérer"
533
 
534
- #: bws_functions.php:1225
535
  msgid "Visit Help Center"
536
  msgstr "Visiter le site du support"
537
 
538
- #: bws_functions.php:1230
539
  msgid "FAQ"
540
  msgstr "FAQ"
541
 
542
- #: bws_functions.php:1236
543
  msgid "For more information:"
544
  msgstr "Pour plus d'informations&nbsp;:"
545
 
546
- #: bws_functions.php:1237
547
  msgid "Documentation"
548
  msgstr "Documentation"
549
 
550
- #: bws_functions.php:1238
551
  msgid "Video Instructions"
552
  msgstr "Vidéo explicative"
553
 
554
- #: bws_functions.php:1239
555
  msgid "Submit a Request"
556
  msgstr "Soumettre une requête"
557
 
558
- #: bws_functions.php:1250
559
  msgid "You do not have sufficient permissions to edit plugins for this site."
560
  msgstr ""
561
  "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
562
 
563
- #: bws_functions.php:1301 bws_functions.php:1328
564
- #, fuzzy, php-format
565
  msgid "File %s edited successfully."
566
- msgstr "Le fichier a été modifié avec succès."
567
 
568
- #: bws_functions.php:1303 bws_functions.php:1330
569
  msgid "Not enough permissions to create or update the file"
570
  msgstr "Pas assez de droits pour créer ou modifier le fichier"
571
 
572
- #: bws_functions.php:1333
573
- #, fuzzy
574
  msgid "Not enough permissions to create the file"
575
- msgstr "Pas assez de droits pour créer ou modifier le fichier"
576
 
577
- #: bws_functions.php:1371
578
  msgid "These styles will be added to the header on all pages of your site."
579
  msgstr ""
580
  "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
581
 
582
- #: bws_functions.php:1373
583
  #, php-format
584
  msgid ""
585
  "These PHP code will be hooked to the %s action and will be printed on front "
586
  "end only."
587
  msgstr ""
 
 
588
 
589
- #: bws_functions.php:1377
590
  msgid "Editing"
591
  msgstr "Modifier"
592
 
593
- #: bws_functions.php:1379
594
  msgid "Browsing"
595
  msgstr "Parcourir"
596
 
597
- #: bws_functions.php:1386
598
- #, fuzzy, php-format
599
  msgid "Learn more about %s"
600
- msgstr "En savoir plus sur les CSS"
601
 
602
- #: bws_functions.php:1397
603
- #, fuzzy, php-format
604
  msgid ""
605
  "You need to make this files writable before you can save your changes. See "
606
  "%s the Codex %s for more information."
@@ -609,23 +602,27 @@ msgstr ""
609
  "modifications. Regarder %s du Codex %s pour plus d'informations."
610
 
611
  #: bws_menu.php:116
612
- #, fuzzy
613
  msgid ""
614
  "This license key is bind to another website. Change it via personal Client "
615
  "Area."
616
- msgstr "La clé de licence correspond à un autre site."
 
 
617
 
618
  #: bws_menu.php:116
619
  msgid "Log in"
620
- msgstr ""
621
 
622
  #: bws_menu.php:132
623
- #, fuzzy
624
  msgid "Congratulations! Pro Membership license is successfully activated."
625
  msgstr ""
626
  "Félicitations! La version PRO de cette extension a été téléchargée et "
627
  "activée avec succès."
628
 
 
 
 
 
629
  #: bws_menu.php:161
630
  msgid "Not set"
631
  msgstr "Not set"
@@ -757,7 +754,7 @@ msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
757
 
758
  #: bws_menu.php:286 bws_menu.php:626
759
  msgid "System status"
760
- msgstr "System status"
761
 
762
  #: bws_menu.php:287
763
  msgid "Support"
@@ -765,48 +762,34 @@ msgstr "Support"
765
 
766
  #: bws_menu.php:288
767
  msgid "Manage purchased licenses & subscriptions"
768
- msgstr ""
769
 
770
  #: bws_menu.php:288
771
- msgid "My Account"
772
- msgstr ""
773
 
774
- #: bws_menu.php:296
775
- #, php-format
776
- msgid "Get Access to %s+ Premium Plugins"
777
- msgstr ""
778
-
779
- #: bws_menu.php:297
780
- #, php-format
781
- msgid ""
782
- "Join BestWebSoft Pro Membership today, cancel any time and use all plugins "
783
- "on a single website %s for only %s per month."
784
- msgstr ""
785
-
786
- #: bws_menu.php:309
787
- #, fuzzy
788
  msgid "Enter your license key"
789
  msgstr "Merci de saisir votre clé de licence"
790
 
791
- #: bws_menu.php:313
792
- #, fuzzy
793
  msgid "Activate Membership"
794
- msgstr "Thème actif"
795
 
796
- #: bws_menu.php:322
797
  msgid "Don’t have valid license key yet?"
798
- msgstr ""
799
-
800
- #: bws_menu.php:322
801
- msgid "Subscribe to Pro Membership"
802
- msgstr ""
803
 
804
- #: bws_menu.php:331
805
  #, fuzzy
 
 
 
 
806
  msgid "Upload Plugin"
807
- msgstr "Extension"
808
 
809
- #: bws_menu.php:335
810
  #, php-format
811
  msgid ""
812
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -814,77 +797,82 @@ msgid ""
814
  "messages, problems with syndication feeds or other issues, try deactivating "
815
  "or removing this plugin."
816
  msgstr ""
 
 
 
 
817
 
818
- #: bws_menu.php:337
819
  msgid ""
820
  "Plugin could not be activated because it triggered a <strong>fatal error</"
821
  "strong>."
822
  msgstr ""
 
 
823
 
824
- #: bws_menu.php:340
825
  msgid "Plugin <strong>activated</strong>."
826
- msgstr ""
827
 
828
- #: bws_menu.php:347
829
- #, fuzzy
830
  msgid "Installing Plugin"
831
  msgstr "Extensions installées"
832
 
833
- #: bws_menu.php:353
834
  msgid "Downloading install package from"
835
- msgstr ""
836
 
837
- #: bws_menu.php:378
838
  msgid "Unpacking the package"
839
- msgstr ""
840
 
841
- #: bws_menu.php:383 bws_menu.php:391
842
- #, fuzzy
843
  msgid "Installing the plugin"
844
- msgstr "Extensions installées"
845
 
846
- #: bws_menu.php:397
847
- #, fuzzy
848
  msgid "Successfully installed the plugin"
849
- msgstr "Extensions installées"
850
 
851
- #: bws_menu.php:409
852
- #, fuzzy
853
  msgid "Activate Plugin"
854
- msgstr "Extensions actives"
855
 
856
- #: bws_menu.php:409 bws_menu.php:415
857
  msgid "Return to BestWebSoft Panel"
858
- msgstr ""
859
 
860
- #: bws_menu.php:419 bws_menu.php:434 bws_menu.php:561
861
  msgid "All"
862
  msgstr "Tous"
863
 
864
- #: bws_menu.php:420
865
  msgid "Installed"
866
  msgstr "Installé"
867
 
868
- #: bws_menu.php:421
869
- #, fuzzy
870
  msgid "Not Installed"
871
- msgstr "Installé"
872
 
873
- #: bws_menu.php:427
874
  msgid "Filter results"
875
- msgstr ""
876
 
877
- #: bws_menu.php:430 bws_menu.php:557
878
  msgid "Category"
879
- msgstr ""
880
 
881
- #: bws_menu.php:496
882
  #, fuzzy
 
 
 
 
883
  msgid "Renew to get updates"
884
- msgstr "Rediriger vers la page"
885
 
886
  #: bws_menu.php:499
887
- #, fuzzy, php-format
888
  msgid "Update to v %s"
889
  msgstr "Mettre à jour avec la version %s"
890
 
@@ -894,24 +882,23 @@ msgstr "Installer maintenant"
894
 
895
  #: bws_menu.php:517
896
  msgid "Upgrade to Pro"
897
- msgstr ""
898
 
899
  #: bws_menu.php:521
900
  msgid "Donate"
901
- msgstr ""
902
 
903
  #: bws_menu.php:531 bws_menu.php:540
904
  msgid "Activate this plugin"
905
  msgstr "Activer cette extension"
906
 
907
  #: bws_menu.php:543
908
- #, fuzzy
909
  msgid "Install this plugin"
910
- msgstr "Extensions installées"
911
 
912
  #: bws_menu.php:552
913
  msgid "Nothing found. Try another criteria."
914
- msgstr ""
915
 
916
  #: bws_menu.php:589 bws_menu.php:609
917
  #, php-format
@@ -924,7 +911,7 @@ msgstr "Déjà installé"
924
 
925
  #: bws_menu.php:623
926
  msgid "Browse Free WordPress Themes"
927
- msgstr ""
928
 
929
  #: bws_menu.php:632
930
  msgid "Send to support"
@@ -948,62 +935,57 @@ msgstr "Extensions inactives"
948
 
949
  #: product_list.php:7
950
  msgid "Advertisement"
951
- msgstr ""
952
 
953
  #: product_list.php:8
954
  msgid "Content & Media"
955
- msgstr ""
956
 
957
  #: product_list.php:9
958
  msgid "Management"
959
- msgstr ""
960
 
961
  #: product_list.php:10
962
- msgid "Security"
963
- msgstr ""
964
 
965
  #: product_list.php:11
966
- #, fuzzy
967
- msgid "Site Stats"
968
- msgstr "System status"
969
 
970
  #: product_list.php:12
971
- msgid "Social"
972
- msgstr ""
973
 
974
  #: product_list.php:13
975
- msgid "Utilities"
976
- msgstr ""
977
 
978
  #: product_list.php:14
979
- msgid "Other"
980
- msgstr ""
981
 
982
- #~ msgid "You can download and activate"
983
- #~ msgstr "Vous pouvez télécharger et activer la version "
 
984
 
985
- #~ msgid "version of this plugin by entering Your license key."
986
- #~ msgstr " de cette extension en donnant votre clé de licence."
987
 
988
  #~ msgid ""
989
- #~ "You can find your license key on your personal page Client area, by "
990
- #~ "clicking on the link"
991
  #~ msgstr ""
992
- #~ "Vous pouvez trouver votre clé de licence sur votre page personnelle dans "
993
- #~ "la zone cliente en cliquant sur le lien"
 
994
 
995
- #~ msgid "Configure Settings"
996
- #~ msgstr "Configuration des paramètres"
997
 
998
  #~ msgid "Need help?"
999
  #~ msgstr "Besoin d'aide ?"
1000
 
1001
- #~ msgid "Client area"
1002
- #~ msgstr "Espace client"
1003
-
1004
- #~ msgid "Recommended"
1005
- #~ msgstr "Recommandé"
1006
-
1007
  #~ msgid "Go"
1008
  #~ msgstr "Passez"
1009
 
@@ -1016,6 +998,9 @@ msgstr ""
1016
  #~ msgid "Install now"
1017
  #~ msgstr "Installer maintenant"
1018
 
 
 
 
1019
  #~ msgid "Try again"
1020
  #~ msgstr "Essayer de nouveau"
1021
 
@@ -1034,6 +1019,19 @@ msgstr ""
1034
  #~ msgid "Preview"
1035
  #~ msgstr "Pré-visualiser"
1036
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1037
  #~ msgid "Add BWS Plugins Shortcode"
1038
  #~ msgstr "Ajouter le code court de l'extension BWS"
1039
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-14 15:18+0300\n"
6
+ "PO-Revision-Date: 2016-07-14 15:18+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
17
  "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:328
21
  msgid "Plugins"
22
  msgstr "Extensions"
23
 
26
  msgstr "Thèmes"
27
 
28
  #: bws_functions.php:40
 
29
  msgid "System Status"
30
+ msgstr "Etat du système"
31
 
32
  #: bws_functions.php:75 bws_functions.php:101
33
  msgid "requires"
79
  msgstr "Ajouter"
80
 
81
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
82
+ #: bws_functions.php:724 bws_functions.php:828
83
  msgid "Close notice"
84
  msgstr "Effacer l'avertissement"
85
 
86
  #: bws_functions.php:142
 
87
  msgid "Thank you for installing plugins by BestWebSoft!"
88
+ msgstr "Merci d'avoir installé des extensions de BestWebSoft!"
89
 
90
  #: bws_functions.php:144
 
91
  msgid "More Details"
92
+ msgstr "Plus de détails"
93
 
94
  #: bws_functions.php:145
 
95
  msgid "Less Details"
96
+ msgstr "Moins de détails"
97
 
98
  #: bws_functions.php:218
99
  msgid "It’s time to upgrade your"
133
 
134
  #: bws_functions.php:247
135
  msgid "Donations play an important role in supporting great projects"
136
+ msgstr "Les dons jouent un rôle important dans l'aide aux projets"
137
 
138
  #: bws_functions.php:277
139
  msgid "Check premium options on the plugin settings page!"
189
  "peut-être installée qu'une seule fois."
190
 
191
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
192
+ #: bws_menu.php:368 bws_menu.php:399 bws_menu.php:410
193
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
194
  msgstr ""
195
  "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
196
  "manuellement."
197
 
198
+ #: bws_functions.php:361 bws_menu.php:385
199
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
200
  msgstr ""
201
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
202
  "manuellement."
203
 
204
+ #: bws_functions.php:367 bws_menu.php:392
205
  msgid ""
206
  "Your server does not support either ZipArchive or Phar. Please, upload the "
207
  "plugin manually"
209
  "Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
210
  "de télécharger l'extension manuellement."
211
 
212
+ #: bws_functions.php:374 bws_menu.php:402
213
  msgid "UploadDir is not writable. Please, upload the plugin manually"
214
  msgstr ""
215
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
223
  "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
224
  "l'extension manuellement.Nous sommes désolés pour le désagrément."
225
 
226
+ #: bws_functions.php:422
227
  msgid "Please, enter Your license key"
228
  msgstr "Merci de saisir votre clé de licence"
229
 
230
  #: bws_functions.php:452
 
231
  msgid ""
232
  "Congratulations! Pro version of the plugin is successfully installed and "
233
  "activated."
253
 
254
  #: bws_functions.php:469
255
  msgid "Enter your license key to install and activate"
256
+ msgstr "Saisir votre clé de licence pour installer et activer"
257
 
258
  #: bws_functions.php:471
 
259
  msgid "version of the plugin."
260
+ msgstr "version de l'extension."
261
 
262
  #: bws_functions.php:473 bws_functions.php:514
263
  msgid "License key can be found in the"
264
+ msgstr "La clé de licence peut être trouvée dans "
265
 
266
  #: bws_functions.php:475 bws_functions.php:516
 
267
  msgid "(your username is the email address specified during the purchase)."
268
  msgstr ""
269
+ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors de "
270
  "l'achat de l'extension)."
271
 
272
  #: bws_functions.php:479
275
  msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
276
 
277
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
278
+ #: bws_functions.php:532 bws_functions.php:1398 bws_menu.php:531
279
  #: bws_menu.php:540
280
  msgid "Activate"
281
  msgstr "Activé"
293
  msgstr ""
294
  " Après vous pouvez activer cette extension en donnant votre clé de licence."
295
 
296
+ #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:304
297
  msgid "Unfortunately, you have exceeded the number of available tries per day."
298
  msgstr ""
299
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
364
  "licence sur votre page personnelle (zone client) sur notre site web."
365
 
366
  #: bws_functions.php:647
 
367
  msgid ""
368
  "(your username is the email address specified during the purchase). If "
369
  "necessary, please submit \"Lost your password?\" request."
370
  msgstr ""
371
+ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors de "
372
  "l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de "
373
  "mot de passe perdu."
374
 
375
+ #: bws_functions.php:651 bws_menu.php:302 bws_menu.php:313
376
  msgid "Check license key"
377
  msgstr "Vérifier la clé de licence"
378
 
409
  "Votre licence est terminée. Pour continuer à disposer du support rapide et "
410
  "des mises à jour de l'extension vous devez la renouveller."
411
 
412
+ #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1353
413
  msgid "Learn more"
414
  msgstr "En savoir plus"
415
 
439
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
440
  msgstr "et vous ne disposerez plus du support rapide et des mises à jour."
441
 
442
+ #: bws_functions.php:823
443
  msgid "Thank you for choosing"
444
  msgstr "Merci d'avoir choisi"
445
 
446
+ #: bws_functions.php:824
447
  msgid ""
448
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
449
  "we'd love to hear about it!"
451
  "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
452
  "souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
453
 
454
+ #: bws_functions.php:825
455
  msgid "Suggest a Feature"
456
  msgstr "Proposer une fonctionnalité"
457
 
458
+ #: bws_functions.php:841
459
  msgid "Notice"
460
  msgstr "Avertissement"
461
 
462
+ #: bws_functions.php:841
463
  msgid "The plugin's settings have been changed."
464
  msgstr "Les paramètres de l'extension ont été modifiés."
465
 
466
+ #: bws_functions.php:842 bws_functions.php:1409
467
  msgid "Save Changes"
468
  msgstr "Sauvegarder les modifications"
469
 
470
+ #: bws_functions.php:856
471
  msgid ""
472
  "You can always look at premium options by clicking on the \"Show Pro features"
473
  "\" in the \"Go PRO\" tab"
475
  "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
476
  "\"Voir les fonctionnalités de la version PRO\" dans l'onglet Passer PRO"
477
 
478
+ #: bws_functions.php:985
479
  msgid "Add shortcode"
480
  msgstr "Ajouter le code court"
481
 
482
+ #: bws_functions.php:985
483
  msgid "Add BestWebSoft plugins' shortcodes using this button."
484
  msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
485
 
486
+ #: bws_functions.php:1034
487
  msgid "Close"
488
  msgstr "Fermer"
489
 
490
+ #: bws_functions.php:1126
491
  msgid "Restore all plugin settings to defaults"
492
  msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
493
 
494
+ #: bws_functions.php:1128
495
  msgid "Restore settings"
496
  msgstr "Remettre les paramètres"
497
 
498
+ #: bws_functions.php:1139
499
  msgid "Are you sure you want to restore all settings by default?"
500
  msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
501
 
502
+ #: bws_functions.php:1142
503
  msgid "Yes, restore all settings"
504
  msgstr "Oui, remettre les valeurs par défaut"
505
 
506
+ #: bws_functions.php:1143
507
  msgid "No, go back to the settings page"
508
  msgstr "Non, retourner à la page des paramètres"
509
 
510
+ #: bws_functions.php:1189
511
  msgid "Plugin"
512
  msgstr "Extension"
513
 
514
+ #: bws_functions.php:1198
515
  msgid "Shortcode settings"
516
  msgstr "Paramètres du code court"
517
 
518
+ #: bws_functions.php:1203
519
  msgid "The shortcode will be inserted"
520
  msgstr "Le code court sera inséré"
521
 
522
+ #: bws_functions.php:1208
523
  msgid "Insert"
524
  msgstr "Insérer"
525
 
526
+ #: bws_functions.php:1241
527
  msgid "Visit Help Center"
528
  msgstr "Visiter le site du support"
529
 
530
+ #: bws_functions.php:1246
531
  msgid "FAQ"
532
  msgstr "FAQ"
533
 
534
+ #: bws_functions.php:1252
535
  msgid "For more information:"
536
  msgstr "Pour plus d'informations&nbsp;:"
537
 
538
+ #: bws_functions.php:1253
539
  msgid "Documentation"
540
  msgstr "Documentation"
541
 
542
+ #: bws_functions.php:1254
543
  msgid "Video Instructions"
544
  msgstr "Vidéo explicative"
545
 
546
+ #: bws_functions.php:1255
547
  msgid "Submit a Request"
548
  msgstr "Soumettre une requête"
549
 
550
+ #: bws_functions.php:1266
551
  msgid "You do not have sufficient permissions to edit plugins for this site."
552
  msgstr ""
553
  "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
554
 
555
+ #: bws_functions.php:1317 bws_functions.php:1344
556
+ #, php-format
557
  msgid "File %s edited successfully."
558
+ msgstr "Le fichier %s a été modifié avec succès."
559
 
560
+ #: bws_functions.php:1319 bws_functions.php:1346
561
  msgid "Not enough permissions to create or update the file"
562
  msgstr "Pas assez de droits pour créer ou modifier le fichier"
563
 
564
+ #: bws_functions.php:1349
 
565
  msgid "Not enough permissions to create the file"
566
+ msgstr "Pas assez de droits pour créer le fichier"
567
 
568
+ #: bws_functions.php:1387
569
  msgid "These styles will be added to the header on all pages of your site."
570
  msgstr ""
571
  "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
572
 
573
+ #: bws_functions.php:1389
574
  #, php-format
575
  msgid ""
576
  "These PHP code will be hooked to the %s action and will be printed on front "
577
  "end only."
578
  msgstr ""
579
+ "Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
580
+ "partie publique."
581
 
582
+ #: bws_functions.php:1393
583
  msgid "Editing"
584
  msgstr "Modifier"
585
 
586
+ #: bws_functions.php:1395
587
  msgid "Browsing"
588
  msgstr "Parcourir"
589
 
590
+ #: bws_functions.php:1402
591
+ #, php-format
592
  msgid "Learn more about %s"
593
+ msgstr "En savoir plus sur %s"
594
 
595
+ #: bws_functions.php:1413
596
+ #, php-format
597
  msgid ""
598
  "You need to make this files writable before you can save your changes. See "
599
  "%s the Codex %s for more information."
602
  "modifications. Regarder %s du Codex %s pour plus d'informations."
603
 
604
  #: bws_menu.php:116
 
605
  msgid ""
606
  "This license key is bind to another website. Change it via personal Client "
607
  "Area."
608
+ msgstr ""
609
+ "La clé de licence correspond à un autre site. Modifier là au travers de "
610
+ "votre espace client."
611
 
612
  #: bws_menu.php:116
613
  msgid "Log in"
614
+ msgstr "Connexion"
615
 
616
  #: bws_menu.php:132
 
617
  msgid "Congratulations! Pro Membership license is successfully activated."
618
  msgstr ""
619
  "Félicitations! La version PRO de cette extension a été téléchargée et "
620
  "activée avec succès."
621
 
622
+ #: bws_menu.php:149
623
+ msgid "Please enter your license key."
624
+ msgstr "Merci de saisir votre clé de licence."
625
+
626
  #: bws_menu.php:161
627
  msgid "Not set"
628
  msgstr "Not set"
754
 
755
  #: bws_menu.php:286 bws_menu.php:626
756
  msgid "System status"
757
+ msgstr "Etat du système"
758
 
759
  #: bws_menu.php:287
760
  msgid "Support"
762
 
763
  #: bws_menu.php:288
764
  msgid "Manage purchased licenses & subscriptions"
765
+ msgstr "Gérer les licences et les adhésions"
766
 
767
  #: bws_menu.php:288
768
+ msgid "Client Area"
769
+ msgstr "Espace client"
770
 
771
+ #: bws_menu.php:307
 
 
 
 
 
 
 
 
 
 
 
 
 
772
  msgid "Enter your license key"
773
  msgstr "Merci de saisir votre clé de licence"
774
 
775
+ #: bws_menu.php:311
 
776
  msgid "Activate Membership"
777
+ msgstr "Activer l'adhésion"
778
 
779
+ #: bws_menu.php:320
780
  msgid "Don’t have valid license key yet?"
781
+ msgstr "Vous n'avez pas encore de licence valide ?"
 
 
 
 
782
 
783
+ #: bws_menu.php:320
784
  #, fuzzy
785
+ msgid "Subscribe to Pro Membership Now"
786
+ msgstr "Souscrire une adhésion PRO"
787
+
788
+ #: bws_menu.php:329
789
  msgid "Upload Plugin"
790
+ msgstr "Charger l'extension"
791
 
792
+ #: bws_menu.php:333
793
  #, php-format
794
  msgid ""
795
  "The plugin generated %d characters of <strong>unexpected output</strong> "
797
  "messages, problems with syndication feeds or other issues, try deactivating "
798
  "or removing this plugin."
799
  msgstr ""
800
+ "Cette extension a produit %d caractères <strong>inattendus</strong> durant "
801
+ "l'activation. Si vous constatez le message &#8220;headers already "
802
+ "sent&#8221;, des problèmes avec les flux de syndication ou autres, essayez "
803
+ "de désactiver l'extension ou supprimer l'extension."
804
 
805
+ #: bws_menu.php:335
806
  msgid ""
807
  "Plugin could not be activated because it triggered a <strong>fatal error</"
808
  "strong>."
809
  msgstr ""
810
+ "L'extension ne peut pas être activée car une <strong>erreur fatale</strong> "
811
+ "a été détectée."
812
 
813
+ #: bws_menu.php:338
814
  msgid "Plugin <strong>activated</strong>."
815
+ msgstr "Extension <strong>activée</strong>."
816
 
817
+ #: bws_menu.php:345
 
818
  msgid "Installing Plugin"
819
  msgstr "Extensions installées"
820
 
821
+ #: bws_menu.php:351
822
  msgid "Downloading install package from"
823
+ msgstr "Télécharger le paquet d'installation depuis"
824
 
825
+ #: bws_menu.php:376
826
  msgid "Unpacking the package"
827
+ msgstr "Décompresser le paquet"
828
 
829
+ #: bws_menu.php:381 bws_menu.php:389
 
830
  msgid "Installing the plugin"
831
+ msgstr "Installer l'extension"
832
 
833
+ #: bws_menu.php:395
 
834
  msgid "Successfully installed the plugin"
835
+ msgstr "Extension installée avec succès"
836
 
837
+ #: bws_menu.php:407
 
838
  msgid "Activate Plugin"
839
+ msgstr "Activer l'extension"
840
 
841
+ #: bws_menu.php:407 bws_menu.php:413
842
  msgid "Return to BestWebSoft Panel"
843
+ msgstr "Retourner à l'administration BestWebSoft"
844
 
845
+ #: bws_menu.php:417 bws_menu.php:432 bws_menu.php:561
846
  msgid "All"
847
  msgstr "Tous"
848
 
849
+ #: bws_menu.php:418
850
  msgid "Installed"
851
  msgstr "Installé"
852
 
853
+ #: bws_menu.php:419
 
854
  msgid "Not Installed"
855
+ msgstr "Non installé"
856
 
857
+ #: bws_menu.php:425
858
  msgid "Filter results"
859
+ msgstr "Filtrer les résultats"
860
 
861
+ #: bws_menu.php:428 bws_menu.php:557
862
  msgid "Category"
863
+ msgstr "Catégorie"
864
 
865
+ #: bws_menu.php:492
866
  #, fuzzy
867
+ msgid "Not installed"
868
+ msgstr "Non installé"
869
+
870
+ #: bws_menu.php:496
871
  msgid "Renew to get updates"
872
+ msgstr "Se réabonner pour avoir les mises à jour"
873
 
874
  #: bws_menu.php:499
875
+ #, php-format
876
  msgid "Update to v %s"
877
  msgstr "Mettre à jour avec la version %s"
878
 
882
 
883
  #: bws_menu.php:517
884
  msgid "Upgrade to Pro"
885
+ msgstr "Passer à la version PRO"
886
 
887
  #: bws_menu.php:521
888
  msgid "Donate"
889
+ msgstr "Don"
890
 
891
  #: bws_menu.php:531 bws_menu.php:540
892
  msgid "Activate this plugin"
893
  msgstr "Activer cette extension"
894
 
895
  #: bws_menu.php:543
 
896
  msgid "Install this plugin"
897
+ msgstr "Installer cette extension"
898
 
899
  #: bws_menu.php:552
900
  msgid "Nothing found. Try another criteria."
901
+ msgstr "Pas de réponse. essayer d'autres critères."
902
 
903
  #: bws_menu.php:589 bws_menu.php:609
904
  #, php-format
911
 
912
  #: bws_menu.php:623
913
  msgid "Browse Free WordPress Themes"
914
+ msgstr "Parcourir les thèmes gratuits pour WordPress"
915
 
916
  #: bws_menu.php:632
917
  msgid "Send to support"
935
 
936
  #: product_list.php:7
937
  msgid "Advertisement"
938
+ msgstr "Publicité"
939
 
940
  #: product_list.php:8
941
  msgid "Content & Media"
942
+ msgstr "Contenu & média"
943
 
944
  #: product_list.php:9
945
  msgid "Management"
946
+ msgstr "Administration"
947
 
948
  #: product_list.php:10
949
+ msgid "Recommended"
950
+ msgstr "Recommandé"
951
 
952
  #: product_list.php:11
953
+ msgid "Security"
954
+ msgstr "Sécurité"
 
955
 
956
  #: product_list.php:12
957
+ msgid "Site Stats"
958
+ msgstr "Statistiques"
959
 
960
  #: product_list.php:13
961
+ msgid "Social"
962
+ msgstr "Social"
963
 
964
  #: product_list.php:14
965
+ msgid "Utilities"
966
+ msgstr "Utilitaires"
967
 
968
+ #: product_list.php:15
969
+ msgid "Other"
970
+ msgstr "Autre"
971
 
972
+ #~ msgid "Get Access to %s+ Premium Plugins"
973
+ #~ msgstr "Accéder à plus de %s extension premiums"
974
 
975
  #~ msgid ""
976
+ #~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
977
+ #~ "plugins on a single website %s for only %s per month."
978
  #~ msgstr ""
979
+ #~ "Rejoignez le réseau PRO de BestWebSoft, arrêtez quand vous le vouler et "
980
+ #~ "utiliser toutes les extensions sur un seul site %s pour seulement %s par "
981
+ #~ "mois."
982
 
983
+ #~ msgid "My Account"
984
+ #~ msgstr "Mon compte"
985
 
986
  #~ msgid "Need help?"
987
  #~ msgstr "Besoin d'aide ?"
988
 
 
 
 
 
 
 
989
  #~ msgid "Go"
990
  #~ msgstr "Passez"
991
 
998
  #~ msgid "Install now"
999
  #~ msgstr "Installer maintenant"
1000
 
1001
+ #~ msgid "Configure Settings"
1002
+ #~ msgstr "Configuration des paramètres"
1003
+
1004
  #~ msgid "Try again"
1005
  #~ msgstr "Essayer de nouveau"
1006
 
1019
  #~ msgid "Preview"
1020
  #~ msgstr "Pré-visualiser"
1021
 
1022
+ #~ msgid "You can download and activate"
1023
+ #~ msgstr "Vous pouvez télécharger et activer la version "
1024
+
1025
+ #~ msgid "version of this plugin by entering Your license key."
1026
+ #~ msgstr " de cette extension en donnant votre clé de licence."
1027
+
1028
+ #~ msgid ""
1029
+ #~ "You can find your license key on your personal page Client area, by "
1030
+ #~ "clicking on the link"
1031
+ #~ msgstr ""
1032
+ #~ "Vous pouvez trouver votre clé de licence sur votre page personnelle dans "
1033
+ #~ "la zone cliente en cliquant sur le lien"
1034
+
1035
  #~ msgid "Add BWS Plugins Shortcode"
1036
  #~ msgstr "Ajouter le code court de l'extension BWS"
1037
 
bws_menu/languages/bestwebsoft-pl_PL.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-06-20 18:01+0300\n"
6
- "PO-Revision-Date: 2016-06-20 18:01+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
9
  "Language: pl_PL\n"
@@ -18,7 +18,7 @@ msgstr ""
18
  "|| n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
22
  msgid "Plugins"
23
  msgstr "Wtyczki"
24
 
@@ -81,7 +81,7 @@ msgid "Add New"
81
  msgstr "Dodaj nowy"
82
 
83
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
84
- #: bws_functions.php:724 bws_functions.php:814
85
  msgid "Close notice"
86
  msgstr "Zamknij powiadomienie"
87
 
@@ -188,26 +188,26 @@ msgstr ""
188
  "może być wykorzystana tylko raz."
189
 
190
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
191
- #: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
192
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
193
  msgstr ""
194
  "Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
195
  "manualnie"
196
 
197
- #: bws_functions.php:361 bws_menu.php:387
198
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
199
  msgstr ""
200
  "Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
201
  "manualnie"
202
 
203
- #: bws_functions.php:367 bws_menu.php:394
204
  msgid ""
205
  "Your server does not support either ZipArchive or Phar. Please, upload the "
206
  "plugin manually"
207
  msgstr ""
208
  "Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę manualnie"
209
 
210
- #: bws_functions.php:374 bws_menu.php:404
211
  msgid "UploadDir is not writable. Please, upload the plugin manually"
212
  msgstr ""
213
  "Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
@@ -220,7 +220,7 @@ msgstr ""
220
  "Coś poszło nie tak. Spróbuj ponowie później lub dodaj wtyczkę manualnie. "
221
  "Przepraszamy za niedogodności."
222
 
223
- #: bws_functions.php:422 bws_menu.php:149
224
  msgid "Please, enter Your license key"
225
  msgstr "Proszę podać klucz licencji."
226
 
@@ -271,7 +271,7 @@ msgid "Start Your Free %s-Day Trial Now"
271
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
272
 
273
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
274
- #: bws_functions.php:532 bws_functions.php:1382 bws_menu.php:531
275
  #: bws_menu.php:540
276
  msgid "Activate"
277
  msgstr "Aktywuj"
@@ -288,7 +288,7 @@ msgstr ""
288
  msgid "After that you can activate it by entering your license key."
289
  msgstr "Po wszystkim możesz aktywować wtyczkę poprzez podanie klucza licencji."
290
 
291
- #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:306
292
  msgid "Unfortunately, you have exceeded the number of available tries per day."
293
  msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
294
 
@@ -360,7 +360,7 @@ msgstr ""
360
  "(login to adres email podany przy zakupie). Jeśli to koniczne użyj opcji "
361
  "\"Zgubiłeś swoje hasło?\"."
362
 
363
- #: bws_functions.php:651 bws_menu.php:304 bws_menu.php:315
364
  msgid "Check license key"
365
  msgstr "Sprawdź klucz licencji"
366
 
@@ -396,7 +396,7 @@ msgstr ""
396
  "Twoja licencja wygasła. Aby podtrzymać szybki dostęp do pomocy i "
397
  "aktualizacji powinieneś przedłużyć licencję."
398
 
399
- #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1337
400
  msgid "Learn more"
401
  msgstr "Dowiedz się więcej"
402
 
@@ -427,34 +427,34 @@ msgstr ""
427
  "zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
428
  "AKTUALIZACJI."
429
 
430
- #: bws_functions.php:809
431
  #, fuzzy
432
  msgid "Thank you for choosing"
433
  msgstr "Dziękujemy za instalację"
434
 
435
- #: bws_functions.php:810
436
  msgid ""
437
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
438
  "we'd love to hear about it!"
439
  msgstr ""
440
 
441
- #: bws_functions.php:811
442
  msgid "Suggest a Feature"
443
  msgstr ""
444
 
445
- #: bws_functions.php:827
446
  msgid "Notice"
447
  msgstr "Uwaga"
448
 
449
- #: bws_functions.php:827
450
  msgid "The plugin's settings have been changed."
451
  msgstr "Ustawienia wtyczki zostały zmienione."
452
 
453
- #: bws_functions.php:828 bws_functions.php:1393
454
  msgid "Save Changes"
455
  msgstr "Zapisz zmiany"
456
 
457
- #: bws_functions.php:842
458
  msgid ""
459
  "You can always look at premium options by clicking on the \"Show Pro features"
460
  "\" in the \"Go PRO\" tab"
@@ -462,124 +462,124 @@ msgstr ""
462
  "Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
463
  "PRO\" w zakładce \"Go PRO\""
464
 
465
- #: bws_functions.php:971
466
  #, fuzzy
467
  msgid "Add shortcode"
468
  msgstr "Dodaj BWS Shortcode"
469
 
470
- #: bws_functions.php:971
471
  msgid "Add BestWebSoft plugins' shortcodes using this button."
472
  msgstr ""
473
 
474
- #: bws_functions.php:1020
475
  msgid "Close"
476
  msgstr "Zamknij"
477
 
478
- #: bws_functions.php:1112
479
  msgid "Restore all plugin settings to defaults"
480
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
481
 
482
- #: bws_functions.php:1114
483
  msgid "Restore settings"
484
  msgstr "Przywróć ustawienia"
485
 
486
- #: bws_functions.php:1125
487
  msgid "Are you sure you want to restore all settings by default?"
488
  msgstr ""
489
  "Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
490
  "domyślnych?"
491
 
492
- #: bws_functions.php:1128
493
  msgid "Yes, restore all settings"
494
  msgstr "Tak, przywróć wszystkie ustawienia"
495
 
496
- #: bws_functions.php:1129
497
  msgid "No, go back to the settings page"
498
  msgstr "Nie, wróć do ustawień"
499
 
500
- #: bws_functions.php:1175
501
  msgid "Plugin"
502
  msgstr "Wtyczka"
503
 
504
- #: bws_functions.php:1184
505
  msgid "Shortcode settings"
506
  msgstr "Ustawienia shortcode"
507
 
508
- #: bws_functions.php:1189
509
  msgid "The shortcode will be inserted"
510
  msgstr "Shortcode zostanie umieszczony"
511
 
512
- #: bws_functions.php:1194
513
  msgid "Insert"
514
  msgstr "Umieść"
515
 
516
- #: bws_functions.php:1225
517
  msgid "Visit Help Center"
518
  msgstr ""
519
 
520
- #: bws_functions.php:1230
521
  msgid "FAQ"
522
  msgstr "FAQ"
523
 
524
- #: bws_functions.php:1236
525
  msgid "For more information:"
526
  msgstr ""
527
 
528
- #: bws_functions.php:1237
529
  msgid "Documentation"
530
  msgstr ""
531
 
532
- #: bws_functions.php:1238
533
  msgid "Video Instructions"
534
  msgstr ""
535
 
536
- #: bws_functions.php:1239
537
  #, fuzzy
538
  msgid "Submit a Request"
539
  msgstr "送信ボタン"
540
 
541
- #: bws_functions.php:1250
542
  msgid "You do not have sufficient permissions to edit plugins for this site."
543
  msgstr ""
544
 
545
- #: bws_functions.php:1301 bws_functions.php:1328
546
  #, php-format
547
  msgid "File %s edited successfully."
548
  msgstr ""
549
 
550
- #: bws_functions.php:1303 bws_functions.php:1330
551
  msgid "Not enough permissions to create or update the file"
552
  msgstr ""
553
 
554
- #: bws_functions.php:1333
555
  msgid "Not enough permissions to create the file"
556
  msgstr ""
557
 
558
- #: bws_functions.php:1371
559
  msgid "These styles will be added to the header on all pages of your site."
560
  msgstr ""
561
 
562
- #: bws_functions.php:1373
563
  #, php-format
564
  msgid ""
565
  "These PHP code will be hooked to the %s action and will be printed on front "
566
  "end only."
567
  msgstr ""
568
 
569
- #: bws_functions.php:1377
570
  msgid "Editing"
571
  msgstr ""
572
 
573
- #: bws_functions.php:1379
574
  msgid "Browsing"
575
  msgstr ""
576
 
577
- #: bws_functions.php:1386
578
  #, fuzzy, php-format
579
  msgid "Learn more about %s"
580
  msgstr "Dowiedz się więcej"
581
 
582
- #: bws_functions.php:1397
583
  #, php-format
584
  msgid ""
585
  "You need to make this files writable before you can save your changes. See "
@@ -602,6 +602,11 @@ msgstr ""
602
  msgid "Congratulations! Pro Membership license is successfully activated."
603
  msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
604
 
 
 
 
 
 
605
  #: bws_menu.php:161
606
  msgid "Not set"
607
  msgstr "Nie ustawiono"
@@ -744,45 +749,34 @@ msgid "Manage purchased licenses & subscriptions"
744
  msgstr ""
745
 
746
  #: bws_menu.php:288
747
- msgid "My Account"
748
- msgstr ""
749
-
750
- #: bws_menu.php:296
751
- #, php-format
752
- msgid "Get Access to %s+ Premium Plugins"
753
- msgstr ""
754
-
755
- #: bws_menu.php:297
756
- #, php-format
757
- msgid ""
758
- "Join BestWebSoft Pro Membership today, cancel any time and use all plugins "
759
- "on a single website %s for only %s per month."
760
- msgstr ""
761
 
762
- #: bws_menu.php:309
763
  #, fuzzy
764
  msgid "Enter your license key"
765
  msgstr "Podaj klucz licencji"
766
 
767
- #: bws_menu.php:313
768
  #, fuzzy
769
  msgid "Activate Membership"
770
  msgstr "有効なテーマ"
771
 
772
- #: bws_menu.php:322
773
  msgid "Don’t have valid license key yet?"
774
  msgstr ""
775
 
776
- #: bws_menu.php:322
777
- msgid "Subscribe to Pro Membership"
778
  msgstr ""
779
 
780
- #: bws_menu.php:331
781
  #, fuzzy
782
  msgid "Upload Plugin"
783
  msgstr "Wtyczka"
784
 
785
- #: bws_menu.php:335
786
  #, php-format
787
  msgid ""
788
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -791,69 +785,74 @@ msgid ""
791
  "or removing this plugin."
792
  msgstr ""
793
 
794
- #: bws_menu.php:337
795
  msgid ""
796
  "Plugin could not be activated because it triggered a <strong>fatal error</"
797
  "strong>."
798
  msgstr ""
799
 
800
- #: bws_menu.php:340
801
  msgid "Plugin <strong>activated</strong>."
802
  msgstr ""
803
 
804
- #: bws_menu.php:347
805
  #, fuzzy
806
  msgid "Installing Plugin"
807
  msgstr "Zainstalowane"
808
 
809
- #: bws_menu.php:353
810
  msgid "Downloading install package from"
811
  msgstr ""
812
 
813
- #: bws_menu.php:378
814
  msgid "Unpacking the package"
815
  msgstr ""
816
 
817
- #: bws_menu.php:383 bws_menu.php:391
818
  #, fuzzy
819
  msgid "Installing the plugin"
820
  msgstr "Zainstalowane"
821
 
822
- #: bws_menu.php:397
823
  #, fuzzy
824
  msgid "Successfully installed the plugin"
825
  msgstr "Zainstalowane"
826
 
827
- #: bws_menu.php:409
828
  #, fuzzy
829
  msgid "Activate Plugin"
830
  msgstr "Aktywne wtyczki"
831
 
832
- #: bws_menu.php:409 bws_menu.php:415
833
  msgid "Return to BestWebSoft Panel"
834
  msgstr ""
835
 
836
- #: bws_menu.php:419 bws_menu.php:434 bws_menu.php:561
837
  msgid "All"
838
  msgstr "Wszystko"
839
 
840
- #: bws_menu.php:420
841
  msgid "Installed"
842
  msgstr "Zainstalowane"
843
 
844
- #: bws_menu.php:421
845
  #, fuzzy
846
  msgid "Not Installed"
847
  msgstr "Zainstalowane"
848
 
849
- #: bws_menu.php:427
850
  msgid "Filter results"
851
  msgstr ""
852
 
853
- #: bws_menu.php:430 bws_menu.php:557
854
  msgid "Category"
855
  msgstr ""
856
 
 
 
 
 
 
857
  #: bws_menu.php:496
858
  #, fuzzy
859
  msgid "Renew to get updates"
@@ -935,23 +934,27 @@ msgid "Management"
935
  msgstr ""
936
 
937
  #: product_list.php:10
 
 
 
 
938
  msgid "Security"
939
  msgstr ""
940
 
941
- #: product_list.php:11
942
  #, fuzzy
943
  msgid "Site Stats"
944
  msgstr "Status systemu"
945
 
946
- #: product_list.php:12
947
  msgid "Social"
948
  msgstr ""
949
 
950
- #: product_list.php:13
951
  msgid "Utilities"
952
  msgstr ""
953
 
954
- #: product_list.php:14
955
  msgid "Other"
956
  msgstr ""
957
 
@@ -974,12 +977,6 @@ msgstr ""
974
  #~ msgid "Need help?"
975
  #~ msgstr "Potrzebujesz pomocy?"
976
 
977
- #~ msgid "Client area"
978
- #~ msgstr "Panel Klienta"
979
-
980
- #~ msgid "Recommended"
981
- #~ msgstr "Polecane"
982
-
983
  #~ msgid "Go"
984
  #~ msgstr "Go"
985
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-14 15:18+0300\n"
6
+ "PO-Revision-Date: 2016-07-14 15:18+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
9
  "Language: pl_PL\n"
18
  "|| n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:328
22
  msgid "Plugins"
23
  msgstr "Wtyczki"
24
 
81
  msgstr "Dodaj nowy"
82
 
83
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
84
+ #: bws_functions.php:724 bws_functions.php:828
85
  msgid "Close notice"
86
  msgstr "Zamknij powiadomienie"
87
 
188
  "może być wykorzystana tylko raz."
189
 
190
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
191
+ #: bws_menu.php:368 bws_menu.php:399 bws_menu.php:410
192
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
193
  msgstr ""
194
  "Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
195
  "manualnie"
196
 
197
+ #: bws_functions.php:361 bws_menu.php:385
198
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
199
  msgstr ""
200
  "Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
201
  "manualnie"
202
 
203
+ #: bws_functions.php:367 bws_menu.php:392
204
  msgid ""
205
  "Your server does not support either ZipArchive or Phar. Please, upload the "
206
  "plugin manually"
207
  msgstr ""
208
  "Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę manualnie"
209
 
210
+ #: bws_functions.php:374 bws_menu.php:402
211
  msgid "UploadDir is not writable. Please, upload the plugin manually"
212
  msgstr ""
213
  "Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
220
  "Coś poszło nie tak. Spróbuj ponowie później lub dodaj wtyczkę manualnie. "
221
  "Przepraszamy za niedogodności."
222
 
223
+ #: bws_functions.php:422
224
  msgid "Please, enter Your license key"
225
  msgstr "Proszę podać klucz licencji."
226
 
271
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
272
 
273
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
274
+ #: bws_functions.php:532 bws_functions.php:1398 bws_menu.php:531
275
  #: bws_menu.php:540
276
  msgid "Activate"
277
  msgstr "Aktywuj"
288
  msgid "After that you can activate it by entering your license key."
289
  msgstr "Po wszystkim możesz aktywować wtyczkę poprzez podanie klucza licencji."
290
 
291
+ #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:304
292
  msgid "Unfortunately, you have exceeded the number of available tries per day."
293
  msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
294
 
360
  "(login to adres email podany przy zakupie). Jeśli to koniczne użyj opcji "
361
  "\"Zgubiłeś swoje hasło?\"."
362
 
363
+ #: bws_functions.php:651 bws_menu.php:302 bws_menu.php:313
364
  msgid "Check license key"
365
  msgstr "Sprawdź klucz licencji"
366
 
396
  "Twoja licencja wygasła. Aby podtrzymać szybki dostęp do pomocy i "
397
  "aktualizacji powinieneś przedłużyć licencję."
398
 
399
+ #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1353
400
  msgid "Learn more"
401
  msgstr "Dowiedz się więcej"
402
 
427
  "zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
428
  "AKTUALIZACJI."
429
 
430
+ #: bws_functions.php:823
431
  #, fuzzy
432
  msgid "Thank you for choosing"
433
  msgstr "Dziękujemy za instalację"
434
 
435
+ #: bws_functions.php:824
436
  msgid ""
437
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
438
  "we'd love to hear about it!"
439
  msgstr ""
440
 
441
+ #: bws_functions.php:825
442
  msgid "Suggest a Feature"
443
  msgstr ""
444
 
445
+ #: bws_functions.php:841
446
  msgid "Notice"
447
  msgstr "Uwaga"
448
 
449
+ #: bws_functions.php:841
450
  msgid "The plugin's settings have been changed."
451
  msgstr "Ustawienia wtyczki zostały zmienione."
452
 
453
+ #: bws_functions.php:842 bws_functions.php:1409
454
  msgid "Save Changes"
455
  msgstr "Zapisz zmiany"
456
 
457
+ #: bws_functions.php:856
458
  msgid ""
459
  "You can always look at premium options by clicking on the \"Show Pro features"
460
  "\" in the \"Go PRO\" tab"
462
  "Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
463
  "PRO\" w zakładce \"Go PRO\""
464
 
465
+ #: bws_functions.php:985
466
  #, fuzzy
467
  msgid "Add shortcode"
468
  msgstr "Dodaj BWS Shortcode"
469
 
470
+ #: bws_functions.php:985
471
  msgid "Add BestWebSoft plugins' shortcodes using this button."
472
  msgstr ""
473
 
474
+ #: bws_functions.php:1034
475
  msgid "Close"
476
  msgstr "Zamknij"
477
 
478
+ #: bws_functions.php:1126
479
  msgid "Restore all plugin settings to defaults"
480
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
481
 
482
+ #: bws_functions.php:1128
483
  msgid "Restore settings"
484
  msgstr "Przywróć ustawienia"
485
 
486
+ #: bws_functions.php:1139
487
  msgid "Are you sure you want to restore all settings by default?"
488
  msgstr ""
489
  "Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
490
  "domyślnych?"
491
 
492
+ #: bws_functions.php:1142
493
  msgid "Yes, restore all settings"
494
  msgstr "Tak, przywróć wszystkie ustawienia"
495
 
496
+ #: bws_functions.php:1143
497
  msgid "No, go back to the settings page"
498
  msgstr "Nie, wróć do ustawień"
499
 
500
+ #: bws_functions.php:1189
501
  msgid "Plugin"
502
  msgstr "Wtyczka"
503
 
504
+ #: bws_functions.php:1198
505
  msgid "Shortcode settings"
506
  msgstr "Ustawienia shortcode"
507
 
508
+ #: bws_functions.php:1203
509
  msgid "The shortcode will be inserted"
510
  msgstr "Shortcode zostanie umieszczony"
511
 
512
+ #: bws_functions.php:1208
513
  msgid "Insert"
514
  msgstr "Umieść"
515
 
516
+ #: bws_functions.php:1241
517
  msgid "Visit Help Center"
518
  msgstr ""
519
 
520
+ #: bws_functions.php:1246
521
  msgid "FAQ"
522
  msgstr "FAQ"
523
 
524
+ #: bws_functions.php:1252
525
  msgid "For more information:"
526
  msgstr ""
527
 
528
+ #: bws_functions.php:1253
529
  msgid "Documentation"
530
  msgstr ""
531
 
532
+ #: bws_functions.php:1254
533
  msgid "Video Instructions"
534
  msgstr ""
535
 
536
+ #: bws_functions.php:1255
537
  #, fuzzy
538
  msgid "Submit a Request"
539
  msgstr "送信ボタン"
540
 
541
+ #: bws_functions.php:1266
542
  msgid "You do not have sufficient permissions to edit plugins for this site."
543
  msgstr ""
544
 
545
+ #: bws_functions.php:1317 bws_functions.php:1344
546
  #, php-format
547
  msgid "File %s edited successfully."
548
  msgstr ""
549
 
550
+ #: bws_functions.php:1319 bws_functions.php:1346
551
  msgid "Not enough permissions to create or update the file"
552
  msgstr ""
553
 
554
+ #: bws_functions.php:1349
555
  msgid "Not enough permissions to create the file"
556
  msgstr ""
557
 
558
+ #: bws_functions.php:1387
559
  msgid "These styles will be added to the header on all pages of your site."
560
  msgstr ""
561
 
562
+ #: bws_functions.php:1389
563
  #, php-format
564
  msgid ""
565
  "These PHP code will be hooked to the %s action and will be printed on front "
566
  "end only."
567
  msgstr ""
568
 
569
+ #: bws_functions.php:1393
570
  msgid "Editing"
571
  msgstr ""
572
 
573
+ #: bws_functions.php:1395
574
  msgid "Browsing"
575
  msgstr ""
576
 
577
+ #: bws_functions.php:1402
578
  #, fuzzy, php-format
579
  msgid "Learn more about %s"
580
  msgstr "Dowiedz się więcej"
581
 
582
+ #: bws_functions.php:1413
583
  #, php-format
584
  msgid ""
585
  "You need to make this files writable before you can save your changes. See "
602
  msgid "Congratulations! Pro Membership license is successfully activated."
603
  msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
604
 
605
+ #: bws_menu.php:149
606
+ #, fuzzy
607
+ msgid "Please enter your license key."
608
+ msgstr "Podaj klucz licencji"
609
+
610
  #: bws_menu.php:161
611
  msgid "Not set"
612
  msgstr "Nie ustawiono"
749
  msgstr ""
750
 
751
  #: bws_menu.php:288
752
+ #, fuzzy
753
+ msgid "Client Area"
754
+ msgstr "Panel Klienta"
 
 
 
 
 
 
 
 
 
 
 
755
 
756
+ #: bws_menu.php:307
757
  #, fuzzy
758
  msgid "Enter your license key"
759
  msgstr "Podaj klucz licencji"
760
 
761
+ #: bws_menu.php:311
762
  #, fuzzy
763
  msgid "Activate Membership"
764
  msgstr "有効なテーマ"
765
 
766
+ #: bws_menu.php:320
767
  msgid "Don’t have valid license key yet?"
768
  msgstr ""
769
 
770
+ #: bws_menu.php:320
771
+ msgid "Subscribe to Pro Membership Now"
772
  msgstr ""
773
 
774
+ #: bws_menu.php:329
775
  #, fuzzy
776
  msgid "Upload Plugin"
777
  msgstr "Wtyczka"
778
 
779
+ #: bws_menu.php:333
780
  #, php-format
781
  msgid ""
782
  "The plugin generated %d characters of <strong>unexpected output</strong> "
785
  "or removing this plugin."
786
  msgstr ""
787
 
788
+ #: bws_menu.php:335
789
  msgid ""
790
  "Plugin could not be activated because it triggered a <strong>fatal error</"
791
  "strong>."
792
  msgstr ""
793
 
794
+ #: bws_menu.php:338
795
  msgid "Plugin <strong>activated</strong>."
796
  msgstr ""
797
 
798
+ #: bws_menu.php:345
799
  #, fuzzy
800
  msgid "Installing Plugin"
801
  msgstr "Zainstalowane"
802
 
803
+ #: bws_menu.php:351
804
  msgid "Downloading install package from"
805
  msgstr ""
806
 
807
+ #: bws_menu.php:376
808
  msgid "Unpacking the package"
809
  msgstr ""
810
 
811
+ #: bws_menu.php:381 bws_menu.php:389
812
  #, fuzzy
813
  msgid "Installing the plugin"
814
  msgstr "Zainstalowane"
815
 
816
+ #: bws_menu.php:395
817
  #, fuzzy
818
  msgid "Successfully installed the plugin"
819
  msgstr "Zainstalowane"
820
 
821
+ #: bws_menu.php:407
822
  #, fuzzy
823
  msgid "Activate Plugin"
824
  msgstr "Aktywne wtyczki"
825
 
826
+ #: bws_menu.php:407 bws_menu.php:413
827