Google Captcha (reCAPTCHA) by BestWebSoft - Version 1.25

Version Description

  • 15.07.2016 =
  • Update : BWS panel section was updated.
Download this release

Release Info

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

Code changes from version 1.24 to 1.25

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
  }
@@ -441,7 +441,7 @@ if ( ! function_exists( 'bws_go_pro_tab' ) ) {
441
  */
442
  if ( ! function_exists( 'bws_go_pro_tab_show' ) ) {
443
  function bws_go_pro_tab_show( $bws_hide_premium_options_check, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
444
- // global $wp_version, $bstwbsftwppdtplgns_options;
445
  $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
446
  if ( $pro_plugin_is_activated ) { ?>
447
  <script type="text/javascript">
@@ -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
  }
441
  */
442
  if ( ! function_exists( 'bws_go_pro_tab_show' ) ) {
443
  function bws_go_pro_tab_show( $bws_hide_premium_options_check, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
444
+ global $wp_version, $bstwbsftwppdtplgns_options;
445
  $bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
446
  if ( $pro_plugin_is_activated ) { ?>
447
  <script type="text/javascript">
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/icons/themes/renty.png ADDED
Binary file
bws_menu/languages/bestwebsoft-fr_FR.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-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
  msgid "Return to BestWebSoft Panel"
828
  msgstr ""
829
 
830
+ #: bws_menu.php:417 bws_menu.php:432 bws_menu.php:561
831
  msgid "All"
832
  msgstr "Wszystko"
833
 
834
+ #: bws_menu.php:418
835
  msgid "Installed"
836
  msgstr "Zainstalowane"
837
 
838
+ #: bws_menu.php:419
839
  #, fuzzy
840
  msgid "Not Installed"
841
  msgstr "Zainstalowane"
842
 
843
+ #: bws_menu.php:425
844
  msgid "Filter results"
845
  msgstr ""
846
 
847
+ #: bws_menu.php:428 bws_menu.php:557
848
  msgid "Category"
849
  msgstr ""
850
 
851
+ #: bws_menu.php:492
852
+ #, fuzzy
853
+ msgid "Not installed"
854
+ msgstr "Zainstalowane"
855
+
856
  #: bws_menu.php:496
857
  #, fuzzy
858
  msgid "Renew to get updates"
934
  msgstr ""
935
 
936
  #: product_list.php:10
937
+ msgid "Recommended"
938
+ msgstr "Polecane"
939
+
940
+ #: product_list.php:11
941
  msgid "Security"
942
  msgstr ""
943
 
944
+ #: product_list.php:12
945
  #, fuzzy
946
  msgid "Site Stats"
947
  msgstr "Status systemu"
948
 
949
+ #: product_list.php:13
950
  msgid "Social"
951
  msgstr ""
952
 
953
+ #: product_list.php:14
954
  msgid "Utilities"
955
  msgstr ""
956
 
957
+ #: product_list.php:15
958
  msgid "Other"
959
  msgstr ""
960
 
977
  #~ msgid "Need help?"
978
  #~ msgstr "Potrzebujesz pomocy?"
979
 
 
 
 
 
 
 
980
  #~ msgid "Go"
981
  #~ msgstr "Go"
982
 
bws_menu/languages/bestwebsoft-ru_RU.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-06-20 18:01+0300\n"
6
- "PO-Revision-Date: 2016-06-20 18:04+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -16,7 +16,7 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
20
  msgid "Plugins"
21
  msgstr "Плагины"
22
 
@@ -78,7 +78,7 @@ msgid "Add New"
78
  msgstr "Добавить"
79
 
80
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
81
- #: bws_functions.php:724 bws_functions.php:814
82
  msgid "Close notice"
83
  msgstr "Закрыть"
84
 
@@ -184,16 +184,16 @@ msgstr ""
184
  "лицензия может быть установлена только один раз."
185
 
186
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
187
- #: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
188
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
189
  msgstr ""
190
  "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
191
 
192
- #: bws_functions.php:361 bws_menu.php:387
193
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
194
  msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
195
 
196
- #: bws_functions.php:367 bws_menu.php:394
197
  msgid ""
198
  "Your server does not support either ZipArchive or Phar. Please, upload the "
199
  "plugin manually"
@@ -201,7 +201,7 @@ msgstr ""
201
  "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. "
202
  "Пожалуйста, загрузите плагин вручную"
203
 
204
- #: bws_functions.php:374 bws_menu.php:404
205
  msgid "UploadDir is not writable. Please, upload the plugin manually"
206
  msgstr ""
207
  "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
@@ -214,7 +214,7 @@ msgstr ""
214
  "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. "
215
  "Приносим извинения за неудобства."
216
 
217
- #: bws_functions.php:422 bws_menu.php:149
218
  msgid "Please, enter Your license key"
219
  msgstr "Пожалуйста, введите ваш лицензионный ключ"
220
 
@@ -262,7 +262,7 @@ msgid "Start Your Free %s-Day Trial Now"
262
  msgstr "Попробуйте %s-дневную Trial версию бесплатно"
263
 
264
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
265
- #: bws_functions.php:532 bws_functions.php:1382 bws_menu.php:531
266
  #: bws_menu.php:540
267
  msgid "Activate"
268
  msgstr "Активировать"
@@ -278,7 +278,7 @@ msgstr ""
278
  msgid "After that you can activate it by entering your license key."
279
  msgstr "После этого вы сможете активировать его введя лицензионный ключ."
280
 
281
- #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:306
282
  msgid "Unfortunately, you have exceeded the number of available tries per day."
283
  msgstr "К сожалению, вы превысили количество доступных попыток."
284
 
@@ -349,7 +349,7 @@ msgstr ""
349
  "(ваше имя пользователя - это емейл, указанный при покупке). При "
350
  "необходимости нажмите \"Забыли пароль?\"."
351
 
352
- #: bws_functions.php:651 bws_menu.php:304 bws_menu.php:315
353
  msgid "Check license key"
354
  msgstr "Проверка лицензионного ключа"
355
 
@@ -386,7 +386,7 @@ msgstr ""
386
  "плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно "
387
  "продлить лицензию."
388
 
389
- #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1337
390
  msgid "Learn more"
391
  msgstr "Подробнее"
392
 
@@ -415,11 +415,11 @@ msgstr "истекает"
415
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
416
  msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
417
 
418
- #: bws_functions.php:809
419
  msgid "Thank you for choosing"
420
  msgstr "Спасибо за выбор"
421
 
422
- #: bws_functions.php:810
423
  msgid ""
424
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
425
  "we'd love to hear about it!"
@@ -428,23 +428,23 @@ msgstr ""
428
  "функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
429
  "новых идей!"
430
 
431
- #: bws_functions.php:811
432
  msgid "Suggest a Feature"
433
  msgstr "Предложить функционал"
434
 
435
- #: bws_functions.php:827
436
  msgid "Notice"
437
  msgstr "Внимание"
438
 
439
- #: bws_functions.php:827
440
  msgid "The plugin's settings have been changed."
441
  msgstr "Настройки плагина были изменены"
442
 
443
- #: bws_functions.php:828 bws_functions.php:1393
444
  msgid "Save Changes"
445
  msgstr "Сохранить изменения"
446
 
447
- #: bws_functions.php:842
448
  msgid ""
449
  "You can always look at premium options by clicking on the \"Show Pro features"
450
  "\" in the \"Go PRO\" tab"
@@ -452,103 +452,103 @@ msgstr ""
452
  "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Показать Pro "
453
  "опции\" на вкладке \"Перейти на PRO\""
454
 
455
- #: bws_functions.php:971
456
  msgid "Add shortcode"
457
  msgstr "Добавить шорткод"
458
 
459
- #: bws_functions.php:971
460
  msgid "Add BestWebSoft plugins' shortcodes using this button."
461
  msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
462
 
463
- #: bws_functions.php:1020
464
  msgid "Close"
465
  msgstr "Закрыть"
466
 
467
- #: bws_functions.php:1112
468
  msgid "Restore all plugin settings to defaults"
469
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
470
 
471
- #: bws_functions.php:1114
472
  msgid "Restore settings"
473
  msgstr "Восстановить настройки"
474
 
475
- #: bws_functions.php:1125
476
  msgid "Are you sure you want to restore all settings by default?"
477
  msgstr ""
478
  "Вы уверены что хотите восстановить все настройки плагина к настройкам по "
479
  "умолчанию?"
480
 
481
- #: bws_functions.php:1128
482
  msgid "Yes, restore all settings"
483
  msgstr "Да, восстановить все настройки"
484
 
485
- #: bws_functions.php:1129
486
  msgid "No, go back to the settings page"
487
  msgstr "Нет, вернуться на страницу настроек"
488
 
489
- #: bws_functions.php:1175
490
  msgid "Plugin"
491
  msgstr "Плагин"
492
 
493
- #: bws_functions.php:1184
494
  msgid "Shortcode settings"
495
  msgstr "Настройки шорткода"
496
 
497
- #: bws_functions.php:1189
498
  msgid "The shortcode will be inserted"
499
  msgstr "Будет вставлен шорткод"
500
 
501
- #: bws_functions.php:1194
502
  msgid "Insert"
503
  msgstr "Вставить"
504
 
505
- #: bws_functions.php:1225
506
  msgid "Visit Help Center"
507
  msgstr "Перейти в Help Center"
508
 
509
- #: bws_functions.php:1230
510
  msgid "FAQ"
511
  msgstr "FAQ"
512
 
513
- #: bws_functions.php:1236
514
  msgid "For more information:"
515
  msgstr "Для дополнительной информации:"
516
 
517
- #: bws_functions.php:1237
518
  msgid "Documentation"
519
  msgstr "Документация"
520
 
521
- #: bws_functions.php:1238
522
  msgid "Video Instructions"
523
  msgstr "Видео инструкции"
524
 
525
- #: bws_functions.php:1239
526
  msgid "Submit a Request"
527
  msgstr "Отправить запрос"
528
 
529
- #: bws_functions.php:1250
530
  msgid "You do not have sufficient permissions to edit plugins for this site."
531
  msgstr ""
532
  "У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
533
 
534
- #: bws_functions.php:1301 bws_functions.php:1328
535
  #, php-format
536
  msgid "File %s edited successfully."
537
  msgstr "Файл %s успешно изменён."
538
 
539
- #: bws_functions.php:1303 bws_functions.php:1330
540
  msgid "Not enough permissions to create or update the file"
541
  msgstr "Не достаточно прав для создания или обновления файла"
542
 
543
- #: bws_functions.php:1333
544
  msgid "Not enough permissions to create the file"
545
  msgstr "Не достаточно прав для создания файла"
546
 
547
- #: bws_functions.php:1371
548
  msgid "These styles will be added to the header on all pages of your site."
549
  msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
550
 
551
- #: bws_functions.php:1373
552
  #, php-format
553
  msgid ""
554
  "These PHP code will be hooked to the %s action and will be printed on front "
@@ -557,20 +557,20 @@ msgstr ""
557
  "Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
558
  "фронтенде."
559
 
560
- #: bws_functions.php:1377
561
  msgid "Editing"
562
  msgstr "Редактирование"
563
 
564
- #: bws_functions.php:1379
565
  msgid "Browsing"
566
  msgstr "Просмотр"
567
 
568
- #: bws_functions.php:1386
569
  #, php-format
570
  msgid "Learn more about %s"
571
  msgstr "Подробнее о %s"
572
 
573
- #: bws_functions.php:1397
574
  #, php-format
575
  msgid ""
576
  "You need to make this files writable before you can save your changes. See "
@@ -594,6 +594,10 @@ msgstr "Авторизоваться"
594
  msgid "Congratulations! Pro Membership license is successfully activated."
595
  msgstr "Поздравляем! Pro Membership лицензия успешно активирована."
596
 
 
 
 
 
597
  #: bws_menu.php:161
598
  msgid "Not set"
599
  msgstr "Не задан"
@@ -736,45 +740,30 @@ msgid "Manage purchased licenses & subscriptions"
736
  msgstr "Управление купленными лицензиями и подписками"
737
 
738
  #: bws_menu.php:288
739
- msgid "My Account"
740
- msgstr "Мой аккаунт"
741
-
742
- #: bws_menu.php:296
743
- #, php-format
744
- msgid "Get Access to %s+ Premium Plugins"
745
- msgstr "Получить Доступ к %s+ Премиум Плагинам"
746
 
747
- #: bws_menu.php:297
748
- #, php-format
749
- msgid ""
750
- "Join BestWebSoft Pro Membership today, cancel any time and use all plugins "
751
- "on a single website %s for only %s per month."
752
- msgstr ""
753
- "Присоединяйтесь к BestWebSoft Pro Membership сегодня, отменяйте подписку в "
754
- "любое время и используйте все плагины на одном сайте %s всего лишь за %s в "
755
- "месяц."
756
-
757
- #: bws_menu.php:309
758
  msgid "Enter your license key"
759
  msgstr "Ваш лицензионный ключ"
760
 
761
- #: bws_menu.php:313
762
  msgid "Activate Membership"
763
  msgstr "Активировать Membership"
764
 
765
- #: bws_menu.php:322
766
  msgid "Don’t have valid license key yet?"
767
  msgstr "Нет действующего лицензионного ключа?"
768
 
769
- #: bws_menu.php:322
770
- msgid "Subscribe to Pro Membership"
771
- msgstr "Подписаться на Pro Membership"
772
 
773
- #: bws_menu.php:331
774
  msgid "Upload Plugin"
775
  msgstr "Добавить новый"
776
 
777
- #: bws_menu.php:335
778
  #, php-format
779
  msgid ""
780
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -787,7 +776,7 @@ msgstr ""
787
  "проблемы с RSS-лентами или другие неполадки, попробуйте деактивировать или "
788
  "удалить этот плагин."
789
 
790
- #: bws_menu.php:337
791
  msgid ""
792
  "Plugin could not be activated because it triggered a <strong>fatal error</"
793
  "strong>."
@@ -795,58 +784,62 @@ msgstr ""
795
  "Плагин не может быть активирован, поскольку он вызвал <strong>фатальную "
796
  "ошибку</strong>."
797
 
798
- #: bws_menu.php:340
799
  msgid "Plugin <strong>activated</strong>."
800
  msgstr "Плагин <strong>активировано</strong>."
801
 
802
- #: bws_menu.php:347
803
  msgid "Installing Plugin"
804
  msgstr "Установка плагина"
805
 
806
- #: bws_menu.php:353
807
  msgid "Downloading install package from"
808
  msgstr "Скачивание установочного пакета из"
809
 
810
- #: bws_menu.php:378
811
  msgid "Unpacking the package"
812
  msgstr "Распаковка пакета"
813
 
814
- #: bws_menu.php:383 bws_menu.php:391
815
  msgid "Installing the plugin"
816
  msgstr "Установка плагина"
817
 
818
- #: bws_menu.php:397
819
  msgid "Successfully installed the plugin"
820
  msgstr "Успешно установлен плагин"
821
 
822
- #: bws_menu.php:409
823
  msgid "Activate Plugin"
824
  msgstr "Активировать плагин"
825
 
826
- #: bws_menu.php:409 bws_menu.php:415
827
  msgid "Return to BestWebSoft Panel"
828
  msgstr "Возврат к BestWebSoft Panel"
829
 
830
- #: bws_menu.php:419 bws_menu.php:434 bws_menu.php:561
831
  msgid "All"
832
  msgstr "Все"
833
 
834
- #: bws_menu.php:420
835
  msgid "Installed"
836
  msgstr "Установленные"
837
 
838
- #: bws_menu.php:421
839
  msgid "Not Installed"
840
  msgstr "Не установленные"
841
 
842
- #: bws_menu.php:427
843
  msgid "Filter results"
844
  msgstr "Фильтр результатов"
845
 
846
- #: bws_menu.php:430 bws_menu.php:557
847
  msgid "Category"
848
  msgstr "Категория"
849
 
 
 
 
 
850
  #: bws_menu.php:496
851
  msgid "Renew to get updates"
852
  msgstr "Продлить для обновления"
@@ -926,25 +919,43 @@ msgid "Management"
926
  msgstr "Управление"
927
 
928
  #: product_list.php:10
 
 
 
 
929
  msgid "Security"
930
  msgstr "Безопасность"
931
 
932
- #: product_list.php:11
933
  msgid "Site Stats"
934
  msgstr "Статистика сайта"
935
 
936
- #: product_list.php:12
937
  msgid "Social"
938
  msgstr "Социальное"
939
 
940
- #: product_list.php:13
941
  msgid "Utilities"
942
  msgstr "Утилиты"
943
 
944
- #: product_list.php:14
945
  msgid "Other"
946
  msgstr "Другое"
947
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
948
  #~ msgid "BWS Panel"
949
  #~ msgstr "BWS Панель"
950
 
@@ -970,12 +981,6 @@ msgstr "Другое"
970
  #~ msgid "Need help?"
971
  #~ msgstr "Нужна помощь?"
972
 
973
- #~ msgid "Client area"
974
- #~ msgstr "Client area"
975
-
976
- #~ msgid "Recommended"
977
- #~ msgstr "Рекомендованные"
978
-
979
  #~ msgid "Go"
980
  #~ msgstr "Перейти на"
981
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-14 15:18+0300\n"
6
+ "PO-Revision-Date: 2016-07-14 15:18+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:328
20
  msgid "Plugins"
21
  msgstr "Плагины"
22
 
78
  msgstr "Добавить"
79
 
80
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
81
+ #: bws_functions.php:724 bws_functions.php:828
82
  msgid "Close notice"
83
  msgstr "Закрыть"
84
 
184
  "лицензия может быть установлена только один раз."
185
 
186
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
187
+ #: bws_menu.php:368 bws_menu.php:399 bws_menu.php:410
188
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
189
  msgstr ""
190
  "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
191
 
192
+ #: bws_functions.php:361 bws_menu.php:385
193
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
194
  msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
195
 
196
+ #: bws_functions.php:367 bws_menu.php:392
197
  msgid ""
198
  "Your server does not support either ZipArchive or Phar. Please, upload the "
199
  "plugin manually"
201
  "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. "
202
  "Пожалуйста, загрузите плагин вручную"
203
 
204
+ #: bws_functions.php:374 bws_menu.php:402
205
  msgid "UploadDir is not writable. Please, upload the plugin manually"
206
  msgstr ""
207
  "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
214
  "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. "
215
  "Приносим извинения за неудобства."
216
 
217
+ #: bws_functions.php:422
218
  msgid "Please, enter Your license key"
219
  msgstr "Пожалуйста, введите ваш лицензионный ключ"
220
 
262
  msgstr "Попробуйте %s-дневную Trial версию бесплатно"
263
 
264
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
265
+ #: bws_functions.php:532 bws_functions.php:1398 bws_menu.php:531
266
  #: bws_menu.php:540
267
  msgid "Activate"
268
  msgstr "Активировать"
278
  msgid "After that you can activate it by entering your license key."
279
  msgstr "После этого вы сможете активировать его введя лицензионный ключ."
280
 
281
+ #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:304
282
  msgid "Unfortunately, you have exceeded the number of available tries per day."
283
  msgstr "К сожалению, вы превысили количество доступных попыток."
284
 
349
  "(ваше имя пользователя - это емейл, указанный при покупке). При "
350
  "необходимости нажмите \"Забыли пароль?\"."
351
 
352
+ #: bws_functions.php:651 bws_menu.php:302 bws_menu.php:313
353
  msgid "Check license key"
354
  msgstr "Проверка лицензионного ключа"
355
 
386
  "плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно "
387
  "продлить лицензию."
388
 
389
+ #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1353
390
  msgid "Learn more"
391
  msgstr "Подробнее"
392
 
415
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
416
  msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
417
 
418
+ #: bws_functions.php:823
419
  msgid "Thank you for choosing"
420
  msgstr "Спасибо за выбор"
421
 
422
+ #: bws_functions.php:824
423
  msgid ""
424
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
425
  "we'd love to hear about it!"
428
  "функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
429
  "новых идей!"
430
 
431
+ #: bws_functions.php:825
432
  msgid "Suggest a Feature"
433
  msgstr "Предложить функционал"
434
 
435
+ #: bws_functions.php:841
436
  msgid "Notice"
437
  msgstr "Внимание"
438
 
439
+ #: bws_functions.php:841
440
  msgid "The plugin's settings have been changed."
441
  msgstr "Настройки плагина были изменены"
442
 
443
+ #: bws_functions.php:842 bws_functions.php:1409
444
  msgid "Save Changes"
445
  msgstr "Сохранить изменения"
446
 
447
+ #: bws_functions.php:856
448
  msgid ""
449
  "You can always look at premium options by clicking on the \"Show Pro features"
450
  "\" in the \"Go PRO\" tab"
452
  "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Показать Pro "
453
  "опции\" на вкладке \"Перейти на PRO\""
454
 
455
+ #: bws_functions.php:985
456
  msgid "Add shortcode"
457
  msgstr "Добавить шорткод"
458
 
459
+ #: bws_functions.php:985
460
  msgid "Add BestWebSoft plugins' shortcodes using this button."
461
  msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
462
 
463
+ #: bws_functions.php:1034
464
  msgid "Close"
465
  msgstr "Закрыть"
466
 
467
+ #: bws_functions.php:1126
468
  msgid "Restore all plugin settings to defaults"
469
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию"
470
 
471
+ #: bws_functions.php:1128
472
  msgid "Restore settings"
473
  msgstr "Восстановить настройки"
474
 
475
+ #: bws_functions.php:1139
476
  msgid "Are you sure you want to restore all settings by default?"
477
  msgstr ""
478
  "Вы уверены что хотите восстановить все настройки плагина к настройкам по "
479
  "умолчанию?"
480
 
481
+ #: bws_functions.php:1142
482
  msgid "Yes, restore all settings"
483
  msgstr "Да, восстановить все настройки"
484
 
485
+ #: bws_functions.php:1143
486
  msgid "No, go back to the settings page"
487
  msgstr "Нет, вернуться на страницу настроек"
488
 
489
+ #: bws_functions.php:1189
490
  msgid "Plugin"
491
  msgstr "Плагин"
492
 
493
+ #: bws_functions.php:1198
494
  msgid "Shortcode settings"
495
  msgstr "Настройки шорткода"
496
 
497
+ #: bws_functions.php:1203
498
  msgid "The shortcode will be inserted"
499
  msgstr "Будет вставлен шорткод"
500
 
501
+ #: bws_functions.php:1208
502
  msgid "Insert"
503
  msgstr "Вставить"
504
 
505
+ #: bws_functions.php:1241
506
  msgid "Visit Help Center"
507
  msgstr "Перейти в Help Center"
508
 
509
+ #: bws_functions.php:1246
510
  msgid "FAQ"
511
  msgstr "FAQ"
512
 
513
+ #: bws_functions.php:1252
514
  msgid "For more information:"
515
  msgstr "Для дополнительной информации:"
516
 
517
+ #: bws_functions.php:1253
518
  msgid "Documentation"
519
  msgstr "Документация"
520
 
521
+ #: bws_functions.php:1254
522
  msgid "Video Instructions"
523
  msgstr "Видео инструкции"
524
 
525
+ #: bws_functions.php:1255
526
  msgid "Submit a Request"
527
  msgstr "Отправить запрос"
528
 
529
+ #: bws_functions.php:1266
530
  msgid "You do not have sufficient permissions to edit plugins for this site."
531
  msgstr ""
532
  "У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
533
 
534
+ #: bws_functions.php:1317 bws_functions.php:1344
535
  #, php-format
536
  msgid "File %s edited successfully."
537
  msgstr "Файл %s успешно изменён."
538
 
539
+ #: bws_functions.php:1319 bws_functions.php:1346
540
  msgid "Not enough permissions to create or update the file"
541
  msgstr "Не достаточно прав для создания или обновления файла"
542
 
543
+ #: bws_functions.php:1349
544
  msgid "Not enough permissions to create the file"
545
  msgstr "Не достаточно прав для создания файла"
546
 
547
+ #: bws_functions.php:1387
548
  msgid "These styles will be added to the header on all pages of your site."
549
  msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
550
 
551
+ #: bws_functions.php:1389
552
  #, php-format
553
  msgid ""
554
  "These PHP code will be hooked to the %s action and will be printed on front "
557
  "Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
558
  "фронтенде."
559
 
560
+ #: bws_functions.php:1393
561
  msgid "Editing"
562
  msgstr "Редактирование"
563
 
564
+ #: bws_functions.php:1395
565
  msgid "Browsing"
566
  msgstr "Просмотр"
567
 
568
+ #: bws_functions.php:1402
569
  #, php-format
570
  msgid "Learn more about %s"
571
  msgstr "Подробнее о %s"
572
 
573
+ #: bws_functions.php:1413
574
  #, php-format
575
  msgid ""
576
  "You need to make this files writable before you can save your changes. See "
594
  msgid "Congratulations! Pro Membership license is successfully activated."
595
  msgstr "Поздравляем! Pro Membership лицензия успешно активирована."
596
 
597
+ #: bws_menu.php:149
598
+ msgid "Please enter your license key."
599
+ msgstr "Пожалуйста, введите Ваш лицензионный ключ."
600
+
601
  #: bws_menu.php:161
602
  msgid "Not set"
603
  msgstr "Не задан"
740
  msgstr "Управление купленными лицензиями и подписками"
741
 
742
  #: bws_menu.php:288
743
+ msgid "Client Area"
744
+ msgstr "Client Area"
 
 
 
 
 
745
 
746
+ #: bws_menu.php:307
 
 
 
 
 
 
 
 
 
 
747
  msgid "Enter your license key"
748
  msgstr "Ваш лицензионный ключ"
749
 
750
+ #: bws_menu.php:311
751
  msgid "Activate Membership"
752
  msgstr "Активировать Membership"
753
 
754
+ #: bws_menu.php:320
755
  msgid "Don’t have valid license key yet?"
756
  msgstr "Нет действующего лицензионного ключа?"
757
 
758
+ #: bws_menu.php:320
759
+ msgid "Subscribe to Pro Membership Now"
760
+ msgstr "Подписаться на Pro Membership Сейчас"
761
 
762
+ #: bws_menu.php:329
763
  msgid "Upload Plugin"
764
  msgstr "Добавить новый"
765
 
766
+ #: bws_menu.php:333
767
  #, php-format
768
  msgid ""
769
  "The plugin generated %d characters of <strong>unexpected output</strong> "
776
  "проблемы с RSS-лентами или другие неполадки, попробуйте деактивировать или "
777
  "удалить этот плагин."
778
 
779
+ #: bws_menu.php:335
780
  msgid ""
781
  "Plugin could not be activated because it triggered a <strong>fatal error</"
782
  "strong>."
784
  "Плагин не может быть активирован, поскольку он вызвал <strong>фатальную "
785
  "ошибку</strong>."
786
 
787
+ #: bws_menu.php:338
788
  msgid "Plugin <strong>activated</strong>."
789
  msgstr "Плагин <strong>активировано</strong>."
790
 
791
+ #: bws_menu.php:345
792
  msgid "Installing Plugin"
793
  msgstr "Установка плагина"
794
 
795
+ #: bws_menu.php:351
796
  msgid "Downloading install package from"
797
  msgstr "Скачивание установочного пакета из"
798
 
799
+ #: bws_menu.php:376
800
  msgid "Unpacking the package"
801
  msgstr "Распаковка пакета"
802
 
803
+ #: bws_menu.php:381 bws_menu.php:389
804
  msgid "Installing the plugin"
805
  msgstr "Установка плагина"
806
 
807
+ #: bws_menu.php:395
808
  msgid "Successfully installed the plugin"
809
  msgstr "Успешно установлен плагин"
810
 
811
+ #: bws_menu.php:407
812
  msgid "Activate Plugin"
813
  msgstr "Активировать плагин"
814
 
815
+ #: bws_menu.php:407 bws_menu.php:413
816
  msgid "Return to BestWebSoft Panel"
817
  msgstr "Возврат к BestWebSoft Panel"
818
 
819
+ #: bws_menu.php:417 bws_menu.php:432 bws_menu.php:561
820
  msgid "All"
821
  msgstr "Все"
822
 
823
+ #: bws_menu.php:418
824
  msgid "Installed"
825
  msgstr "Установленные"
826
 
827
+ #: bws_menu.php:419
828
  msgid "Not Installed"
829
  msgstr "Не установленные"
830
 
831
+ #: bws_menu.php:425
832
  msgid "Filter results"
833
  msgstr "Фильтр результатов"
834
 
835
+ #: bws_menu.php:428 bws_menu.php:557
836
  msgid "Category"
837
  msgstr "Категория"
838
 
839
+ #: bws_menu.php:492
840
+ msgid "Not installed"
841
+ msgstr "Не установлен"
842
+
843
  #: bws_menu.php:496
844
  msgid "Renew to get updates"
845
  msgstr "Продлить для обновления"
919
  msgstr "Управление"
920
 
921
  #: product_list.php:10
922
+ msgid "Recommended"
923
+ msgstr "Рекомендованные"
924
+
925
+ #: product_list.php:11
926
  msgid "Security"
927
  msgstr "Безопасность"
928
 
929
+ #: product_list.php:12
930
  msgid "Site Stats"
931
  msgstr "Статистика сайта"
932
 
933
+ #: product_list.php:13
934
  msgid "Social"
935
  msgstr "Социальное"
936
 
937
+ #: product_list.php:14
938
  msgid "Utilities"
939
  msgstr "Утилиты"
940
 
941
+ #: product_list.php:15
942
  msgid "Other"
943
  msgstr "Другое"
944
 
945
+ #~ msgid "Get Access to %s+ Premium Plugins"
946
+ #~ msgstr "Получить Доступ к %s+ Премиум Плагинам"
947
+
948
+ #~ msgid ""
949
+ #~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
950
+ #~ "plugins on a single website %s for only %s per month."
951
+ #~ msgstr ""
952
+ #~ "Присоединяйтесь к BestWebSoft Pro Membership сегодня, отменяйте подписку "
953
+ #~ "в любое время и используйте все плагины на одном сайте %s всего лишь за "
954
+ #~ "%s в месяц."
955
+
956
+ #~ msgid "My Account"
957
+ #~ msgstr "Мой аккаунт"
958
+
959
  #~ msgid "BWS Panel"
960
  #~ msgstr "BWS Панель"
961
 
981
  #~ msgid "Need help?"
982
  #~ msgstr "Нужна помощь?"
983
 
 
 
 
 
 
 
984
  #~ msgid "Go"
985
  #~ msgstr "Перейти на"
986
 
bws_menu/languages/bestwebsoft-uk.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-uk.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-06-20 18:05+0300\n"
6
- "PO-Revision-Date: 2016-06-20 18:08+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -16,7 +16,7 @@ msgstr ""
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:330
20
  msgid "Plugins"
21
  msgstr "Плагіни"
22
 
@@ -78,7 +78,7 @@ msgid "Add New"
78
  msgstr "Додати"
79
 
80
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
81
- #: bws_functions.php:724 bws_functions.php:814
82
  msgid "Close notice"
83
  msgstr "Закрити"
84
 
@@ -183,16 +183,16 @@ msgstr ""
183
  "версії плагіну можна використати лише один раз."
184
 
185
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
186
- #: bws_menu.php:370 bws_menu.php:401 bws_menu.php:412
187
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
188
  msgstr ""
189
  "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
190
 
191
- #: bws_functions.php:361 bws_menu.php:387
192
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
193
  msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
194
 
195
- #: bws_functions.php:367 bws_menu.php:394
196
  msgid ""
197
  "Your server does not support either ZipArchive or Phar. Please, upload the "
198
  "plugin manually"
@@ -200,7 +200,7 @@ msgstr ""
200
  "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
201
  "вручну"
202
 
203
- #: bws_functions.php:374 bws_menu.php:404
204
  msgid "UploadDir is not writable. Please, upload the plugin manually"
205
  msgstr ""
206
  "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
@@ -214,7 +214,7 @@ msgstr ""
214
  "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін "
215
  "вручну. Просимо вибачення за незручності."
216
 
217
- #: bws_functions.php:422 bws_menu.php:149
218
  msgid "Please, enter Your license key"
219
  msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
220
 
@@ -262,7 +262,7 @@ msgid "Start Your Free %s-Day Trial Now"
262
  msgstr "Спробуйте %s-денну тріал версію безкоштовно"
263
 
264
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
265
- #: bws_functions.php:532 bws_functions.php:1382 bws_menu.php:531
266
  #: bws_menu.php:540
267
  msgid "Activate"
268
  msgstr "Активувати"
@@ -277,7 +277,7 @@ msgstr "Щоб продовжити користуватись плагіном,
277
  msgid "After that you can activate it by entering your license key."
278
  msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
279
 
280
- #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:306
281
  msgid "Unfortunately, you have exceeded the number of available tries per day."
282
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
283
 
@@ -349,7 +349,7 @@ msgstr ""
349
  "(ваше ім'я користувача - це емейл, який ви вказували при купівлі). При "
350
  "необхідності, будь ласка, відправте запит на відновлення вашого паролю."
351
 
352
- #: bws_functions.php:651 bws_menu.php:304 bws_menu.php:315
353
  msgid "Check license key"
354
  msgstr "Перевірте ліцензійний ключ"
355
 
@@ -385,7 +385,7 @@ msgstr ""
385
  "Строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у "
386
  "майбутньому, вам слід подовжити ліцензію."
387
 
388
- #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1337
389
  msgid "Learn more"
390
  msgstr "Дізнатись більше"
391
 
@@ -416,11 +416,11 @@ msgstr ""
416
  "та ви більше не будете отримувати першочергову технічну підтримку та "
417
  "оновлення."
418
 
419
- #: bws_functions.php:809
420
  msgid "Thank you for choosing"
421
  msgstr "Дякуємо, що обрали"
422
 
423
- #: bws_functions.php:810
424
  msgid ""
425
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
426
  "we'd love to hear about it!"
@@ -429,23 +429,23 @@ msgstr ""
429
  "функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
430
  "нових ідей!"
431
 
432
- #: bws_functions.php:811
433
  msgid "Suggest a Feature"
434
  msgstr "Запропонувати функціонал"
435
 
436
- #: bws_functions.php:827
437
  msgid "Notice"
438
  msgstr "Зауважте"
439
 
440
- #: bws_functions.php:827
441
  msgid "The plugin's settings have been changed."
442
  msgstr "Налаштування плагіну змінено."
443
 
444
- #: bws_functions.php:828 bws_functions.php:1393
445
  msgid "Save Changes"
446
  msgstr "Зберегти зміни"
447
 
448
- #: bws_functions.php:842
449
  msgid ""
450
  "You can always look at premium options by clicking on the \"Show Pro features"
451
  "\" in the \"Go PRO\" tab"
@@ -453,100 +453,100 @@ msgstr ""
453
  "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку "
454
  "\"Показати Pro особливост\" на вкладці \"Перейти на PRO\""
455
 
456
- #: bws_functions.php:971
457
  msgid "Add shortcode"
458
  msgstr "Додати шорткод"
459
 
460
- #: bws_functions.php:971
461
  msgid "Add BestWebSoft plugins' shortcodes using this button."
462
  msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
463
 
464
- #: bws_functions.php:1020
465
  msgid "Close"
466
  msgstr "Закрити"
467
 
468
- #: bws_functions.php:1112
469
  msgid "Restore all plugin settings to defaults"
470
  msgstr "Скинути налаштування плагіну до стандартних"
471
 
472
- #: bws_functions.php:1114
473
  msgid "Restore settings"
474
  msgstr "Скинути налаштування"
475
 
476
- #: bws_functions.php:1125
477
  msgid "Are you sure you want to restore all settings by default?"
478
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
479
 
480
- #: bws_functions.php:1128
481
  msgid "Yes, restore all settings"
482
  msgstr "Так, скинути налаштування"
483
 
484
- #: bws_functions.php:1129
485
  msgid "No, go back to the settings page"
486
  msgstr "Ні, повернутись назад на сторінку налаштувань"
487
 
488
- #: bws_functions.php:1175
489
  msgid "Plugin"
490
  msgstr "Плагін"
491
 
492
- #: bws_functions.php:1184
493
  msgid "Shortcode settings"
494
  msgstr "Налаштування шорткоду"
495
 
496
- #: bws_functions.php:1189
497
  msgid "The shortcode will be inserted"
498
  msgstr "Буде вставлено шорткод"
499
 
500
- #: bws_functions.php:1194
501
  msgid "Insert"
502
  msgstr "Вставити"
503
 
504
- #: bws_functions.php:1225
505
  msgid "Visit Help Center"
506
  msgstr "Перейти в Help Center"
507
 
508
- #: bws_functions.php:1230
509
  msgid "FAQ"
510
  msgstr "FAQ"
511
 
512
- #: bws_functions.php:1236
513
  msgid "For more information:"
514
  msgstr "Для отримання додаткової інформації:"
515
 
516
- #: bws_functions.php:1237
517
  msgid "Documentation"
518
  msgstr "Документація"
519
 
520
- #: bws_functions.php:1238
521
  msgid "Video Instructions"
522
  msgstr "Відео інструкції"
523
 
524
- #: bws_functions.php:1239
525
  msgid "Submit a Request"
526
  msgstr "Надіслати запит"
527
 
528
- #: bws_functions.php:1250
529
  msgid "You do not have sufficient permissions to edit plugins for this site."
530
  msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
531
 
532
- #: bws_functions.php:1301 bws_functions.php:1328
533
  #, php-format
534
  msgid "File %s edited successfully."
535
  msgstr "Файл %s успішно відредаговано."
536
 
537
- #: bws_functions.php:1303 bws_functions.php:1330
538
  msgid "Not enough permissions to create or update the file"
539
  msgstr "У Вас недостатньо дозволів для створення або поновлення файлу"
540
 
541
- #: bws_functions.php:1333
542
  msgid "Not enough permissions to create the file"
543
  msgstr "У Вас недостатньо дозволів для створення файлу"
544
 
545
- #: bws_functions.php:1371
546
  msgid "These styles will be added to the header on all pages of your site."
547
  msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
548
 
549
- #: bws_functions.php:1373
550
  #, php-format
551
  msgid ""
552
  "These PHP code will be hooked to the %s action and will be printed on front "
@@ -554,20 +554,20 @@ msgid ""
554
  msgstr ""
555
  "Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
556
 
557
- #: bws_functions.php:1377
558
  msgid "Editing"
559
  msgstr "Редагування"
560
 
561
- #: bws_functions.php:1379
562
  msgid "Browsing"
563
  msgstr "Огляд"
564
 
565
- #: bws_functions.php:1386
566
  #, php-format
567
  msgid "Learn more about %s"
568
  msgstr "Дізнатись більше про %s"
569
 
570
- #: bws_functions.php:1397
571
  #, php-format
572
  msgid ""
573
  "You need to make this files writable before you can save your changes. See "
@@ -591,6 +591,10 @@ msgstr "Увійти"
591
  msgid "Congratulations! Pro Membership license is successfully activated."
592
  msgstr "Вітаємо! Pro Membership ліцензія успішно активована."
593
 
 
 
 
 
594
  #: bws_menu.php:161
595
  msgid "Not set"
596
  msgstr "Не задано"
@@ -733,45 +737,30 @@ msgid "Manage purchased licenses & subscriptions"
733
  msgstr "Управління придбаними ліцензіями і підписками"
734
 
735
  #: bws_menu.php:288
736
- msgid "My Account"
737
- msgstr "Мій аккаунт"
738
-
739
- #: bws_menu.php:296
740
- #, php-format
741
- msgid "Get Access to %s+ Premium Plugins"
742
- msgstr "Отримати Доступ до %s+ Преміум Плагинам"
743
 
744
- #: bws_menu.php:297
745
- #, php-format
746
- msgid ""
747
- "Join BestWebSoft Pro Membership today, cancel any time and use all plugins "
748
- "on a single website %s for only %s per month."
749
- msgstr ""
750
- "Приєднуйтесь до BestWebSoft Pro Membership сьогодні, скасовуйте підписку в "
751
- "будь-який час і використовуйте всі плагіни на одному сайті %s всього лише за "
752
- "%s в місяць."
753
-
754
- #: bws_menu.php:309
755
  msgid "Enter your license key"
756
  msgstr "Ваш ліцензійний ключ"
757
 
758
- #: bws_menu.php:313
759
  msgid "Activate Membership"
760
  msgstr "Активувати Membership"
761
 
762
- #: bws_menu.php:322
763
  msgid "Don’t have valid license key yet?"
764
  msgstr "Немає чинного ліцензійного ключа?"
765
 
766
- #: bws_menu.php:322
767
- msgid "Subscribe to Pro Membership"
768
- msgstr "Підписатися на Pro Membership"
769
 
770
- #: bws_menu.php:331
771
  msgid "Upload Plugin"
772
  msgstr "Завантажити плагін"
773
 
774
- #: bws_menu.php:335
775
  #, php-format
776
  msgid ""
777
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -784,7 +773,7 @@ msgstr ""
784
  "надіслані&#8221;, проблеми з каналами чи інші неполадки, спробуйте вимкнути "
785
  "чи видалити цей плагін."
786
 
787
- #: bws_menu.php:337
788
  msgid ""
789
  "Plugin could not be activated because it triggered a <strong>fatal error</"
790
  "strong>."
@@ -792,58 +781,62 @@ msgstr ""
792
  "Плагін не вдалося активувати, бо він спричинив <strong>критичну помилку</"
793
  "strong>."
794
 
795
- #: bws_menu.php:340
796
  msgid "Plugin <strong>activated</strong>."
797
  msgstr "Плагін <strong>активовано</strong>."
798
 
799
- #: bws_menu.php:347
800
  msgid "Installing Plugin"
801
  msgstr "Встановлення плагіну"
802
 
803
- #: bws_menu.php:353
804
  msgid "Downloading install package from"
805
  msgstr "Завантаження встановлюючого пакунку з"
806
 
807
- #: bws_menu.php:378
808
  msgid "Unpacking the package"
809
  msgstr "Розпакування пакета"
810
 
811
- #: bws_menu.php:383 bws_menu.php:391
812
  msgid "Installing the plugin"
813
  msgstr "Встановлення плагіну"
814
 
815
- #: bws_menu.php:397
816
  msgid "Successfully installed the plugin"
817
  msgstr "Успішно встановлено плагін"
818
 
819
- #: bws_menu.php:409
820
  msgid "Activate Plugin"
821
  msgstr "Активувати плагін"
822
 
823
- #: bws_menu.php:409 bws_menu.php:415
824
  msgid "Return to BestWebSoft Panel"
825
  msgstr "Назад до BestWebSoft Panel"
826
 
827
- #: bws_menu.php:419 bws_menu.php:434 bws_menu.php:561
828
  msgid "All"
829
  msgstr "Всі"
830
 
831
- #: bws_menu.php:420
832
  msgid "Installed"
833
  msgstr "Встановлені"
834
 
835
- #: bws_menu.php:421
836
  msgid "Not Installed"
837
  msgstr "Не встановлені"
838
 
839
- #: bws_menu.php:427
840
  msgid "Filter results"
841
  msgstr "Фільтр результатів"
842
 
843
- #: bws_menu.php:430 bws_menu.php:557
844
  msgid "Category"
845
  msgstr "Категорія"
846
 
 
 
 
 
847
  #: bws_menu.php:496
848
  msgid "Renew to get updates"
849
  msgstr "Продовжити для поновлення"
@@ -923,25 +916,43 @@ msgid "Management"
923
  msgstr "Управління"
924
 
925
  #: product_list.php:10
 
 
 
 
926
  msgid "Security"
927
  msgstr "Безпека"
928
 
929
- #: product_list.php:11
930
  msgid "Site Stats"
931
  msgstr "Статистика сайту"
932
 
933
- #: product_list.php:12
934
  msgid "Social"
935
  msgstr "Соціальне"
936
 
937
- #: product_list.php:13
938
  msgid "Utilities"
939
  msgstr "Утиліти"
940
 
941
- #: product_list.php:14
942
  msgid "Other"
943
  msgstr "Інше"
944
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
945
  #~ msgid "BWS Panel"
946
  #~ msgstr "BWS Панель"
947
 
@@ -967,12 +978,6 @@ msgstr "Інше"
967
  #~ msgid "Need help?"
968
  #~ msgstr "Потрібна допомога?"
969
 
970
- #~ msgid "Client area"
971
- #~ msgstr "Клієнтам"
972
-
973
- #~ msgid "Recommended"
974
- #~ msgstr "Рекомендовані "
975
-
976
  #~ msgid "Go"
977
  #~ msgstr "Перейти"
978
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-14 15:18+0300\n"
6
+ "PO-Revision-Date: 2016-07-14 15:19+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
16
  "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: bws_functions.php:38 bws_menu.php:282 bws_menu.php:328
20
  msgid "Plugins"
21
  msgstr "Плагіни"
22
 
78
  msgstr "Додати"
79
 
80
  #: bws_functions.php:127 bws_functions.php:137 bws_functions.php:213
81
+ #: bws_functions.php:724 bws_functions.php:828
82
  msgid "Close notice"
83
  msgstr "Закрити"
84
 
183
  "версії плагіну можна використати лише один раз."
184
 
185
  #: bws_functions.php:349 bws_functions.php:371 bws_functions.php:393
186
+ #: bws_menu.php:368 bws_menu.php:399 bws_menu.php:410
187
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
188
  msgstr ""
189
  "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
190
 
191
+ #: bws_functions.php:361 bws_menu.php:385
192
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
193
  msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
194
 
195
+ #: bws_functions.php:367 bws_menu.php:392
196
  msgid ""
197
  "Your server does not support either ZipArchive or Phar. Please, upload the "
198
  "plugin manually"
200
  "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
201
  "вручну"
202
 
203
+ #: bws_functions.php:374 bws_menu.php:402
204
  msgid "UploadDir is not writable. Please, upload the plugin manually"
205
  msgstr ""
206
  "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
214
  "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін "
215
  "вручну. Просимо вибачення за незручності."
216
 
217
+ #: bws_functions.php:422
218
  msgid "Please, enter Your license key"
219
  msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
220
 
262
  msgstr "Спробуйте %s-денну тріал версію безкоштовно"
263
 
264
  #: bws_functions.php:485 bws_functions.php:494 bws_functions.php:524
265
+ #: bws_functions.php:532 bws_functions.php:1398 bws_menu.php:531
266
  #: bws_menu.php:540
267
  msgid "Activate"
268
  msgstr "Активувати"
277
  msgid "After that you can activate it by entering your license key."
278
  msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
279
 
280
+ #: bws_functions.php:526 bws_menu.php:118 bws_menu.php:304
281
  msgid "Unfortunately, you have exceeded the number of available tries per day."
282
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
283
 
349
  "(ваше ім'я користувача - це емейл, який ви вказували при купівлі). При "
350
  "необхідності, будь ласка, відправте запит на відновлення вашого паролю."
351
 
352
+ #: bws_functions.php:651 bws_menu.php:302 bws_menu.php:313
353
  msgid "Check license key"
354
  msgstr "Перевірте ліцензійний ключ"
355
 
385
  "Строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у "
386
  "майбутньому, вам слід подовжити ліцензію."
387
 
388
+ #: bws_functions.php:675 bws_functions.php:728 bws_functions.php:1353
389
  msgid "Learn more"
390
  msgstr "Дізнатись більше"
391
 
416
  "та ви більше не будете отримувати першочергову технічну підтримку та "
417
  "оновлення."
418
 
419
+ #: bws_functions.php:823
420
  msgid "Thank you for choosing"
421
  msgstr "Дякуємо, що обрали"
422
 
423
+ #: bws_functions.php:824
424
  msgid ""
425
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
426
  "we'd love to hear about it!"
429
  "функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
430
  "нових ідей!"
431
 
432
+ #: bws_functions.php:825
433
  msgid "Suggest a Feature"
434
  msgstr "Запропонувати функціонал"
435
 
436
+ #: bws_functions.php:841
437
  msgid "Notice"
438
  msgstr "Зауважте"
439
 
440
+ #: bws_functions.php:841
441
  msgid "The plugin's settings have been changed."
442
  msgstr "Налаштування плагіну змінено."
443
 
444
+ #: bws_functions.php:842 bws_functions.php:1409
445
  msgid "Save Changes"
446
  msgstr "Зберегти зміни"
447
 
448
+ #: bws_functions.php:856
449
  msgid ""
450
  "You can always look at premium options by clicking on the \"Show Pro features"
451
  "\" in the \"Go PRO\" tab"
453
  "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку "
454
  "\"Показати Pro особливост\" на вкладці \"Перейти на PRO\""
455
 
456
+ #: bws_functions.php:985
457
  msgid "Add shortcode"
458
  msgstr "Додати шорткод"
459
 
460
+ #: bws_functions.php:985
461
  msgid "Add BestWebSoft plugins' shortcodes using this button."
462
  msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
463
 
464
+ #: bws_functions.php:1034
465
  msgid "Close"
466
  msgstr "Закрити"
467
 
468
+ #: bws_functions.php:1126
469
  msgid "Restore all plugin settings to defaults"
470
  msgstr "Скинути налаштування плагіну до стандартних"
471
 
472
+ #: bws_functions.php:1128
473
  msgid "Restore settings"
474
  msgstr "Скинути налаштування"
475
 
476
+ #: bws_functions.php:1139
477
  msgid "Are you sure you want to restore all settings by default?"
478
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
479
 
480
+ #: bws_functions.php:1142
481
  msgid "Yes, restore all settings"
482
  msgstr "Так, скинути налаштування"
483
 
484
+ #: bws_functions.php:1143
485
  msgid "No, go back to the settings page"
486
  msgstr "Ні, повернутись назад на сторінку налаштувань"
487
 
488
+ #: bws_functions.php:1189
489
  msgid "Plugin"
490
  msgstr "Плагін"
491
 
492
+ #: bws_functions.php:1198
493
  msgid "Shortcode settings"
494
  msgstr "Налаштування шорткоду"
495
 
496
+ #: bws_functions.php:1203
497
  msgid "The shortcode will be inserted"
498
  msgstr "Буде вставлено шорткод"
499
 
500
+ #: bws_functions.php:1208
501
  msgid "Insert"
502
  msgstr "Вставити"
503
 
504
+ #: bws_functions.php:1241
505
  msgid "Visit Help Center"
506
  msgstr "Перейти в Help Center"
507
 
508
+ #: bws_functions.php:1246
509
  msgid "FAQ"
510
  msgstr "FAQ"
511
 
512
+ #: bws_functions.php:1252
513
  msgid "For more information:"
514
  msgstr "Для отримання додаткової інформації:"
515
 
516
+ #: bws_functions.php:1253
517
  msgid "Documentation"
518
  msgstr "Документація"
519
 
520
+ #: bws_functions.php:1254
521
  msgid "Video Instructions"
522
  msgstr "Відео інструкції"
523
 
524
+ #: bws_functions.php:1255
525
  msgid "Submit a Request"
526
  msgstr "Надіслати запит"
527
 
528
+ #: bws_functions.php:1266
529
  msgid "You do not have sufficient permissions to edit plugins for this site."
530
  msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
531
 
532
+ #: bws_functions.php:1317 bws_functions.php:1344
533
  #, php-format
534
  msgid "File %s edited successfully."
535
  msgstr "Файл %s успішно відредаговано."
536
 
537
+ #: bws_functions.php:1319 bws_functions.php:1346
538
  msgid "Not enough permissions to create or update the file"
539
  msgstr "У Вас недостатньо дозволів для створення або поновлення файлу"
540
 
541
+ #: bws_functions.php:1349
542
  msgid "Not enough permissions to create the file"
543
  msgstr "У Вас недостатньо дозволів для створення файлу"
544
 
545
+ #: bws_functions.php:1387
546
  msgid "These styles will be added to the header on all pages of your site."
547
  msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
548
 
549
+ #: bws_functions.php:1389
550
  #, php-format
551
  msgid ""
552
  "These PHP code will be hooked to the %s action and will be printed on front "
554
  msgstr ""
555
  "Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
556
 
557
+ #: bws_functions.php:1393
558
  msgid "Editing"
559
  msgstr "Редагування"
560
 
561
+ #: bws_functions.php:1395
562
  msgid "Browsing"
563
  msgstr "Огляд"
564
 
565
+ #: bws_functions.php:1402
566
  #, php-format
567
  msgid "Learn more about %s"
568
  msgstr "Дізнатись більше про %s"
569
 
570
+ #: bws_functions.php:1413
571
  #, php-format
572
  msgid ""
573
  "You need to make this files writable before you can save your changes. See "
591
  msgid "Congratulations! Pro Membership license is successfully activated."
592
  msgstr "Вітаємо! Pro Membership ліцензія успішно активована."
593
 
594
+ #: bws_menu.php:149
595
+ msgid "Please enter your license key."
596
+ msgstr "Будь ласка, введіть ваш ліцензійний ключ."
597
+
598
  #: bws_menu.php:161
599
  msgid "Not set"
600
  msgstr "Не задано"
737
  msgstr "Управління придбаними ліцензіями і підписками"
738
 
739
  #: bws_menu.php:288
740
+ msgid "Client Area"
741
+ msgstr "Client Area"
 
 
 
 
 
742
 
743
+ #: bws_menu.php:307
 
 
 
 
 
 
 
 
 
 
744
  msgid "Enter your license key"
745
  msgstr "Ваш ліцензійний ключ"
746
 
747
+ #: bws_menu.php:311
748
  msgid "Activate Membership"
749
  msgstr "Активувати Membership"
750
 
751
+ #: bws_menu.php:320
752
  msgid "Don’t have valid license key yet?"
753
  msgstr "Немає чинного ліцензійного ключа?"
754
 
755
+ #: bws_menu.php:320
756
+ msgid "Subscribe to Pro Membership Now"
757
+ msgstr "Підписатися на Pro Membership Зараз"
758
 
759
+ #: bws_menu.php:329
760
  msgid "Upload Plugin"
761
  msgstr "Завантажити плагін"
762
 
763
+ #: bws_menu.php:333
764
  #, php-format
765
  msgid ""
766
  "The plugin generated %d characters of <strong>unexpected output</strong> "
773
  "надіслані&#8221;, проблеми з каналами чи інші неполадки, спробуйте вимкнути "
774
  "чи видалити цей плагін."
775
 
776
+ #: bws_menu.php:335
777
  msgid ""
778
  "Plugin could not be activated because it triggered a <strong>fatal error</"
779
  "strong>."
781
  "Плагін не вдалося активувати, бо він спричинив <strong>критичну помилку</"
782
  "strong>."
783
 
784
+ #: bws_menu.php:338
785
  msgid "Plugin <strong>activated</strong>."
786
  msgstr "Плагін <strong>активовано</strong>."
787
 
788
+ #: bws_menu.php:345
789
  msgid "Installing Plugin"
790
  msgstr "Встановлення плагіну"
791
 
792
+ #: bws_menu.php:351
793
  msgid "Downloading install package from"
794
  msgstr "Завантаження встановлюючого пакунку з"
795
 
796
+ #: bws_menu.php:376
797
  msgid "Unpacking the package"
798
  msgstr "Розпакування пакета"
799
 
800
+ #: bws_menu.php:381 bws_menu.php:389
801
  msgid "Installing the plugin"
802
  msgstr "Встановлення плагіну"
803
 
804
+ #: bws_menu.php:395
805
  msgid "Successfully installed the plugin"
806
  msgstr "Успішно встановлено плагін"
807
 
808
+ #: bws_menu.php:407
809
  msgid "Activate Plugin"
810
  msgstr "Активувати плагін"
811
 
812
+ #: bws_menu.php:407 bws_menu.php:413
813
  msgid "Return to BestWebSoft Panel"
814
  msgstr "Назад до BestWebSoft Panel"
815
 
816
+ #: bws_menu.php:417 bws_menu.php:432 bws_menu.php:561
817
  msgid "All"
818
  msgstr "Всі"
819
 
820
+ #: bws_menu.php:418
821
  msgid "Installed"
822
  msgstr "Встановлені"
823
 
824
+ #: bws_menu.php:419
825
  msgid "Not Installed"
826
  msgstr "Не встановлені"
827
 
828
+ #: bws_menu.php:425
829
  msgid "Filter results"
830
  msgstr "Фільтр результатів"
831
 
832
+ #: bws_menu.php:428 bws_menu.php:557
833
  msgid "Category"
834
  msgstr "Категорія"
835
 
836
+ #: bws_menu.php:492
837
+ msgid "Not installed"
838
+ msgstr "Не встановлен"
839
+
840
  #: bws_menu.php:496
841
  msgid "Renew to get updates"
842
  msgstr "Продовжити для поновлення"
916
  msgstr "Управління"
917
 
918
  #: product_list.php:10
919
+ msgid "Recommended"
920
+ msgstr "Рекомендовані "
921
+
922
+ #: product_list.php:11
923
  msgid "Security"
924
  msgstr "Безпека"
925
 
926
+ #: product_list.php:12
927
  msgid "Site Stats"
928
  msgstr "Статистика сайту"
929
 
930
+ #: product_list.php:13
931
  msgid "Social"
932
  msgstr "Соціальне"
933
 
934
+ #: product_list.php:14
935
  msgid "Utilities"
936
  msgstr "Утиліти"
937
 
938
+ #: product_list.php:15
939
  msgid "Other"
940
  msgstr "Інше"
941
 
942
+ #~ msgid "Get Access to %s+ Premium Plugins"
943
+ #~ msgstr "Отримати Доступ до %s+ Преміум Плагинам"
944
+
945
+ #~ msgid ""
946
+ #~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
947
+ #~ "plugins on a single website %s for only %s per month."
948
+ #~ msgstr ""
949
+ #~ "Приєднуйтесь до BestWebSoft Pro Membership сьогодні, скасовуйте підписку "
950
+ #~ "в будь-який час і використовуйте всі плагіни на одному сайті %s всього "
951
+ #~ "лише за %s в місяць."
952
+
953
+ #~ msgid "My Account"
954
+ #~ msgstr "Мій аккаунт"
955
+
956
  #~ msgid "BWS Panel"
957
  #~ msgstr "BWS Панель"
958
 
978
  #~ msgid "Need help?"
979
  #~ msgstr "Потрібна допомога?"
980
 
 
 
 
 
 
 
981
  #~ msgid "Go"
982
  #~ msgstr "Перейти"
983
 
bws_menu/product_list.php CHANGED
@@ -4,21 +4,22 @@
4
  */
5
 
6
  $bws_plugins_category = array(
7
- 'advertisement' => __( 'Advertisement', 'bestwebsoft' ),
8
- 'content-and-media' => __( 'Content & Media', 'bestwebsoft' ),
9
- 'management' => __( 'Management', 'bestwebsoft' ),
10
- 'security' => __( 'Security', 'bestwebsoft' ),
11
- 'site-stats' => __( 'Site Stats', 'bestwebsoft' ),
12
- 'social' => __( 'Social', 'bestwebsoft' ),
13
- 'utilities' => __( 'Utilities', 'bestwebsoft' ),
14
- 'other' => __( 'Other', 'bestwebsoft' )
 
15
  );
16
 
17
  $bws_plugins = array(
18
  'captcha/captcha.php' => array(
19
- 'category' => 'security',
20
  'name' => 'Captcha',
21
- 'description' => 'Plugin intended to prove that the visitor is a human being and not a spam robot.',
22
  'link' => 'http://bestwebsoft.com/products/captcha/?k=d678516c0990e781edfb6a6c874f0b8a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
23
  'settings' => 'admin.php?page=captcha.php',
24
  'pro_version' => 'captcha-pro/captcha_pro.php',
@@ -26,9 +27,9 @@ $bws_plugins = array(
26
  'pro_settings' => 'admin.php?page=captcha_pro.php'
27
  ),
28
  'car-rental/car-rental.php' => array(
29
- 'category' => 'content-and-media',
30
  'name' => 'Car Rental',
31
- 'description' => 'A convenient plugin that adds Car Rental functionality.',
32
  'link' => 'http://bestwebsoft.com/products/car-rental/?k=444cac6df9a0d3a9763ab4753d24941b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
33
  'settings' => 'admin.php?page=car-rental-settings',
34
  'pro_version' => 'car-rental-pro/car-rental-pro.php',
@@ -36,9 +37,9 @@ $bws_plugins = array(
36
  'pro_settings' => 'admin.php?page=car-rental-pro-settings'
37
  ),
38
  'contact-form-plugin/contact_form.php' => array(
39
- 'category' => 'other',
40
  'name' => 'Contact Form',
41
- 'description' => 'Add Contact Form to your WordPress website.',
42
  'link' => 'http://bestwebsoft.com/products/contact-form/?k=012327ef413e5b527883e031d43b088b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
43
  'settings' => 'admin.php?page=contact_form.php',
44
  'pro_version' => 'contact-form-pro/contact_form_pro.php',
@@ -46,9 +47,9 @@ $bws_plugins = array(
46
  'pro_settings' => 'admin.php?page=contact_form_pro.php'
47
  ),
48
  'contact-form-multi/contact-form-multi.php' => array(
49
- 'category' => 'other',
50
  'name' => 'Contact Form Multi',
51
- 'description' => 'Add-on to the Contact Form plugin that allows to create and implement multiple contact forms.',
52
  'link' => 'http://bestwebsoft.com/products/contact-form-multi/?k=83cdd9e72a9f4061122ad28a67293c72&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
53
  'settings' => '',
54
  'pro_version' => 'contact-form-multi-pro/contact-form-multi-pro.php',
@@ -56,26 +57,33 @@ $bws_plugins = array(
56
  'pro_settings' => ''
57
  ),
58
  'contact-form-to-db/contact_form_to_db.php' => array(
59
- 'category' => 'other',
60
  'name' => 'Contact Form to DB',
61
- 'description' => 'Allows you to manage the messages that have been sent from your site.',
62
  'link' => 'http://bestwebsoft.com/products/contact-form-to-db/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
63
  'settings' => 'admin.php?page=cntctfrmtdb_settings',
64
  'pro_version' => 'contact-form-to-db-pro/contact_form_to_db_pro.php',
65
  'purchase' => 'http://bestwebsoft.com/products/contact-form-to-db/buy/?k=6ce5f4a9006ec906e4db643669246c6a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
66
  'pro_settings' => 'admin.php?page=cntctfrmtdbpr_settings'
67
  ),
 
 
 
 
 
 
 
68
  'custom-fields-search/custom-fields-search.php' => array(
69
- 'category' => 'content-and-media',
70
  'name' => 'Custom Fields Search',
71
- 'description' => 'Allows you to add website search any existing custom fields.',
72
  'link' => 'http://bestwebsoft.com/products/custom-fields-search/?k=f3f8285bb069250c42c6ffac95ed3284&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
73
  'settings' => 'admin.php?page=custom_fields_search.php'
74
  ),
75
  'custom-search-plugin/custom-search-plugin.php' => array(
76
- 'category' => 'content-and-media',
77
  'name' => 'Custom Search',
78
- 'description' => 'Allows to extend your website search functionality by adding a custom post type.',
79
  'link' => 'http://bestwebsoft.com/products/custom-search/?k=933be8f3a8b8719d95d1079d15443e29&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
80
  'settings' => 'admin.php?page=custom_search.php',
81
  'pro_version' => 'custom-search-pro/custom-search-pro.php',
@@ -83,39 +91,39 @@ $bws_plugins = array(
83
  'pro_settings' => 'admin.php?page=custom_search_pro.php'
84
  ),
85
  'db-manager/db-manager.php' => array(
86
- 'category' => 'utilities',
87
  'name' => 'DB Manager',
88
- 'description' => 'Allows you to download the latest version of PhpMyadmin and Dumper and manage your site.',
89
  'link' => 'http://bestwebsoft.com/products/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
90
  'install_url' => 'http://bestwebsoft.com/products/db-manager/download/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
91
  'settings' => 'admin.php?page=db-manager.php',
92
  'icon' => plugins_url( 'icons/plugins/', __FILE__ ) . 'db-manager.png'
93
  ),
94
  'donate-button/donate.php' => array(
95
- 'category' => 'other',
96
  'name' => 'Donate',
97
- 'description' => 'Makes it possible to place donation buttons of various payment systems on your web page.',
98
  'link' => 'http://bestwebsoft.com/products/donate/?k=a8b2e2a56914fb1765dd20297c26401b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
99
  'settings' => 'admin.php?page=donate.php'
100
  ),
101
  'email-queue/email-queue.php' => array(
102
- 'category' => 'other',
103
  'name' => 'Email Queue',
104
- 'description' => 'Allows to manage email massages sent by BestWebSoft plugins.',
105
  'link' => 'http://bestwebsoft.com/products/email-queue/?k=e345e1b6623f0dca119bc2d9433b130b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
106
  'settings' => 'admin.php?page=mlq_settings'
107
  ),
108
  'error-log-viewer/error-log-viewer.php' => array(
109
- 'category' => 'utilities',
110
  'name' => 'Error Log Viewer',
111
- 'description' => "Work with log files and folders on the WordPress server",
112
  'link' => 'http://bestwebsoft.com/products/error-log-viewer/?k=da0de8bd2c7a0b2fea5df64d55a368b3&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
113
  'settings' => 'admin.php?page=rrrlgvwr.php&tab=settings'
114
  ),
115
  'facebook-button-plugin/facebook-button-plugin.php' => array(
116
- 'category' => 'social',
117
  'name' => 'Facebook Button',
118
- 'description' => 'Allows you to add the Follow and Like buttons the easiest way.',
119
  'link' => 'http://bestwebsoft.com/products/facebook-like-button/?k=05ec4f12327f55848335802581467d55&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
120
  'settings' => 'admin.php?page=facebook-button-plugin.php',
121
  'pro_version' => 'facebook-button-pro/facebook-button-pro.php',
@@ -123,16 +131,16 @@ $bws_plugins = array(
123
  'pro_settings' => 'admin.php?page=facebook-button-pro.php'
124
  ),
125
  'bws-featured-posts/bws-featured-posts.php' => array(
126
- 'category' => 'content-and-media',
127
  'name' => 'Featured Posts',
128
- 'description' => 'Displays featured posts randomly on any website page.',
129
  'link' => 'http://bestwebsoft.com/products/featured-posts/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
130
  'settings' => 'admin.php?page=featured-posts.php'
131
  ),
132
  'gallery-plugin/gallery-plugin.php' => array(
133
- 'category' => 'content-and-media',
134
  'name' => 'Gallery',
135
- 'description' => 'Allows you to implement a Gallery page into your website.',
136
  'link' => 'http://bestwebsoft.com/products/gallery/?k=2da21c0a64eec7ebf16337fa134c5f78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
137
  'settings' => 'admin.php?page=gallery-plugin.php',
138
  'pro_version' => 'gallery-plugin-pro/gallery-plugin-pro.php',
@@ -140,16 +148,16 @@ $bws_plugins = array(
140
  'pro_settings' => 'admin.php?page=gallery-plugin-pro.php'
141
  ),
142
  'gallery-categories/gallery-categories.php' => array(
143
- 'category' => 'content-and-media',
144
  'name' => 'Gallery Categories',
145
- 'description' => 'Add-on for Gallery Plugin by BestWebSoft',
146
  'link' => 'http://bestwebsoft.com/products/gallery-categories/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
147
  'settings' => ''
148
  ),
149
  'google-one/google-plus-one.php' => array(
150
- 'category' => 'social',
151
  'name' => 'Google +1',
152
- 'description' => 'Allows you to see how many times your page has been liked on Google Search Engine as well as who has liked the article.',
153
  'link' => 'http://bestwebsoft.com/products/google-plus-one/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
154
  'settings' => 'admin.php?page=google-plus-one.php',
155
  'pro_version' => 'google-one-pro/google-plus-one-pro.php',
@@ -157,9 +165,9 @@ $bws_plugins = array(
157
  'pro_settings' => 'admin.php?page=google-plus-one-pro.php'
158
  ),
159
  'adsense-plugin/adsense-plugin.php' => array(
160
- 'category' => 'advertisement',
161
  'name' => 'Google AdSense',
162
- 'description' => 'Allows Google AdSense implementation to your website.',
163
  'link' => 'http://bestwebsoft.com/products/google-adsense/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
164
  'settings' => 'admin.php?page=adsense-plugin.php',
165
  'pro_version' => 'adsense-pro/adsense-pro.php',
@@ -167,9 +175,9 @@ $bws_plugins = array(
167
  'pro_settings' => 'admin.php?page=adsense-pro.php'
168
  ),
169
  'bws-google-analytics/bws-google-analytics.php' => array(
170
- 'category' => 'site-stats',
171
  'name' => 'Google Analytics',
172
- 'description' => 'Allows you to retrieve basic stats from Google Analytics account and add the tracking code to your blog.',
173
  'link' => 'http://bestwebsoft.com/products/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
174
  'settings' => 'admin.php?page=bws-google-analytics.php',
175
  'pro_version' => 'bws-google-analytics-pro/bws-google-analytics-pro.php',
@@ -177,9 +185,9 @@ $bws_plugins = array(
177
  'pro_settings' => 'admin.php?page=bws-google-analytics-pro.php'
178
  ),
179
  'google-captcha/google-captcha.php' => array(
180
- 'category' => 'security',
181
  'name' => 'Google Captcha (reCAPTCHA)',
182
- 'description' => 'Plugin intended to prove that the visitor is a human being and not a spam robot.',
183
  'link' => 'http://bestwebsoft.com/products/google-captcha/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
184
  'settings' => 'admin.php?page=google-captcha.php',
185
  'pro_version' => 'google-captcha-pro/google-captcha-pro.php',
@@ -187,9 +195,9 @@ $bws_plugins = array(
187
  'pro_settings' => 'admin.php?page=google-captcha-pro.php'
188
  ),
189
  'bws-google-maps/bws-google-maps.php' => array(
190
- 'category' => 'content-and-media',
191
  'name' => 'Google Maps',
192
- 'description' => 'Easy to set up and insert Google Maps to your website.',
193
  'link' => 'http://bestwebsoft.com/products/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
194
  'settings' => 'admin.php?page=bws-google-maps.php',
195
  'pro_version' => 'bws-google-maps-pro/bws-google-maps-pro.php',
@@ -197,9 +205,9 @@ $bws_plugins = array(
197
  'pro_settings' => 'admin.php?page=bws-google-maps-pro.php'
198
  ),
199
  'google-sitemap-plugin/google-sitemap-plugin.php' => array(
200
- 'category' => 'other',
201
  'name' => 'Google Sitemap',
202
- 'description' => 'Allows you to add sitemap file to Google Webmaster Tools.',
203
  'link' => 'http://bestwebsoft.com/products/google-sitemap/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
204
  'settings' => 'admin.php?page=google-sitemap-plugin.php',
205
  'pro_version' => 'google-sitemap-pro/google-sitemap-pro.php',
@@ -207,16 +215,16 @@ $bws_plugins = array(
207
  'pro_settings' => 'admin.php?page=google-sitemap-pro.php'
208
  ),
209
  'google-shortlink/google-shortlink.php' => array(
210
- 'category' => 'other',
211
  'name' => 'Google Shortlink',
212
- 'description' => 'Allows you to get short links from goo.gl servise without leaving your site.',
213
  'link' => 'http://bestwebsoft.com/products/google-shortlink/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
214
  'settings' => 'admin.php?page=gglshrtlnk_options'
215
  ),
216
  'htaccess/htaccess.php' => array(
217
- 'category' => 'security',
218
  'name' => 'Htaccess',
219
- 'description' => 'Allows controlling access to your website using the directives Allow and Deny.',
220
  'link' => 'http://bestwebsoft.com/products/htaccess/?k=2b865fcd56a935d22c5c4f1bba52ed46&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
221
  'settings' => 'admin.php?page=htaccess.php',
222
  'pro_version' => 'htaccess-pro/htaccess-pro.php',
@@ -224,16 +232,23 @@ $bws_plugins = array(
224
  'pro_settings' => 'admin.php?page=htaccess-pro.php'
225
  ),
226
  'job-board/job-board.php' => array(
227
- 'category' => 'content-and-media',
228
  'name' => 'Job Board',
229
- 'description' => 'Allows to create a job-board page on your site.',
230
  'link' => 'http://bestwebsoft.com/products/job-board/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
231
  'settings' => 'admin.php?page=job-board.php'
232
  ),
 
 
 
 
 
 
 
233
  'limit-attempts/limit-attempts.php' => array(
234
- 'category' => 'security',
235
  'name' => 'Limit Attempts',
236
- 'description' => 'Allows you to limit rate of login attempts by the ip, and create whitelist and blacklist.',
237
  'link' => 'http://bestwebsoft.com/products/limit-attempts/?k=b14e1697ee4d008abcd4bd34d492573a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
238
  'settings' => 'admin.php?page=limit-attempts.php',
239
  'pro_version' => 'limit-attempts-pro/limit-attempts-pro.php',
@@ -241,9 +256,9 @@ $bws_plugins = array(
241
  'pro_settings' => 'admin.php?page=limit-attempts-pro.php'
242
  ),
243
  'bws-linkedin/bws-linkedin.php' => array(
244
- 'category' => 'social',
245
  'name' => 'LinkedIn',
246
- 'description' => "Add LinkedIn Widgets, 'Share' and 'Follow' Buttons in the easiest way.",
247
  'link' => 'http://bestwebsoft.com/products/linkedin/?k=d63c7319622ccc5f589dd2d545c1d77c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
248
  'settings' => 'admin.php?page=linkedin.php',
249
  'pro_version' => 'bws-linkedin-pro/bws-linkedin-pro.php',
@@ -251,9 +266,9 @@ $bws_plugins = array(
251
  'pro_settings' => 'admin.php?page=linkedin-pro.php'
252
  ),
253
  'multilanguage/multilanguage.php' => array(
254
- 'category' => 'content-and-media',
255
  'name' => 'Multilanguage',
256
- 'description' => 'Allows to create content on a Wordpress site in different languages.',
257
  'link' => 'http://bestwebsoft.com/products/multilanguage/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
258
  'settings' => 'admin.php?page=mltlngg_settings',
259
  'pro_version' => 'multilanguage-pro/multilanguage-pro.php',
@@ -261,16 +276,16 @@ $bws_plugins = array(
261
  'pro_settings' => 'admin.php?page=mltlnggpr_settings'
262
  ),
263
  'pagination/pagination.php' => array(
264
- 'category' => 'content-and-media',
265
  'name' => 'Pagination',
266
- 'description' => 'Add pagination block to your WordPress website.',
267
  'link' => 'http://bestwebsoft.com/products/pagination/?k=22adb940256f149559ba8fedcd728ac8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
268
  'settings' => 'admin.php?page=pagination.php'
269
  ),
270
  'pdf-print/pdf-print.php' => array(
271
- 'category' => 'other',
272
  'name' => 'PDF & Print',
273
- 'description' => 'Allows you to create PDF and Print page with adding appropriate buttons to the content.',
274
  'link' => 'http://bestwebsoft.com/products/pdf-print/?k=bfefdfb522a4c0ff0141daa3f271840c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
275
  'settings' => 'admin.php?page=pdf-print.php',
276
  'pro_version' => 'pdf-print-pro/pdf-print-pro.php',
@@ -278,9 +293,9 @@ $bws_plugins = array(
278
  'pro_settings' => 'admin.php?page=pdf-print-pro.php'
279
  ),
280
  'bws-pinterest/bws-pinterest.php' => array(
281
- 'category' => 'social',
282
  'name' => 'Pinterest',
283
- 'description' => 'Add Pinterest buttons and widgets to your WordPress website',
284
  'link' => 'http://bestwebsoft.com/products/pinterest/?k=504107b6213f247a67fe7ffb94e97c78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
285
  'settings' => 'admin.php?page=pinterest.php',
286
  'pro_version' => 'bws-pinterest-pro/bws-pinterest-pro.php',
@@ -288,16 +303,16 @@ $bws_plugins = array(
288
  'pro_settings' => 'admin.php?page=pinterest-pro.php'
289
  ),
290
  'bws-popular-posts/bws-popular-posts.php' => array(
291
- 'category' => 'content-and-media',
292
  'name' => 'Popular Posts',
293
- 'description' => 'This plugin will help you can display the most popular posts on your blog in the widget.',
294
  'link' => 'http://bestwebsoft.com/products/popular-posts/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
295
  'settings' => 'admin.php?page=popular-posts.php'
296
  ),
297
  'portfolio/portfolio.php' => array(
298
- 'category' => 'content-and-media',
299
  'name' => 'Portfolio',
300
- 'description' => 'Allows you to create a page with the information about your past projects.',
301
  'link' => 'http://bestwebsoft.com/products/portfolio/?k=1249a890c5b7bba6bda3f528a94f768b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
302
  'settings' => 'admin.php?page=portfolio.php',
303
  'pro_version' => 'portfolio-pro/portfolio-pro.php',
@@ -305,23 +320,23 @@ $bws_plugins = array(
305
  'pro_settings' => 'admin.php?page=portfolio-pro.php'
306
  ),
307
  'post-to-csv/post-to-csv.php' => array(
308
- 'category' => 'utilities',
309
  'name' => 'Post to CSV',
310
- 'description' => 'The plugin allows to export posts of any types to a csv file.',
311
  'link' => 'http://bestwebsoft.com/products/post-to-csv/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
312
  'settings' => 'admin.php?page=post-to-csv.php'
313
  ),
314
  'profile-extra-fields/profile-extra-fields.php' => array(
315
- 'category' => 'management',
316
  'name' => 'Profile Extra Fields',
317
- 'description' => "Add additional fields on the user's profile page",
318
  'link' => 'http://bestwebsoft.com/products/profile-extra-fields/?k=fe3b6c3dbc80bd4b1cf9a27a2f339820&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
319
  'settings' => 'admin.php?page=profile-extra-fields.php'
320
  ),
321
  'promobar/promobar.php' => array(
322
- 'category' => 'advertisement',
323
  'name' => 'PromoBar',
324
- 'description' => 'This plugin allows placing banners with any data on your website.',
325
  'link' => 'http://bestwebsoft.com/products/promobar/?k=619eac2232d9cfa382c4e678c3b14766&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
326
  'settings' => 'admin.php?page=promobar.php',
327
  'pro_version' => 'promobar-pro/promobar-pro.php',
@@ -329,16 +344,16 @@ $bws_plugins = array(
329
  'pro_settings' => 'admin.php?page=promobar-pro.php'
330
  ),
331
  'quotes-and-tips/quotes-and-tips.php' => array(
332
- 'category' => 'content-and-media',
333
  'name' => 'Quotes and Tips',
334
- 'description' => 'Allows you to implement quotes & tips block into your web site.',
335
  'link' => 'http://bestwebsoft.com/products/quotes-and-tips/?k=5738a4e85a798c4a5162240c6515098d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
336
  'settings' => 'admin.php?page=quotes-and-tips.php'
337
  ),
338
  'realty/realty.php' => array(
339
- 'category' => 'content-and-media',
340
  'name' => 'Realty',
341
- 'description' => 'A convenient plugin that adds Real Estate functionality.',
342
  'link' => 'http://bestwebsoft.com/products/realty/?k=d55de979dbbbb7af0b2ff1d7f43884fa&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
343
  'settings' => 'admin.php?page=realty_settings',
344
  'pro_version' => 'realty-pro/realty-pro.php',
@@ -346,23 +361,23 @@ $bws_plugins = array(
346
  'pro_settings' => 'admin.php?page=realty_pro_settings'
347
  ),
348
  're-attacher/re-attacher.php' => array(
349
- 'category' => 'utilities',
350
  'name' => 'Re-attacher',
351
- 'description' => 'This plugin allows to attach, unattach or reattach media item in different post.',
352
  'link' => 'http://bestwebsoft.com/products/re-attacher/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
353
  'settings' => 'admin.php?page=re-attacher.php'
354
  ),
355
  'relevant/related-posts-plugin.php' => array(
356
- 'category' => 'content-and-media',
357
  'name' => 'Relevant - Related Posts',
358
- 'description' => 'Allows you to display related posts with similar words in category, tags, title or by adding special meta key for posts.',
359
  'link' => 'http://bestwebsoft.com/products/related-posts/?k=73fb737037f7141e66415ec259f7e426&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
360
  'settings' => 'admin.php?page=related-posts-plugin.php'
361
  ),
362
  'sender/sender.php' => array(
363
- 'category' => 'social',
364
  'name' => 'Sender',
365
- 'description' => 'You can send mails to all users or to certain categories of users.',
366
  'link' => 'http://bestwebsoft.com/products/sender/?k=89c297d14ba85a8417a0f2fc05e089c7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
367
  'settings' => 'admin.php?page=sndr_settings',
368
  'pro_version' => 'sender-pro/sender-pro.php',
@@ -370,23 +385,23 @@ $bws_plugins = array(
370
  'pro_settings' => 'admin.php?page=sndrpr_settings'
371
  ),
372
  'bws-smtp/bws-smtp.php' => array(
373
- 'category' => 'utilities',
374
  'name' => 'SMTP',
375
- 'description' => 'This plugin introduces an easy way to configure sending email messages via SMTP.',
376
  'link' => 'http://bestwebsoft.com/products/smtp/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
377
  'settings' => 'admin.php?page=bwssmtp_settings'
378
  ),
379
  'social-buttons-pack/social-buttons-pack.php' => array(
380
- 'category' => 'social',
381
  'name' => 'Social Buttons Pack',
382
- 'description' => 'Add Social buttons to your WordPress website.',
383
  'link' => 'http://bestwebsoft.com/products/social-buttons-pack/?k=b6440fad9f54274429e536b0c61b42da&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
384
  'settings' => 'admin.php?page=social-buttons.php'
385
  ),
386
  'subscriber/subscriber.php' => array(
387
- 'category' => 'social',
388
  'name' => 'Subscriber',
389
- 'description' => 'This plugin allows you to subscribe users for newsletters from your website.',
390
  'link' => 'http://bestwebsoft.com/products/subscriber/?k=a4ecc1b7800bae7329fbe8b4b04e9c88&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
391
  'settings' => 'admin.php?page=sbscrbr_settings_page',
392
  'pro_version' => 'subscriber-pro/subscriber-pro.php',
@@ -394,23 +409,23 @@ $bws_plugins = array(
394
  'pro_settings' => 'admin.php?page=sbscrbrpr_settings_page'
395
  ),
396
  'bws-testimonials/bws-testimonials.php' => array(
397
- 'category' => 'content-and-media',
398
  'name' => 'Testimonials',
399
- 'description' => 'Allows creating and displaying a Testimonial on your website.',
400
  'link' => 'http://bestwebsoft.com/products/testimonials/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
401
  'settings' => 'admin.php?page=testimonials.php'
402
  ),
403
  'timesheet/timesheet.php' => array(
404
- 'category' => 'management',
405
  'name' => 'Timesheet',
406
- 'description' => 'Allows you to fill out and view the work schedule of users.',
407
  'link' => 'http://bestwebsoft.com/products/timesheet/?k=06a58bb78c17a43df01825925f05a5c1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
408
  'settings' => 'admin.php?page=timesheet_settings'
409
  ),
410
  'twitter-plugin/twitter.php' => array(
411
- 'category' => 'social',
412
  'name' => 'Twitter',
413
- 'description' => 'Allows you to add the Twitter "Follow" and "Like" buttons the easiest way.',
414
  'link' => 'http://bestwebsoft.com/products/twitter/?k=f8cb514e25bd7ec4974d64435c5eb333&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
415
  'settings' => 'admin.php?page=twitter.php',
416
  'pro_version' => 'twitter-pro/twitter-pro.php',
@@ -418,9 +433,9 @@ $bws_plugins = array(
418
  'pro_settings' => 'admin.php?page=twitter-pro.php'
419
  ),
420
  'updater/updater.php' => array(
421
- 'category' => 'utilities',
422
  'name' => 'Updater',
423
- 'description' => 'Allows you to update plugins and WP core.',
424
  'link' => 'http://bestwebsoft.com/products/updater/?k=66f3ecd4c1912009d395c4bb30f779d1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
425
  'settings' => 'admin.php?page=updater-options',
426
  'pro_version' => 'updater-pro/updater_pro.php',
@@ -428,9 +443,9 @@ $bws_plugins = array(
428
  'pro_settings' => 'admin.php?page=updater-pro-options'
429
  ),
430
  'user-role/user-role.php' => array(
431
- 'category' => 'utilities',
432
  'name' => 'User Role',
433
- 'description' => 'Allows to change wordpress user role capabilities.',
434
  'link' => 'http://bestwebsoft.com/products/user-role/?k=dfe2244835c6fbf601523964b3f34ccc&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
435
  'settings' => 'admin.php?page=user-role.php',
436
  'pro_version' => 'user-role-pro/user-role-pro.php',
@@ -438,9 +453,9 @@ $bws_plugins = array(
438
  'pro_settings' => 'admin.php?page=user-role-pro.php'
439
  ),
440
  'visitors-online/visitors-online.php' => array(
441
- 'category' => 'site-stats',
442
  'name' => 'Visitors Online',
443
- 'description' => 'See how many users, guests and bots are online at the website.',
444
  'link' => 'http://bestwebsoft.com/products/visitors-online/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
445
  'settings' => 'admin.php?page=visitors-online.php',
446
  'pro_version' => 'visitors-online-pro/visitors-online-pro.php',
@@ -448,31 +463,36 @@ $bws_plugins = array(
448
  'pro_settings' => 'admin.php?page=visitors-online-pro.php'
449
  ),
450
  'zendesk-help-center/zendesk-help-center.php' => array(
451
- 'category' => 'utilities',
452
  'name' => 'Zendesk Help Center',
453
- 'description' => 'This plugin allows to backup&export Zendesk Help Center.',
454
  'link' => 'http://bestwebsoft.com/products/zendesk-help-center/?k=2a5fd2f4b2f4bde46f2ca44b8d15846d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
455
- 'settings' => 'admin.php?page=zendesk_hc.php&tab=settings',
456
  'pro_version' => 'zendesk-help-center-pro/zendesk-help-center-pro.php',
457
  'purchase' => 'http://bestwebsoft.com/products/zendesk-help-center/buy/?k=45199e4538b5befe4d9566868a61a3aa&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
458
- 'pro_settings' => 'admin.php?page=zendesk_hc.php&tab=settings'
459
  )
460
  );
461
 
462
- $themes = array(
 
 
 
 
 
463
  (object) array(
464
  'name' => 'Real Estate',
465
  'slug' => 'realestate',
466
  'href' => 'http://bestwebsoft.com/products/real-estate-creative-wordpress-theme/'
467
  ),
 
 
 
 
 
468
  (object) array(
469
  'name' => 'Unity',
470
  'slug' => 'unity',
471
  'href' => 'http://bestwebsoft.com/products/unity-multipurpose-wordpress-theme/'
472
- ),
473
- (object) array(
474
- 'name' => 'Opening',
475
- 'slug' => 'opening',
476
- 'href' => 'http://bestwebsoft.com/products/opening-job-board-wordpress-theme/'
477
  )
478
  );
4
  */
5
 
6
  $bws_plugins_category = array(
7
+ 'advertisement' => array( 'name' => __( 'Advertisement', 'bestwebsoft' ) ),
8
+ 'content-and-media' => array( 'name' => __( 'Content & Media', 'bestwebsoft' ) ),
9
+ 'management' => array( 'name' => __( 'Management', 'bestwebsoft' ) ),
10
+ 'recommended' => array( 'name' => __( 'Recommended', 'bestwebsoft' ) ),
11
+ 'security' => array( 'name' => __( 'Security', 'bestwebsoft' ) ),
12
+ 'site-stats' => array( 'name' => __( 'Site Stats', 'bestwebsoft' ) ),
13
+ 'social' => array( 'name' => __( 'Social', 'bestwebsoft' ) ),
14
+ 'utilities' => array( 'name' => __( 'Utilities', 'bestwebsoft' ) ),
15
+ 'other' => array( 'name' => __( 'Other', 'bestwebsoft' ) ),
16
  );
17
 
18
  $bws_plugins = array(
19
  'captcha/captcha.php' => array(
20
+ 'category' => array( 'security', 'recommended' ),
21
  'name' => 'Captcha',
22
+ 'description' => 'Protect WordPress website forms from spam entries by means of math logic.',
23
  'link' => 'http://bestwebsoft.com/products/captcha/?k=d678516c0990e781edfb6a6c874f0b8a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
24
  'settings' => 'admin.php?page=captcha.php',
25
  'pro_version' => 'captcha-pro/captcha_pro.php',
27
  'pro_settings' => 'admin.php?page=captcha_pro.php'
28
  ),
29
  'car-rental/car-rental.php' => array(
30
+ 'category' => array( 'content-and-media' ),
31
  'name' => 'Car Rental',
32
+ 'description' => 'Create your personal car rental/booking and reservation website.',
33
  'link' => 'http://bestwebsoft.com/products/car-rental/?k=444cac6df9a0d3a9763ab4753d24941b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
34
  'settings' => 'admin.php?page=car-rental-settings',
35
  'pro_version' => 'car-rental-pro/car-rental-pro.php',
37
  'pro_settings' => 'admin.php?page=car-rental-pro-settings'
38
  ),
39
  'contact-form-plugin/contact_form.php' => array(
40
+ 'category' => array( 'other', 'recommended' ),
41
  'name' => 'Contact Form',
42
+ 'description' => 'Allow customers to reach you using secure contact form plugin any website must have.',
43
  'link' => 'http://bestwebsoft.com/products/contact-form/?k=012327ef413e5b527883e031d43b088b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
44
  'settings' => 'admin.php?page=contact_form.php',
45
  'pro_version' => 'contact-form-pro/contact_form_pro.php',
47
  'pro_settings' => 'admin.php?page=contact_form_pro.php'
48
  ),
49
  'contact-form-multi/contact-form-multi.php' => array(
50
+ 'category' => array( 'other', 'recommended' ),
51
  'name' => 'Contact Form Multi',
52
+ 'description' => 'Add unlimited number of contact forms to WordPress website.',
53
  'link' => 'http://bestwebsoft.com/products/contact-form-multi/?k=83cdd9e72a9f4061122ad28a67293c72&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
54
  'settings' => '',
55
  'pro_version' => 'contact-form-multi-pro/contact-form-multi-pro.php',
57
  'pro_settings' => ''
58
  ),
59
  'contact-form-to-db/contact_form_to_db.php' => array(
60
+ 'category' => array( 'other', 'recommended' ),
61
  'name' => 'Contact Form to DB',
62
+ 'description' => 'Save and manage contact form messages. Never lose important data.',
63
  'link' => 'http://bestwebsoft.com/products/contact-form-to-db/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
64
  'settings' => 'admin.php?page=cntctfrmtdb_settings',
65
  'pro_version' => 'contact-form-to-db-pro/contact_form_to_db_pro.php',
66
  'purchase' => 'http://bestwebsoft.com/products/contact-form-to-db/buy/?k=6ce5f4a9006ec906e4db643669246c6a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
67
  'pro_settings' => 'admin.php?page=cntctfrmtdbpr_settings'
68
  ),
69
+ 'custom-admin-page/custom-admin-page.php' => array(
70
+ 'category' => array( 'utilities' ),
71
+ 'name' => 'Custom Admin Page',
72
+ 'description' => 'Add unlimited custom pages to WordPress admin dashboard.',
73
+ 'link' => 'http://bestwebsoft.com/products/custom-admin-page/?k=9ac03f16c25e845e8e055a221c3e1467&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
74
+ 'settings' => 'admin.php?page=custom-admin-page.php'
75
+ ),
76
  'custom-fields-search/custom-fields-search.php' => array(
77
+ 'category' => array( 'content-and-media' ),
78
  'name' => 'Custom Fields Search',
79
+ 'description' => 'Add custom fields to WordPress website search results.',
80
  'link' => 'http://bestwebsoft.com/products/custom-fields-search/?k=f3f8285bb069250c42c6ffac95ed3284&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
81
  'settings' => 'admin.php?page=custom_fields_search.php'
82
  ),
83
  'custom-search-plugin/custom-search-plugin.php' => array(
84
+ 'category' => array( 'content-and-media' ),
85
  'name' => 'Custom Search',
86
+ 'description' => 'Add custom post types to WordPress website search results.',
87
  'link' => 'http://bestwebsoft.com/products/custom-search/?k=933be8f3a8b8719d95d1079d15443e29&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
88
  'settings' => 'admin.php?page=custom_search.php',
89
  'pro_version' => 'custom-search-pro/custom-search-pro.php',
91
  'pro_settings' => 'admin.php?page=custom_search_pro.php'
92
  ),
93
  'db-manager/db-manager.php' => array(
94
+ 'category' => array( 'utilities' ),
95
  'name' => 'DB Manager',
96
+ 'description' => 'Manage database and file system right from your WordPress admin dashboard.',
97
  'link' => 'http://bestwebsoft.com/products/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
98
  'install_url' => 'http://bestwebsoft.com/products/db-manager/download/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
99
  'settings' => 'admin.php?page=db-manager.php',
100
  'icon' => plugins_url( 'icons/plugins/', __FILE__ ) . 'db-manager.png'
101
  ),
102
  'donate-button/donate.php' => array(
103
+ 'category' => array( 'other' ),
104
  'name' => 'Donate',
105
+ 'description' => 'Add PayPal and 2CO donate buttons to receive charity payments.',
106
  'link' => 'http://bestwebsoft.com/products/donate/?k=a8b2e2a56914fb1765dd20297c26401b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
107
  'settings' => 'admin.php?page=donate.php'
108
  ),
109
  'email-queue/email-queue.php' => array(
110
+ 'category' => array( 'other' ),
111
  'name' => 'Email Queue',
112
+ 'description' => 'Automatically add outgoing email messages to queue instead of sending them immediately.',
113
  'link' => 'http://bestwebsoft.com/products/email-queue/?k=e345e1b6623f0dca119bc2d9433b130b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
114
  'settings' => 'admin.php?page=mlq_settings'
115
  ),
116
  'error-log-viewer/error-log-viewer.php' => array(
117
+ 'category' => array( 'utilities' ),
118
  'name' => 'Error Log Viewer',
119
+ 'description' => 'Get latest error log messages to diagnose website problems. Define and fix issues faster.',
120
  'link' => 'http://bestwebsoft.com/products/error-log-viewer/?k=da0de8bd2c7a0b2fea5df64d55a368b3&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
121
  'settings' => 'admin.php?page=rrrlgvwr.php&tab=settings'
122
  ),
123
  'facebook-button-plugin/facebook-button-plugin.php' => array(
124
+ 'category' => array( 'social' ),
125
  'name' => 'Facebook Button',
126
+ 'description' => 'Add Facebook Like, Share and Profile buttons to WordPress posts, pages and widgets.',
127
  'link' => 'http://bestwebsoft.com/products/facebook-like-button/?k=05ec4f12327f55848335802581467d55&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
128
  'settings' => 'admin.php?page=facebook-button-plugin.php',
129
  'pro_version' => 'facebook-button-pro/facebook-button-pro.php',
131
  'pro_settings' => 'admin.php?page=facebook-button-pro.php'
132
  ),
133
  'bws-featured-posts/bws-featured-posts.php' => array(
134
+ 'category' => array( 'content-and-media' ),
135
  'name' => 'Featured Posts',
136
+ 'description' => 'Add featured posts to WordPress posts or widgets. Highlight important information.',
137
  'link' => 'http://bestwebsoft.com/products/featured-posts/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
138
  'settings' => 'admin.php?page=featured-posts.php'
139
  ),
140
  'gallery-plugin/gallery-plugin.php' => array(
141
+ 'category' => array( 'content-and-media', 'recommended' ),
142
  'name' => 'Gallery',
143
+ 'description' => 'Add beautiful galleries, albums & images to your Wordpress website in few clicks.',
144
  'link' => 'http://bestwebsoft.com/products/gallery/?k=2da21c0a64eec7ebf16337fa134c5f78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
145
  'settings' => 'admin.php?page=gallery-plugin.php',
146
  'pro_version' => 'gallery-plugin-pro/gallery-plugin-pro.php',
148
  'pro_settings' => 'admin.php?page=gallery-plugin-pro.php'
149
  ),
150
  'gallery-categories/gallery-categories.php' => array(
151
+ 'category' => array( 'content-and-media' ),
152
  'name' => 'Gallery Categories',
153
+ 'description' => 'Add unlimited gallery categories. Organize images to make the navigation through content easier.',
154
  'link' => 'http://bestwebsoft.com/products/gallery-categories/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
155
  'settings' => ''
156
  ),
157
  'google-one/google-plus-one.php' => array(
158
+ 'category' => array( 'social' ),
159
  'name' => 'Google +1',
160
+ 'description' => 'Add Google +1 Share, Follow, Hangout buttons and profile badge to WordPress posts, pages and widgets.',
161
  'link' => 'http://bestwebsoft.com/products/google-plus-one/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
162
  'settings' => 'admin.php?page=google-plus-one.php',
163
  'pro_version' => 'google-one-pro/google-plus-one-pro.php',
165
  'pro_settings' => 'admin.php?page=google-plus-one-pro.php'
166
  ),
167
  'adsense-plugin/adsense-plugin.php' => array(
168
+ 'category' => array( 'advertisement' ),
169
  'name' => 'Google AdSense',
170
+ 'description' => 'Add Adsense ads to pages, posts, custom posts, search results, categories, tags, pages, and widgets.',
171
  'link' => 'http://bestwebsoft.com/products/google-adsense/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
172
  'settings' => 'admin.php?page=adsense-plugin.php',
173
  'pro_version' => 'adsense-pro/adsense-pro.php',
175
  'pro_settings' => 'admin.php?page=adsense-pro.php'
176
  ),
177
  'bws-google-analytics/bws-google-analytics.php' => array(
178
+ 'category' => array( 'site-stats' ),
179
  'name' => 'Google Analytics',
180
+ 'description' => 'Add Google Analytics code to WordPress website and track basic stats.',
181
  'link' => 'http://bestwebsoft.com/products/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
182
  'settings' => 'admin.php?page=bws-google-analytics.php',
183
  'pro_version' => 'bws-google-analytics-pro/bws-google-analytics-pro.php',
185
  'pro_settings' => 'admin.php?page=bws-google-analytics-pro.php'
186
  ),
187
  'google-captcha/google-captcha.php' => array(
188
+ 'category' => array( 'security', 'recommended' ),
189
  'name' => 'Google Captcha (reCAPTCHA)',
190
+ 'description' => 'Protect WordPress website forms from spam entries with Google Captcha (reCaptcha).',
191
  'link' => 'http://bestwebsoft.com/products/google-captcha/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
192
  'settings' => 'admin.php?page=google-captcha.php',
193
  'pro_version' => 'google-captcha-pro/google-captcha-pro.php',
195
  'pro_settings' => 'admin.php?page=google-captcha-pro.php'
196
  ),
197
  'bws-google-maps/bws-google-maps.php' => array(
198
+ 'category' => array( 'content-and-media' ),
199
  'name' => 'Google Maps',
200
+ 'description' => 'Add customized Google maps to WordPress posts, pages and widgets.',
201
  'link' => 'http://bestwebsoft.com/products/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
202
  'settings' => 'admin.php?page=bws-google-maps.php',
203
  'pro_version' => 'bws-google-maps-pro/bws-google-maps-pro.php',
205
  'pro_settings' => 'admin.php?page=bws-google-maps-pro.php'
206
  ),
207
  'google-sitemap-plugin/google-sitemap-plugin.php' => array(
208
+ 'category' => array( 'other', 'recommended' ),
209
  'name' => 'Google Sitemap',
210
+ 'description' => 'Generate and add XML sitemap to WordPress website. Help search engines index your blog.',
211
  'link' => 'http://bestwebsoft.com/products/google-sitemap/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
212
  'settings' => 'admin.php?page=google-sitemap-plugin.php',
213
  'pro_version' => 'google-sitemap-pro/google-sitemap-pro.php',
215
  'pro_settings' => 'admin.php?page=google-sitemap-pro.php'
216
  ),
217
  'google-shortlink/google-shortlink.php' => array(
218
+ 'category' => array( 'other' ),
219
  'name' => 'Google Shortlink',
220
+ 'description' => 'Replace external WordPress website links with Google shortlinks and track click stats.',
221
  'link' => 'http://bestwebsoft.com/products/google-shortlink/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
222
  'settings' => 'admin.php?page=gglshrtlnk_options'
223
  ),
224
  'htaccess/htaccess.php' => array(
225
+ 'category' => array( 'security' ),
226
  'name' => 'Htaccess',
227
+ 'description' => 'Protect WordPress website allow and deny access for certain IP addresses, hostnames, etc.',
228
  'link' => 'http://bestwebsoft.com/products/htaccess/?k=2b865fcd56a935d22c5c4f1bba52ed46&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
229
  'settings' => 'admin.php?page=htaccess.php',
230
  'pro_version' => 'htaccess-pro/htaccess-pro.php',
232
  'pro_settings' => 'admin.php?page=htaccess-pro.php'
233
  ),
234
  'job-board/job-board.php' => array(
235
+ 'category' => array( 'content-and-media' ),
236
  'name' => 'Job Board',
237
+ 'description' => 'Create your personal job board and listing WordPress website. Search jobs, submit CV/resumes, choose candidates.',
238
  'link' => 'http://bestwebsoft.com/products/job-board/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
239
  'settings' => 'admin.php?page=job-board.php'
240
  ),
241
+ 'bws-latest-posts/bws-latest-posts.php' => array(
242
+ 'category' => array( 'content-and-media' ),
243
+ 'name' => 'Latest Posts',
244
+ 'description' => 'Add latest posts or latest posts for selected categories widgets to WordPress website.',
245
+ 'link' => 'http://bestwebsoft.com/products/latest-posts/?k=ef4e125aadadd8d219140daa184a9399&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
246
+ 'settings' => 'admin.php?page=latest-posts.php'
247
+ ),
248
  'limit-attempts/limit-attempts.php' => array(
249
+ 'category' => array( 'security', 'recommended' ),
250
  'name' => 'Limit Attempts',
251
+ 'description' => 'Protect WordPress website against brute force attacks. Limit rate of login attempts.',
252
  'link' => 'http://bestwebsoft.com/products/limit-attempts/?k=b14e1697ee4d008abcd4bd34d492573a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
253
  'settings' => 'admin.php?page=limit-attempts.php',
254
  'pro_version' => 'limit-attempts-pro/limit-attempts-pro.php',
256
  'pro_settings' => 'admin.php?page=limit-attempts-pro.php'
257
  ),
258
  'bws-linkedin/bws-linkedin.php' => array(
259
+ 'category' => array( 'social' ),
260
  'name' => 'LinkedIn',
261
+ 'description' => 'Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. 5 plugins included – profile, insider, etc.',
262
  'link' => 'http://bestwebsoft.com/products/linkedin/?k=d63c7319622ccc5f589dd2d545c1d77c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
263
  'settings' => 'admin.php?page=linkedin.php',
264
  'pro_version' => 'bws-linkedin-pro/bws-linkedin-pro.php',
266
  'pro_settings' => 'admin.php?page=linkedin-pro.php'
267
  ),
268
  'multilanguage/multilanguage.php' => array(
269
+ 'category' => array( 'content-and-media', 'recommended' ),
270
  'name' => 'Multilanguage',
271
+ 'description' => 'Translate WordPress website content to other languages manually. Create multilingual pages, posts, widgets, menus, etc.',
272
  'link' => 'http://bestwebsoft.com/products/multilanguage/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
273
  'settings' => 'admin.php?page=mltlngg_settings',
274
  'pro_version' => 'multilanguage-pro/multilanguage-pro.php',
276
  'pro_settings' => 'admin.php?page=mltlnggpr_settings'
277
  ),
278
  'pagination/pagination.php' => array(
279
+ 'category' => array( 'content-and-media' ),
280
  'name' => 'Pagination',
281
+ 'description' => 'Add customizable pagination to WordPress website. Split long content to multiple pages for better navigation.',
282
  'link' => 'http://bestwebsoft.com/products/pagination/?k=22adb940256f149559ba8fedcd728ac8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
283
  'settings' => 'admin.php?page=pagination.php'
284
  ),
285
  'pdf-print/pdf-print.php' => array(
286
+ 'category' => array( 'other' ),
287
  'name' => 'PDF & Print',
288
+ 'description' => 'Generate PDF files and print WordPress posts/pages. Customize document header/footer styles and appearance.',
289
  'link' => 'http://bestwebsoft.com/products/pdf-print/?k=bfefdfb522a4c0ff0141daa3f271840c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
290
  'settings' => 'admin.php?page=pdf-print.php',
291
  'pro_version' => 'pdf-print-pro/pdf-print-pro.php',
293
  'pro_settings' => 'admin.php?page=pdf-print-pro.php'
294
  ),
295
  'bws-pinterest/bws-pinterest.php' => array(
296
+ 'category' => array( 'social' ),
297
  'name' => 'Pinterest',
298
+ 'description' => 'Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, Profile) to WordPress posts, pages and widgets.',
299
  'link' => 'http://bestwebsoft.com/products/pinterest/?k=504107b6213f247a67fe7ffb94e97c78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
300
  'settings' => 'admin.php?page=pinterest.php',
301
  'pro_version' => 'bws-pinterest-pro/bws-pinterest-pro.php',
303
  'pro_settings' => 'admin.php?page=pinterest-pro.php'
304
  ),
305
  'bws-popular-posts/bws-popular-posts.php' => array(
306
+ 'category' => array( 'content-and-media', 'recommended' ),
307
  'name' => 'Popular Posts',
308
+ 'description' => 'Track views, comments and add most popular posts to Wordpress widgets.',
309
  'link' => 'http://bestwebsoft.com/products/popular-posts/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
310
  'settings' => 'admin.php?page=popular-posts.php'
311
  ),
312
  'portfolio/portfolio.php' => array(
313
+ 'category' => array( 'content-and-media', 'recommended' ),
314
  'name' => 'Portfolio',
315
+ 'description' => 'Create your personal portfolio WordPress website. Manage and showcase past projects to get more clients.',
316
  'link' => 'http://bestwebsoft.com/products/portfolio/?k=1249a890c5b7bba6bda3f528a94f768b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
317
  'settings' => 'admin.php?page=portfolio.php',
318
  'pro_version' => 'portfolio-pro/portfolio-pro.php',
320
  'pro_settings' => 'admin.php?page=portfolio-pro.php'
321
  ),
322
  'post-to-csv/post-to-csv.php' => array(
323
+ 'category' => array( 'utilities' ),
324
  'name' => 'Post to CSV',
325
+ 'description' => 'Export WordPress posts to CSV file format easily. Configure data order.',
326
  'link' => 'http://bestwebsoft.com/products/post-to-csv/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
327
  'settings' => 'admin.php?page=post-to-csv.php'
328
  ),
329
  'profile-extra-fields/profile-extra-fields.php' => array(
330
+ 'category' => array( 'management' ),
331
  'name' => 'Profile Extra Fields',
332
+ 'description' => 'Add extra fields to default WordPress user profile. The easiest way to create and manage additional custom values.',
333
  'link' => 'http://bestwebsoft.com/products/profile-extra-fields/?k=fe3b6c3dbc80bd4b1cf9a27a2f339820&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
334
  'settings' => 'admin.php?page=profile-extra-fields.php'
335
  ),
336
  'promobar/promobar.php' => array(
337
+ 'category' => array( 'advertisement' ),
338
  'name' => 'PromoBar',
339
+ 'description' => 'Add and display HTML advertisement on WordPress website. Customize bar styles and appearance.',
340
  'link' => 'http://bestwebsoft.com/products/promobar/?k=619eac2232d9cfa382c4e678c3b14766&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
341
  'settings' => 'admin.php?page=promobar.php',
342
  'pro_version' => 'promobar-pro/promobar-pro.php',
344
  'pro_settings' => 'admin.php?page=promobar-pro.php'
345
  ),
346
  'quotes-and-tips/quotes-and-tips.php' => array(
347
+ 'category' => array( 'content-and-media' ),
348
  'name' => 'Quotes and Tips',
349
+ 'description' => 'Add customizable quotes and tips blocks to WordPress posts, pages and widgets.',
350
  'link' => 'http://bestwebsoft.com/products/quotes-and-tips/?k=5738a4e85a798c4a5162240c6515098d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
351
  'settings' => 'admin.php?page=quotes-and-tips.php'
352
  ),
353
  'realty/realty.php' => array(
354
+ 'category' => array( 'content-and-media' ),
355
  'name' => 'Realty',
356
+ 'description' => 'Create your personal real estate WordPress website. Sell, rent and buy properties. Add, search and browse listings easily.',
357
  'link' => 'http://bestwebsoft.com/products/realty/?k=d55de979dbbbb7af0b2ff1d7f43884fa&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
358
  'settings' => 'admin.php?page=realty_settings',
359
  'pro_version' => 'realty-pro/realty-pro.php',
361
  'pro_settings' => 'admin.php?page=realty_pro_settings'
362
  ),
363
  're-attacher/re-attacher.php' => array(
364
+ 'category' => array( 'utilities' ),
365
  'name' => 'Re-attacher',
366
+ 'description' => 'Attach, unattach and re-attach media files quickly to WordPress posts and pages.',
367
  'link' => 'http://bestwebsoft.com/products/re-attacher/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
368
  'settings' => 'admin.php?page=re-attacher.php'
369
  ),
370
  'relevant/related-posts-plugin.php' => array(
371
+ 'category' => array( 'content-and-media', 'recommended' ),
372
  'name' => 'Relevant - Related Posts',
373
+ 'description' => 'Add related posts to WordPress posts or widgets. Link your readers to relevant content.',
374
  'link' => 'http://bestwebsoft.com/products/related-posts/?k=73fb737037f7141e66415ec259f7e426&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
375
  'settings' => 'admin.php?page=related-posts-plugin.php'
376
  ),
377
  'sender/sender.php' => array(
378
+ 'category' => array( 'social', 'recommended' ),
379
  'name' => 'Sender',
380
+ 'description' => 'Send bulk email messages to WordPress users. Custom templates, advanced settings and detailed reports.',
381
  'link' => 'http://bestwebsoft.com/products/sender/?k=89c297d14ba85a8417a0f2fc05e089c7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
382
  'settings' => 'admin.php?page=sndr_settings',
383
  'pro_version' => 'sender-pro/sender-pro.php',
385
  'pro_settings' => 'admin.php?page=sndrpr_settings'
386
  ),
387
  'bws-smtp/bws-smtp.php' => array(
388
+ 'category' => array( 'utilities' ),
389
  'name' => 'SMTP',
390
+ 'description' => 'Configure SMTP server to receive email messages from WordPress to Gmail, Yahoo, Hotmail and other services.',
391
  'link' => 'http://bestwebsoft.com/products/smtp/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
392
  'settings' => 'admin.php?page=bwssmtp_settings'
393
  ),
394
  'social-buttons-pack/social-buttons-pack.php' => array(
395
+ 'category' => array( 'social', 'recommended' ),
396
  'name' => 'Social Buttons Pack',
397
+ 'description' => 'Add social media buttons and widgets to WordPress posts, pages and widgets. FB, Twitter, G+1, Pinterest, LinkedIn.',
398
  'link' => 'http://bestwebsoft.com/products/social-buttons-pack/?k=b6440fad9f54274429e536b0c61b42da&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
399
  'settings' => 'admin.php?page=social-buttons.php'
400
  ),
401
  'subscriber/subscriber.php' => array(
402
+ 'category' => array( 'social', 'recommended' ),
403
  'name' => 'Subscriber',
404
+ 'description' => 'Add email newsletter sign up form to WordPress posts, pages and widgets. Collect data and subscribe your users.',
405
  'link' => 'http://bestwebsoft.com/products/subscriber/?k=a4ecc1b7800bae7329fbe8b4b04e9c88&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
406
  'settings' => 'admin.php?page=sbscrbr_settings_page',
407
  'pro_version' => 'subscriber-pro/subscriber-pro.php',
409
  'pro_settings' => 'admin.php?page=sbscrbrpr_settings_page'
410
  ),
411
  'bws-testimonials/bws-testimonials.php' => array(
412
+ 'category' => array( 'content-and-media', 'recommended' ),
413
  'name' => 'Testimonials',
414
+ 'description' => 'Add testimonials and feedbacks from your customers to WordPress posts, pages and widgets.',
415
  'link' => 'http://bestwebsoft.com/products/testimonials/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
416
  'settings' => 'admin.php?page=testimonials.php'
417
  ),
418
  'timesheet/timesheet.php' => array(
419
+ 'category' => array( 'management' ),
420
  'name' => 'Timesheet',
421
+ 'description' => 'Best timesheet plugin for WordPress. Track employee time, streamline attendance and generate reports.',
422
  'link' => 'http://bestwebsoft.com/products/timesheet/?k=06a58bb78c17a43df01825925f05a5c1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
423
  'settings' => 'admin.php?page=timesheet_settings'
424
  ),
425
  'twitter-plugin/twitter.php' => array(
426
+ 'category' => array( 'social' ),
427
  'name' => 'Twitter',
428
+ 'description' => 'Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts, pages and widgets.',
429
  'link' => 'http://bestwebsoft.com/products/twitter/?k=f8cb514e25bd7ec4974d64435c5eb333&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
430
  'settings' => 'admin.php?page=twitter.php',
431
  'pro_version' => 'twitter-pro/twitter-pro.php',
433
  'pro_settings' => 'admin.php?page=twitter-pro.php'
434
  ),
435
  'updater/updater.php' => array(
436
+ 'category' => array( 'utilities', 'recommended' ),
437
  'name' => 'Updater',
438
+ 'description' => 'Automatically check and update WordPress website core with all installed plugins and themes to the latest versions.',
439
  'link' => 'http://bestwebsoft.com/products/updater/?k=66f3ecd4c1912009d395c4bb30f779d1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
440
  'settings' => 'admin.php?page=updater-options',
441
  'pro_version' => 'updater-pro/updater_pro.php',
443
  'pro_settings' => 'admin.php?page=updater-pro-options'
444
  ),
445
  'user-role/user-role.php' => array(
446
+ 'category' => array( 'utilities' ),
447
  'name' => 'User Role',
448
+ 'description' => 'Powerful user role management plugin for WordPress website. Create, edit, copy, and delete user roles.',
449
  'link' => 'http://bestwebsoft.com/products/user-role/?k=dfe2244835c6fbf601523964b3f34ccc&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
450
  'settings' => 'admin.php?page=user-role.php',
451
  'pro_version' => 'user-role-pro/user-role-pro.php',
453
  'pro_settings' => 'admin.php?page=user-role-pro.php'
454
  ),
455
  'visitors-online/visitors-online.php' => array(
456
+ 'category' => array( 'site-stats' ),
457
  'name' => 'Visitors Online',
458
+ 'description' => 'Display live count of online visitors who are currently browsing your WordPress website.',
459
  'link' => 'http://bestwebsoft.com/products/visitors-online/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
460
  'settings' => 'admin.php?page=visitors-online.php',
461
  'pro_version' => 'visitors-online-pro/visitors-online-pro.php',
463
  'pro_settings' => 'admin.php?page=visitors-online-pro.php'
464
  ),
465
  'zendesk-help-center/zendesk-help-center.php' => array(
466
+ 'category' => array( 'utilities' ),
467
  'name' => 'Zendesk Help Center',
468
+ 'description' => 'Backup and export Zendesk Help Center content automatically to your WordPress website database.',
469
  'link' => 'http://bestwebsoft.com/products/zendesk-help-center/?k=2a5fd2f4b2f4bde46f2ca44b8d15846d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
470
+ 'settings' => 'admin.php?page=zendesk_hc.php&action=settings',
471
  'pro_version' => 'zendesk-help-center-pro/zendesk-help-center-pro.php',
472
  'purchase' => 'http://bestwebsoft.com/products/zendesk-help-center/buy/?k=45199e4538b5befe4d9566868a61a3aa&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
473
+ 'pro_settings' => 'admin.php?page=zendesk_hc_pro.php&tab=settings'
474
  )
475
  );
476
 
477
+ $themes = array(
478
+ (object) array(
479
+ 'name' => 'Opening',
480
+ 'slug' => 'opening',
481
+ 'href' => 'http://bestwebsoft.com/products/opening-job-board-wordpress-theme/'
482
+ ),
483
  (object) array(
484
  'name' => 'Real Estate',
485
  'slug' => 'realestate',
486
  'href' => 'http://bestwebsoft.com/products/real-estate-creative-wordpress-theme/'
487
  ),
488
+ (object) array(
489
+ 'name' => 'Renty',
490
+ 'slug' => 'renty',
491
+ 'href' => 'http://bestwebsoft.com/products/renty-car-rental-booking-wordpress-theme/'
492
+ ),
493
  (object) array(
494
  'name' => 'Unity',
495
  'slug' => 'unity',
496
  'href' => 'http://bestwebsoft.com/products/unity-multipurpose-wordpress-theme/'
 
 
 
 
 
497
  )
498
  );
google-captcha.php CHANGED
@@ -6,7 +6,7 @@ Description: Protect WordPress website forms from spam entries with Google Captc
6
  Author: BestWebSoft
7
  Text Domain: google-captcha
8
  Domain Path: /languages
9
- Version: 1.24
10
  Author URI: http://bestwebsoft.com/
11
  License: GPLv3 or later
12
  */
6
  Author: BestWebSoft
7
  Text Domain: google-captcha
8
  Domain Path: /languages
9
+ Version: 1.25
10
  Author URI: http://bestwebsoft.com/
11
  License: GPLv3 or later
12
  */
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://bestwebsoft.com/donate/
4
  Tags: antispam, captcha, capcha, security, website security, google captcha, google captcha plugin, recaptcha, recaptcha plugin, add recaptcha, recaptcha protection, spam protection
5
  Requires at least: 3.8
6
  Tested up to: 4.5.3
7
- Stable tag: 1.24
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -147,6 +147,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
147
 
148
  == Changelog ==
149
 
 
 
 
150
  = V1.24 - 27.06.2016 =
151
  * Update : Functionality to use Captcha with Contact Form Multi was updated.
152
  * Update : BWS Panel section is updated.
@@ -261,6 +264,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
261
 
262
  == Upgrade Notice ==
263
 
 
 
 
264
  = V1.24 =
265
  Functionality to use Captcha with Contact Form Multi was updated. BWS Panel section is updated.
266
 
4
  Tags: antispam, captcha, capcha, security, website security, google captcha, google captcha plugin, recaptcha, recaptcha plugin, add recaptcha, recaptcha protection, spam protection
5
  Requires at least: 3.8
6
  Tested up to: 4.5.3
7
+ Stable tag: 1.25
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
147
 
148
  == Changelog ==
149
 
150
+ = V1.25 - 15.07.2016 =
151
+ * Update : BWS panel section was updated.
152
+
153
  = V1.24 - 27.06.2016 =
154
  * Update : Functionality to use Captcha with Contact Form Multi was updated.
155
  * Update : BWS Panel section is updated.
264
 
265
  == Upgrade Notice ==
266
 
267
+ = V1.25 =
268
+ Usability improved.
269
+
270
  = V1.24 =
271
  Functionality to use Captcha with Contact Form Multi was updated. BWS Panel section is updated.
272
 
screenshot-8.png CHANGED
Binary file