Contact Form by BestWebSoft - Version 4.0.6

Version Description

  • 14.04.2017 =
  • Bugfix : Multiple Cross-Site Scripting (XSS) vulnerability was fixed.
  • Update : The French language file is updated.
Download this release

Release Info

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

Code changes from version 4.0.5 to 4.0.6

bws_menu/bws_functions.php CHANGED
@@ -204,7 +204,7 @@ if ( ! function_exists( 'bws_admin_notices' ) ) {
204
  <img title="" src="<?php echo esc_attr( $bws_plugin_banner_to_settings[0]['banner_url'] ); ?>" alt="" />
205
  </div>
206
  <div class="text">
207
- <strong><?php _e( 'Thank you for installing', 'bestwebsoft' ); ?> <?php echo $bws_plugin_banner_to_settings[0]['plugin_info']['Name']; ?> plugin!</strong><br />
208
  <?php _e( "Let's get started", 'bestwebsoft' ); ?>:
209
  <a href="<?php echo $bws_plugin_banner_to_settings[0]['settings_url']; ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
210
  <?php if ( false != $bws_plugin_banner_to_settings[0]['post_type_url'] ) { ?>
@@ -474,7 +474,7 @@ if ( ! function_exists( 'bws_plugin_suggest_feature_banner' ) ) {
474
  <img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
475
  </div>
476
  <div class="text">
477
- <strong><?php _e( 'Thank you for choosing', 'bestwebsoft' ); ?> <?php echo $plugin_info['Name']; ?> plugin!</strong><br />
478
  <?php _e( "If you have a feature, suggestion or idea you'd like to see in the plugin, we'd love to hear about it!", 'bestwebsoft' ); ?>
479
  <a target="_blank" href="https://support.bestwebsoft.com/hc/en-us/requests/new"><?php _e( 'Suggest a Feature', 'bestwebsoft' ); ?></a>
480
  </div>
204
  <img title="" src="<?php echo esc_attr( $bws_plugin_banner_to_settings[0]['banner_url'] ); ?>" alt="" />
205
  </div>
206
  <div class="text">
207
+ <strong><?php printf( __( 'Thank you for installing %s plugin!', 'bestwebsoft' ), $bws_plugin_banner_to_settings[0]['plugin_info']['Name'] ); ?> </strong><br />
208
  <?php _e( "Let's get started", 'bestwebsoft' ); ?>:
209
  <a href="<?php echo $bws_plugin_banner_to_settings[0]['settings_url']; ?>"><?php _e( 'Settings', 'bestwebsoft' ); ?></a>
210
  <?php if ( false != $bws_plugin_banner_to_settings[0]['post_type_url'] ) { ?>
474
  <img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
475
  </div>
476
  <div class="text">
477
+ <strong><?php printf( __( 'Thank you for choosing %s plugin!', 'bestwebsoft' ), $plugin_info['Name'] ); ?></strong><br />
478
  <?php _e( "If you have a feature, suggestion or idea you'd like to see in the plugin, we'd love to hear about it!", 'bestwebsoft' ); ?>
479
  <a target="_blank" href="https://support.bestwebsoft.com/hc/en-us/requests/new"><?php _e( 'Suggest a Feature', 'bestwebsoft' ); ?></a>
480
  </div>
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 2.0.3
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
@@ -37,7 +37,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
37
  $sitewide_active_plugins = ( function_exists( 'is_multisite' ) && is_multisite() ) ? get_site_option( 'active_sitewide_plugins' ) : array();
38
  $update_availible_all = get_site_transient( 'update_plugins' );
39
 
40
- $plugin_category = isset( $_GET['category'] ) ? $_GET['category'] : 'all';
41
 
42
  if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || ! isset( $_GET['sub'] ) ) {
43
  $bws_plugins_update_availible = $bws_plugins_expired = array();
@@ -53,14 +53,16 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
53
  $is_pro_installed = array_key_exists( $value_plugin['pro_version'], $all_plugins );
54
  }
55
  /* check update_availible */
56
- if ( $is_pro_installed && array_key_exists( $value_plugin['pro_version'], $update_availible_all->response ) ) {
57
- unset( $bws_plugins[ $key_plugin ] );
58
- $value_plugin['update_availible'] = $value_plugin['pro_version'];
59
- $bws_plugins_update_availible[ $key_plugin ] = $value_plugin;
60
- } else if ( $is_installed && array_key_exists( $key_plugin, $update_availible_all->response ) ) {
61
- unset( $bws_plugins[ $key_plugin ] );
62
- $value_plugin['update_availible'] = $key_plugin;
63
- $bws_plugins_update_availible[ $key_plugin ] = $value_plugin;
 
 
64
  }
65
  /* check expired */
66
  if ( $is_pro_installed && isset( $bstwbsftwppdtplgns_options['time_out'][ $value_plugin['pro_version'] ] ) &&
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 2.0.6
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
37
  $sitewide_active_plugins = ( function_exists( 'is_multisite' ) && is_multisite() ) ? get_site_option( 'active_sitewide_plugins' ) : array();
38
  $update_availible_all = get_site_transient( 'update_plugins' );
39
 
40
+ $plugin_category = isset( $_GET['category'] ) ? esc_html( $_GET['category'] ) : 'all';
41
 
42
  if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || ! isset( $_GET['sub'] ) ) {
43
  $bws_plugins_update_availible = $bws_plugins_expired = array();
53
  $is_pro_installed = array_key_exists( $value_plugin['pro_version'], $all_plugins );
54
  }
55
  /* check update_availible */
56
+ if ( ! empty( $update_availible_all ) && ! empty( $update_availible_all->response ) ) {
57
+ if ( $is_pro_installed && array_key_exists( $value_plugin['pro_version'], $update_availible_all->response ) ) {
58
+ unset( $bws_plugins[ $key_plugin ] );
59
+ $value_plugin['update_availible'] = $value_plugin['pro_version'];
60
+ $bws_plugins_update_availible[ $key_plugin ] = $value_plugin;
61
+ } else if ( $is_installed && array_key_exists( $key_plugin, $update_availible_all->response ) ) {
62
+ unset( $bws_plugins[ $key_plugin ] );
63
+ $value_plugin['update_availible'] = $key_plugin;
64
+ $bws_plugins_update_availible[ $key_plugin ] = $value_plugin;
65
+ }
66
  }
67
  /* check expired */
68
  if ( $is_pro_installed && isset( $bstwbsftwppdtplgns_options['time_out'][ $value_plugin['pro_version'] ] ) &&
bws_menu/class-bws-settings.php CHANGED
@@ -27,7 +27,8 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
27
  public $link_key;
28
  public $link_pn;
29
  public $is_trial = false;
30
- public $trial_days;
 
31
 
32
  public $forbid_view = false;
33
  public $change_permission_attr = '';
@@ -154,7 +155,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
154
  }
155
  $license_status .= '. <a target="_blank" href="' . $this->plugins_info['PluginURI'] . '">' . __( 'Upgrade to Pro', 'bestwebsoft' ) . '</a>';
156
  } else {
157
- $license_type = 'Pro';
158
  if ( $finish < $today ) {
159
  $license_status = sprintf( __( 'Expired on %s', 'bestwebsoft' ), $bstwbsftwppdtplgns_options['time_out'][ $this->plugin_basename ] ) . '. <a target="_blank" href="https://support.bestwebsoft.com/entries/53487136">' . __( 'Renew Now', 'bestwebsoft' ) . '</a>';
160
  } else {
@@ -539,7 +540,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
539
  * action - Display custom options on the 'misc' tab
540
  */
541
  do_action( __CLASS__ . '_additional_misc_options_affected' );
542
- if ( ! empty( $this->pro_page ) ) { ?>
543
  <tr>
544
  <th scope="row"><?php _e( 'Pro Options', 'bestwebsoft' ); ?></th>
545
  <td>
@@ -696,12 +697,22 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
696
  if ( $this->pro_plugin_is_activated ) {
697
  deactivate_plugins( $this->plugin_basename ); ?>
698
  <script type="text/javascript">
699
- window.setTimeout( function() {
700
- window.location.href = '<?php echo $this->pro_page; ?>';
701
- }, 7000 );
 
 
 
 
 
 
 
 
 
 
702
  </script>
703
  <p><strong><?php _e( 'Congratulations! Pro license is activated successfully.', 'bestwebsoft' ); ?></strong></p>
704
- <p><?php printf( __( 'You will be automatically redirected to the %s in 7 seconds.', 'bestwebsoft' ), '<a href="' . $this->pro_page . '">' . __( 'Settings page', 'bestwebsoft' ) . '</a>' ); ?></p>
705
  <?php } else {
706
  $attr = '';
707
  if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['count'] ) &&
@@ -786,10 +797,10 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
786
  $to_send["plugins"][ $this->plugin_basename ]["bws_license_key"] = $bws_license_key;
787
  $to_send["plugins"][ $this->plugin_basename ]["bws_illegal_client"] = true;
788
  $options = array(
789
- 'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3),
790
- 'body' => array( 'plugins' => serialize( $to_send ) ),
791
- 'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
792
- );
793
  $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
794
 
795
  if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
@@ -884,7 +895,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
884
 
885
  if ( ! array_key_exists( $bws_license_plugin, $this->all_plugins ) ) {
886
  $current = get_site_transient( 'update_plugins' );
887
- if ( isset( $current ) && is_array( $current->response ) ) {
888
  $to_send = array();
889
  $to_send["plugins"][ $bws_license_plugin ] = array();
890
  $to_send["plugins"][ $bws_license_plugin ]["bws_license_key"] = $bws_license_key;
27
  public $link_key;
28
  public $link_pn;
29
  public $is_trial = false;
30
+ public $trial_days;
31
+ public $bws_hide_pro_option_exist = true;
32
 
33
  public $forbid_view = false;
34
  public $change_permission_attr = '';
155
  }
156
  $license_status .= '. <a target="_blank" href="' . $this->plugins_info['PluginURI'] . '">' . __( 'Upgrade to Pro', 'bestwebsoft' ) . '</a>';
157
  } else {
158
+ $license_type = isset( $bstwbsftwppdtplgns_options['nonprofit'][ $this->plugin_basename ] ) ? 'Nonprofit Pro' : 'Pro';
159
  if ( $finish < $today ) {
160
  $license_status = sprintf( __( 'Expired on %s', 'bestwebsoft' ), $bstwbsftwppdtplgns_options['time_out'][ $this->plugin_basename ] ) . '. <a target="_blank" href="https://support.bestwebsoft.com/entries/53487136">' . __( 'Renew Now', 'bestwebsoft' ) . '</a>';
161
  } else {
540
  * action - Display custom options on the 'misc' tab
541
  */
542
  do_action( __CLASS__ . '_additional_misc_options_affected' );
543
+ if ( ! empty( $this->pro_page ) && $this->bws_hide_pro_option_exist ) { ?>
544
  <tr>
545
  <th scope="row"><?php _e( 'Pro Options', 'bestwebsoft' ); ?></th>
546
  <td>
697
  if ( $this->pro_plugin_is_activated ) {
698
  deactivate_plugins( $this->plugin_basename ); ?>
699
  <script type="text/javascript">
700
+ (function($) {
701
+ var i = 7;
702
+ function bws_set_timeout() {
703
+ i--;
704
+ if ( 0 == i ) {
705
+ window.location.href = '<?php echo $this->pro_page; ?>';
706
+ } else {
707
+ $( '#bws_timeout_counter' ).text( i );
708
+ window.setTimeout( bws_set_timeout, 1000 );
709
+ }
710
+ }
711
+ window.setTimeout( bws_set_timeout, 1000 );
712
+ })(jQuery);
713
  </script>
714
  <p><strong><?php _e( 'Congratulations! Pro license is activated successfully.', 'bestwebsoft' ); ?></strong></p>
715
+ <p><?php printf( __( 'You will be automatically redirected to the %s in %s seconds.', 'bestwebsoft' ), '<a href="' . $this->pro_page . '">' . __( 'Settings page', 'bestwebsoft' ) . '</a>', '<span id="bws_timeout_counter">7</span>' ); ?></p>
716
  <?php } else {
717
  $attr = '';
718
  if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $this->bws_license_plugin ]['count'] ) &&
797
  $to_send["plugins"][ $this->plugin_basename ]["bws_license_key"] = $bws_license_key;
798
  $to_send["plugins"][ $this->plugin_basename ]["bws_illegal_client"] = true;
799
  $options = array(
800
+ 'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 3 ),
801
+ 'body' => array( 'plugins' => serialize( $to_send ) ),
802
+ 'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' )
803
+ );
804
  $raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/paid-products/plugins/update-check/1.0/', $options );
805
 
806
  if ( is_wp_error( $raw_response ) || 200 != wp_remote_retrieve_response_code( $raw_response ) ) {
895
 
896
  if ( ! array_key_exists( $bws_license_plugin, $this->all_plugins ) ) {
897
  $current = get_site_transient( 'update_plugins' );
898
+ if ( ! empty( $current ) && is_array( $current->response ) ) {
899
  $to_send = array();
900
  $to_send["plugins"][ $bws_license_plugin ] = array();
901
  $to_send["plugins"][ $bws_license_plugin ]["bws_license_key"] = $bws_license_key;
bws_menu/css/general_style.css CHANGED
@@ -647,11 +647,18 @@ span.bws_code {
647
  content: "\f317";
648
  }
649
  #bws_settings_tabs li.bws-tab-errors a:before {
650
- content: "\f534";
 
 
 
651
  }
652
  #bws_settings_tabs li.bws-tab-notifications a:before {
653
  content: "\f466";
654
  }
 
 
 
 
655
  #bws_settings_tabs li:last-child a {
656
  border-bottom: none;
657
  }
@@ -679,6 +686,12 @@ span.bws_code {
679
  margin-right: 10px;
680
  width: calc( 100% - 20px );
681
  }
 
 
 
 
 
 
682
  .bws_form .postbox .hndle {
683
  cursor: inherit;
684
  }
@@ -768,6 +781,9 @@ span.bws_code {
768
  .bws_form #postbox-container-2 .postbox {
769
  margin-bottom: 20px;
770
  }
 
 
 
771
  }
772
  @media screen and (max-width: 782px) {
773
  .bws-hide-for-mobile {
@@ -778,10 +794,10 @@ span.bws_code {
778
  #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=file] {
779
  width: 182px;
780
  }
781
- #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=text],
782
  #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=password],
783
  #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=search],
784
- #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=number],
785
  #bws_settings_tabs_wrapper .bws_tab .form-table td select,
786
  #bws_settings_tabs_wrapper .bws_tab .form-table td textarea {
787
  width: 100%;
647
  content: "\f317";
648
  }
649
  #bws_settings_tabs li.bws-tab-errors a:before {
650
+ font-family: 'bwsicons';
651
+ content: "\e93d";
652
+ font-size: 18px;
653
+ left: 21px;
654
  }
655
  #bws_settings_tabs li.bws-tab-notifications a:before {
656
  content: "\f466";
657
  }
658
+ #bws_settings_tabs li.bws-tab-output a:before {
659
+ content: "\f498";
660
+ }
661
+
662
  #bws_settings_tabs li:last-child a {
663
  border-bottom: none;
664
  }
686
  margin-right: 10px;
687
  width: calc( 100% - 20px );
688
  }
689
+ #bws_settings_tabs_wrapper .bws_tab button,
690
+ #bws_settings_tabs_wrapper .bws_tab input[type="submit"],
691
+ #bws_settings_tabs_wrapper .bws_tab input[type="button"] {
692
+ white-space: normal;
693
+ height: auto;
694
+ }
695
  .bws_form .postbox .hndle {
696
  cursor: inherit;
697
  }
781
  .bws_form #postbox-container-2 .postbox {
782
  margin-bottom: 20px;
783
  }
784
+ .bws_form .postbox-container div.submit {
785
+ display: none;
786
+ }
787
  }
788
  @media screen and (max-width: 782px) {
789
  .bws-hide-for-mobile {
794
  #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=file] {
795
  width: 182px;
796
  }
797
+ #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=text]:not(.small-text),
798
  #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=password],
799
  #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=search],
800
+ #bws_settings_tabs_wrapper .bws_tab .form-table td input[type=number]:not(.small-text),
801
  #bws_settings_tabs_wrapper .bws_tab .form-table td select,
802
  #bws_settings_tabs_wrapper .bws_tab .form-table td textarea {
803
  width: 100%;
bws_menu/fonts/bwsicons.eot CHANGED
Binary file
bws_menu/fonts/bwsicons.svg CHANGED
@@ -60,7 +60,7 @@
60
  <glyph unicode="&#xe932;" glyph-name="updater" d="M576 128h-384c-35.328 0-64 28.672-64 64v320h-96c-12.416 0-23.744 7.232-28.992 18.432-2.048 4.352-3.008 8.96-3.008 13.568 0 7.36 2.56 14.656 7.424 20.48l163.84 182.656c6.080 7.296 15.104 11.52 24.576 11.52s18.496-4.224 24.576-11.52l156.16-182.656c4.864-5.888 7.424-13.12 7.424-20.48 0-4.608-0.96-9.216-3.008-13.568-5.312-11.2-16.576-18.432-28.992-18.432h-96v-256h320v-128zM448 768h384c35.328 0 64-28.672 64-64v-320h96c12.416 0 23.744-7.232 28.992-18.432 2.048-4.352 3.008-8.96 3.008-13.568 0-7.36-2.56-14.656-7.424-20.48l-163.84-182.656c-6.080-7.296-15.104-11.52-24.576-11.52s-18.496 4.224-24.576 11.52l-156.16 182.656c-4.864 5.888-7.424 13.12-7.424 20.48 0 4.608 0.96 9.216 3.008 13.568 5.312 11.2 16.576 18.432 28.992 18.432h96v256h-320v128z" />
61
  <glyph unicode="&#xe933;" glyph-name="user-role" d="M563.264 522.88c25.472-7.552 34.048 30.656 35.456 55.040 1.472 23.488 4.352 96.96-26.752 90.432 6.336 49.088 11.328 93.376 9.088 116.864-7.744 82.432-52.544 168.448-192.576 174.784-119.040-6.336-190.976-92.416-198.784-174.848-2.24-23.424 2.304-67.776 8.64-116.928-31.104 6.656-23.040-66.944-21.632-90.432 1.472-24.448 9.92-62.72 35.392-55.168 12.672-100.352 65.6-132.352 65.6-132.352l-0.576-106.624c0 0-38.4-16.192-147.264-62.4-63.168-27.008-110.976-93.056-129.856-96.256 123.584-139.904 292.736-141.76 387.648-164.864 48.64 11.84 116.864 18.304 188.352 40.448-25.728 42.88-40.896 93.12-40.896 147.136 0 40.448 8.448 78.912 23.552 113.664-36.928 16.96-46.528 23.36-46.528 23.36l0.192 106.112c0-0.064 38.272 31.68 50.944 132.032zM1024 129.856v60.416l-53.632 18.944c-3.712 12.864-8.832 25.088-15.104 36.544l24.448 51.392-42.624 42.624-51.392-24.448c-11.392 6.336-23.68 11.456-36.48 15.168l-19.072 53.504h-60.288l-19.072-53.504c-12.8-3.712-25.024-8.832-36.544-15.168l-51.328 24.448-42.624-42.624 24.448-51.392c-6.336-11.456-11.456-23.68-15.168-36.544l-53.568-18.944v-60.416l53.568-19.072c3.712-12.8 8.832-25.024 15.168-36.48l-24.448-51.328 42.624-42.688 51.328 24.448c11.456-6.4 23.744-11.456 36.544-15.104l19.072-53.632h60.288l19.008 53.568c12.8 3.648 25.024 8.768 36.48 15.104l51.392-24.448 42.624 42.688-24.448 51.328c6.336 11.456 11.456 23.744 15.104 36.48l53.696 19.136zM800 77.76c-45.376 0-82.24 36.864-82.24 82.176 0 45.44 36.864 82.24 82.24 82.24 45.312 0 82.112-36.8 82.112-82.24 0-45.312-36.8-82.176-82.112-82.176z" />
62
  <glyph unicode="&#xe934;" glyph-name="visitors-online" d="M153.856 272.832c2.176 1.984 4.48 4.16 7.040 6.464 22.912 20.992 57.536 52.736 102.080 71.36 32.448 13.568 56.192 24.32 72.896 32.384v12.736c-15.168 18.752-31.104 46.272-41.472 85.376-23.36 22.144-34.752 53.504-41.024 70.848l-2.688 7.168c-15.040 38.016-21.12 93.12 7.104 133.568 0.832 1.216 1.728 2.368 2.56 3.52-0.768 29.888 1.408 52.096 2.304 61.376 3.84 39.68 21.312 80.768 49.856 116.416-16.128 6.784-33.536 12.032-53.504 13.056-79.36-4.096-130.944-60.544-136.128-114.496-1.472-15.36 1.536-44.416 5.76-76.608-20.672 4.352-40.448-1.472-23.232-56.256 4.864-15.296 19.008-44.032 36.032-39.104 8.448-65.728 35.584-86.72 35.584-86.72l-0.64-69.824c0 0-17.216-10.56-89.728-40.896-42.176-17.664-74.112-60.864-86.656-63.040 34.304-38.144 73.792-59.904 112.768-74.176l41.088 6.848zM972.8 196.032c0-49.025-40.459-88.768-90.368-88.768s-90.368 39.743-90.368 88.768c0 49.025 40.459 88.768 90.368 88.768s90.368-39.743 90.368-88.768zM738.176 277.44c-2.432 1.152-4.672 2.624-7.168 3.648-92.16 38.464-119.616 56.96-119.616 56.96v88.704c0 0 39.232 21.632 49.984 105.152 1.472-0.448 2.944-0.64 4.352-0.64 18.944 0 30.336 37.12 35.968 55.296 10.176 32.896 8.576 71.488-13.504 71.488-1.408 0-2.944-0.192-4.544-0.512 5.376 40.896 3.136 73.344 1.216 92.8-6.592 68.608-72.064 140.416-172.864 145.664-100.8-5.248-166.272-76.864-172.864-145.472-1.92-19.52-4.16-52.16 1.216-93.056-1.664 0.32-3.2 0.512-4.672 0.512-22.336 0-26.752-37.76-13.376-71.488 6.976-17.664 17.216-55.104 36.032-55.104 1.408 0 2.816 0.192 4.352 0.64 10.752-83.52 49.984-105.344 49.984-105.344v-88.768c0 0-27.456-18.24-119.616-56.768-53.568-22.4-94.080-77.376-110.016-80.064 104.704-116.416 247.936-117.952 328.32-137.152l0.64 0.064c55.168 13.184 140.288 18.56 222.080 57.984-11.648 22.336-18.816 47.296-18.816 74.048 0 29.76 8.768 57.28 22.912 81.408zM790.592 335.616l2.368-1.408c25.92 16.256 56.512 25.984 89.472 25.984 44.352 0 84.48-17.344 114.432-45.12 9.216 7.68 18.496 15.36 27.136 24.96-12.544 2.112-44.48 45.376-86.592 63.040-72.576 30.272-89.728 40.896-89.728 40.896l-0.704 69.888c0 0 27.136 20.992 35.648 86.72 17.024-4.928 30.976 24 35.968 39.232 17.216 52.8-2.496 60.48-23.296 56.128 4.224 32.192 7.296 61.248 5.76 76.544-5.184 54.016-56.704 110.528-136.064 114.688-19.968-1.024-37.44-6.272-53.632-13.056 28.544-35.712 46.080-76.736 49.92-116.416 0.96-9.472 3.136-32 2.304-62.336 32.96-45.056 19.136-106.304 11.52-130.944-5.888-18.944-17.92-57.984-45.696-83.712-10.304-38.848-26.176-66.24-41.28-84.992v-12.736c16.704-8.064 40.32-18.88 72.704-32.384 9.92-4.096 19.648-9.024 29.76-14.976z" />
63
- <glyph unicode="&#xe935;" glyph-name="zendesk-help-center" d="M864 385.088c-88.384 0-160-71.616-160-160s71.616-160 160-160 160 71.68 160 160c0 88.384-71.616 160-160 160zM864 128.768l-96 96h64v96h64v-96h64l-96-96zM896 583.040c-35.392 47.232-87.488 81.088-145.408 95.872-2.944 0.768-5.76 2.048-8.768 2.752l-0.064-0.384-0.128-1.984c-7.424-50.304-28.928-95.104-59.072-128.384 1.6-8.896 2.688-18.56 2.688-28.672-0.064-58.816-30.080-110.080-67.52-151.296 10.688-1.344 21.504-2.112 32.256-2.112 53.376 0 107.2 17.408 152.704 53.248 52.48 41.856 84.16 100.864 93.312 160.96zM0 578.112c9.728-60.48 41.28-117.376 92.16-157.632 37.184 50.496 89.28 83.2 143.168 93.76 0 2.56-0.128 5.376-0.128 8.128-0.128 68.416 41.92 110.912 89.984 123.328-37.248 22.016-80 34.304-124.8 34.304-14.4 0-29.056-1.28-43.52-3.904-65.92-11.968-121.024-49.152-156.864-97.984zM533.696 645.888c10.112 2.624 20.352 3.84 30.4 3.84 0.768 0 1.6 0 2.624 0 38.656-0.768 77.632-20.224 99.904-56.832 22.4 37.888 35.456 82.112 35.456 129.472 0 67.776-26.368 129.216-67.52 173.696-1.28 0-2.432 0-3.584 0-59.2-0.064-110.976-21.44-158.016-64.448 44.928-48.384 61.056-109.76 61.056-171.136 0-4.864-0.192-9.856-0.32-14.592zM365.184 649.28c37.12-2.688 75.008-22.592 94.976-62.144 10.688 21.248 26.624 36.8 43.456 44.736 0 2.816 0.128 5.76 0.128 8.64 0 69.312-28.352 138.496-83.392 187.84-47.296 42.56-106.112 63.168-164.608 63.168-3.712 0-7.232 0-8.576 0.768-40.384-44.992-64.64-104.448-64.64-169.152 0-0.896 0-1.728-0.32-2.24 2.752 0 5.632 0.064 8.512 0.064 68.032 0 130.304-27.456 174.464-71.68zM107.072 363.136c-19.776-37.568-29.12-77.696-29.12-117.376 0-23.744 3.264-47.168 8.384-68.032 36.096-20.032 76.864-30.848 119.040-30.848 19.904 0 40.128 2.432 60.48 7.488-6.272 22.784-9.28 45.632-9.28 68.16 0 53.696 16.832 105.28 46.656 148.096-28.672 31.36-53.056 68.544-63.168 110.656-55.232-20.736-103.36-61.312-132.992-118.144zM646.4 153.728c-2.816 14.144-4.352 28.8-4.352 43.776 0 50.24 8 100.288 26.56 133.184-27.392 0-54.656 4.608-77.568 13.888-41.984-38.336-87.104-65.152-109.824-77.632 32.896-52.864 85.248-93.568 149.888-109.888 5.12-1.28 10.176-2.368 15.296-3.328zM451.072 0c55.616 24.384 102.656 69.056 128.704 129.024-63.424 26.688-110.272 76.672-134.016 134.336-20.288 10.624-72.64 40.32-120.32 84.736-17.984-35.456-27.584-74.944-27.584-115.2 0-34.176 6.656-68.864 21.632-102.080 27.264-62.080 76.352-107.2 131.584-130.816z" />
64
  <glyph unicode="&#xe936;" glyph-name="opening" d="M896 531.2c-32-19.2-128-57.6-217.6-83.2 89.6-25.6 185.6-64 217.6-83.2 64-32 83.2-108.8 44.8-172.8s-108.8-83.2-172.8-44.8c-32 19.2-115.2 83.2-179.2 153.6 25.6-89.6 38.4-198.4 38.4-236.8 0-70.4-57.6-128-121.6-128s-121.6 57.6-121.6 128c0 38.4 12.8 147.2 38.4 236.8-64-70.4-147.2-134.4-179.2-153.6-51.2-38.4-128-19.2-160 44.8s-19.2 140.8 44.8 172.8c32 19.2 128 57.6 217.6 83.2-89.6 25.6-185.6 64-217.6 83.2-64 32-83.2 108.8-44.8 172.8 32 64 108.8 83.2 166.4 44.8 32-19.2 115.2-83.2 179.2-153.6-25.6 89.6-38.4 198.4-38.4 236.8 0 70.4 57.6 128 121.6 128s121.6-57.6 121.6-128c0-38.4-12.8-147.2-38.4-236.8 64 70.4 147.2 134.4 179.2 153.6 57.6 38.4 134.4 19.2 166.4-44.8 38.4-64 19.2-140.8-44.8-172.8z" />
65
  <glyph unicode="&#xe937;" glyph-name="real-estate" d="M518.4 486.4h-83.2v-140.8h83.2c51.2 0 76.8 25.6 76.8 70.4s-25.6 70.4-76.8 70.4zM512 896l-256-256v192h-128v-320l-128-128h64v-384h896v384h64l-512 512zM588.8 128l-64 128h-89.6v-128h-115.2v448h198.4c121.6 0 185.6-57.6 185.6-153.6 0-70.4-25.6-115.2-83.2-140.8l96-147.2h-128v-6.4z" />
66
  <glyph unicode="&#xe938;" glyph-name="renty" d="M1024 524.8c-6.4 0 0 12.8 0 25.6s-6.4 19.2-19.2 19.2-76.8 19.2-83.2 25.6c-6.4 0-64 38.4-115.2 76.8-25.6 19.2-57.6 19.2-83.2 19.2-25.6 6.4-83.2 12.8-166.4 12.8s-128-6.4-134.4-12.8c-19.2-6.4-70.4-89.6-102.4-96-51.2-12.8-307.2-44.8-307.2-44.8-12.8-12.8-12.8-64-12.8-76.8s0-38.4 6.4-44.8c12.8-6.4 19.2-12.8 19.2-12.8 6.4 0 38.4-12.8 76.8-19.2 6.4-51.2 38.4-83.2 70.4-83.2 25.6 0 51.2 19.2 64 51.2h6.4c6.4 0 12.8 12.8 12.8 0 0-6.4 25.6-6.4 32-6.4s32 0 44.8 0 38.4 6.4 44.8 12.8c6.4 0 12.8 25.6 19.2 38.4 6.4 6.4 25.6 38.4 32 44.8 19.2 12.8 32 12.8 38.4 6.4 6.4 0 38.4-12.8 44.8-57.6 0-32 6.4-57.6 6.4-57.6s115.2 19.2 192 32 102.4 12.8 102.4 12.8 0 0 0 6.4c6.4 6.4 25.6 32 32 57.6 12.8 32 6.4 19.2 12.8 32s6.4 12.8 12.8 12.8c6.4 6.4 25.6 0 38.4-25.6 6.4-12.8 12.8-44.8 19.2-38.4 6.4 0 64 32 70.4 44.8s6.4 0 12.8 12.8c6.4 12.8 12.8 32 12.8 32zM576 569.6l-230.4 32c0 0 76.8 83.2 83.2 83.2s185.6-6.4 185.6-12.8-19.2-51.2-25.6-70.4c-12.8-19.2-12.8-32-12.8-32zM819.2 595.2c0 0-12.8 0-19.2-6.4-6.4 0-44.8-6.4-51.2-12.8-12.8 0-44.8 0-51.2 0s-57.6-6.4-57.6-6.4h-57.6l38.4 102.4h108.8c0 0 6.4-6.4 19.2-12.8 12.8-12.8 57.6-38.4 70.4-44.8 12.8-12.8 0-19.2 0-19.2zM19.2 531.2l262.4-44.8v-64c0 0-262.4 51.2-262.4 57.6s0 51.2 0 51.2zM140.8 473.6c0-12.8-19.2-19.2-38.4-12.8l-44.8 6.4c-19.2 6.4-38.4 19.2-32 32 0 12.8 12.8 19.2 38.4 12.8l44.8-6.4c19.2-6.4 38.4-19.2 32-32zM281.6 448c0-12.8-19.2-25.6-38.4-19.2l-57.6 12.8c-19.2 6.4-32 19.2-32 32s19.2 19.2 38.4 19.2l51.2-6.4c19.2-6.4 38.4-19.2 38.4-38.4zM435.2 467.2c-38.4 0-76.8-44.8-76.8-102.4s32-102.4 76.8-102.4c44.8-6.4 76.8 38.4 76.8 96s-32 108.8-76.8 108.8zM454.4 300.8c-19.2 0-32 25.6-32 64 0 32 12.8 57.6 32 57.6s32-25.6 32-57.6c6.4-38.4-12.8-64-32-64zM857.6 492.8c-32 0-64-32-64-76.8s25.6-76.8 64-76.8c32 0 64 32 64 76.8-6.4 44.8-32 76.8-64 76.8zM883.2 364.8c-12.8 0-25.6 25.6-25.6 51.2s12.8 51.2 25.6 51.2 25.6-25.6 25.6-51.2c0-25.6-12.8-51.2-25.6-51.2z" />
@@ -68,4 +68,5 @@
68
  <glyph unicode="&#xe93a;" glyph-name="editor-code" d="M447.552 730.88l-93.312 101.12-354.24-384 354.24-384 93.312 101.12-260.992 282.88zM576.448 165.12l93.312-101.12 354.24 384-354.24 384-93.312-101.12 260.992-282.88z" />
69
  <glyph unicode="&#xe93b;" glyph-name="shortcode" d="M0 896v-896h384v192h-192v512h192v192h-192zM832 896h-192v-192h192v-512h-192v-192h384v896z" />
70
  <glyph unicode="&#xe93c;" glyph-name="bws-logo" d="M953.913 325.746c-21.447-38.855-46.592-77.198-75.435-114.233-68.551-100.466-192.91-193.365-254.919-225.052-38.457-19.684-89.088-34.702-126.805-44.316 204.459-39.538 403.285 114.46 466.034 352.37 6.997 26.852 12.004 53.134 15.417 78.734-7.566-15.872-15.588-31.744-24.292-47.502zM327.964 88.519c-70.087 61.952-114.176 154.169-114.176 264.533 0 207.076 154.852 374.898 345.884 374.898 117.931 0 222.151-64.114 284.501-161.906 1.479 4.494 3.129 9.045 4.437 13.54 17.010 57.799 23.438 113.38 18.887 162.816-35.442 34.93-77.995 62.976-126.862 82.716-207.588 83.854-477.753-63.431-543.346-312.946-40.789-154.51-9.899-309.931 70.485-420.58 19.058-3.527 39.14-4.494 60.188-3.072zM934.059 893.611c-119.694 109.682-325.632 79.019-507.79-59.392 44.658 22.357 92.16 36.807 139.89 42.098 103.31 41.529 200.932 38.343 264.704-19.342 70.656-63.886 83.797-180.167 46.364-307.314-25.145-85.618-73.159-176.185-141.995-258.958-154.567-185.742-454.428-341.902-620.203-137.671 13.596-54.67 39.481-102.059 78.62-137.842 96.313-88.178 248.377-85.618 398.962-9.33 85.504 43.349 170.61 110.364 244.565 198.201 38.286 45.397 70.884 93.127 97.564 141.54 116.224 210.603 121.97 435.655-0.683 548.011zM791.211 595.854c-4.38 5.86-23.666 26.226-28.956 30.436-56.092 45.056-124.985 71.68-199.68 71.68-46.99 0-91.648-10.468-132.38-29.468 15.246-6.656 30.322-14.165 45.284-22.756 155.989-89.088 240.64-247.808 205.824-372.224 2.788 3.3 5.518 6.599 8.021 9.785 54.784 71.054 114.859 157.298 144.953 243.712-12.174 23.78-26.453 46.82-43.065 68.836zM24.007 593.977c-71.794-176.469 23.154-384.683 207.303-496.299-24.86 33.451-41.7 72.42-56.149 121.344-137.444 102.741-194.446 258.162-134.087 372.907 39.708 75.662 123.79 115.029 221.355 114.404 33.166 41.017 72.704 74.524 115.996 99.214-158.549 1.877-299.065-75.264-354.418-211.57zM263.794 453.632c0.569 10.524 1.593 20.935 3.015 31.118-12.857-32.768-20.821-68.608-22.642-106.268-5.86-116.224 46.99-220.615 130.219-278.983 38.059 4.38 74.638 16.213 108.601 34.418-132.096 32.939-226.93 166.059-219.193 319.716z" />
 
71
  </font></defs></svg>
60
  <glyph unicode="&#xe932;" glyph-name="updater" d="M576 128h-384c-35.328 0-64 28.672-64 64v320h-96c-12.416 0-23.744 7.232-28.992 18.432-2.048 4.352-3.008 8.96-3.008 13.568 0 7.36 2.56 14.656 7.424 20.48l163.84 182.656c6.080 7.296 15.104 11.52 24.576 11.52s18.496-4.224 24.576-11.52l156.16-182.656c4.864-5.888 7.424-13.12 7.424-20.48 0-4.608-0.96-9.216-3.008-13.568-5.312-11.2-16.576-18.432-28.992-18.432h-96v-256h320v-128zM448 768h384c35.328 0 64-28.672 64-64v-320h96c12.416 0 23.744-7.232 28.992-18.432 2.048-4.352 3.008-8.96 3.008-13.568 0-7.36-2.56-14.656-7.424-20.48l-163.84-182.656c-6.080-7.296-15.104-11.52-24.576-11.52s-18.496 4.224-24.576 11.52l-156.16 182.656c-4.864 5.888-7.424 13.12-7.424 20.48 0 4.608 0.96 9.216 3.008 13.568 5.312 11.2 16.576 18.432 28.992 18.432h96v256h-320v128z" />
61
  <glyph unicode="&#xe933;" glyph-name="user-role" d="M563.264 522.88c25.472-7.552 34.048 30.656 35.456 55.040 1.472 23.488 4.352 96.96-26.752 90.432 6.336 49.088 11.328 93.376 9.088 116.864-7.744 82.432-52.544 168.448-192.576 174.784-119.040-6.336-190.976-92.416-198.784-174.848-2.24-23.424 2.304-67.776 8.64-116.928-31.104 6.656-23.040-66.944-21.632-90.432 1.472-24.448 9.92-62.72 35.392-55.168 12.672-100.352 65.6-132.352 65.6-132.352l-0.576-106.624c0 0-38.4-16.192-147.264-62.4-63.168-27.008-110.976-93.056-129.856-96.256 123.584-139.904 292.736-141.76 387.648-164.864 48.64 11.84 116.864 18.304 188.352 40.448-25.728 42.88-40.896 93.12-40.896 147.136 0 40.448 8.448 78.912 23.552 113.664-36.928 16.96-46.528 23.36-46.528 23.36l0.192 106.112c0-0.064 38.272 31.68 50.944 132.032zM1024 129.856v60.416l-53.632 18.944c-3.712 12.864-8.832 25.088-15.104 36.544l24.448 51.392-42.624 42.624-51.392-24.448c-11.392 6.336-23.68 11.456-36.48 15.168l-19.072 53.504h-60.288l-19.072-53.504c-12.8-3.712-25.024-8.832-36.544-15.168l-51.328 24.448-42.624-42.624 24.448-51.392c-6.336-11.456-11.456-23.68-15.168-36.544l-53.568-18.944v-60.416l53.568-19.072c3.712-12.8 8.832-25.024 15.168-36.48l-24.448-51.328 42.624-42.688 51.328 24.448c11.456-6.4 23.744-11.456 36.544-15.104l19.072-53.632h60.288l19.008 53.568c12.8 3.648 25.024 8.768 36.48 15.104l51.392-24.448 42.624 42.688-24.448 51.328c6.336 11.456 11.456 23.744 15.104 36.48l53.696 19.136zM800 77.76c-45.376 0-82.24 36.864-82.24 82.176 0 45.44 36.864 82.24 82.24 82.24 45.312 0 82.112-36.8 82.112-82.24 0-45.312-36.8-82.176-82.112-82.176z" />
62
  <glyph unicode="&#xe934;" glyph-name="visitors-online" d="M153.856 272.832c2.176 1.984 4.48 4.16 7.040 6.464 22.912 20.992 57.536 52.736 102.080 71.36 32.448 13.568 56.192 24.32 72.896 32.384v12.736c-15.168 18.752-31.104 46.272-41.472 85.376-23.36 22.144-34.752 53.504-41.024 70.848l-2.688 7.168c-15.040 38.016-21.12 93.12 7.104 133.568 0.832 1.216 1.728 2.368 2.56 3.52-0.768 29.888 1.408 52.096 2.304 61.376 3.84 39.68 21.312 80.768 49.856 116.416-16.128 6.784-33.536 12.032-53.504 13.056-79.36-4.096-130.944-60.544-136.128-114.496-1.472-15.36 1.536-44.416 5.76-76.608-20.672 4.352-40.448-1.472-23.232-56.256 4.864-15.296 19.008-44.032 36.032-39.104 8.448-65.728 35.584-86.72 35.584-86.72l-0.64-69.824c0 0-17.216-10.56-89.728-40.896-42.176-17.664-74.112-60.864-86.656-63.040 34.304-38.144 73.792-59.904 112.768-74.176l41.088 6.848zM972.8 196.032c0-49.025-40.459-88.768-90.368-88.768s-90.368 39.743-90.368 88.768c0 49.025 40.459 88.768 90.368 88.768s90.368-39.743 90.368-88.768zM738.176 277.44c-2.432 1.152-4.672 2.624-7.168 3.648-92.16 38.464-119.616 56.96-119.616 56.96v88.704c0 0 39.232 21.632 49.984 105.152 1.472-0.448 2.944-0.64 4.352-0.64 18.944 0 30.336 37.12 35.968 55.296 10.176 32.896 8.576 71.488-13.504 71.488-1.408 0-2.944-0.192-4.544-0.512 5.376 40.896 3.136 73.344 1.216 92.8-6.592 68.608-72.064 140.416-172.864 145.664-100.8-5.248-166.272-76.864-172.864-145.472-1.92-19.52-4.16-52.16 1.216-93.056-1.664 0.32-3.2 0.512-4.672 0.512-22.336 0-26.752-37.76-13.376-71.488 6.976-17.664 17.216-55.104 36.032-55.104 1.408 0 2.816 0.192 4.352 0.64 10.752-83.52 49.984-105.344 49.984-105.344v-88.768c0 0-27.456-18.24-119.616-56.768-53.568-22.4-94.080-77.376-110.016-80.064 104.704-116.416 247.936-117.952 328.32-137.152l0.64 0.064c55.168 13.184 140.288 18.56 222.080 57.984-11.648 22.336-18.816 47.296-18.816 74.048 0 29.76 8.768 57.28 22.912 81.408zM790.592 335.616l2.368-1.408c25.92 16.256 56.512 25.984 89.472 25.984 44.352 0 84.48-17.344 114.432-45.12 9.216 7.68 18.496 15.36 27.136 24.96-12.544 2.112-44.48 45.376-86.592 63.040-72.576 30.272-89.728 40.896-89.728 40.896l-0.704 69.888c0 0 27.136 20.992 35.648 86.72 17.024-4.928 30.976 24 35.968 39.232 17.216 52.8-2.496 60.48-23.296 56.128 4.224 32.192 7.296 61.248 5.76 76.544-5.184 54.016-56.704 110.528-136.064 114.688-19.968-1.024-37.44-6.272-53.632-13.056 28.544-35.712 46.080-76.736 49.92-116.416 0.96-9.472 3.136-32 2.304-62.336 32.96-45.056 19.136-106.304 11.52-130.944-5.888-18.944-17.92-57.984-45.696-83.712-10.304-38.848-26.176-66.24-41.28-84.992v-12.736c16.704-8.064 40.32-18.88 72.704-32.384 9.92-4.096 19.648-9.024 29.76-14.976z" />
63
+ <glyph unicode="&#xe935;" glyph-name="zendesk-help-center" d="M384 768c0-105.6-85.952-191.232-192-191.232s-192 85.632-192 191.232h384zM384 576v-448h-384zM448 320v448h384zM853.632 64.32c3.456-0.192 6.912-0.32 10.368-0.32 91.84 0 165.568 77.376 159.68 170.432-5.056 79.616-69.696 144.192-149.312 149.248-3.456 0.192-6.912 0.32-10.368 0.32-91.84 0-165.632-77.376-159.68-170.432 5.056-79.616 69.696-144.256 149.312-149.248zM832 256v64h64v-64h89.6l-121.6-140.8-115.2 140.8h83.2zM640.768 320c-106.432 0-192.768-85.952-192.768-192h192.64c-37.568 93.76 0.128 192 0.128 192z" />
64
  <glyph unicode="&#xe936;" glyph-name="opening" d="M896 531.2c-32-19.2-128-57.6-217.6-83.2 89.6-25.6 185.6-64 217.6-83.2 64-32 83.2-108.8 44.8-172.8s-108.8-83.2-172.8-44.8c-32 19.2-115.2 83.2-179.2 153.6 25.6-89.6 38.4-198.4 38.4-236.8 0-70.4-57.6-128-121.6-128s-121.6 57.6-121.6 128c0 38.4 12.8 147.2 38.4 236.8-64-70.4-147.2-134.4-179.2-153.6-51.2-38.4-128-19.2-160 44.8s-19.2 140.8 44.8 172.8c32 19.2 128 57.6 217.6 83.2-89.6 25.6-185.6 64-217.6 83.2-64 32-83.2 108.8-44.8 172.8 32 64 108.8 83.2 166.4 44.8 32-19.2 115.2-83.2 179.2-153.6-25.6 89.6-38.4 198.4-38.4 236.8 0 70.4 57.6 128 121.6 128s121.6-57.6 121.6-128c0-38.4-12.8-147.2-38.4-236.8 64 70.4 147.2 134.4 179.2 153.6 57.6 38.4 134.4 19.2 166.4-44.8 38.4-64 19.2-140.8-44.8-172.8z" />
65
  <glyph unicode="&#xe937;" glyph-name="real-estate" d="M518.4 486.4h-83.2v-140.8h83.2c51.2 0 76.8 25.6 76.8 70.4s-25.6 70.4-76.8 70.4zM512 896l-256-256v192h-128v-320l-128-128h64v-384h896v384h64l-512 512zM588.8 128l-64 128h-89.6v-128h-115.2v448h198.4c121.6 0 185.6-57.6 185.6-153.6 0-70.4-25.6-115.2-83.2-140.8l96-147.2h-128v-6.4z" />
66
  <glyph unicode="&#xe938;" glyph-name="renty" d="M1024 524.8c-6.4 0 0 12.8 0 25.6s-6.4 19.2-19.2 19.2-76.8 19.2-83.2 25.6c-6.4 0-64 38.4-115.2 76.8-25.6 19.2-57.6 19.2-83.2 19.2-25.6 6.4-83.2 12.8-166.4 12.8s-128-6.4-134.4-12.8c-19.2-6.4-70.4-89.6-102.4-96-51.2-12.8-307.2-44.8-307.2-44.8-12.8-12.8-12.8-64-12.8-76.8s0-38.4 6.4-44.8c12.8-6.4 19.2-12.8 19.2-12.8 6.4 0 38.4-12.8 76.8-19.2 6.4-51.2 38.4-83.2 70.4-83.2 25.6 0 51.2 19.2 64 51.2h6.4c6.4 0 12.8 12.8 12.8 0 0-6.4 25.6-6.4 32-6.4s32 0 44.8 0 38.4 6.4 44.8 12.8c6.4 0 12.8 25.6 19.2 38.4 6.4 6.4 25.6 38.4 32 44.8 19.2 12.8 32 12.8 38.4 6.4 6.4 0 38.4-12.8 44.8-57.6 0-32 6.4-57.6 6.4-57.6s115.2 19.2 192 32 102.4 12.8 102.4 12.8 0 0 0 6.4c6.4 6.4 25.6 32 32 57.6 12.8 32 6.4 19.2 12.8 32s6.4 12.8 12.8 12.8c6.4 6.4 25.6 0 38.4-25.6 6.4-12.8 12.8-44.8 19.2-38.4 6.4 0 64 32 70.4 44.8s6.4 0 12.8 12.8c6.4 12.8 12.8 32 12.8 32zM576 569.6l-230.4 32c0 0 76.8 83.2 83.2 83.2s185.6-6.4 185.6-12.8-19.2-51.2-25.6-70.4c-12.8-19.2-12.8-32-12.8-32zM819.2 595.2c0 0-12.8 0-19.2-6.4-6.4 0-44.8-6.4-51.2-12.8-12.8 0-44.8 0-51.2 0s-57.6-6.4-57.6-6.4h-57.6l38.4 102.4h108.8c0 0 6.4-6.4 19.2-12.8 12.8-12.8 57.6-38.4 70.4-44.8 12.8-12.8 0-19.2 0-19.2zM19.2 531.2l262.4-44.8v-64c0 0-262.4 51.2-262.4 57.6s0 51.2 0 51.2zM140.8 473.6c0-12.8-19.2-19.2-38.4-12.8l-44.8 6.4c-19.2 6.4-38.4 19.2-32 32 0 12.8 12.8 19.2 38.4 12.8l44.8-6.4c19.2-6.4 38.4-19.2 32-32zM281.6 448c0-12.8-19.2-25.6-38.4-19.2l-57.6 12.8c-19.2 6.4-32 19.2-32 32s19.2 19.2 38.4 19.2l51.2-6.4c19.2-6.4 38.4-19.2 38.4-38.4zM435.2 467.2c-38.4 0-76.8-44.8-76.8-102.4s32-102.4 76.8-102.4c44.8-6.4 76.8 38.4 76.8 96s-32 108.8-76.8 108.8zM454.4 300.8c-19.2 0-32 25.6-32 64 0 32 12.8 57.6 32 57.6s32-25.6 32-57.6c6.4-38.4-12.8-64-32-64zM857.6 492.8c-32 0-64-32-64-76.8s25.6-76.8 64-76.8c32 0 64 32 64 76.8-6.4 44.8-32 76.8-64 76.8zM883.2 364.8c-12.8 0-25.6 25.6-25.6 51.2s12.8 51.2 25.6 51.2 25.6-25.6 25.6-51.2c0-25.6-12.8-51.2-25.6-51.2z" />
68
  <glyph unicode="&#xe93a;" glyph-name="editor-code" d="M447.552 730.88l-93.312 101.12-354.24-384 354.24-384 93.312 101.12-260.992 282.88zM576.448 165.12l93.312-101.12 354.24 384-354.24 384-93.312-101.12 260.992-282.88z" />
69
  <glyph unicode="&#xe93b;" glyph-name="shortcode" d="M0 896v-896h384v192h-192v512h192v192h-192zM832 896h-192v-192h192v-512h-192v-192h384v896z" />
70
  <glyph unicode="&#xe93c;" glyph-name="bws-logo" d="M953.913 325.746c-21.447-38.855-46.592-77.198-75.435-114.233-68.551-100.466-192.91-193.365-254.919-225.052-38.457-19.684-89.088-34.702-126.805-44.316 204.459-39.538 403.285 114.46 466.034 352.37 6.997 26.852 12.004 53.134 15.417 78.734-7.566-15.872-15.588-31.744-24.292-47.502zM327.964 88.519c-70.087 61.952-114.176 154.169-114.176 264.533 0 207.076 154.852 374.898 345.884 374.898 117.931 0 222.151-64.114 284.501-161.906 1.479 4.494 3.129 9.045 4.437 13.54 17.010 57.799 23.438 113.38 18.887 162.816-35.442 34.93-77.995 62.976-126.862 82.716-207.588 83.854-477.753-63.431-543.346-312.946-40.789-154.51-9.899-309.931 70.485-420.58 19.058-3.527 39.14-4.494 60.188-3.072zM934.059 893.611c-119.694 109.682-325.632 79.019-507.79-59.392 44.658 22.357 92.16 36.807 139.89 42.098 103.31 41.529 200.932 38.343 264.704-19.342 70.656-63.886 83.797-180.167 46.364-307.314-25.145-85.618-73.159-176.185-141.995-258.958-154.567-185.742-454.428-341.902-620.203-137.671 13.596-54.67 39.481-102.059 78.62-137.842 96.313-88.178 248.377-85.618 398.962-9.33 85.504 43.349 170.61 110.364 244.565 198.201 38.286 45.397 70.884 93.127 97.564 141.54 116.224 210.603 121.97 435.655-0.683 548.011zM791.211 595.854c-4.38 5.86-23.666 26.226-28.956 30.436-56.092 45.056-124.985 71.68-199.68 71.68-46.99 0-91.648-10.468-132.38-29.468 15.246-6.656 30.322-14.165 45.284-22.756 155.989-89.088 240.64-247.808 205.824-372.224 2.788 3.3 5.518 6.599 8.021 9.785 54.784 71.054 114.859 157.298 144.953 243.712-12.174 23.78-26.453 46.82-43.065 68.836zM24.007 593.977c-71.794-176.469 23.154-384.683 207.303-496.299-24.86 33.451-41.7 72.42-56.149 121.344-137.444 102.741-194.446 258.162-134.087 372.907 39.708 75.662 123.79 115.029 221.355 114.404 33.166 41.017 72.704 74.524 115.996 99.214-158.549 1.877-299.065-75.264-354.418-211.57zM263.794 453.632c0.569 10.524 1.593 20.935 3.015 31.118-12.857-32.768-20.821-68.608-22.642-106.268-5.86-116.224 46.99-220.615 130.219-278.983 38.059 4.38 74.638 16.213 108.601 34.418-132.096 32.939-226.93 166.059-219.193 319.716z" />
71
+ <glyph unicode="&#xe93d;" glyph-name="warning" d="M508.992-64c-287.040 3.136-512.64 235.584-508.928 524.352 3.52 274.112 239.040 502.592 514.944 499.648 287.040-3.136 512.64-235.584 508.928-524.352-3.52-274.112-239.040-502.592-514.944-499.648zM424.128 768c-0.576-5.44 11.84-247.744 17.92-365.76 0.704-14.208 5.952-18.24 5.952-18.24h128c0 0 5.568 6.784 6.4 25.472 3.584 82.752 16.64 321.152 18.304 358.528-60.16 0-117.12 0-176.576 0zM507.136 319.872c-68.288-2.688-108.352-41.088-105.408-101.056 2.816-57.472 46.592-92.544 113.152-90.752 69.952 1.92 107.264 39.168 104.384 104.256-2.496 55.808-46.4 90.112-112.128 87.552z" />
72
  </font></defs></svg>
bws_menu/fonts/bwsicons.ttf CHANGED
Binary file
bws_menu/fonts/bwsicons.woff CHANGED
Binary file
bws_menu/languages/bestwebsoft-cs_CZ.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-cs_CZ.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: bws_menu BWS\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-02-28 17:07+0200\n"
6
- "PO-Revision-Date: 2017-02-28 17:07+0200\n"
7
- "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Mik013\n"
9
  "Language: cs_CZ\n"
10
  "MIME-Version: 1.0\n"
@@ -37,28 +37,26 @@ msgid "Plugins page"
37
  msgstr "Stránka pluginů"
38
 
39
  #: bws_functions.php:91
40
- #, fuzzy
41
  msgid "Like the plugin?"
42
- msgstr "Hodnotit plugin"
43
 
44
  #: bws_functions.php:93
45
  msgid "Rate it"
46
- msgstr ""
47
 
48
  #: bws_functions.php:102
49
  msgid "Need help?"
50
- msgstr "Нужна помощь?"
51
 
52
- #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1036
53
  msgid "Visit Help Center"
54
  msgstr "Navštívit Centrum pomoci"
55
 
56
  #: bws_functions.php:106
57
- #, fuzzy
58
  msgid "Want to support the plugin?"
59
- msgstr "Hodnotit plugin"
60
 
61
- #: bws_functions.php:107 bws_menu.php:551
62
  msgid "Donate"
63
  msgstr "Darovat"
64
 
@@ -75,25 +73,23 @@ msgid ""
75
  msgstr ""
76
  "Pro licenci pluginu můžete používat pouze pro jednu doménu. Prosím "
77
  "zkontrolujte a případně upravte Váš licenční klíč na vaší osobní stránce - "
78
- "Klientská zóně. Důrazně doporučujeme, aby jste tento problém odstranili "
79
  "během 24 hodin, jinak bude Pro plugin deaktivován."
80
 
81
- #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:625
82
- #: class-bws-settings.php:142
83
  msgid "Learn More"
84
  msgstr "Dozvědět se více"
85
 
86
  #: bws_functions.php:144
87
- #, fuzzy
88
  msgid ""
89
  "Notice: Your Pro Trial license has expired. To continue using the plugin, "
90
  "you should buy a Pro license"
91
  msgstr ""
92
- "Poznámka: Vaše zkušební Pro verze pluginu vypršela. Pro další využíváni "
93
- "pluginu bude nutné zakoupit Pro licenci"
94
 
95
  #: bws_functions.php:146
96
- #, fuzzy
97
  msgid ""
98
  "Your license has expired. To continue getting top-priority support and "
99
  "plugin updates, you should extend it."
@@ -127,20 +123,21 @@ msgstr ""
127
  "aktualizujte na nejnovější verzi WordPressu."
128
 
129
  #: bws_functions.php:207
130
- msgid "Thank you for installing"
131
- msgstr "Děkujeme vám za instalaci"
 
132
 
133
  #: bws_functions.php:208
134
  msgid "Let's get started"
135
  msgstr "Začněme"
136
 
137
- #: bws_functions.php:209 bws_functions.php:242 bws_menu.php:555
138
- #: bws_menu.php:557
139
  msgid "Settings"
140
  msgstr "Nastavení"
141
 
142
- #: bws_functions.php:211 bws_menu.php:326 class-bws-settings.php:725
143
- #: class-bws-settings.php:1038 class-bws-settings.php:1048 deprecated.php:694
144
  msgid "or"
145
  msgstr "nebo"
146
 
@@ -167,12 +164,13 @@ msgstr "Méně detailů"
167
 
168
  #: bws_functions.php:262
169
  msgid "Deprecated function(-s) is used on the site here:"
170
- msgstr ""
171
 
172
  #: bws_functions.php:276
173
  msgid ""
174
  "This function(-s) will be removed over time. Please update the product(-s)."
175
  msgstr ""
 
176
 
177
  #: bws_functions.php:335
178
  msgid "It’s time to upgrade your"
@@ -188,18 +186,21 @@ msgstr "verzi!"
188
 
189
  #: bws_functions.php:336
190
  msgid "Extend standard plugin functionality with new great options."
191
- msgstr "Rozšiřuje standardní funkce pluginu novými velkými možnostmi."
192
 
193
  #: bws_functions.php:382
194
- #, fuzzy, php-format
195
  msgid ""
196
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
197
  "SUPPORT or UPDATES."
198
- msgstr "a nebudete mít přístup k TOP-PRIORITNÍ PODPOŘE nebo AKTUALIZACÍM."
 
 
199
 
200
  #: bws_functions.php:477
201
- msgid "Thank you for choosing"
202
- msgstr "Děkujeme, že jste si vybrali"
 
203
 
204
  #: bws_functions.php:478
205
  msgid ""
@@ -213,8 +214,8 @@ msgstr ""
213
  msgid "Suggest a Feature"
214
  msgstr "Navrhnout vlastnost"
215
 
216
- #: bws_functions.php:495 class-bws-settings.php:532 class-bws-settings.php:535
217
- #: class-bws-settings.php:583 class-bws-settings.php:586
218
  msgid "Notice"
219
  msgstr "Poznámka"
220
 
@@ -222,19 +223,18 @@ msgstr "Poznámka"
222
  msgid "The plugin's settings have been changed."
223
  msgstr "Nastavení pluginu bylo změněno."
224
 
225
- #: bws_functions.php:496 class-bws-settings.php:181 class-bws-settings.php:201
226
  #: deprecated.php:640
227
  msgid "Save Changes"
228
  msgstr "Uložit změny"
229
 
230
  #: bws_functions.php:510
231
- #, fuzzy
232
  msgid ""
233
  "You can always look at premium options by checking the \"Pro Options\" in "
234
  "the \"Misc\" tab."
235
  msgstr ""
236
- "Vždy se můžete podívat na možnosti prémiové verze, kliknutím na \"Zobrazit "
237
- "Pro vlastnosti\" na \"Go PRO\" záložce"
238
 
239
  #: bws_functions.php:651
240
  msgid "Add shortcode"
@@ -242,16 +242,16 @@ msgstr "Přidat krátký kód"
242
 
243
  #: bws_functions.php:651
244
  msgid "Add BestWebSoft plugins' shortcodes using this button."
245
- msgstr "Pomocí tohoto tlačítka přidat krátké kódy BestWebSoft pluginu."
 
246
 
247
  #: bws_functions.php:700
248
  msgid "Close"
249
  msgstr "Zavřít"
250
 
251
  #: bws_functions.php:792
252
- #, fuzzy
253
  msgid "Are you sure you want to restore default settings?"
254
- msgstr "Jste si jisti, že chcete obnovit veškerá nastavení na výchozí hodnoty?"
255
 
256
  #: bws_functions.php:795
257
  msgid "Yes, restore all settings"
@@ -294,16 +294,15 @@ msgid "Video Instructions"
294
  msgstr "Video instrukce"
295
 
296
  #: bws_functions.php:930
297
- #, fuzzy
298
  msgid "Submit a Request"
299
  msgstr "Odeslat požadavek"
300
 
301
- #: bws_menu.php:99 class-bws-settings.php:770 deprecated.php:322
302
  msgid "Wrong license key"
303
  msgstr "Špatný licenční klíč"
304
 
305
- #: bws_menu.php:120 class-bws-settings.php:796 class-bws-settings.php:863
306
- #: class-bws-settings.php:899 deprecated.php:133 deprecated.php:199
307
  #: deprecated.php:352
308
  msgid ""
309
  "Something went wrong. Please try again later. If the error appears again, "
@@ -312,66 +311,63 @@ msgstr ""
312
  "Něco se pokazilo. Prosím zkuste to znovu později. Pokud se chyba objeví "
313
  "znovu, obraťte se na nás"
314
 
315
- #: bws_menu.php:120 class-bws-settings.php:796 class-bws-settings.php:863
316
- #: class-bws-settings.php:899 deprecated.php:133 deprecated.php:199
317
  #: deprecated.php:352
318
  msgid "We are sorry for inconvenience."
319
  msgstr "Omlouváme se za nepříjemnosti."
320
 
321
- #: bws_menu.php:126 class-bws-settings.php:802 class-bws-settings.php:905
322
  #: deprecated.php:139 deprecated.php:358
323
  msgid "Wrong license key."
324
  msgstr "Neplatný licenční klíč"
325
 
326
- #: bws_menu.php:128
327
- #, fuzzy
328
  msgid ""
329
  "This license key is bound to another site. Change it via personal Client "
330
  "Area."
331
  msgstr ""
332
- "Tento licenční klíč je přidružen k jiným webovým stránkám. Změňte jej "
333
- "prostřednictvím osobní Klientská zóny."
334
 
335
- #: bws_menu.php:128
336
- #, fuzzy
337
  msgid "Log in"
338
  msgstr "Přihlášení"
339
 
340
- #: bws_menu.php:130 bws_menu.php:332 deprecated.php:261
341
  msgid "Unfortunately, you have exceeded the number of available tries per day."
342
  msgstr "Bohužel, překročili jste dostupný počet pokusů pro daný den."
343
 
344
- #: bws_menu.php:132 class-bws-settings.php:911 deprecated.php:364
345
- #, fuzzy, php-format
346
  msgid ""
347
  "Unfortunately, Your license has expired. To continue getting top-priority "
348
  "support and plugin updates, you should extend it in your %s"
349
  msgstr ""
350
  "Bohužel, Vaše licence vypršela. Chcete-li pokračovat v získávání top-"
351
- "prioritní podpory a aktualizace pluginu měli byste ji prodloužit ve vašem"
352
 
353
- #: bws_menu.php:134 class-bws-settings.php:913 deprecated.php:366
354
  msgid ""
355
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
356
  "Trial license can be installed only once."
357
  msgstr ""
358
- "Bohužel, tato Pro licence již pro tuto doménu byla použita. Zkušební Pro "
359
- "licence může být instalována pouze jedenkrát."
360
 
361
- #: bws_menu.php:140 class-bws-settings.php:817 deprecated.php:153
362
  msgid "The license key is valid."
363
  msgstr "Licenční klíč je platný"
364
 
365
- #: bws_menu.php:142 class-bws-settings.php:820 deprecated.php:156
366
  msgid "Your license will expire on"
367
  msgstr "Vaše licence vyprší"
368
 
369
- #: bws_menu.php:144
370
- #, fuzzy
371
  msgid "Congratulations! Pro Membership license is activated successfully."
372
- msgstr "Gratulujeme! Členská PRO licence byla úspěšně aktivována."
373
 
374
- #: bws_menu.php:151 class-bws-settings.php:985 deprecated.php:435
375
  msgid ""
376
  "Something went wrong. Try again later or upload the plugin manually. We are "
377
  "sorry for inconvenience."
@@ -379,226 +375,218 @@ msgstr ""
379
  "Něco se pokazilo. Zkuste to později, nebo nahrajte plugin ručně. Omlouváme "
380
  "se za nepříjemnosti."
381
 
382
- #: bws_menu.php:161
383
  msgid "Please enter your license key."
384
  msgstr "Prosím vložte váš licenční klíč."
385
 
386
- #: bws_menu.php:172
387
- #, fuzzy
388
  msgid "Not set"
389
  msgstr "Nenastaveno"
390
 
391
- #: bws_menu.php:174
392
  msgid "On"
393
  msgstr "Zapnout"
394
 
395
- #: bws_menu.php:174
396
- #, fuzzy
397
  msgid "Off"
398
  msgstr "Vypnout"
399
 
400
- #: bws_menu.php:175 bws_menu.php:176 bws_menu.php:177 bws_menu.php:178
401
- #: bws_menu.php:179 bws_menu.php:180 bws_menu.php:189
402
  msgid "N/A"
403
  msgstr "N/A"
404
 
405
- #: bws_menu.php:180
406
  msgid " Mb"
407
  msgstr " Mb"
408
 
409
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:183 bws_menu.php:187
410
  msgid "Yes"
411
  msgstr "Ano"
412
 
413
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:183 bws_menu.php:187
414
  msgid "No"
415
  msgstr "Ne"
416
 
417
- #: bws_menu.php:194
418
- #, fuzzy
419
  msgid "WordPress Environment"
420
- msgstr "Prostředí"
421
 
422
- #: bws_menu.php:196
423
  msgid "Home URL"
424
  msgstr "Domovská URL"
425
 
426
- #: bws_menu.php:197
427
- #, fuzzy
428
  msgid "Website URL"
429
  msgstr "URL webových stránek"
430
 
431
- #: bws_menu.php:198
432
- #, fuzzy
433
  msgid "WP Version"
434
- msgstr "PHP Verze"
435
 
436
- #: bws_menu.php:199
437
  msgid "WP Multisite"
438
- msgstr ""
439
 
440
- #: bws_menu.php:200
441
- #, fuzzy
442
  msgid "WP Memory Limit"
443
- msgstr "PHP Limit paměti"
444
 
445
- #: bws_menu.php:201
446
  msgid "Active Theme"
447
  msgstr "Aktivovat šablonu"
448
 
449
- #: bws_menu.php:201 bws_menu.php:246 bws_menu.php:249
450
  #, php-format
451
  msgid "by %s"
452
- msgstr ""
453
 
454
- #: bws_menu.php:205
455
- #, fuzzy
456
  msgid "Server Environment"
457
  msgstr "Prostředí"
458
 
459
- #: bws_menu.php:207
460
  msgid "Operating System"
461
  msgstr "Operační systém"
462
 
463
- #: bws_menu.php:208
464
  msgid "Server"
465
  msgstr "Server"
466
 
467
- #: bws_menu.php:209
468
  msgid "PHP Version"
469
  msgstr "PHP Verze"
470
 
471
- #: bws_menu.php:210
 
472
  msgid "PHP Allow URL fopen"
473
- msgstr ""
474
 
475
- #: bws_menu.php:211
476
  msgid "PHP Memory Limit"
477
  msgstr "PHP Limit paměti"
478
 
479
- #: bws_menu.php:212
480
- #, fuzzy
481
  msgid "Memory Usage"
482
  msgstr "Využití paměti"
483
 
484
- #: bws_menu.php:213
 
485
  msgid "PHP Max Upload Size"
486
- msgstr ""
487
 
488
- #: bws_menu.php:214
 
489
  msgid "PHP Max Post Size"
490
- msgstr ""
491
 
492
- #: bws_menu.php:215
 
493
  msgid "PHP Max Script Execute Time"
494
- msgstr ""
495
 
496
- #: bws_menu.php:216
497
  msgid "PHP Exif support"
498
- msgstr ""
499
 
500
- #: bws_menu.php:217
501
  msgid "PHP IPTC support"
502
- msgstr ""
503
 
504
- #: bws_menu.php:218
505
  msgid "PHP XML support"
506
- msgstr ""
507
 
508
- #: bws_menu.php:224
509
  msgid "Database"
510
- msgstr ""
511
 
512
- #: bws_menu.php:226
513
- #, fuzzy
514
  msgid "WP DB version"
515
- msgstr "WordPress verze DB"
516
 
517
- #: bws_menu.php:227
518
- #, fuzzy
519
  msgid "MySQL version"
520
  msgstr "Verze MYSQL"
521
 
522
- #: bws_menu.php:228
523
  msgid "SQL Mode"
524
  msgstr "Mód SQL"
525
 
526
- #: bws_menu.php:232
527
  msgid "Active Plugins"
528
  msgstr "Aktivní pluginy"
529
 
530
- #: bws_menu.php:237
531
  msgid "Inactive Plugins"
532
  msgstr "Neaktivní pluginy"
533
 
534
- #: bws_menu.php:258
535
  msgid "Please enter a valid email address."
536
  msgstr "Prosím vložte platnou e-mailovou adresu."
537
 
538
- #: bws_menu.php:262
539
- #, fuzzy
540
  msgid "Email with system info is sent to"
541
  msgstr "E-mail se systémovým nastavením byl odeslán na"
542
 
543
- #: bws_menu.php:266
544
  msgid "Thank you for contacting us."
545
  msgstr "Děkujeme, že jste nás kontaktovali."
546
 
547
- #: bws_menu.php:289
548
  msgid "Sorry, email message could not be delivered."
549
  msgstr "Je nám líto, ale e-mail nemohl být doručen."
550
 
551
- #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
552
  msgid "Plugins"
553
  msgstr "Pluginy"
554
 
555
- #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:609 deprecated.php:92
556
  msgid "Themes"
557
  msgstr "Šablony"
558
 
559
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:660
560
  msgid "System status"
561
  msgstr "Stav systému"
562
 
563
- #: bws_menu.php:315
564
  msgid "Support"
565
  msgstr "Podpora"
566
 
567
- #: bws_menu.php:316
568
- #, fuzzy
569
  msgid "Manage purchased licenses & subscriptions"
570
- msgstr "Spravovat zakoupené licence & subscriptions"
571
 
572
- #: bws_menu.php:324
573
  #, php-format
574
  msgid "Get Access to %s+ Premium Plugins"
575
  msgstr "Získejte přístup k %s+ Premiovým pluginům"
576
 
577
- #: bws_menu.php:326
578
- #, fuzzy
579
  msgid "Subscribe to Pro Membership"
580
  msgstr "Přihlásit se k Pro členství"
581
 
582
- #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:738
583
  #: deprecated.php:227
584
  msgid "Check license key"
585
- msgstr "Zkontrolujte licenční klíč"
586
 
587
- #: bws_menu.php:337
588
  msgid "Enter your license key"
589
  msgstr "Vložte váš licenční klíč"
590
 
591
- #: bws_menu.php:343 bws_menu.php:561 bws_menu.php:570
592
- #: class-bws-settings.php:717 deprecated.php:259 deprecated.php:267
593
  #: deprecated.php:629 deprecated.php:700 deprecated.php:709
594
  msgid "Activate"
595
  msgstr "Aktivovat"
596
 
597
- #: bws_menu.php:359
598
  msgid "Upload Plugin"
599
  msgstr "Nahrát plugin"
600
 
601
- #: bws_menu.php:363
602
  #, php-format
603
  msgid ""
604
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -611,46 +599,45 @@ msgstr ""
611
  "problems with syndication feeds or other issues, pokuste se deaktivovat, "
612
  "nebo odstranit tento plugin."
613
 
614
- #: bws_menu.php:365
615
- #, fuzzy
616
  msgid ""
617
  "Plugin could not be activated because it triggered a <strong>fatal error</"
618
  "strong>."
619
  msgstr ""
620
- "Plugin nemůže být aktivován, neboť způsobil <strong>fatal error</strong>."
621
 
622
- #: bws_menu.php:368
623
  msgid "Plugin <strong>activated</strong>."
624
  msgstr "Plugin <strong>aktivován</strong>."
625
 
626
- #: bws_menu.php:375
627
  msgid "Installing Plugin"
628
  msgstr "Instalace pluginu"
629
 
630
- #: bws_menu.php:381
631
  msgid "Downloading install package from"
632
  msgstr "Stahování instalačního balíčku z"
633
 
634
- #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440
635
- #: class-bws-settings.php:937 class-bws-settings.php:959
636
- #: class-bws-settings.php:981 deprecated.php:387 deprecated.php:409
637
  #: deprecated.php:431
638
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
639
  msgstr "Stažení zip archivu selhalo. Prosíme, nahrajte plugin ručně."
640
 
641
- #: bws_menu.php:406
642
  msgid "Unpacking the package"
643
  msgstr "Rozbalování balíčku"
644
 
645
- #: bws_menu.php:411 bws_menu.php:419
646
  msgid "Installing the plugin"
647
  msgstr "Instalace pluginu"
648
 
649
- #: bws_menu.php:415 class-bws-settings.php:949 deprecated.php:399
650
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
651
  msgstr "Otevření zip archivu selhalo. Prosíme, nahrajte plugin ručně."
652
 
653
- #: bws_menu.php:422 class-bws-settings.php:955 deprecated.php:405
654
  msgid ""
655
  "Your server does not support either ZipArchive or Phar. Please, upload the "
656
  "plugin manually"
@@ -658,182 +645,169 @@ msgstr ""
658
  "Váš server nepodporuje buď ZipArchive nebo Phar. Prosím, nahrajte plugin "
659
  "ručně"
660
 
661
- #: bws_menu.php:425
662
  #, php-format
663
  msgid "The plugin %s is successfully installed."
664
- msgstr ""
665
 
666
- #: bws_menu.php:432 class-bws-settings.php:962 deprecated.php:412
667
  msgid "UploadDir is not writable. Please, upload the plugin manually"
668
  msgstr "Nelze zapisovat do UploadDir. Prosím, nahrajte plugin ručně"
669
 
670
- #: bws_menu.php:437
671
  msgid "Activate Plugin"
672
  msgstr "Aktivovat plugin"
673
 
674
- #: bws_menu.php:437 bws_menu.php:443
675
- #, fuzzy
676
  msgid "Return to BestWebSoft Panel"
677
  msgstr "Návrat na BestWebSoft panel"
678
 
679
- #: bws_menu.php:447 bws_menu.php:462 bws_menu.php:591
680
  msgid "All"
681
  msgstr "Vše"
682
 
683
- #: bws_menu.php:448 bws_menu.php:648
684
  msgid "Installed"
685
  msgstr "Instalováno"
686
 
687
- #: bws_menu.php:449
688
  msgid "Not Installed"
689
  msgstr "Neninstalováno"
690
 
691
- #: bws_menu.php:455
692
- #, fuzzy
693
  msgid "Filter results"
694
  msgstr "Výsledky filtrování"
695
 
696
- #: bws_menu.php:458 bws_menu.php:587
697
  msgid "Category"
698
  msgstr "Rubriky"
699
 
700
- #: bws_menu.php:522
701
  msgid "Not installed"
702
  msgstr "Neninstalováno"
703
 
704
- #: bws_menu.php:526
705
- #, fuzzy
706
  msgid "Renew to get updates"
707
- msgstr "Prodloužit pro získání aktualizací"
708
 
709
- #: bws_menu.php:529
710
- #, fuzzy, php-format
711
  msgid "Update to v %s"
712
- msgstr "Aktualizovat na v %s"
713
 
714
- #: bws_menu.php:541 bws_menu.php:564 bws_menu.php:573
715
  msgid "Install Now"
716
  msgstr "Instalovat nyní"
717
 
718
- #: bws_menu.php:547 class-bws-settings.php:155 class-bws-settings.php:1045
719
  msgid "Upgrade to Pro"
720
  msgstr "Aktualizovat na Pro"
721
 
722
- #: bws_menu.php:561 bws_menu.php:570
723
  msgid "Activate this plugin"
724
  msgstr "Aktivovat tento plugin"
725
 
726
- #: bws_menu.php:573
727
  msgid "Install this plugin"
728
  msgstr "Instalovat tento plugin"
729
 
730
- #: bws_menu.php:582
731
  msgid "Nothing found. Try another criteria."
732
  msgstr "Nic nenalezeno. Zkuste jiná kritéria."
733
 
734
- #: bws_menu.php:619 bws_menu.php:639
 
735
  #, php-format
736
  msgid "By %s"
737
- msgstr ""
738
 
739
- #: bws_menu.php:646
740
  msgid "Already Installed"
741
  msgstr "Již instalováno"
742
 
743
- #: bws_menu.php:657
744
  msgid "Browse Free WordPress Themes"
745
  msgstr "Procházet WordPress šablony zdarma"
746
 
747
- #: bws_menu.php:666
748
  msgid "Send to support"
749
  msgstr "Odeslat podpoře"
750
 
751
- #: bws_menu.php:673
752
  msgid "Send to custom email &#187;"
753
  msgstr "Odeslat na vlastní e-mail &#187;"
754
 
755
- #: class-bws-settings.php:134
756
- #, fuzzy
757
  msgid "Information"
758
- msgstr "Pro více informací:"
759
 
760
- #: class-bws-settings.php:142
761
- #, fuzzy
762
  msgid "Inactive"
763
- msgstr "Neaktivní pluginy"
764
 
765
- #: class-bws-settings.php:150
766
  msgid "Expired"
767
- msgstr ""
768
 
769
- #: class-bws-settings.php:153
770
  #, php-format
771
  msgid "%s day(-s) left"
772
- msgstr ""
773
 
774
- #: class-bws-settings.php:159
775
- #, fuzzy, php-format
776
  msgid "Expired on %s"
777
- msgstr "vyprší"
778
 
779
- #: class-bws-settings.php:159
780
  msgid "Renew Now"
781
- msgstr ""
782
 
783
- #: class-bws-settings.php:161
784
- #, fuzzy
785
  msgid "Active"
786
- msgstr "Aktivovat"
787
 
788
- #: class-bws-settings.php:166
789
- #, fuzzy
790
  msgid "License"
791
- msgstr "Špatný licenční klíč"
792
 
793
- #: class-bws-settings.php:169
794
- #, fuzzy
795
  msgid "Status"
796
- msgstr "Stav systému"
797
 
798
- #: class-bws-settings.php:173
799
- #, fuzzy
800
  msgid "Version"
801
- msgstr "verzi!"
802
 
803
- #: class-bws-settings.php:281
804
- #, fuzzy
805
  msgid "All plugin settings were restored."
806
- msgstr "Nastavení pluginu bylo změněno."
807
 
808
- #: class-bws-settings.php:419
809
- #, fuzzy
810
  msgid "Custom Code"
811
- msgstr "Кастомизировать"
812
 
813
- #: class-bws-settings.php:423 deprecated.php:497
814
  msgid "You do not have sufficient permissions to edit plugins for this site."
815
  msgstr "Nemáte dostatečná oprávnění pro úpravu pluginů tohoto webu."
816
 
817
- #: class-bws-settings.php:428 deprecated.php:618
818
- #, fuzzy
819
  msgid "These styles will be added to the header on all pages of your site."
820
- msgstr "Tyto styly budou přidány do záhlaví všech stránek vašeho webu."
821
 
822
- #: class-bws-settings.php:431 deprecated.php:620
823
  #, php-format
824
  msgid ""
825
  "This PHP code will be hooked to the %s action and will be printed on front "
826
  "end only."
827
  msgstr ""
828
- "Tento PHP kód bude hooked to the %s action a bude zobrazen pouze na front "
829
- "endu."
830
 
831
- #: class-bws-settings.php:434
832
- #, fuzzy
833
  msgid "These code will be added to the header on all pages of your site."
834
- msgstr "Tyto styly budou přidány do záhlaví všech stránek vašeho webu."
835
 
836
- #: class-bws-settings.php:442 deprecated.php:644
837
  #, php-format
838
  msgid ""
839
  "You need to make this files writable before you can save your changes. See "
@@ -842,101 +816,96 @@ msgstr ""
842
  "Před tím, než budete moci vaše změny uložit, nastavte těmto souborům "
843
  "oprávnění pro zápis. Podívejte se %s na Kodex %s pro více informací."
844
 
845
- #: class-bws-settings.php:452 deprecated.php:626
846
  msgid "Browsing"
847
  msgstr "Procházení"
848
 
849
- #: class-bws-settings.php:456
850
  #, php-format
851
  msgid "Activate custom %s code."
852
- msgstr ""
853
 
854
- #: class-bws-settings.php:463 deprecated.php:633
855
  #, php-format
856
  msgid "Learn more about %s"
857
  msgstr "Dozvědět se více o %s"
858
 
859
- #: class-bws-settings.php:523
860
  msgid "Miscellaneous Settings"
861
- msgstr ""
862
 
863
- #: class-bws-settings.php:532 class-bws-settings.php:583
864
  #, php-format
865
  msgid ""
866
  "It is prohibited to change %s settings on this site in the %s network "
867
  "settings."
868
- msgstr ""
869
 
870
- #: class-bws-settings.php:535 class-bws-settings.php:586
871
  #, php-format
872
  msgid ""
873
  "It is prohibited to view %s settings on this site in the %s network settings."
874
- msgstr ""
875
 
876
- #: class-bws-settings.php:544
877
- #, fuzzy
878
  msgid "Pro Options"
879
- msgstr "Pro плагины"
880
 
881
- #: class-bws-settings.php:547
882
  msgid "Enable to display plugin Pro options."
883
- msgstr ""
884
 
885
- #: class-bws-settings.php:552
886
  msgid "Track Usage"
887
- msgstr ""
888
 
889
- #: class-bws-settings.php:555
890
  msgid ""
891
  "Enable to allow tracking plugin usage anonymously in order to make it better."
892
  msgstr ""
 
893
 
894
- #: class-bws-settings.php:559
895
- #, fuzzy
896
  msgid "Default Settings"
897
- msgstr "Nastavení"
898
 
899
- #: class-bws-settings.php:561
900
- #, fuzzy
901
  msgid "Restore Settings"
902
  msgstr "Obnovit nastavení"
903
 
904
- #: class-bws-settings.php:562
905
- #, fuzzy
906
  msgid "This will restore plugin settings to defaults."
907
- msgstr "Obnovit veškerá nastavení pluginu na výchozí hodnoty?"
908
 
909
- #: class-bws-settings.php:574
910
  msgid "Import / Export"
911
- msgstr ""
912
 
913
- #: class-bws-settings.php:690 class-bws-settings.php:713
914
- #: class-bws-settings.php:735
915
- #, fuzzy
916
  msgid "License Key"
917
- msgstr "Špatný licenční klíč"
918
 
919
- #: class-bws-settings.php:703
920
- #, fuzzy
921
  msgid "Congratulations! Pro license is activated successfully."
922
- msgstr "Gratulujeme! Členská PRO licence byla úspěšně aktivována."
923
 
924
- #: class-bws-settings.php:704
925
- #, fuzzy, php-format
926
- msgid "You will be automatically redirected to the %s in 7 seconds."
927
- msgstr "Budete automaticky přesměrováni za 5 sekund."
928
 
929
- #: class-bws-settings.php:704
930
- #, fuzzy
931
  msgid "Settings page"
932
- msgstr "Nastavení"
933
 
934
- #: class-bws-settings.php:719
935
- #, fuzzy, php-format
936
  msgid "Enter your license key to activate %s and get premium plugin features."
937
- msgstr "Vložte váš licenční klíč pro instalaci a aktivaci"
 
938
 
939
- #: class-bws-settings.php:722 class-bws-settings.php:909 deprecated.php:362
940
  #: deprecated.php:703
941
  msgid ""
942
  "Unfortunately, you have exceeded the number of available tries per day. "
@@ -945,43 +914,41 @@ msgstr ""
945
  "Bohužel, jste překročili počet dostupných pokusů za den. Prosím, nahrejte "
946
  "plugin ručně."
947
 
948
- #: class-bws-settings.php:725 deprecated.php:694
949
  #, php-format
950
  msgid "Start Your Free %s-Day Trial Now"
951
  msgstr "Vyzkoušejte vaší %s-denní zkušební verzi zdarma nyní"
952
 
953
- #: class-bws-settings.php:740
954
- #, fuzzy
955
  msgid ""
956
  "If necessary, you can check if the license key is correct or reenter it in "
957
  "the field below."
958
  msgstr ""
959
  "V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, případně "
960
- "jej do pole níže vložte znova. Váš licenční klíč najdete na vaší osobní "
961
- "stránce - Klientská zóna - na našem webu"
962
 
963
- #: class-bws-settings.php:745
964
  msgid "Manage License Settings"
965
- msgstr ""
966
 
967
- #: class-bws-settings.php:747
968
- #, fuzzy
969
  msgid "Login to Client Area"
970
- msgstr "Klientská zóna"
971
 
972
- #: class-bws-settings.php:749
973
  msgid ""
974
  "Manage active licenses, download BWS products, and view your payment history "
975
  "using BestWebSoft Client Area."
976
  msgstr ""
 
 
977
 
978
- #: class-bws-settings.php:804 class-bws-settings.php:907 deprecated.php:141
979
  #: deprecated.php:360
980
- #, fuzzy
981
  msgid "This license key is bound to another site."
982
- msgstr "Tento licenční klíč je přidružen k jiným webovým stránkám."
983
 
984
- #: class-bws-settings.php:806 deprecated.php:143
985
  msgid ""
986
  "This license key is valid, but Your license has expired. If you want to "
987
  "update our plugin in future, you should extend the license."
@@ -989,11 +956,11 @@ msgstr ""
989
  "Tento licenční klíč je platný, ale vaše licence vypršela. Chcete-li náš "
990
  "plugin v budoucnosti aktualizovat, měli by jste licenci prodloužit."
991
 
992
- #: class-bws-settings.php:808 deprecated.php:145
993
  msgid "Unfortunately, you have exceeded the number of available tries."
994
  msgstr "Bohužel, překročili jste dostupný počet pokusů."
995
 
996
- #: class-bws-settings.php:810 deprecated.php:147
997
  msgid ""
998
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
999
  "The Pro Trial license can be installed only once."
@@ -1001,39 +968,36 @@ msgstr ""
1001
  "Bohužel, tato zkušební Pro licence již pro tuto doménu byla použita. "
1002
  "Zkušební Pro licence může být instalována pouze jedenkrát."
1003
 
1004
- #: class-bws-settings.php:815 deprecated.php:151
1005
  msgid "The Pro Trial license key is valid."
1006
  msgstr "Licenční klíč zkušební Pro verze je platný"
1007
 
1008
- #: class-bws-settings.php:823 deprecated.php:159 deprecated.php:246
1009
  #, php-format
1010
  msgid ""
1011
  "In order to continue using the plugin it is necessary to buy a %s license."
1012
  msgstr ""
1013
  "Pokud chcete nadále využívat tento plugin, je nutné zakoupit %s licenci."
1014
 
1015
- #: class-bws-settings.php:1020 deprecated.php:463
1016
  msgid "Please, enter Your license key"
1017
  msgstr "Prosím, vložte váš licenční klíč"
1018
 
1019
- #: class-bws-settings.php:1032
1020
- #, fuzzy
1021
  msgid "Need Help?"
1022
- msgstr "Нужна помощь?"
1023
 
1024
- #: class-bws-settings.php:1034
1025
- #, fuzzy
1026
  msgid "Read the Instruction"
1027
- msgstr "Video instrukce"
1028
 
1029
- #: class-bws-settings.php:1038
1030
  msgid "Watch the Video"
1031
- msgstr ""
1032
 
1033
- #: class-bws-settings.php:1049
1034
- #, fuzzy
1035
  msgid "Start Your Free Trial"
1036
- msgstr "Vyzkoušejte vaší %s-denní zkušební verzi zdarma nyní"
1037
 
1038
  #: deprecated.php:93
1039
  msgid "System Status"
@@ -1044,7 +1008,6 @@ msgid "Please, enter your license key"
1044
  msgstr "Prosím, vložte váš licenční klíč."
1045
 
1046
  #: deprecated.php:223
1047
- #, fuzzy
1048
  msgid ""
1049
  "If necessary, you can check if the license key is correct or reenter it in "
1050
  "the field below. You can find your license key on your personal page - "
@@ -1063,9 +1026,8 @@ msgstr ""
1063
  "nutné, prosím odešlete \"Lost your password?\" požadavek."
1064
 
1065
  #: deprecated.php:247
1066
- #, fuzzy
1067
  msgid "After that, you can activate it by entering your license key."
1068
- msgstr "Poté, co jej aktivujete vložením vašeho licenčního klíče."
1069
 
1070
  #: deprecated.php:249 deprecated.php:688
1071
  msgid "License key can be found in the"
@@ -1073,10 +1035,9 @@ msgstr "Licenční klíč najdete v"
1073
 
1074
  #: deprecated.php:251 deprecated.php:690
1075
  msgid "(your username is the email address specified during the purchase)."
1076
- msgstr "(vaše uživatelské jméno je e-mailová adresa uvedena při nákupu)."
1077
 
1078
  #: deprecated.php:278
1079
- #, fuzzy
1080
  msgid ""
1081
  "Congratulations! The Pro license of the plugin is activated successfully."
1082
  msgstr "Gratulujeme! PRO licence pluginu je úspěšně aktivována."
@@ -1086,7 +1047,6 @@ msgid "Please, go to"
1086
  msgstr "Prosím, jděte na"
1087
 
1088
  #: deprecated.php:280 deprecated.php:669
1089
- #, fuzzy
1090
  msgid "the setting page"
1091
  msgstr "stránka nastavení"
1092
 
@@ -1120,12 +1080,10 @@ msgid "Not enough permissions to create the file"
1120
  msgstr "Nedostatečná oprávnění pro vytvoření souboru"
1121
 
1122
  #: deprecated.php:624
1123
- #, fuzzy
1124
  msgid "Editing"
1125
- msgstr "Úpravy"
1126
 
1127
  #: deprecated.php:667
1128
- #, fuzzy
1129
  msgid ""
1130
  "Congratulations! Pro version of the plugin is installed and activated "
1131
  "successfully."
@@ -1179,25 +1137,25 @@ msgstr "Utility"
1179
  msgid "Other"
1180
  msgstr "Ostatní"
1181
 
1182
- #~ msgid "You license for"
1183
- #~ msgstr "Vaše licence pro"
1184
 
1185
- #, fuzzy
1186
- #~ msgid "expires on"
1187
- #~ msgstr "vyprší"
1188
 
1189
- #~ msgid "This license key is bind to another site"
1190
- #~ msgstr "Tento licenční klíč se váže k jinému webu"
 
1191
 
1192
- #~ msgid "Successfully installed the plugin"
1193
- #~ msgstr "Plugin byl úspěšně instalován"
1194
-
1195
- #, fuzzy
1196
- #~ msgid "Please, go to %s"
1197
- #~ msgstr "Prosím, jděte na"
1198
 
1199
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1200
- #~ msgstr "Máte-li rádi náš plugin, prosím dejte mu 5 hvězd na WordPressu"
 
 
 
 
1201
 
1202
  #~ msgid "If there is something wrong about it, please contact us"
1203
  #~ msgstr "Pokud cokoli není v pořádku, obraťte se na nás"
@@ -1205,126 +1163,112 @@ msgstr "Ostatní"
1205
  #~ msgid "Donations play an important role in supporting great projects"
1206
  #~ msgstr "Dary hrají důležitou roli v podpoře velkých projektů"
1207
 
1208
- #~ msgid "WordPress Version"
1209
- #~ msgstr "Verze WordPress"
1210
-
1211
- #~ msgid "Activate Membership"
1212
- #~ msgstr "Активировать Membership"
1213
-
1214
- #~ msgid "Don’t have valid license key yet?"
1215
- #~ msgstr "Нет действующего лицензионного ключа?"
1216
 
1217
  #~ msgid ""
1218
- #~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
1219
- #~ "plugins on a single website %s for only %s per month."
1220
  #~ msgstr ""
1221
- #~ "Присоединяйтесь к BestWebSoft Pro Membership сегодня, отменяйте подписку "
1222
- #~ "в любое время и используйте все плагины на одном сайте %s всего лишь за "
1223
- #~ "%s в месяц."
1224
-
1225
- #~ msgid "My Account"
1226
- #~ msgstr "Мой аккаунт"
1227
-
1228
- #~ msgid "BWS Panel"
1229
- #~ msgstr "BWS Панель"
1230
-
1231
- #~ msgid "panel"
1232
- #~ msgstr "панель"
1233
-
1234
- #~ msgid "You can download and activate"
1235
- #~ msgstr "Вы можете скачать и активировать"
1236
-
1237
- #~ msgid "version of this plugin by entering Your license key."
1238
- #~ msgstr "версию этого плагина, введя ваш лицензионный ключ."
1239
 
1240
  #~ msgid ""
1241
- #~ "You can find your license key on your personal page Client area, by "
1242
- #~ "clicking on the link"
1243
  #~ msgstr ""
1244
- #~ "Вы можете найти ваш лицензионный ключ на вашей личной странице Client "
1245
- #~ "area, нажав на ссылку"
1246
-
1247
- #~ msgid "Configure Settings"
1248
- #~ msgstr "Настройка параметров"
1249
-
1250
- #~ msgid "Go"
1251
- #~ msgstr "Перейти на"
1252
-
1253
- #~ msgid "DONATE"
1254
- #~ msgstr "Пожертвовать"
1255
-
1256
- #~ msgid "Recommended plugins"
1257
- #~ msgstr "Рекомендованные к установке плагины"
1258
 
1259
- #~ msgid "Install now"
1260
- #~ msgstr "Установить"
1261
 
1262
- #~ msgid "Try again"
1263
- #~ msgstr "Попробовать снова"
 
1264
 
1265
- #~ msgid "Preview &#8220;%s&#8221;"
1266
- #~ msgstr "Просмотр &#8220;%s&#8221;"
1267
 
1268
- #~ msgid "Install %s"
1269
- #~ msgstr "Установлено %s"
 
 
 
 
 
 
1270
 
1271
- #~ msgid "Update"
1272
- #~ msgstr "Обновить"
 
 
 
 
1273
 
1274
- #~ msgid "Preview %s"
1275
- #~ msgstr "Просмотр %s"
 
 
 
 
1276
 
1277
- #~ msgid "Preview"
1278
- #~ msgstr "Просмотр"
1279
 
1280
- #~ msgid "Add BWS Plugins Shortcode"
1281
- #~ msgstr "Добавить шорткод BWS Плагина"
1282
 
1283
- #~ msgid "Select Plugin"
1284
- #~ msgstr "Выберите плагин"
1285
 
1286
  #~ msgid ""
1287
- #~ "(your username is the email you specify when purchasing the product), "
1288
- #~ "where you can make the necessary changes."
1289
  #~ msgstr ""
1290
- #~ "(ваш пользователь это емейл, который вы указывали при покупке продукта), "
1291
- #~ "где вы можете сделать необходимые изменения."
1292
 
1293
- #~ msgid "Switch to new interface"
1294
- #~ msgstr "Переключится на новый интерфейс"
 
1295
 
1296
- #~ msgid "Activated plugins"
1297
- #~ msgstr "Активированные плагины"
 
 
 
 
1298
 
1299
- #~ msgid "Read more"
1300
- #~ msgstr "Подробнее..."
1301
 
1302
- #~ msgid "Purchase"
1303
- #~ msgstr "Купить"
1304
 
1305
- #~ msgid "Free plugins"
1306
- #~ msgstr "Бесплатные плагины"
1307
 
1308
- #~ msgid "Download"
1309
- #~ msgstr "Скачать"
1310
 
1311
- #~ msgid "Install now from wordpress.org"
1312
- #~ msgstr "Установить с wordpress.org"
1313
 
1314
- #~ msgid "Free themes"
1315
- #~ msgstr "Бесплатные темы"
1316
 
1317
- #~ msgid "Customize &#8220;%s&#8221;"
1318
- #~ msgstr "Кастомизировать &#8220;%s&#8221;"
 
1319
 
1320
- #~ msgid "Installed themes"
1321
- #~ msgstr "Установленные темы"
1322
 
1323
- #~ msgid "Recommended themes"
1324
- #~ msgstr "Рекомендованные темы"
1325
 
1326
- #~ msgid "Switch to old interface"
1327
- #~ msgstr "Переключится на старый интерфейс"
1328
 
1329
- #~ msgid "installed"
1330
- #~ msgstr "установлен"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-03-28 13:50+0300\n"
6
+ "PO-Revision-Date: 2017-03-28 13:50+0300\n"
7
+ "Last-Translator: Mik013\n"
8
  "Language-Team: Mik013\n"
9
  "Language: cs_CZ\n"
10
  "MIME-Version: 1.0\n"
37
  msgstr "Stránka pluginů"
38
 
39
  #: bws_functions.php:91
 
40
  msgid "Like the plugin?"
41
+ msgstr "Líbí se vám plugin?"
42
 
43
  #: bws_functions.php:93
44
  msgid "Rate it"
45
+ msgstr "Ohodnoťte jej"
46
 
47
  #: bws_functions.php:102
48
  msgid "Need help?"
49
+ msgstr "Potřebujete pomoc?"
50
 
51
+ #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1047
52
  msgid "Visit Help Center"
53
  msgstr "Navštívit Centrum pomoci"
54
 
55
  #: bws_functions.php:106
 
56
  msgid "Want to support the plugin?"
57
+ msgstr "Chcete podpořit plugin?"
58
 
59
+ #: bws_functions.php:107 bws_menu.php:553
60
  msgid "Donate"
61
  msgstr "Darovat"
62
 
73
  msgstr ""
74
  "Pro licenci pluginu můžete používat pouze pro jednu doménu. Prosím "
75
  "zkontrolujte a případně upravte Váš licenční klíč na vaší osobní stránce - "
76
+ "Klientské zóně. Důrazně doporučujeme, aby jste tento problém odstranili "
77
  "během 24 hodin, jinak bude Pro plugin deaktivován."
78
 
79
+ #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
80
+ #: class-bws-settings.php:143
81
  msgid "Learn More"
82
  msgstr "Dozvědět se více"
83
 
84
  #: bws_functions.php:144
 
85
  msgid ""
86
  "Notice: Your Pro Trial license has expired. To continue using the plugin, "
87
  "you should buy a Pro license"
88
  msgstr ""
89
+ "Poznámka: Vaše zkušební Pro verze pluginu vypršela. Pro další používání "
90
+ "pluginu bude nutné zakoupit PRO licenci"
91
 
92
  #: bws_functions.php:146
 
93
  msgid ""
94
  "Your license has expired. To continue getting top-priority support and "
95
  "plugin updates, you should extend it."
123
  "aktualizujte na nejnovější verzi WordPressu."
124
 
125
  #: bws_functions.php:207
126
+ #, php-format
127
+ msgid "Thank you for installing %s plugin!"
128
+ msgstr ""
129
 
130
  #: bws_functions.php:208
131
  msgid "Let's get started"
132
  msgstr "Začněme"
133
 
134
+ #: bws_functions.php:209 bws_functions.php:242 bws_menu.php:557
135
+ #: bws_menu.php:559
136
  msgid "Settings"
137
  msgstr "Nastavení"
138
 
139
+ #: bws_functions.php:211 bws_menu.php:328 class-bws-settings.php:736
140
+ #: class-bws-settings.php:1049 class-bws-settings.php:1059 deprecated.php:694
141
  msgid "or"
142
  msgstr "nebo"
143
 
164
 
165
  #: bws_functions.php:262
166
  msgid "Deprecated function(-s) is used on the site here:"
167
+ msgstr "Zastaralé funkce se používají na stránkách zde:"
168
 
169
  #: bws_functions.php:276
170
  msgid ""
171
  "This function(-s) will be removed over time. Please update the product(-s)."
172
  msgstr ""
173
+ "Tato funkce, bude v průběhu času odstraněna. Prosím aktualizujte produkt."
174
 
175
  #: bws_functions.php:335
176
  msgid "It’s time to upgrade your"
186
 
187
  #: bws_functions.php:336
188
  msgid "Extend standard plugin functionality with new great options."
189
+ msgstr "Rozšiřuje standardní funkce pluginu novými skvělými možnostmi."
190
 
191
  #: bws_functions.php:382
192
+ #, php-format
193
  msgid ""
194
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
195
  "SUPPORT or UPDATES."
196
+ msgstr ""
197
+ "Váš licenční klíč pro %s vyprší dne %s a nebudou vám poskytovány TOP-"
198
+ "PRIOROTNÍ PODPORA a AKTUALIZACE."
199
 
200
  #: bws_functions.php:477
201
+ #, php-format
202
+ msgid "Thank you for choosing %s plugin!"
203
+ msgstr ""
204
 
205
  #: bws_functions.php:478
206
  msgid ""
214
  msgid "Suggest a Feature"
215
  msgstr "Navrhnout vlastnost"
216
 
217
+ #: bws_functions.php:495 class-bws-settings.php:533 class-bws-settings.php:536
218
+ #: class-bws-settings.php:584 class-bws-settings.php:587
219
  msgid "Notice"
220
  msgstr "Poznámka"
221
 
223
  msgid "The plugin's settings have been changed."
224
  msgstr "Nastavení pluginu bylo změněno."
225
 
226
+ #: bws_functions.php:496 class-bws-settings.php:182 class-bws-settings.php:202
227
  #: deprecated.php:640
228
  msgid "Save Changes"
229
  msgstr "Uložit změny"
230
 
231
  #: bws_functions.php:510
 
232
  msgid ""
233
  "You can always look at premium options by checking the \"Pro Options\" in "
234
  "the \"Misc\" tab."
235
  msgstr ""
236
+ "Vždy se můžete podívat na možnosti prémiové verze, kliknutím na \"PRO "
237
+ "nastavení\" na \"Go PRO\" záložce"
238
 
239
  #: bws_functions.php:651
240
  msgid "Add shortcode"
242
 
243
  #: bws_functions.php:651
244
  msgid "Add BestWebSoft plugins' shortcodes using this button."
245
+ msgstr ""
246
+ "Pomocí tohoto tlačítka můžete přidávat krátké kódy BestWebSoft pluginu."
247
 
248
  #: bws_functions.php:700
249
  msgid "Close"
250
  msgstr "Zavřít"
251
 
252
  #: bws_functions.php:792
 
253
  msgid "Are you sure you want to restore default settings?"
254
+ msgstr "Jste si jisti, že chcete obnovit výchozí nastavení?"
255
 
256
  #: bws_functions.php:795
257
  msgid "Yes, restore all settings"
294
  msgstr "Video instrukce"
295
 
296
  #: bws_functions.php:930
 
297
  msgid "Submit a Request"
298
  msgstr "Odeslat požadavek"
299
 
300
+ #: bws_menu.php:101 class-bws-settings.php:781 deprecated.php:322
301
  msgid "Wrong license key"
302
  msgstr "Špatný licenční klíč"
303
 
304
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
305
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
306
  #: deprecated.php:352
307
  msgid ""
308
  "Something went wrong. Please try again later. If the error appears again, "
311
  "Něco se pokazilo. Prosím zkuste to znovu později. Pokud se chyba objeví "
312
  "znovu, obraťte se na nás"
313
 
314
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
315
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
316
  #: deprecated.php:352
317
  msgid "We are sorry for inconvenience."
318
  msgstr "Omlouváme se za nepříjemnosti."
319
 
320
+ #: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
321
  #: deprecated.php:139 deprecated.php:358
322
  msgid "Wrong license key."
323
  msgstr "Neplatný licenční klíč"
324
 
325
+ #: bws_menu.php:130
 
326
  msgid ""
327
  "This license key is bound to another site. Change it via personal Client "
328
  "Area."
329
  msgstr ""
330
+ "Tento licenční klíč je přidružen k jinému webu. Změňte jej prostřednictvím "
331
+ "osobní Klientské zóny."
332
 
333
+ #: bws_menu.php:130
 
334
  msgid "Log in"
335
  msgstr "Přihlášení"
336
 
337
+ #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
338
  msgid "Unfortunately, you have exceeded the number of available tries per day."
339
  msgstr "Bohužel, překročili jste dostupný počet pokusů pro daný den."
340
 
341
+ #: bws_menu.php:134 class-bws-settings.php:922 deprecated.php:364
342
+ #, php-format
343
  msgid ""
344
  "Unfortunately, Your license has expired. To continue getting top-priority "
345
  "support and plugin updates, you should extend it in your %s"
346
  msgstr ""
347
  "Bohužel, Vaše licence vypršela. Chcete-li pokračovat v získávání top-"
348
+ "prioritní podpory a aktualizace pluginu měli byste ji prodloužit ve vašem %s"
349
 
350
+ #: bws_menu.php:136 class-bws-settings.php:924 deprecated.php:366
351
  msgid ""
352
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
353
  "Trial license can be installed only once."
354
  msgstr ""
355
+ "Bohužel, pro tuto doménu již byla použita Pro licence. Zkušební Pro licence "
356
+ "může být instalována pouze jedenkrát."
357
 
358
+ #: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
359
  msgid "The license key is valid."
360
  msgstr "Licenční klíč je platný"
361
 
362
+ #: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
363
  msgid "Your license will expire on"
364
  msgstr "Vaše licence vyprší"
365
 
366
+ #: bws_menu.php:146
 
367
  msgid "Congratulations! Pro Membership license is activated successfully."
368
+ msgstr "Gratulujeme! PRO členství bylo úspěšně aktivováno."
369
 
370
+ #: bws_menu.php:153 class-bws-settings.php:996 deprecated.php:435
371
  msgid ""
372
  "Something went wrong. Try again later or upload the plugin manually. We are "
373
  "sorry for inconvenience."
375
  "Něco se pokazilo. Zkuste to později, nebo nahrajte plugin ručně. Omlouváme "
376
  "se za nepříjemnosti."
377
 
378
+ #: bws_menu.php:163
379
  msgid "Please enter your license key."
380
  msgstr "Prosím vložte váš licenční klíč."
381
 
382
+ #: bws_menu.php:174
 
383
  msgid "Not set"
384
  msgstr "Nenastaveno"
385
 
386
+ #: bws_menu.php:176
387
  msgid "On"
388
  msgstr "Zapnout"
389
 
390
+ # vypnout, nebo vypnuto
391
+ #: bws_menu.php:176
392
  msgid "Off"
393
  msgstr "Vypnout"
394
 
395
+ #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
396
+ #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
397
  msgid "N/A"
398
  msgstr "N/A"
399
 
400
+ #: bws_menu.php:182
401
  msgid " Mb"
402
  msgstr " Mb"
403
 
404
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
405
  msgid "Yes"
406
  msgstr "Ano"
407
 
408
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
409
  msgid "No"
410
  msgstr "Ne"
411
 
412
+ #: bws_menu.php:196
 
413
  msgid "WordPress Environment"
414
+ msgstr "WordPress prostředí"
415
 
416
+ #: bws_menu.php:198
417
  msgid "Home URL"
418
  msgstr "Domovská URL"
419
 
420
+ #: bws_menu.php:199
 
421
  msgid "Website URL"
422
  msgstr "URL webových stránek"
423
 
424
+ #: bws_menu.php:200
 
425
  msgid "WP Version"
426
+ msgstr "WP Verze"
427
 
428
+ #: bws_menu.php:201
429
  msgid "WP Multisite"
430
+ msgstr "WP Multisite"
431
 
432
+ #: bws_menu.php:202
 
433
  msgid "WP Memory Limit"
434
+ msgstr "WP pamětový limit (memory limit)"
435
 
436
+ #: bws_menu.php:203
437
  msgid "Active Theme"
438
  msgstr "Aktivovat šablonu"
439
 
440
+ #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
441
  #, php-format
442
  msgid "by %s"
443
+ msgstr "podle %s"
444
 
445
+ #: bws_menu.php:207
 
446
  msgid "Server Environment"
447
  msgstr "Prostředí"
448
 
449
+ #: bws_menu.php:209
450
  msgid "Operating System"
451
  msgstr "Operační systém"
452
 
453
+ #: bws_menu.php:210
454
  msgid "Server"
455
  msgstr "Server"
456
 
457
+ #: bws_menu.php:211
458
  msgid "PHP Version"
459
  msgstr "PHP Verze"
460
 
461
+ # copy
462
+ #: bws_menu.php:212
463
  msgid "PHP Allow URL fopen"
464
+ msgstr "PHP Allow URL fopen"
465
 
466
+ #: bws_menu.php:213
467
  msgid "PHP Memory Limit"
468
  msgstr "PHP Limit paměti"
469
 
470
+ #: bws_menu.php:214
 
471
  msgid "Memory Usage"
472
  msgstr "Využití paměti"
473
 
474
+ # copy
475
+ #: bws_menu.php:215
476
  msgid "PHP Max Upload Size"
477
+ msgstr "PHP Max Upload Size"
478
 
479
+ # copy
480
+ #: bws_menu.php:216
481
  msgid "PHP Max Post Size"
482
+ msgstr "PHP Max Post Size"
483
 
484
+ # copy
485
+ #: bws_menu.php:217
486
  msgid "PHP Max Script Execute Time"
487
+ msgstr "PHP Max Script Execute Time"
488
 
489
+ #: bws_menu.php:218
490
  msgid "PHP Exif support"
491
+ msgstr "PHP podpora Exif"
492
 
493
+ #: bws_menu.php:219
494
  msgid "PHP IPTC support"
495
+ msgstr "PHP podpora IPTC"
496
 
497
+ #: bws_menu.php:220
498
  msgid "PHP XML support"
499
+ msgstr "PHP podpora XML"
500
 
501
+ #: bws_menu.php:226
502
  msgid "Database"
503
+ msgstr "Databáze"
504
 
505
+ #: bws_menu.php:228
 
506
  msgid "WP DB version"
507
+ msgstr "WP verze DB"
508
 
509
+ #: bws_menu.php:229
 
510
  msgid "MySQL version"
511
  msgstr "Verze MYSQL"
512
 
513
+ #: bws_menu.php:230
514
  msgid "SQL Mode"
515
  msgstr "Mód SQL"
516
 
517
+ #: bws_menu.php:234
518
  msgid "Active Plugins"
519
  msgstr "Aktivní pluginy"
520
 
521
+ #: bws_menu.php:239
522
  msgid "Inactive Plugins"
523
  msgstr "Neaktivní pluginy"
524
 
525
+ #: bws_menu.php:260
526
  msgid "Please enter a valid email address."
527
  msgstr "Prosím vložte platnou e-mailovou adresu."
528
 
529
+ #: bws_menu.php:264
 
530
  msgid "Email with system info is sent to"
531
  msgstr "E-mail se systémovým nastavením byl odeslán na"
532
 
533
+ #: bws_menu.php:268
534
  msgid "Thank you for contacting us."
535
  msgstr "Děkujeme, že jste nás kontaktovali."
536
 
537
+ #: bws_menu.php:291
538
  msgid "Sorry, email message could not be delivered."
539
  msgstr "Je nám líto, ale e-mail nemohl být doručen."
540
 
541
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
542
  msgid "Plugins"
543
  msgstr "Pluginy"
544
 
545
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
546
  msgid "Themes"
547
  msgstr "Šablony"
548
 
549
+ #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
550
  msgid "System status"
551
  msgstr "Stav systému"
552
 
553
+ #: bws_menu.php:317
554
  msgid "Support"
555
  msgstr "Podpora"
556
 
557
+ #: bws_menu.php:318
 
558
  msgid "Manage purchased licenses & subscriptions"
559
+ msgstr "Spravovat zakoupené licence a předplatné"
560
 
561
+ #: bws_menu.php:326
562
  #, php-format
563
  msgid "Get Access to %s+ Premium Plugins"
564
  msgstr "Získejte přístup k %s+ Premiovým pluginům"
565
 
566
+ #: bws_menu.php:328
 
567
  msgid "Subscribe to Pro Membership"
568
  msgstr "Přihlásit se k Pro členství"
569
 
570
+ #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:749
571
  #: deprecated.php:227
572
  msgid "Check license key"
573
+ msgstr "Zkontrolovat licenční klíč"
574
 
575
+ #: bws_menu.php:339
576
  msgid "Enter your license key"
577
  msgstr "Vložte váš licenční klíč"
578
 
579
+ #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
580
+ #: class-bws-settings.php:728 deprecated.php:259 deprecated.php:267
581
  #: deprecated.php:629 deprecated.php:700 deprecated.php:709
582
  msgid "Activate"
583
  msgstr "Aktivovat"
584
 
585
+ #: bws_menu.php:361
586
  msgid "Upload Plugin"
587
  msgstr "Nahrát plugin"
588
 
589
+ #: bws_menu.php:365
590
  #, php-format
591
  msgid ""
592
  "The plugin generated %d characters of <strong>unexpected output</strong> "
599
  "problems with syndication feeds or other issues, pokuste se deaktivovat, "
600
  "nebo odstranit tento plugin."
601
 
602
+ #: bws_menu.php:367
 
603
  msgid ""
604
  "Plugin could not be activated because it triggered a <strong>fatal error</"
605
  "strong>."
606
  msgstr ""
607
+ "Plugin nemůže být aktivován, neboť způsobil <strong>závažnou chybu</strong>."
608
 
609
+ #: bws_menu.php:370
610
  msgid "Plugin <strong>activated</strong>."
611
  msgstr "Plugin <strong>aktivován</strong>."
612
 
613
+ #: bws_menu.php:377
614
  msgid "Installing Plugin"
615
  msgstr "Instalace pluginu"
616
 
617
+ #: bws_menu.php:383
618
  msgid "Downloading install package from"
619
  msgstr "Stahování instalačního balíčku z"
620
 
621
+ #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
622
+ #: class-bws-settings.php:948 class-bws-settings.php:970
623
+ #: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
624
  #: deprecated.php:431
625
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
626
  msgstr "Stažení zip archivu selhalo. Prosíme, nahrajte plugin ručně."
627
 
628
+ #: bws_menu.php:408
629
  msgid "Unpacking the package"
630
  msgstr "Rozbalování balíčku"
631
 
632
+ #: bws_menu.php:413 bws_menu.php:421
633
  msgid "Installing the plugin"
634
  msgstr "Instalace pluginu"
635
 
636
+ #: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
637
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
638
  msgstr "Otevření zip archivu selhalo. Prosíme, nahrajte plugin ručně."
639
 
640
+ #: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
641
  msgid ""
642
  "Your server does not support either ZipArchive or Phar. Please, upload the "
643
  "plugin manually"
645
  "Váš server nepodporuje buď ZipArchive nebo Phar. Prosím, nahrajte plugin "
646
  "ručně"
647
 
648
+ #: bws_menu.php:427
649
  #, php-format
650
  msgid "The plugin %s is successfully installed."
651
+ msgstr "Plugin %s úspěšně nainstalován."
652
 
653
+ #: bws_menu.php:434 class-bws-settings.php:973 deprecated.php:412
654
  msgid "UploadDir is not writable. Please, upload the plugin manually"
655
  msgstr "Nelze zapisovat do UploadDir. Prosím, nahrajte plugin ručně"
656
 
657
+ #: bws_menu.php:439
658
  msgid "Activate Plugin"
659
  msgstr "Aktivovat plugin"
660
 
661
+ #: bws_menu.php:439 bws_menu.php:445
 
662
  msgid "Return to BestWebSoft Panel"
663
  msgstr "Návrat na BestWebSoft panel"
664
 
665
+ #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
666
  msgid "All"
667
  msgstr "Vše"
668
 
669
+ #: bws_menu.php:450 bws_menu.php:650
670
  msgid "Installed"
671
  msgstr "Instalováno"
672
 
673
+ #: bws_menu.php:451
674
  msgid "Not Installed"
675
  msgstr "Neninstalováno"
676
 
677
+ #: bws_menu.php:457
 
678
  msgid "Filter results"
679
  msgstr "Výsledky filtrování"
680
 
681
+ #: bws_menu.php:460 bws_menu.php:589
682
  msgid "Category"
683
  msgstr "Rubriky"
684
 
685
+ #: bws_menu.php:524
686
  msgid "Not installed"
687
  msgstr "Neninstalováno"
688
 
689
+ #: bws_menu.php:528
 
690
  msgid "Renew to get updates"
691
+ msgstr "Obnovit pro získání aktualizací"
692
 
693
+ #: bws_menu.php:531
694
+ #, php-format
695
  msgid "Update to v %s"
696
+ msgstr "Aktualizovat na %s"
697
 
698
+ #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
699
  msgid "Install Now"
700
  msgstr "Instalovat nyní"
701
 
702
+ #: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
703
  msgid "Upgrade to Pro"
704
  msgstr "Aktualizovat na Pro"
705
 
706
+ #: bws_menu.php:563 bws_menu.php:572
707
  msgid "Activate this plugin"
708
  msgstr "Aktivovat tento plugin"
709
 
710
+ #: bws_menu.php:575
711
  msgid "Install this plugin"
712
  msgstr "Instalovat tento plugin"
713
 
714
+ #: bws_menu.php:584
715
  msgid "Nothing found. Try another criteria."
716
  msgstr "Nic nenalezeno. Zkuste jiná kritéria."
717
 
718
+ # podle, nebo taky od
719
+ #: bws_menu.php:621 bws_menu.php:641
720
  #, php-format
721
  msgid "By %s"
722
+ msgstr "podle %s"
723
 
724
+ #: bws_menu.php:648
725
  msgid "Already Installed"
726
  msgstr "Již instalováno"
727
 
728
+ #: bws_menu.php:659
729
  msgid "Browse Free WordPress Themes"
730
  msgstr "Procházet WordPress šablony zdarma"
731
 
732
+ #: bws_menu.php:668
733
  msgid "Send to support"
734
  msgstr "Odeslat podpoře"
735
 
736
+ #: bws_menu.php:675
737
  msgid "Send to custom email &#187;"
738
  msgstr "Odeslat na vlastní e-mail &#187;"
739
 
740
+ #: class-bws-settings.php:135
 
741
  msgid "Information"
742
+ msgstr "Informace"
743
 
744
+ #: class-bws-settings.php:143
 
745
  msgid "Inactive"
746
+ msgstr "Neaktivní"
747
 
748
+ #: class-bws-settings.php:151
749
  msgid "Expired"
750
+ msgstr "Expirované"
751
 
752
+ #: class-bws-settings.php:154
753
  #, php-format
754
  msgid "%s day(-s) left"
755
+ msgstr "%s dnů zbývá"
756
 
757
+ #: class-bws-settings.php:160
758
+ #, php-format
759
  msgid "Expired on %s"
760
+ msgstr "Vypršela dne %s"
761
 
762
+ #: class-bws-settings.php:160
763
  msgid "Renew Now"
764
+ msgstr "Obnovit nyní"
765
 
766
+ #: class-bws-settings.php:162
 
767
  msgid "Active"
768
+ msgstr "Aktivní"
769
 
770
+ #: class-bws-settings.php:167
 
771
  msgid "License"
772
+ msgstr "Licence"
773
 
774
+ #: class-bws-settings.php:170
 
775
  msgid "Status"
776
+ msgstr "Stav"
777
 
778
+ #: class-bws-settings.php:174
 
779
  msgid "Version"
780
+ msgstr "Verze"
781
 
782
+ #: class-bws-settings.php:282
 
783
  msgid "All plugin settings were restored."
784
+ msgstr "Všechna nastavení pluginu byla obnovena"
785
 
786
+ #: class-bws-settings.php:420
 
787
  msgid "Custom Code"
788
+ msgstr "Vlastní kód"
789
 
790
+ #: class-bws-settings.php:424 deprecated.php:497
791
  msgid "You do not have sufficient permissions to edit plugins for this site."
792
  msgstr "Nemáte dostatečná oprávnění pro úpravu pluginů tohoto webu."
793
 
794
+ #: class-bws-settings.php:429 deprecated.php:618
 
795
  msgid "These styles will be added to the header on all pages of your site."
796
+ msgstr "Tyto styly budou přidány do hlaviček všech stránek vašeho webu."
797
 
798
+ #: class-bws-settings.php:432 deprecated.php:620
799
  #, php-format
800
  msgid ""
801
  "This PHP code will be hooked to the %s action and will be printed on front "
802
  "end only."
803
  msgstr ""
804
+ "Tento PHP kód bude závislý na %s akci a bude zobrazen pouze na front endu."
 
805
 
806
+ #: class-bws-settings.php:435
 
807
  msgid "These code will be added to the header on all pages of your site."
808
+ msgstr "Tento kód bude přidán do záhlaví všech stránek vašeho webu."
809
 
810
+ #: class-bws-settings.php:443 deprecated.php:644
811
  #, php-format
812
  msgid ""
813
  "You need to make this files writable before you can save your changes. See "
816
  "Před tím, než budete moci vaše změny uložit, nastavte těmto souborům "
817
  "oprávnění pro zápis. Podívejte se %s na Kodex %s pro více informací."
818
 
819
+ #: class-bws-settings.php:453 deprecated.php:626
820
  msgid "Browsing"
821
  msgstr "Procházení"
822
 
823
+ #: class-bws-settings.php:457
824
  #, php-format
825
  msgid "Activate custom %s code."
826
+ msgstr "Aktivovat vlastní %s kód."
827
 
828
+ #: class-bws-settings.php:464 deprecated.php:633
829
  #, php-format
830
  msgid "Learn more about %s"
831
  msgstr "Dozvědět se více o %s"
832
 
833
+ #: class-bws-settings.php:524
834
  msgid "Miscellaneous Settings"
835
+ msgstr "Různá nastavení"
836
 
837
+ #: class-bws-settings.php:533 class-bws-settings.php:584
838
  #, php-format
839
  msgid ""
840
  "It is prohibited to change %s settings on this site in the %s network "
841
  "settings."
842
+ msgstr "Je zakázáno měnit nastavení %s na této stránce v %s nastavení sítě."
843
 
844
+ #: class-bws-settings.php:536 class-bws-settings.php:587
845
  #, php-format
846
  msgid ""
847
  "It is prohibited to view %s settings on this site in the %s network settings."
848
+ msgstr "Je zobrazit nastavení %s na této stránce v %s nastavení sítě."
849
 
850
+ #: class-bws-settings.php:545
 
851
  msgid "Pro Options"
852
+ msgstr "PRO nastavení"
853
 
854
+ #: class-bws-settings.php:548
855
  msgid "Enable to display plugin Pro options."
856
+ msgstr "Povolit zobrazení PRO voleb pluginu."
857
 
858
+ #: class-bws-settings.php:553
859
  msgid "Track Usage"
860
+ msgstr "Sběr statistik"
861
 
862
+ #: class-bws-settings.php:556
863
  msgid ""
864
  "Enable to allow tracking plugin usage anonymously in order to make it better."
865
  msgstr ""
866
+ "Umožnit anonymní sledování využití pluginu tak, aby mohl být dále vylepšován."
867
 
868
+ #: class-bws-settings.php:560
 
869
  msgid "Default Settings"
870
+ msgstr "Výchozí nastavení"
871
 
872
+ #: class-bws-settings.php:562
 
873
  msgid "Restore Settings"
874
  msgstr "Obnovit nastavení"
875
 
876
+ #: class-bws-settings.php:563
 
877
  msgid "This will restore plugin settings to defaults."
878
+ msgstr "Toto obnoví veškerá nastavení pluginu na výchozí hodnoty."
879
 
880
+ #: class-bws-settings.php:575
881
  msgid "Import / Export"
882
+ msgstr "Import / Export"
883
 
884
+ #: class-bws-settings.php:691 class-bws-settings.php:724
885
+ #: class-bws-settings.php:746
 
886
  msgid "License Key"
887
+ msgstr "Licenční klíč"
888
 
889
+ #: class-bws-settings.php:714
 
890
  msgid "Congratulations! Pro license is activated successfully."
891
+ msgstr "Gratulujeme! PRO licence byla úspěšně aktivována."
892
 
893
+ #: class-bws-settings.php:715
894
+ #, php-format
895
+ msgid "You will be automatically redirected to the %s in %s seconds."
896
+ msgstr ""
897
 
898
+ #: class-bws-settings.php:715
 
899
  msgid "Settings page"
900
+ msgstr "Stránka nastavení"
901
 
902
+ #: class-bws-settings.php:730
903
+ #, php-format
904
  msgid "Enter your license key to activate %s and get premium plugin features."
905
+ msgstr ""
906
+ "Vložte váš licenční klíč pro aktivaci %s a získání prémiových fukcí pluginu."
907
 
908
+ #: class-bws-settings.php:733 class-bws-settings.php:920 deprecated.php:362
909
  #: deprecated.php:703
910
  msgid ""
911
  "Unfortunately, you have exceeded the number of available tries per day. "
914
  "Bohužel, jste překročili počet dostupných pokusů za den. Prosím, nahrejte "
915
  "plugin ručně."
916
 
917
+ #: class-bws-settings.php:736 deprecated.php:694
918
  #, php-format
919
  msgid "Start Your Free %s-Day Trial Now"
920
  msgstr "Vyzkoušejte vaší %s-denní zkušební verzi zdarma nyní"
921
 
922
+ #: class-bws-settings.php:751
 
923
  msgid ""
924
  "If necessary, you can check if the license key is correct or reenter it in "
925
  "the field below."
926
  msgstr ""
927
  "V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, případně "
928
+ "jej do pole níže vložte znova."
 
929
 
930
+ #: class-bws-settings.php:756
931
  msgid "Manage License Settings"
932
+ msgstr "Správa nastavení licencí"
933
 
934
+ #: class-bws-settings.php:758
 
935
  msgid "Login to Client Area"
936
+ msgstr "Přihlášení do klientská zóny"
937
 
938
+ #: class-bws-settings.php:760
939
  msgid ""
940
  "Manage active licenses, download BWS products, and view your payment history "
941
  "using BestWebSoft Client Area."
942
  msgstr ""
943
+ "Správa aktivních licencí, stahování BWS produktů a zobrazení historie plateb "
944
+ "v BestWebSoft klientské zóně."
945
 
946
+ #: class-bws-settings.php:815 class-bws-settings.php:918 deprecated.php:141
947
  #: deprecated.php:360
 
948
  msgid "This license key is bound to another site."
949
+ msgstr "Tento licenční klíč je přidružen k jinému webu."
950
 
951
+ #: class-bws-settings.php:817 deprecated.php:143
952
  msgid ""
953
  "This license key is valid, but Your license has expired. If you want to "
954
  "update our plugin in future, you should extend the license."
956
  "Tento licenční klíč je platný, ale vaše licence vypršela. Chcete-li náš "
957
  "plugin v budoucnosti aktualizovat, měli by jste licenci prodloužit."
958
 
959
+ #: class-bws-settings.php:819 deprecated.php:145
960
  msgid "Unfortunately, you have exceeded the number of available tries."
961
  msgstr "Bohužel, překročili jste dostupný počet pokusů."
962
 
963
+ #: class-bws-settings.php:821 deprecated.php:147
964
  msgid ""
965
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
966
  "The Pro Trial license can be installed only once."
968
  "Bohužel, tato zkušební Pro licence již pro tuto doménu byla použita. "
969
  "Zkušební Pro licence může být instalována pouze jedenkrát."
970
 
971
+ #: class-bws-settings.php:826 deprecated.php:151
972
  msgid "The Pro Trial license key is valid."
973
  msgstr "Licenční klíč zkušební Pro verze je platný"
974
 
975
+ #: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
976
  #, php-format
977
  msgid ""
978
  "In order to continue using the plugin it is necessary to buy a %s license."
979
  msgstr ""
980
  "Pokud chcete nadále využívat tento plugin, je nutné zakoupit %s licenci."
981
 
982
+ #: class-bws-settings.php:1031 deprecated.php:463
983
  msgid "Please, enter Your license key"
984
  msgstr "Prosím, vložte váš licenční klíč"
985
 
986
+ #: class-bws-settings.php:1043
 
987
  msgid "Need Help?"
988
+ msgstr "Potřebujete pomoc?"
989
 
990
+ #: class-bws-settings.php:1045
 
991
  msgid "Read the Instruction"
992
+ msgstr "Přečíst si instrukce"
993
 
994
+ #: class-bws-settings.php:1049
995
  msgid "Watch the Video"
996
+ msgstr "Přehrát video"
997
 
998
+ #: class-bws-settings.php:1060
 
999
  msgid "Start Your Free Trial"
1000
+ msgstr "Vyzkoušejte po omezenou dobu"
1001
 
1002
  #: deprecated.php:93
1003
  msgid "System Status"
1008
  msgstr "Prosím, vložte váš licenční klíč."
1009
 
1010
  #: deprecated.php:223
 
1011
  msgid ""
1012
  "If necessary, you can check if the license key is correct or reenter it in "
1013
  "the field below. You can find your license key on your personal page - "
1026
  "nutné, prosím odešlete \"Lost your password?\" požadavek."
1027
 
1028
  #: deprecated.php:247
 
1029
  msgid "After that, you can activate it by entering your license key."
1030
+ msgstr "Poté jej lze snadno aktivovat zadáním licenčního klíče."
1031
 
1032
  #: deprecated.php:249 deprecated.php:688
1033
  msgid "License key can be found in the"
1035
 
1036
  #: deprecated.php:251 deprecated.php:690
1037
  msgid "(your username is the email address specified during the purchase)."
1038
+ msgstr "(vaše uživatelské jméno je e-mailová adresa uvedená při nákupu)."
1039
 
1040
  #: deprecated.php:278
 
1041
  msgid ""
1042
  "Congratulations! The Pro license of the plugin is activated successfully."
1043
  msgstr "Gratulujeme! PRO licence pluginu je úspěšně aktivována."
1047
  msgstr "Prosím, jděte na"
1048
 
1049
  #: deprecated.php:280 deprecated.php:669
 
1050
  msgid "the setting page"
1051
  msgstr "stránka nastavení"
1052
 
1080
  msgstr "Nedostatečná oprávnění pro vytvoření souboru"
1081
 
1082
  #: deprecated.php:624
 
1083
  msgid "Editing"
1084
+ msgstr "Úprava"
1085
 
1086
  #: deprecated.php:667
 
1087
  msgid ""
1088
  "Congratulations! Pro version of the plugin is installed and activated "
1089
  "successfully."
1137
  msgid "Other"
1138
  msgstr "Ostatní"
1139
 
1140
+ #~ msgid "Thank you for installing"
1141
+ #~ msgstr "Děkujeme vám za instalaci"
1142
 
1143
+ #~ msgid "Thank you for choosing"
1144
+ #~ msgstr "Děkujeme, že jste si vybrali"
 
1145
 
1146
+ # copy
1147
+ #~ msgid "PHP Safe Mode"
1148
+ #~ msgstr "PHP Safe Mode"
1149
 
1150
+ #~ msgid "You will be automatically redirected to the %s in 7 seconds."
1151
+ #~ msgstr "Budete automaticky přesměrováni na %s za 7 sekund."
 
 
 
 
1152
 
1153
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1154
+ #~ msgstr ""
1155
+ #~ "Pokud se Vám náš plugin líbí, dejte mu prosím 5 hvězdiček na WordPressu"
1156
+
1157
+ #~ msgid "Rate the plugin"
1158
+ #~ msgstr "Hodnotit plugin"
1159
 
1160
  #~ msgid "If there is something wrong about it, please contact us"
1161
  #~ msgstr "Pokud cokoli není v pořádku, obraťte se na nás"
1163
  #~ msgid "Donations play an important role in supporting great projects"
1164
  #~ msgstr "Dary hrají důležitou roli v podpoře velkých projektů"
1165
 
1166
+ #~ msgid "This license key is bind to another site"
1167
+ #~ msgstr "Tento licenční klíč se váže k jinému webu"
 
 
 
 
 
 
1168
 
1169
  #~ msgid ""
1170
+ #~ "Unfortunately, Your license has expired. To continue getting top-priority "
1171
+ #~ "support and plugin updates you should extend it in your"
1172
  #~ msgstr ""
1173
+ #~ "Bohužel, Vaše licence vypršela. Chcete-li pokračovat v získávání top-"
1174
+ #~ "prioritní podpory a aktualizace pluginu měli byste ji prodloužit ve vašem"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1175
 
1176
  #~ msgid ""
1177
+ #~ "Congratulations! Pro version of the plugin is successfully installed and "
1178
+ #~ "activated."
1179
  #~ msgstr ""
1180
+ #~ "Gratulujeme! PRO verze pluginu byla úspěšně instalována a aktivována."
 
 
 
 
 
 
 
 
 
 
 
 
 
1181
 
1182
+ #~ msgid "After that you can activate it by entering your license key."
1183
+ #~ msgstr "Poté, co jej aktivujete vložením vašeho licenčního klíče."
1184
 
1185
+ #~ msgid ""
1186
+ #~ "Congratulations! The Pro license of the plugin is successfully activated."
1187
+ #~ msgstr "Gratulujeme! PRO licence pluginu je úspěšně aktivována."
1188
 
1189
+ #~ msgid "This license key is bind to another site."
1190
+ #~ msgstr "Tento licenční klíč je přidružen k jiným webovým stránkám."
1191
 
1192
+ #~ msgid ""
1193
+ #~ "If needed you can check if the license key is correct or reenter it in "
1194
+ #~ "the field below. You can find your license key on your personal page - "
1195
+ #~ "Client area - on our website"
1196
+ #~ msgstr ""
1197
+ #~ "V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, "
1198
+ #~ "případně jej do pole níže vložte znova. Váš licenční klíč najdete na vaší "
1199
+ #~ "osobní stránce - Client area - na našem webu"
1200
 
1201
+ #~ msgid ""
1202
+ #~ "Notice: Your Pro Trial license has expired. To continue using the plugin "
1203
+ #~ "you should buy a Pro license"
1204
+ #~ msgstr ""
1205
+ #~ "Poznámka: Vaše zkušební Pro verze pluginu vypršela. Pro další využíváni "
1206
+ #~ "pluginu bude nutné zakoupit Pro licenci"
1207
 
1208
+ #~ msgid ""
1209
+ #~ "Your license has expired. To continue getting top-priority support and "
1210
+ #~ "plugin updates you should extend it."
1211
+ #~ msgstr ""
1212
+ #~ "Vaše licence vypršela. Pro přístup k top-prioritní podpoře a aktualizacím "
1213
+ #~ "pluginu ji budete muset prodloužit."
1214
 
1215
+ #~ msgid "You license for"
1216
+ #~ msgstr "Vaše licence pro"
1217
 
1218
+ #~ msgid "expires on"
1219
+ #~ msgstr "vyprší"
1220
 
1221
+ #~ msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
1222
+ #~ msgstr "a nebudete mít přístup k TOP-PRIORITNÍ PODPOŘE nebo AKTUALIZACÍM."
1223
 
1224
  #~ msgid ""
1225
+ #~ "You can always look at premium options by clicking on the \"Show Pro "
1226
+ #~ "features\" in the \"Go PRO\" tab"
1227
  #~ msgstr ""
1228
+ #~ "Vždy se můžete podívat na možnosti prémiové verze, kliknutím na "
1229
+ #~ "\"Zobrazit Pro vlastnosti\" na \"Go PRO\" záložce"
1230
 
1231
+ #~ msgid "Are you sure you want to restore all settings by default?"
1232
+ #~ msgstr ""
1233
+ #~ "Jste si jisti, že chcete obnovit veškerá nastavení na výchozí hodnoty?"
1234
 
1235
+ #~ msgid ""
1236
+ #~ "This license key is bind to another website. Change it via personal "
1237
+ #~ "Client Area."
1238
+ #~ msgstr ""
1239
+ #~ "Tento licenční klíč je přidružen k jiným webovým stránkám. Změňte jej "
1240
+ #~ "prostřednictvím osobní Klientské zóny."
1241
 
1242
+ #~ msgid "Congratulations! Pro Membership license is successfully activated."
1243
+ #~ msgstr "Gratulujeme! Členská PRO licence byla úspěšně aktivována."
1244
 
1245
+ #~ msgid "Memory usage"
1246
+ #~ msgstr "Využití paměti"
1247
 
1248
+ #~ msgid "MYSQL Version"
1249
+ #~ msgstr "Verze MYSQL"
1250
 
1251
+ #~ msgid "Site URL"
1252
+ #~ msgstr "URL webových stránek"
1253
 
1254
+ #~ msgid "WordPress Version"
1255
+ #~ msgstr "Verze WordPress"
1256
 
1257
+ #~ msgid "WordPress DB Version"
1258
+ #~ msgstr "WordPress verze DB"
1259
 
1260
+ # copy
1261
+ #~ msgid "Multisite"
1262
+ #~ msgstr "Multisite"
1263
 
1264
+ #~ msgid "Email with system info is sent to "
1265
+ #~ msgstr "E-mail se systémovým nastavením byl odeslán na"
1266
 
1267
+ #~ msgid "Client Area"
1268
+ #~ msgstr "Klientská zóna"
1269
 
1270
+ #~ msgid "Successfully installed the plugin"
1271
+ #~ msgstr "Plugin byl úspěšně instalován"
1272
 
1273
+ #~ msgid "Environment"
1274
+ #~ msgstr "Prostředí"
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: 2017-02-28 17:07+0200\n"
6
- "PO-Revision-Date: 2017-02-28 17:07+0200\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
@@ -38,28 +38,26 @@ msgid "Plugins page"
38
  msgstr "Page des extensions"
39
 
40
  #: bws_functions.php:91
41
- #, fuzzy
42
  msgid "Like the plugin?"
43
  msgstr "Voter pour l'extension"
44
 
45
  #: bws_functions.php:93
46
  msgid "Rate it"
47
- msgstr ""
48
 
49
  #: bws_functions.php:102
50
  msgid "Need help?"
51
  msgstr "Besoin d'aide ?"
52
 
53
- #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1036
54
  msgid "Visit Help Center"
55
  msgstr "Visiter le site du support"
56
 
57
  #: bws_functions.php:106
58
- #, fuzzy
59
  msgid "Want to support the plugin?"
60
  msgstr "Voter pour l'extension"
61
 
62
- #: bws_functions.php:107 bws_menu.php:551
63
  msgid "Donate"
64
  msgstr "Don"
65
 
@@ -80,28 +78,26 @@ msgstr ""
80
  "de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue "
81
  "inactive."
82
 
83
- #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:625
84
- #: class-bws-settings.php:142
85
  msgid "Learn More"
86
  msgstr "En savoir plus"
87
 
88
  #: bws_functions.php:144
89
- #, fuzzy
90
  msgid ""
91
  "Notice: Your Pro Trial license has expired. To continue using the plugin, "
92
  "you should buy a Pro license"
93
  msgstr ""
94
- "Votre licence d'évaluation est terminée. Pour continuer à disposer du "
95
- "support rapide et des mises à jour de l'extension vous devez la renouveler."
96
 
97
  #: bws_functions.php:146
98
- #, fuzzy
99
  msgid ""
100
  "Your license has expired. To continue getting top-priority support and "
101
  "plugin updates, you should extend it."
102
  msgstr ""
103
  "Votre licence est terminée. Pour continuer à disposer du support rapide et "
104
- "des mises à jour de l'extension vous devez la renouveller."
105
 
106
  #: bws_functions.php:146 bws_functions.php:382 deprecated.php:584
107
  msgid "Learn more"
@@ -130,20 +126,21 @@ msgstr ""
130
  "correctement. Merci de mettre à jour Wordpress avec la dernière version."
131
 
132
  #: bws_functions.php:207
133
- msgid "Thank you for installing"
134
- msgstr "Merci d'avoir installé"
 
135
 
136
  #: bws_functions.php:208
137
  msgid "Let's get started"
138
  msgstr "Démarrer"
139
 
140
- #: bws_functions.php:209 bws_functions.php:242 bws_menu.php:555
141
- #: bws_menu.php:557
142
  msgid "Settings"
143
  msgstr "Réglages"
144
 
145
- #: bws_functions.php:211 bws_menu.php:326 class-bws-settings.php:725
146
- #: class-bws-settings.php:1038 class-bws-settings.php:1048 deprecated.php:694
147
  msgid "or"
148
  msgstr "ou"
149
 
@@ -170,12 +167,14 @@ msgstr "Moins de détails"
170
 
171
  #: bws_functions.php:262
172
  msgid "Deprecated function(-s) is used on the site here:"
173
- msgstr ""
174
 
175
  #: bws_functions.php:276
176
  msgid ""
177
  "This function(-s) will be removed over time. Please update the product(-s)."
178
  msgstr ""
 
 
179
 
180
  #: bws_functions.php:335
181
  msgid "It’s time to upgrade your"
@@ -196,15 +195,18 @@ msgstr ""
196
  "options."
197
 
198
  #: bws_functions.php:382
199
- #, fuzzy, php-format
200
  msgid ""
201
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
202
  "SUPPORT or UPDATES."
203
- msgstr "et vous ne disposerez plus du support rapide et des mises à jour."
 
 
204
 
205
  #: bws_functions.php:477
206
- msgid "Thank you for choosing"
207
- msgstr "Merci d'avoir choisi"
 
208
 
209
  #: bws_functions.php:478
210
  msgid ""
@@ -218,8 +220,8 @@ msgstr ""
218
  msgid "Suggest a Feature"
219
  msgstr "Proposer une fonctionnalité"
220
 
221
- #: bws_functions.php:495 class-bws-settings.php:532 class-bws-settings.php:535
222
- #: class-bws-settings.php:583 class-bws-settings.php:586
223
  msgid "Notice"
224
  msgstr "Avertissement"
225
 
@@ -227,19 +229,18 @@ msgstr "Avertissement"
227
  msgid "The plugin's settings have been changed."
228
  msgstr "Les paramètres de l'extension ont été modifiés."
229
 
230
- #: bws_functions.php:496 class-bws-settings.php:181 class-bws-settings.php:201
231
  #: deprecated.php:640
232
  msgid "Save Changes"
233
- msgstr "Sauvegarder les modifications"
234
 
235
  #: bws_functions.php:510
236
- #, fuzzy
237
  msgid ""
238
  "You can always look at premium options by checking the \"Pro Options\" in "
239
  "the \"Misc\" tab."
240
  msgstr ""
241
  "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
242
- "\"Voir les fonctionnalités de la version PRO\" dans l'onglet Passer PRO"
243
 
244
  #: bws_functions.php:651
245
  msgid "Add shortcode"
@@ -254,7 +255,6 @@ msgid "Close"
254
  msgstr "Fermer"
255
 
256
  #: bws_functions.php:792
257
- #, fuzzy
258
  msgid "Are you sure you want to restore default settings?"
259
  msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
260
 
@@ -302,12 +302,12 @@ msgstr "Vidéo explicative"
302
  msgid "Submit a Request"
303
  msgstr "Soumettre une requête"
304
 
305
- #: bws_menu.php:99 class-bws-settings.php:770 deprecated.php:322
306
  msgid "Wrong license key"
307
  msgstr "Clé de licence incorrecte"
308
 
309
- #: bws_menu.php:120 class-bws-settings.php:796 class-bws-settings.php:863
310
- #: class-bws-settings.php:899 deprecated.php:133 deprecated.php:199
311
  #: deprecated.php:352
312
  msgid ""
313
  "Something went wrong. Please try again later. If the error appears again, "
@@ -317,19 +317,18 @@ msgstr ""
317
  "nouveau, merci de contacter <a href=http://support.bestwebsoft."
318
  "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
319
 
320
- #: bws_menu.php:120 class-bws-settings.php:796 class-bws-settings.php:863
321
- #: class-bws-settings.php:899 deprecated.php:133 deprecated.php:199
322
  #: deprecated.php:352
323
  msgid "We are sorry for inconvenience."
324
  msgstr "Nous sommes désolés pour le désagrément."
325
 
326
- #: bws_menu.php:126 class-bws-settings.php:802 class-bws-settings.php:905
327
  #: deprecated.php:139 deprecated.php:358
328
  msgid "Wrong license key."
329
  msgstr "Clé de licence incorrecte."
330
 
331
- #: bws_menu.php:128
332
- #, fuzzy
333
  msgid ""
334
  "This license key is bound to another site. Change it via personal Client "
335
  "Area."
@@ -337,26 +336,27 @@ msgstr ""
337
  "La clé de licence correspond à un autre site. Modifier là au travers de "
338
  "votre espace client."
339
 
340
- #: bws_menu.php:128
341
  msgid "Log in"
342
  msgstr "Connexion"
343
 
344
- #: bws_menu.php:130 bws_menu.php:332 deprecated.php:261
345
  msgid "Unfortunately, you have exceeded the number of available tries per day."
346
  msgstr ""
347
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
348
  "télécharger l'extension manuellement."
349
 
350
- #: bws_menu.php:132 class-bws-settings.php:911 deprecated.php:364
351
- #, fuzzy, php-format
352
  msgid ""
353
  "Unfortunately, Your license has expired. To continue getting top-priority "
354
  "support and plugin updates, you should extend it in your %s"
355
  msgstr ""
356
  "Désoler, votre licence est terminée. Pour continuer à disposer du support "
357
- "rapide et des mises à jour de l'extension vous devez la renouveler dans votre"
 
358
 
359
- #: bws_menu.php:134 class-bws-settings.php:913 deprecated.php:366
360
  msgid ""
361
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
362
  "Trial license can be installed only once."
@@ -364,22 +364,20 @@ msgstr ""
364
  "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
365
  "peut-être installée qu'une seule fois."
366
 
367
- #: bws_menu.php:140 class-bws-settings.php:817 deprecated.php:153
368
  msgid "The license key is valid."
369
  msgstr "La clé de licence est valide."
370
 
371
- #: bws_menu.php:142 class-bws-settings.php:820 deprecated.php:156
372
  msgid "Your license will expire on"
373
  msgstr "Votre licence se termine le "
374
 
375
- #: bws_menu.php:144
376
- #, fuzzy
377
  msgid "Congratulations! Pro Membership license is activated successfully."
378
  msgstr ""
379
- "Félicitations! La version PRO de cette extension a été téléchargée et "
380
- "activée avec succès."
381
 
382
- #: bws_menu.php:151 class-bws-settings.php:985 deprecated.php:435
383
  msgid ""
384
  "Something went wrong. Try again later or upload the plugin manually. We are "
385
  "sorry for inconvenience."
@@ -387,224 +385,213 @@ msgstr ""
387
  "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
388
  "l'extension manuellement.Nous sommes désolés pour le désagrément."
389
 
390
- #: bws_menu.php:161
391
  msgid "Please enter your license key."
392
  msgstr "Merci de saisir votre clé de licence."
393
 
394
- #: bws_menu.php:172
395
  msgid "Not set"
396
  msgstr "Not set"
397
 
398
- #: bws_menu.php:174
399
  msgid "On"
400
  msgstr "On"
401
 
402
- #: bws_menu.php:174
403
  msgid "Off"
404
  msgstr "Off"
405
 
406
- #: bws_menu.php:175 bws_menu.php:176 bws_menu.php:177 bws_menu.php:178
407
- #: bws_menu.php:179 bws_menu.php:180 bws_menu.php:189
408
  msgid "N/A"
409
  msgstr "N/A"
410
 
411
- #: bws_menu.php:180
412
  msgid " Mb"
413
  msgstr " Mb"
414
 
415
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:183 bws_menu.php:187
416
  msgid "Yes"
417
  msgstr "Yes"
418
 
419
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:183 bws_menu.php:187
420
  msgid "No"
421
  msgstr "No"
422
 
423
- #: bws_menu.php:194
424
- #, fuzzy
425
  msgid "WordPress Environment"
426
- msgstr "Environnent"
427
 
428
- #: bws_menu.php:196
429
  msgid "Home URL"
430
  msgstr "Home URL"
431
 
432
- #: bws_menu.php:197
433
- #, fuzzy
434
  msgid "Website URL"
435
  msgstr "Site URL"
436
 
437
- #: bws_menu.php:198
438
- #, fuzzy
439
  msgid "WP Version"
440
- msgstr "PHP Version"
441
 
442
- #: bws_menu.php:199
443
- #, fuzzy
444
  msgid "WP Multisite"
445
- msgstr "Multisite"
446
 
447
- #: bws_menu.php:200
448
- #, fuzzy
449
  msgid "WP Memory Limit"
450
- msgstr "PHP Memory Limit"
451
 
452
- #: bws_menu.php:201
453
  msgid "Active Theme"
454
  msgstr "Active Theme"
455
 
456
- #: bws_menu.php:201 bws_menu.php:246 bws_menu.php:249
457
- #, fuzzy, php-format
458
  msgid "by %s"
459
- msgstr "Par %s"
460
 
461
- #: bws_menu.php:205
462
- #, fuzzy
463
  msgid "Server Environment"
464
- msgstr "Environnent"
465
 
466
- #: bws_menu.php:207
467
  msgid "Operating System"
468
  msgstr "Operating System"
469
 
470
- #: bws_menu.php:208
471
  msgid "Server"
472
  msgstr "Server"
473
 
474
- #: bws_menu.php:209
475
  msgid "PHP Version"
476
  msgstr "PHP Version"
477
 
478
- #: bws_menu.php:210
479
  msgid "PHP Allow URL fopen"
480
  msgstr "PHP Allow URL fopen"
481
 
482
- #: bws_menu.php:211
483
  msgid "PHP Memory Limit"
484
  msgstr "PHP Memory Limit"
485
 
486
- #: bws_menu.php:212
487
- #, fuzzy
488
  msgid "Memory Usage"
489
  msgstr "Memory usage"
490
 
491
- #: bws_menu.php:213
492
  msgid "PHP Max Upload Size"
493
  msgstr "PHP Max Upload Size"
494
 
495
- #: bws_menu.php:214
496
  msgid "PHP Max Post Size"
497
  msgstr "PHP Max Post Size"
498
 
499
- #: bws_menu.php:215
500
  msgid "PHP Max Script Execute Time"
501
  msgstr "PHP Max Script Execute Time"
502
 
503
- #: bws_menu.php:216
504
  msgid "PHP Exif support"
505
  msgstr "PHP Exif support"
506
 
507
- #: bws_menu.php:217
508
  msgid "PHP IPTC support"
509
  msgstr "PHP IPTC support"
510
 
511
- #: bws_menu.php:218
512
  msgid "PHP XML support"
513
  msgstr "PHP XML support"
514
 
515
- #: bws_menu.php:224
516
  msgid "Database"
517
- msgstr ""
518
 
519
- #: bws_menu.php:226
520
- #, fuzzy
521
  msgid "WP DB version"
522
  msgstr "WordPress DB Version"
523
 
524
- #: bws_menu.php:227
525
- #, fuzzy
526
  msgid "MySQL version"
527
  msgstr "MYSQL Version"
528
 
529
- #: bws_menu.php:228
530
  msgid "SQL Mode"
531
  msgstr "SQL Mode"
532
 
533
- #: bws_menu.php:232
534
  msgid "Active Plugins"
535
  msgstr "Extensions actives"
536
 
537
- #: bws_menu.php:237
538
  msgid "Inactive Plugins"
539
  msgstr "Extensions inactives"
540
 
541
- #: bws_menu.php:258
542
  msgid "Please enter a valid email address."
543
  msgstr "Merci de saisir une adresse e-mail valide."
544
 
545
- #: bws_menu.php:262
546
- #, fuzzy
547
  msgid "Email with system info is sent to"
548
  msgstr "Le courriel avec les informations système est envoyé à"
549
 
550
- #: bws_menu.php:266
551
  msgid "Thank you for contacting us."
552
  msgstr "Merci de nous avoir contacté."
553
 
554
- #: bws_menu.php:289
555
  msgid "Sorry, email message could not be delivered."
556
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
557
 
558
- #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
559
  msgid "Plugins"
560
  msgstr "Extensions"
561
 
562
- #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:609 deprecated.php:92
563
  msgid "Themes"
564
  msgstr "Thèmes"
565
 
566
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:660
567
  msgid "System status"
568
  msgstr "Etat du système"
569
 
570
- #: bws_menu.php:315
571
  msgid "Support"
572
  msgstr "Support"
573
 
574
- #: bws_menu.php:316
575
  msgid "Manage purchased licenses & subscriptions"
576
  msgstr "Gérer les licences et les adhésions"
577
 
578
- #: bws_menu.php:324
579
  #, php-format
580
  msgid "Get Access to %s+ Premium Plugins"
581
  msgstr "Accéder à plus de %s extension premiums"
582
 
583
- #: bws_menu.php:326
584
- #, fuzzy
585
  msgid "Subscribe to Pro Membership"
586
  msgstr "Souscrire une adhésion PRO"
587
 
588
- #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:738
589
  #: deprecated.php:227
590
  msgid "Check license key"
591
  msgstr "Vérifier la clé de licence"
592
 
593
- #: bws_menu.php:337
594
  msgid "Enter your license key"
595
  msgstr "Merci de saisir votre clé de licence"
596
 
597
- #: bws_menu.php:343 bws_menu.php:561 bws_menu.php:570
598
- #: class-bws-settings.php:717 deprecated.php:259 deprecated.php:267
599
  #: deprecated.php:629 deprecated.php:700 deprecated.php:709
600
  msgid "Activate"
601
  msgstr "Activé"
602
 
603
- #: bws_menu.php:359
604
  msgid "Upload Plugin"
605
  msgstr "Charger l'extension"
606
 
607
- #: bws_menu.php:363
608
  #, php-format
609
  msgid ""
610
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -617,7 +604,7 @@ msgstr ""
617
  "sent&#8221;, des problèmes avec les flux de syndication ou autres, essayez "
618
  "de désactiver l'extension ou supprimer l'extension."
619
 
620
- #: bws_menu.php:365
621
  msgid ""
622
  "Plugin could not be activated because it triggered a <strong>fatal error</"
623
  "strong>."
@@ -625,42 +612,42 @@ msgstr ""
625
  "L'extension ne peut pas être activée car une <strong>erreur fatale</strong> "
626
  "a été détectée."
627
 
628
- #: bws_menu.php:368
629
  msgid "Plugin <strong>activated</strong>."
630
  msgstr "Extension <strong>activée</strong>."
631
 
632
- #: bws_menu.php:375
633
  msgid "Installing Plugin"
634
  msgstr "Extensions installées"
635
 
636
- #: bws_menu.php:381
637
  msgid "Downloading install package from"
638
  msgstr "Télécharger le paquet d'installation depuis"
639
 
640
- #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440
641
- #: class-bws-settings.php:937 class-bws-settings.php:959
642
- #: class-bws-settings.php:981 deprecated.php:387 deprecated.php:409
643
  #: deprecated.php:431
644
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
645
  msgstr ""
646
  "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
647
  "manuellement."
648
 
649
- #: bws_menu.php:406
650
  msgid "Unpacking the package"
651
  msgstr "Décompresser le paquet"
652
 
653
- #: bws_menu.php:411 bws_menu.php:419
654
  msgid "Installing the plugin"
655
  msgstr "Installer l'extension"
656
 
657
- #: bws_menu.php:415 class-bws-settings.php:949 deprecated.php:399
658
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
659
  msgstr ""
660
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
661
  "manuellement."
662
 
663
- #: bws_menu.php:422 class-bws-settings.php:955 deprecated.php:405
664
  msgid ""
665
  "Your server does not support either ZipArchive or Phar. Please, upload the "
666
  "plugin manually"
@@ -668,170 +655,161 @@ msgstr ""
668
  "Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
669
  "de télécharger l'extension manuellement."
670
 
671
- #: bws_menu.php:425
672
  #, php-format
673
  msgid "The plugin %s is successfully installed."
674
- msgstr ""
675
 
676
- #: bws_menu.php:432 class-bws-settings.php:962 deprecated.php:412
677
  msgid "UploadDir is not writable. Please, upload the plugin manually"
678
  msgstr ""
679
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
680
  "manuellement."
681
 
682
- #: bws_menu.php:437
683
  msgid "Activate Plugin"
684
  msgstr "Activer l'extension"
685
 
686
- #: bws_menu.php:437 bws_menu.php:443
687
  msgid "Return to BestWebSoft Panel"
688
  msgstr "Retourner à l'administration BestWebSoft"
689
 
690
- #: bws_menu.php:447 bws_menu.php:462 bws_menu.php:591
691
  msgid "All"
692
  msgstr "Tous"
693
 
694
- #: bws_menu.php:448 bws_menu.php:648
695
  msgid "Installed"
696
  msgstr "Installé"
697
 
698
- #: bws_menu.php:449
699
  msgid "Not Installed"
700
  msgstr "Non installé"
701
 
702
- #: bws_menu.php:455
703
  msgid "Filter results"
704
  msgstr "Filtrer les résultats"
705
 
706
- #: bws_menu.php:458 bws_menu.php:587
707
  msgid "Category"
708
  msgstr "Catégorie"
709
 
710
- #: bws_menu.php:522
711
- #, fuzzy
712
  msgid "Not installed"
713
  msgstr "Non installé"
714
 
715
- #: bws_menu.php:526
716
  msgid "Renew to get updates"
717
  msgstr "Se réabonner pour avoir les mises à jour"
718
 
719
- #: bws_menu.php:529
720
  #, php-format
721
  msgid "Update to v %s"
722
  msgstr "Mettre à jour avec la version %s"
723
 
724
- #: bws_menu.php:541 bws_menu.php:564 bws_menu.php:573
725
  msgid "Install Now"
726
  msgstr "Installer maintenant"
727
 
728
- #: bws_menu.php:547 class-bws-settings.php:155 class-bws-settings.php:1045
729
  msgid "Upgrade to Pro"
730
  msgstr "Passer à la version PRO"
731
 
732
- #: bws_menu.php:561 bws_menu.php:570
733
  msgid "Activate this plugin"
734
  msgstr "Activer cette extension"
735
 
736
- #: bws_menu.php:573
737
  msgid "Install this plugin"
738
  msgstr "Installer cette extension"
739
 
740
- #: bws_menu.php:582
741
  msgid "Nothing found. Try another criteria."
742
  msgstr "Pas de réponse. essayer d'autres critères."
743
 
744
- #: bws_menu.php:619 bws_menu.php:639
745
  #, php-format
746
  msgid "By %s"
747
  msgstr "Par %s"
748
 
749
- #: bws_menu.php:646
750
  msgid "Already Installed"
751
  msgstr "Déjà installé"
752
 
753
- #: bws_menu.php:657
754
  msgid "Browse Free WordPress Themes"
755
  msgstr "Parcourir les thèmes gratuits pour WordPress"
756
 
757
- #: bws_menu.php:666
758
  msgid "Send to support"
759
  msgstr "Envoyé au support"
760
 
761
- #: bws_menu.php:673
762
  msgid "Send to custom email &#187;"
763
  msgstr "Envoyer un e-mail spécifique &#187;"
764
 
765
- #: class-bws-settings.php:134
766
- #, fuzzy
767
  msgid "Information"
768
- msgstr "Pour plus d'informations&nbsp;:"
769
 
770
- #: class-bws-settings.php:142
771
- #, fuzzy
772
  msgid "Inactive"
773
- msgstr "Extensions inactives"
774
 
775
- #: class-bws-settings.php:150
776
  msgid "Expired"
777
- msgstr ""
778
 
779
- #: class-bws-settings.php:153
780
  #, php-format
781
  msgid "%s day(-s) left"
782
- msgstr ""
783
 
784
- #: class-bws-settings.php:159
785
- #, fuzzy, php-format
786
  msgid "Expired on %s"
787
- msgstr "se termine le"
788
 
789
- #: class-bws-settings.php:159
790
  msgid "Renew Now"
791
- msgstr ""
792
 
793
- #: class-bws-settings.php:161
794
- #, fuzzy
795
  msgid "Active"
796
  msgstr "Activé"
797
 
798
- #: class-bws-settings.php:166
799
- #, fuzzy
800
  msgid "License"
801
- msgstr "Clé de licence incorrecte"
802
 
803
- #: class-bws-settings.php:169
804
- #, fuzzy
805
  msgid "Status"
806
- msgstr "Etat du système"
807
 
808
- #: class-bws-settings.php:173
809
- #, fuzzy
810
  msgid "Version"
811
- msgstr "version"
812
 
813
- #: class-bws-settings.php:281
814
- #, fuzzy
815
  msgid "All plugin settings were restored."
816
- msgstr "Les paramètres de l'extension ont été modifiés."
817
 
818
- #: class-bws-settings.php:419
819
- #, fuzzy
820
  msgid "Custom Code"
821
- msgstr "Personnaliser"
822
 
823
- #: class-bws-settings.php:423 deprecated.php:497
824
  msgid "You do not have sufficient permissions to edit plugins for this site."
825
  msgstr ""
826
  "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
827
 
828
- #: class-bws-settings.php:428 deprecated.php:618
829
  msgid "These styles will be added to the header on all pages of your site."
830
  msgstr ""
831
  "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
832
 
833
- #: class-bws-settings.php:431 deprecated.php:620
834
- #, fuzzy, php-format
835
  msgid ""
836
  "This PHP code will be hooked to the %s action and will be printed on front "
837
  "end only."
@@ -839,13 +817,11 @@ msgstr ""
839
  "Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
840
  "partie publique."
841
 
842
- #: class-bws-settings.php:434
843
- #, fuzzy
844
  msgid "These code will be added to the header on all pages of your site."
845
- msgstr ""
846
- "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
847
 
848
- #: class-bws-settings.php:442 deprecated.php:644
849
  #, php-format
850
  msgid ""
851
  "You need to make this files writable before you can save your changes. See "
@@ -854,103 +830,103 @@ msgstr ""
854
  "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
855
  "modifications. Regarder %s du Codex %s pour plus d'informations."
856
 
857
- #: class-bws-settings.php:452 deprecated.php:626
858
  msgid "Browsing"
859
  msgstr "Parcourir"
860
 
861
- #: class-bws-settings.php:456
862
  #, php-format
863
  msgid "Activate custom %s code."
864
- msgstr ""
865
 
866
- #: class-bws-settings.php:463 deprecated.php:633
867
  #, php-format
868
  msgid "Learn more about %s"
869
  msgstr "En savoir plus sur %s"
870
 
871
- #: class-bws-settings.php:523
872
  msgid "Miscellaneous Settings"
873
- msgstr ""
874
 
875
- #: class-bws-settings.php:532 class-bws-settings.php:583
876
  #, php-format
877
  msgid ""
878
  "It is prohibited to change %s settings on this site in the %s network "
879
  "settings."
880
  msgstr ""
 
 
881
 
882
- #: class-bws-settings.php:535 class-bws-settings.php:586
883
  #, php-format
884
  msgid ""
885
  "It is prohibited to view %s settings on this site in the %s network settings."
886
  msgstr ""
 
 
887
 
888
- #: class-bws-settings.php:544
889
- #, fuzzy
890
  msgid "Pro Options"
891
- msgstr "Plugins Pro"
892
 
893
- #: class-bws-settings.php:547
894
  msgid "Enable to display plugin Pro options."
895
- msgstr ""
896
 
897
- #: class-bws-settings.php:552
898
  msgid "Track Usage"
899
- msgstr ""
900
 
901
- #: class-bws-settings.php:555
902
  msgid ""
903
  "Enable to allow tracking plugin usage anonymously in order to make it better."
904
  msgstr ""
 
 
905
 
906
- #: class-bws-settings.php:559
907
- #, fuzzy
908
  msgid "Default Settings"
909
- msgstr "Réglages"
910
 
911
- #: class-bws-settings.php:561
912
- #, fuzzy
913
  msgid "Restore Settings"
914
  msgstr "Remettre les paramètres"
915
 
916
- #: class-bws-settings.php:562
917
- #, fuzzy
918
  msgid "This will restore plugin settings to defaults."
919
- msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
920
 
921
- #: class-bws-settings.php:574
922
  msgid "Import / Export"
923
- msgstr ""
924
 
925
- #: class-bws-settings.php:690 class-bws-settings.php:713
926
- #: class-bws-settings.php:735
927
- #, fuzzy
928
  msgid "License Key"
929
- msgstr "Clé de licence incorrecte"
930
 
931
- #: class-bws-settings.php:703
932
- #, fuzzy
933
  msgid "Congratulations! Pro license is activated successfully."
934
  msgstr ""
935
- "Félicitations! La version PRO de cette extension a été téléchargée et "
936
- "activée avec succès."
937
 
938
- #: class-bws-settings.php:704
939
- #, fuzzy, php-format
940
- msgid "You will be automatically redirected to the %s in 7 seconds."
941
- msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
942
 
943
- #: class-bws-settings.php:704
944
- #, fuzzy
945
  msgid "Settings page"
946
- msgstr "Options sauvegardées."
947
 
948
- #: class-bws-settings.php:719
949
- #, fuzzy, php-format
950
  msgid "Enter your license key to activate %s and get premium plugin features."
951
- msgstr "Saisir votre clé de licence pour installer et activer"
 
 
952
 
953
- #: class-bws-settings.php:722 class-bws-settings.php:909 deprecated.php:362
954
  #: deprecated.php:703
955
  msgid ""
956
  "Unfortunately, you have exceeded the number of available tries per day. "
@@ -959,43 +935,41 @@ msgstr ""
959
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
960
  "télécharger l'extension manuellement."
961
 
962
- #: class-bws-settings.php:725 deprecated.php:694
963
  #, php-format
964
  msgid "Start Your Free %s-Day Trial Now"
965
  msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
966
 
967
- #: class-bws-settings.php:740
968
- #, fuzzy
969
  msgid ""
970
  "If necessary, you can check if the license key is correct or reenter it in "
971
  "the field below."
972
  msgstr ""
973
  "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
974
- "saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de "
975
- "licence sur votre page personnelle (zone client) sur notre site web."
976
 
977
- #: class-bws-settings.php:745
978
  msgid "Manage License Settings"
979
- msgstr ""
980
 
981
- #: class-bws-settings.php:747
982
- #, fuzzy
983
  msgid "Login to Client Area"
984
- msgstr "Espace client"
985
 
986
- #: class-bws-settings.php:749
987
  msgid ""
988
  "Manage active licenses, download BWS products, and view your payment history "
989
  "using BestWebSoft Client Area."
990
  msgstr ""
 
 
991
 
992
- #: class-bws-settings.php:804 class-bws-settings.php:907 deprecated.php:141
993
  #: deprecated.php:360
994
- #, fuzzy
995
  msgid "This license key is bound to another site."
996
  msgstr "La clé de licence correspond à un autre site."
997
 
998
- #: class-bws-settings.php:806 deprecated.php:143
999
  msgid ""
1000
  "This license key is valid, but Your license has expired. If you want to "
1001
  "update our plugin in future, you should extend the license."
@@ -1004,13 +978,13 @@ msgstr ""
1004
  "continuer à disposer du support rapide et des mises à jour de l'extension "
1005
  "vous devez la renouveller."
1006
 
1007
- #: class-bws-settings.php:808 deprecated.php:145
1008
  msgid "Unfortunately, you have exceeded the number of available tries."
1009
  msgstr ""
1010
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1011
  "télécharger l'extension manuellement."
1012
 
1013
- #: class-bws-settings.php:810 deprecated.php:147
1014
  msgid ""
1015
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
1016
  "The Pro Trial license can be installed only once."
@@ -1018,11 +992,11 @@ msgstr ""
1018
  "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
1019
  "peut-être installée qu'une seule fois."
1020
 
1021
- #: class-bws-settings.php:815 deprecated.php:151
1022
  msgid "The Pro Trial license key is valid."
1023
  msgstr "La clé de licence d'évaluation est valide."
1024
 
1025
- #: class-bws-settings.php:823 deprecated.php:159 deprecated.php:246
1026
  #, php-format
1027
  msgid ""
1028
  "In order to continue using the plugin it is necessary to buy a %s license."
@@ -1030,28 +1004,25 @@ msgstr ""
1030
  "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
1031
  "d'acheter une licence %s."
1032
 
1033
- #: class-bws-settings.php:1020 deprecated.php:463
1034
  msgid "Please, enter Your license key"
1035
  msgstr "Merci de saisir votre clé de licence"
1036
 
1037
- #: class-bws-settings.php:1032
1038
- #, fuzzy
1039
  msgid "Need Help?"
1040
  msgstr "Besoin d'aide ?"
1041
 
1042
- #: class-bws-settings.php:1034
1043
- #, fuzzy
1044
  msgid "Read the Instruction"
1045
- msgstr "Vidéo explicative"
1046
 
1047
- #: class-bws-settings.php:1038
1048
  msgid "Watch the Video"
1049
- msgstr ""
1050
 
1051
- #: class-bws-settings.php:1049
1052
- #, fuzzy
1053
  msgid "Start Your Free Trial"
1054
- msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
1055
 
1056
  #: deprecated.php:93
1057
  msgid "System Status"
@@ -1062,7 +1033,6 @@ msgid "Please, enter your license key"
1062
  msgstr "Merci de saisir votre clé de licence"
1063
 
1064
  #: deprecated.php:223
1065
- #, fuzzy
1066
  msgid ""
1067
  "If necessary, you can check if the license key is correct or reenter it in "
1068
  "the field below. You can find your license key on your personal page - "
@@ -1082,7 +1052,6 @@ msgstr ""
1082
  "mot de passe perdu."
1083
 
1084
  #: deprecated.php:247
1085
- #, fuzzy
1086
  msgid "After that, you can activate it by entering your license key."
1087
  msgstr ""
1088
  " Après vous pouvez activer cette extension en donnant votre clé de licence."
@@ -1098,12 +1067,10 @@ msgstr ""
1098
  "l'achat de l'extension)."
1099
 
1100
  #: deprecated.php:278
1101
- #, fuzzy
1102
  msgid ""
1103
  "Congratulations! The Pro license of the plugin is activated successfully."
1104
  msgstr ""
1105
- "Félicitations! La version PRO de cette extension a été téléchargée et "
1106
- "activée avec succès."
1107
 
1108
  #: deprecated.php:280 deprecated.php:669
1109
  msgid "Please, go to"
@@ -1148,7 +1115,6 @@ msgid "Editing"
1148
  msgstr "Modifier"
1149
 
1150
  #: deprecated.php:667
1151
- #, fuzzy
1152
  msgid ""
1153
  "Congratulations! Pro version of the plugin is installed and activated "
1154
  "successfully."
@@ -1204,28 +1170,24 @@ msgstr "Utilitaires"
1204
  msgid "Other"
1205
  msgstr "Autre"
1206
 
1207
- #~ msgid "PHP Safe Mode"
1208
- #~ msgstr "PHP Safe Mode"
1209
 
1210
- #~ msgid "You license for"
1211
- #~ msgstr "Votre licence pour"
1212
 
1213
- #~ msgid "expires on"
1214
- #~ msgstr "se termine le"
1215
 
1216
- #~ msgid "This license key is bind to another site"
1217
- #~ msgstr "La clé de licence correspond à un autre site."
 
 
 
1218
 
1219
  #~ msgid "Successfully installed the plugin"
1220
  #~ msgstr "Extension installée avec succès"
1221
 
1222
- #, fuzzy
1223
- #~ msgid "Please, go to %s"
1224
- #~ msgstr "Merci d’aller à"
1225
-
1226
- #~ msgid "Client Area"
1227
- #~ msgstr "Espace client"
1228
-
1229
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1230
  #~ msgstr ""
1231
  #~ "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans "
@@ -1237,8 +1199,11 @@ msgstr "Autre"
1237
  #~ msgid "Donations play an important role in supporting great projects"
1238
  #~ msgstr "Les dons jouent un rôle important dans l'aide aux projets"
1239
 
1240
- #~ msgid "WordPress Version"
1241
- #~ msgstr "WordPress Version"
 
 
 
1242
 
1243
  #~ msgid "Activate Membership"
1244
  #~ msgstr "Activer l'adhésion"
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-03-28 13:51+0300\n"
6
+ "PO-Revision-Date: 2017-03-28 13:51+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"
38
  msgstr "Page des extensions"
39
 
40
  #: bws_functions.php:91
 
41
  msgid "Like the plugin?"
42
  msgstr "Voter pour l'extension"
43
 
44
  #: bws_functions.php:93
45
  msgid "Rate it"
46
+ msgstr "Notez là"
47
 
48
  #: bws_functions.php:102
49
  msgid "Need help?"
50
  msgstr "Besoin d'aide ?"
51
 
52
+ #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1047
53
  msgid "Visit Help Center"
54
  msgstr "Visiter le site du support"
55
 
56
  #: bws_functions.php:106
 
57
  msgid "Want to support the plugin?"
58
  msgstr "Voter pour l'extension"
59
 
60
+ #: bws_functions.php:107 bws_menu.php:553
61
  msgid "Donate"
62
  msgstr "Don"
63
 
78
  "de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue "
79
  "inactive."
80
 
81
+ #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
82
+ #: class-bws-settings.php:143
83
  msgid "Learn More"
84
  msgstr "En savoir plus"
85
 
86
  #: bws_functions.php:144
 
87
  msgid ""
88
  "Notice: Your Pro Trial license has expired. To continue using the plugin, "
89
  "you should buy a Pro license"
90
  msgstr ""
91
+ "Information&nbsp;:Votre licence d'évaluation est terminée. Pour continuer à "
92
+ "utiliser cette extension, vous devez acheter une licence PRO."
93
 
94
  #: bws_functions.php:146
 
95
  msgid ""
96
  "Your license has expired. To continue getting top-priority support and "
97
  "plugin updates, you should extend it."
98
  msgstr ""
99
  "Votre licence est terminée. Pour continuer à disposer du support rapide et "
100
+ "des mises à jour de l'extension vous devez la renouveler."
101
 
102
  #: bws_functions.php:146 bws_functions.php:382 deprecated.php:584
103
  msgid "Learn more"
126
  "correctement. Merci de mettre à jour Wordpress avec la dernière version."
127
 
128
  #: bws_functions.php:207
129
+ #, php-format
130
+ msgid "Thank you for installing %s plugin!"
131
+ msgstr ""
132
 
133
  #: bws_functions.php:208
134
  msgid "Let's get started"
135
  msgstr "Démarrer"
136
 
137
+ #: bws_functions.php:209 bws_functions.php:242 bws_menu.php:557
138
+ #: bws_menu.php:559
139
  msgid "Settings"
140
  msgstr "Réglages"
141
 
142
+ #: bws_functions.php:211 bws_menu.php:328 class-bws-settings.php:736
143
+ #: class-bws-settings.php:1049 class-bws-settings.php:1059 deprecated.php:694
144
  msgid "or"
145
  msgstr "ou"
146
 
167
 
168
  #: bws_functions.php:262
169
  msgid "Deprecated function(-s) is used on the site here:"
170
+ msgstr "Une ou des fonction(s) obsolètes sont utilisées sur ce site ici&nbsp;:"
171
 
172
  #: bws_functions.php:276
173
  msgid ""
174
  "This function(-s) will be removed over time. Please update the product(-s)."
175
  msgstr ""
176
+ "Ces fonctions seront supprimées rapidement. Merci de mettre à jour vos "
177
+ "produits."
178
 
179
  #: bws_functions.php:335
180
  msgid "It’s time to upgrade your"
195
  "options."
196
 
197
  #: bws_functions.php:382
198
+ #, php-format
199
  msgid ""
200
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
201
  "SUPPORT or UPDATES."
202
+ msgstr ""
203
+ "Votre clé de licence pour %s est terminée le %s et vous ne disposerez plus "
204
+ "du support rapide et des mises à jour."
205
 
206
  #: bws_functions.php:477
207
+ #, php-format
208
+ msgid "Thank you for choosing %s plugin!"
209
+ msgstr ""
210
 
211
  #: bws_functions.php:478
212
  msgid ""
220
  msgid "Suggest a Feature"
221
  msgstr "Proposer une fonctionnalité"
222
 
223
+ #: bws_functions.php:495 class-bws-settings.php:533 class-bws-settings.php:536
224
+ #: class-bws-settings.php:584 class-bws-settings.php:587
225
  msgid "Notice"
226
  msgstr "Avertissement"
227
 
229
  msgid "The plugin's settings have been changed."
230
  msgstr "Les paramètres de l'extension ont été modifiés."
231
 
232
+ #: bws_functions.php:496 class-bws-settings.php:182 class-bws-settings.php:202
233
  #: deprecated.php:640
234
  msgid "Save Changes"
235
+ msgstr "Enregistrer les modifications"
236
 
237
  #: bws_functions.php:510
 
238
  msgid ""
239
  "You can always look at premium options by checking the \"Pro Options\" in "
240
  "the \"Misc\" tab."
241
  msgstr ""
242
  "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
243
+ "\"Voir les fonctionnalités de la version PRO\" dans l'onglet divers."
244
 
245
  #: bws_functions.php:651
246
  msgid "Add shortcode"
255
  msgstr "Fermer"
256
 
257
  #: bws_functions.php:792
 
258
  msgid "Are you sure you want to restore default settings?"
259
  msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
260
 
302
  msgid "Submit a Request"
303
  msgstr "Soumettre une requête"
304
 
305
+ #: bws_menu.php:101 class-bws-settings.php:781 deprecated.php:322
306
  msgid "Wrong license key"
307
  msgstr "Clé de licence incorrecte"
308
 
309
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
310
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
311
  #: deprecated.php:352
312
  msgid ""
313
  "Something went wrong. Please try again later. If the error appears again, "
317
  "nouveau, merci de contacter <a href=http://support.bestwebsoft."
318
  "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
319
 
320
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
321
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
322
  #: deprecated.php:352
323
  msgid "We are sorry for inconvenience."
324
  msgstr "Nous sommes désolés pour le désagrément."
325
 
326
+ #: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
327
  #: deprecated.php:139 deprecated.php:358
328
  msgid "Wrong license key."
329
  msgstr "Clé de licence incorrecte."
330
 
331
+ #: bws_menu.php:130
 
332
  msgid ""
333
  "This license key is bound to another site. Change it via personal Client "
334
  "Area."
336
  "La clé de licence correspond à un autre site. Modifier là au travers de "
337
  "votre espace client."
338
 
339
+ #: bws_menu.php:130
340
  msgid "Log in"
341
  msgstr "Connexion"
342
 
343
+ #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
344
  msgid "Unfortunately, you have exceeded the number of available tries per day."
345
  msgstr ""
346
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
347
  "télécharger l'extension manuellement."
348
 
349
+ #: bws_menu.php:134 class-bws-settings.php:922 deprecated.php:364
350
+ #, php-format
351
  msgid ""
352
  "Unfortunately, Your license has expired. To continue getting top-priority "
353
  "support and plugin updates, you should extend it in your %s"
354
  msgstr ""
355
  "Désoler, votre licence est terminée. Pour continuer à disposer du support "
356
+ "rapide et des mises à jour de l'extension vous devez la renouveler dans "
357
+ "votre %s"
358
 
359
+ #: bws_menu.php:136 class-bws-settings.php:924 deprecated.php:366
360
  msgid ""
361
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
362
  "Trial license can be installed only once."
364
  "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
365
  "peut-être installée qu'une seule fois."
366
 
367
+ #: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
368
  msgid "The license key is valid."
369
  msgstr "La clé de licence est valide."
370
 
371
+ #: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
372
  msgid "Your license will expire on"
373
  msgstr "Votre licence se termine le "
374
 
375
+ #: bws_menu.php:146
 
376
  msgid "Congratulations! Pro Membership license is activated successfully."
377
  msgstr ""
378
+ "Félicitations! La version PRO de cette extension a été activée avec succès."
 
379
 
380
+ #: bws_menu.php:153 class-bws-settings.php:996 deprecated.php:435
381
  msgid ""
382
  "Something went wrong. Try again later or upload the plugin manually. We are "
383
  "sorry for inconvenience."
385
  "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
386
  "l'extension manuellement.Nous sommes désolés pour le désagrément."
387
 
388
+ #: bws_menu.php:163
389
  msgid "Please enter your license key."
390
  msgstr "Merci de saisir votre clé de licence."
391
 
392
+ #: bws_menu.php:174
393
  msgid "Not set"
394
  msgstr "Not set"
395
 
396
+ #: bws_menu.php:176
397
  msgid "On"
398
  msgstr "On"
399
 
400
+ #: bws_menu.php:176
401
  msgid "Off"
402
  msgstr "Off"
403
 
404
+ #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
405
+ #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
406
  msgid "N/A"
407
  msgstr "N/A"
408
 
409
+ #: bws_menu.php:182
410
  msgid " Mb"
411
  msgstr " Mb"
412
 
413
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
414
  msgid "Yes"
415
  msgstr "Yes"
416
 
417
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
418
  msgid "No"
419
  msgstr "No"
420
 
421
+ #: bws_menu.php:196
 
422
  msgid "WordPress Environment"
423
+ msgstr "Environnent WordPress"
424
 
425
+ #: bws_menu.php:198
426
  msgid "Home URL"
427
  msgstr "Home URL"
428
 
429
+ #: bws_menu.php:199
 
430
  msgid "Website URL"
431
  msgstr "Site URL"
432
 
433
+ #: bws_menu.php:200
 
434
  msgid "WP Version"
435
+ msgstr "WP Version"
436
 
437
+ #: bws_menu.php:201
 
438
  msgid "WP Multisite"
439
+ msgstr "WP Multisite"
440
 
441
+ #: bws_menu.php:202
 
442
  msgid "WP Memory Limit"
443
+ msgstr "WP Memory Limit"
444
 
445
+ #: bws_menu.php:203
446
  msgid "Active Theme"
447
  msgstr "Active Theme"
448
 
449
+ #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
450
+ #, php-format
451
  msgid "by %s"
452
+ msgstr "par %s"
453
 
454
+ #: bws_menu.php:207
 
455
  msgid "Server Environment"
456
+ msgstr "Server Environnent"
457
 
458
+ #: bws_menu.php:209
459
  msgid "Operating System"
460
  msgstr "Operating System"
461
 
462
+ #: bws_menu.php:210
463
  msgid "Server"
464
  msgstr "Server"
465
 
466
+ #: bws_menu.php:211
467
  msgid "PHP Version"
468
  msgstr "PHP Version"
469
 
470
+ #: bws_menu.php:212
471
  msgid "PHP Allow URL fopen"
472
  msgstr "PHP Allow URL fopen"
473
 
474
+ #: bws_menu.php:213
475
  msgid "PHP Memory Limit"
476
  msgstr "PHP Memory Limit"
477
 
478
+ #: bws_menu.php:214
 
479
  msgid "Memory Usage"
480
  msgstr "Memory usage"
481
 
482
+ #: bws_menu.php:215
483
  msgid "PHP Max Upload Size"
484
  msgstr "PHP Max Upload Size"
485
 
486
+ #: bws_menu.php:216
487
  msgid "PHP Max Post Size"
488
  msgstr "PHP Max Post Size"
489
 
490
+ #: bws_menu.php:217
491
  msgid "PHP Max Script Execute Time"
492
  msgstr "PHP Max Script Execute Time"
493
 
494
+ #: bws_menu.php:218
495
  msgid "PHP Exif support"
496
  msgstr "PHP Exif support"
497
 
498
+ #: bws_menu.php:219
499
  msgid "PHP IPTC support"
500
  msgstr "PHP IPTC support"
501
 
502
+ #: bws_menu.php:220
503
  msgid "PHP XML support"
504
  msgstr "PHP XML support"
505
 
506
+ #: bws_menu.php:226
507
  msgid "Database"
508
+ msgstr "Base de données"
509
 
510
+ #: bws_menu.php:228
 
511
  msgid "WP DB version"
512
  msgstr "WordPress DB Version"
513
 
514
+ #: bws_menu.php:229
 
515
  msgid "MySQL version"
516
  msgstr "MYSQL Version"
517
 
518
+ #: bws_menu.php:230
519
  msgid "SQL Mode"
520
  msgstr "SQL Mode"
521
 
522
+ #: bws_menu.php:234
523
  msgid "Active Plugins"
524
  msgstr "Extensions actives"
525
 
526
+ #: bws_menu.php:239
527
  msgid "Inactive Plugins"
528
  msgstr "Extensions inactives"
529
 
530
+ #: bws_menu.php:260
531
  msgid "Please enter a valid email address."
532
  msgstr "Merci de saisir une adresse e-mail valide."
533
 
534
+ #: bws_menu.php:264
 
535
  msgid "Email with system info is sent to"
536
  msgstr "Le courriel avec les informations système est envoyé à"
537
 
538
+ #: bws_menu.php:268
539
  msgid "Thank you for contacting us."
540
  msgstr "Merci de nous avoir contacté."
541
 
542
+ #: bws_menu.php:291
543
  msgid "Sorry, email message could not be delivered."
544
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
545
 
546
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
547
  msgid "Plugins"
548
  msgstr "Extensions"
549
 
550
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
551
  msgid "Themes"
552
  msgstr "Thèmes"
553
 
554
+ #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
555
  msgid "System status"
556
  msgstr "Etat du système"
557
 
558
+ #: bws_menu.php:317
559
  msgid "Support"
560
  msgstr "Support"
561
 
562
+ #: bws_menu.php:318
563
  msgid "Manage purchased licenses & subscriptions"
564
  msgstr "Gérer les licences et les adhésions"
565
 
566
+ #: bws_menu.php:326
567
  #, php-format
568
  msgid "Get Access to %s+ Premium Plugins"
569
  msgstr "Accéder à plus de %s extension premiums"
570
 
571
+ #: bws_menu.php:328
 
572
  msgid "Subscribe to Pro Membership"
573
  msgstr "Souscrire une adhésion PRO"
574
 
575
+ #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:749
576
  #: deprecated.php:227
577
  msgid "Check license key"
578
  msgstr "Vérifier la clé de licence"
579
 
580
+ #: bws_menu.php:339
581
  msgid "Enter your license key"
582
  msgstr "Merci de saisir votre clé de licence"
583
 
584
+ #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
585
+ #: class-bws-settings.php:728 deprecated.php:259 deprecated.php:267
586
  #: deprecated.php:629 deprecated.php:700 deprecated.php:709
587
  msgid "Activate"
588
  msgstr "Activé"
589
 
590
+ #: bws_menu.php:361
591
  msgid "Upload Plugin"
592
  msgstr "Charger l'extension"
593
 
594
+ #: bws_menu.php:365
595
  #, php-format
596
  msgid ""
597
  "The plugin generated %d characters of <strong>unexpected output</strong> "
604
  "sent&#8221;, des problèmes avec les flux de syndication ou autres, essayez "
605
  "de désactiver l'extension ou supprimer l'extension."
606
 
607
+ #: bws_menu.php:367
608
  msgid ""
609
  "Plugin could not be activated because it triggered a <strong>fatal error</"
610
  "strong>."
612
  "L'extension ne peut pas être activée car une <strong>erreur fatale</strong> "
613
  "a été détectée."
614
 
615
+ #: bws_menu.php:370
616
  msgid "Plugin <strong>activated</strong>."
617
  msgstr "Extension <strong>activée</strong>."
618
 
619
+ #: bws_menu.php:377
620
  msgid "Installing Plugin"
621
  msgstr "Extensions installées"
622
 
623
+ #: bws_menu.php:383
624
  msgid "Downloading install package from"
625
  msgstr "Télécharger le paquet d'installation depuis"
626
 
627
+ #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
628
+ #: class-bws-settings.php:948 class-bws-settings.php:970
629
+ #: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
630
  #: deprecated.php:431
631
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
632
  msgstr ""
633
  "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
634
  "manuellement."
635
 
636
+ #: bws_menu.php:408
637
  msgid "Unpacking the package"
638
  msgstr "Décompresser le paquet"
639
 
640
+ #: bws_menu.php:413 bws_menu.php:421
641
  msgid "Installing the plugin"
642
  msgstr "Installer l'extension"
643
 
644
+ #: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
645
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
646
  msgstr ""
647
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
648
  "manuellement."
649
 
650
+ #: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
651
  msgid ""
652
  "Your server does not support either ZipArchive or Phar. Please, upload the "
653
  "plugin manually"
655
  "Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
656
  "de télécharger l'extension manuellement."
657
 
658
+ #: bws_menu.php:427
659
  #, php-format
660
  msgid "The plugin %s is successfully installed."
661
+ msgstr "L'extension %s a été installée avec succès."
662
 
663
+ #: bws_menu.php:434 class-bws-settings.php:973 deprecated.php:412
664
  msgid "UploadDir is not writable. Please, upload the plugin manually"
665
  msgstr ""
666
  "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
667
  "manuellement."
668
 
669
+ #: bws_menu.php:439
670
  msgid "Activate Plugin"
671
  msgstr "Activer l'extension"
672
 
673
+ #: bws_menu.php:439 bws_menu.php:445
674
  msgid "Return to BestWebSoft Panel"
675
  msgstr "Retourner à l'administration BestWebSoft"
676
 
677
+ #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
678
  msgid "All"
679
  msgstr "Tous"
680
 
681
+ #: bws_menu.php:450 bws_menu.php:650
682
  msgid "Installed"
683
  msgstr "Installé"
684
 
685
+ #: bws_menu.php:451
686
  msgid "Not Installed"
687
  msgstr "Non installé"
688
 
689
+ #: bws_menu.php:457
690
  msgid "Filter results"
691
  msgstr "Filtrer les résultats"
692
 
693
+ #: bws_menu.php:460 bws_menu.php:589
694
  msgid "Category"
695
  msgstr "Catégorie"
696
 
697
+ #: bws_menu.php:524
 
698
  msgid "Not installed"
699
  msgstr "Non installé"
700
 
701
+ #: bws_menu.php:528
702
  msgid "Renew to get updates"
703
  msgstr "Se réabonner pour avoir les mises à jour"
704
 
705
+ #: bws_menu.php:531
706
  #, php-format
707
  msgid "Update to v %s"
708
  msgstr "Mettre à jour avec la version %s"
709
 
710
+ #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
711
  msgid "Install Now"
712
  msgstr "Installer maintenant"
713
 
714
+ #: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
715
  msgid "Upgrade to Pro"
716
  msgstr "Passer à la version PRO"
717
 
718
+ #: bws_menu.php:563 bws_menu.php:572
719
  msgid "Activate this plugin"
720
  msgstr "Activer cette extension"
721
 
722
+ #: bws_menu.php:575
723
  msgid "Install this plugin"
724
  msgstr "Installer cette extension"
725
 
726
+ #: bws_menu.php:584
727
  msgid "Nothing found. Try another criteria."
728
  msgstr "Pas de réponse. essayer d'autres critères."
729
 
730
+ #: bws_menu.php:621 bws_menu.php:641
731
  #, php-format
732
  msgid "By %s"
733
  msgstr "Par %s"
734
 
735
+ #: bws_menu.php:648
736
  msgid "Already Installed"
737
  msgstr "Déjà installé"
738
 
739
+ #: bws_menu.php:659
740
  msgid "Browse Free WordPress Themes"
741
  msgstr "Parcourir les thèmes gratuits pour WordPress"
742
 
743
+ #: bws_menu.php:668
744
  msgid "Send to support"
745
  msgstr "Envoyé au support"
746
 
747
+ #: bws_menu.php:675
748
  msgid "Send to custom email &#187;"
749
  msgstr "Envoyer un e-mail spécifique &#187;"
750
 
751
+ #: class-bws-settings.php:135
 
752
  msgid "Information"
753
+ msgstr "Information"
754
 
755
+ #: class-bws-settings.php:143
 
756
  msgid "Inactive"
757
+ msgstr "Inactive"
758
 
759
+ #: class-bws-settings.php:151
760
  msgid "Expired"
761
+ msgstr "Expiré"
762
 
763
+ #: class-bws-settings.php:154
764
  #, php-format
765
  msgid "%s day(-s) left"
766
+ msgstr "%s jour(s) restant"
767
 
768
+ #: class-bws-settings.php:160
769
+ #, php-format
770
  msgid "Expired on %s"
771
+ msgstr "Terminer le %s"
772
 
773
+ #: class-bws-settings.php:160
774
  msgid "Renew Now"
775
+ msgstr "Renouveler maintenant"
776
 
777
+ #: class-bws-settings.php:162
 
778
  msgid "Active"
779
  msgstr "Activé"
780
 
781
+ #: class-bws-settings.php:167
 
782
  msgid "License"
783
+ msgstr "Licence"
784
 
785
+ #: class-bws-settings.php:170
 
786
  msgid "Status"
787
+ msgstr "Etat"
788
 
789
+ #: class-bws-settings.php:174
 
790
  msgid "Version"
791
+ msgstr "Version"
792
 
793
+ #: class-bws-settings.php:282
 
794
  msgid "All plugin settings were restored."
795
+ msgstr "Les paramètres de l'extension ont été remis aux valeurs d'origine."
796
 
797
+ #: class-bws-settings.php:420
 
798
  msgid "Custom Code"
799
+ msgstr "Code personnalisé"
800
 
801
+ #: class-bws-settings.php:424 deprecated.php:497
802
  msgid "You do not have sufficient permissions to edit plugins for this site."
803
  msgstr ""
804
  "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
805
 
806
+ #: class-bws-settings.php:429 deprecated.php:618
807
  msgid "These styles will be added to the header on all pages of your site."
808
  msgstr ""
809
  "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
810
 
811
+ #: class-bws-settings.php:432 deprecated.php:620
812
+ #, php-format
813
  msgid ""
814
  "This PHP code will be hooked to the %s action and will be printed on front "
815
  "end only."
817
  "Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
818
  "partie publique."
819
 
820
+ #: class-bws-settings.php:435
 
821
  msgid "These code will be added to the header on all pages of your site."
822
+ msgstr "Ce code sera ajouté aux entêtes sur tous les pages de votre site."
 
823
 
824
+ #: class-bws-settings.php:443 deprecated.php:644
825
  #, php-format
826
  msgid ""
827
  "You need to make this files writable before you can save your changes. See "
830
  "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
831
  "modifications. Regarder %s du Codex %s pour plus d'informations."
832
 
833
+ #: class-bws-settings.php:453 deprecated.php:626
834
  msgid "Browsing"
835
  msgstr "Parcourir"
836
 
837
+ #: class-bws-settings.php:457
838
  #, php-format
839
  msgid "Activate custom %s code."
840
+ msgstr "Activer le code personnalisé %s."
841
 
842
+ #: class-bws-settings.php:464 deprecated.php:633
843
  #, php-format
844
  msgid "Learn more about %s"
845
  msgstr "En savoir plus sur %s"
846
 
847
+ #: class-bws-settings.php:524
848
  msgid "Miscellaneous Settings"
849
+ msgstr "Paramètres divers"
850
 
851
+ #: class-bws-settings.php:533 class-bws-settings.php:584
852
  #, php-format
853
  msgid ""
854
  "It is prohibited to change %s settings on this site in the %s network "
855
  "settings."
856
  msgstr ""
857
+ "Il est interdit de changer le paramètre %s sur ce site dans les paramètres "
858
+ "%s du réseau."
859
 
860
+ #: class-bws-settings.php:536 class-bws-settings.php:587
861
  #, php-format
862
  msgid ""
863
  "It is prohibited to view %s settings on this site in the %s network settings."
864
  msgstr ""
865
+ "Il est interdit de voir le paramètre %s sur ce site dans les paramètres %s "
866
+ "du réseau."
867
 
868
+ #: class-bws-settings.php:545
 
869
  msgid "Pro Options"
870
+ msgstr "Options Pro"
871
 
872
+ #: class-bws-settings.php:548
873
  msgid "Enable to display plugin Pro options."
874
+ msgstr "Activer pour voir les options PRO de l'extension."
875
 
876
+ #: class-bws-settings.php:553
877
  msgid "Track Usage"
878
+ msgstr "Suivi de l'utilisation"
879
 
880
+ #: class-bws-settings.php:556
881
  msgid ""
882
  "Enable to allow tracking plugin usage anonymously in order to make it better."
883
  msgstr ""
884
+ "Activer pour autoriser le suivi de l'utilisation de l'extension de manière "
885
+ "anonyme afin de le rendre meilleur."
886
 
887
+ #: class-bws-settings.php:560
 
888
  msgid "Default Settings"
889
+ msgstr "Réglages par défauts"
890
 
891
+ #: class-bws-settings.php:562
 
892
  msgid "Restore Settings"
893
  msgstr "Remettre les paramètres"
894
 
895
+ #: class-bws-settings.php:563
 
896
  msgid "This will restore plugin settings to defaults."
897
+ msgstr "Remettre les valeurs par défaut des paramètres de l'extension."
898
 
899
+ #: class-bws-settings.php:575
900
  msgid "Import / Export"
901
+ msgstr "Importer / Exporter"
902
 
903
+ #: class-bws-settings.php:691 class-bws-settings.php:724
904
+ #: class-bws-settings.php:746
 
905
  msgid "License Key"
906
+ msgstr "Clé de licence"
907
 
908
+ #: class-bws-settings.php:714
 
909
  msgid "Congratulations! Pro license is activated successfully."
910
  msgstr ""
911
+ "Félicitations! La version PRO de cette extension a été activée avec succès."
 
912
 
913
+ #: class-bws-settings.php:715
914
+ #, php-format
915
+ msgid "You will be automatically redirected to the %s in %s seconds."
916
+ msgstr ""
917
 
918
+ #: class-bws-settings.php:715
 
919
  msgid "Settings page"
920
+ msgstr "Page des paramètres"
921
 
922
+ #: class-bws-settings.php:730
923
+ #, php-format
924
  msgid "Enter your license key to activate %s and get premium plugin features."
925
+ msgstr ""
926
+ "Saisir votre clé de licence pour activer %s et obtenir les fonctionnalités "
927
+ "premium."
928
 
929
+ #: class-bws-settings.php:733 class-bws-settings.php:920 deprecated.php:362
930
  #: deprecated.php:703
931
  msgid ""
932
  "Unfortunately, you have exceeded the number of available tries per day. "
935
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
936
  "télécharger l'extension manuellement."
937
 
938
+ #: class-bws-settings.php:736 deprecated.php:694
939
  #, php-format
940
  msgid "Start Your Free %s-Day Trial Now"
941
  msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
942
 
943
+ #: class-bws-settings.php:751
 
944
  msgid ""
945
  "If necessary, you can check if the license key is correct or reenter it in "
946
  "the field below."
947
  msgstr ""
948
  "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
949
+ "saisir de nouveau dans le champ ci-dessous."
 
950
 
951
+ #: class-bws-settings.php:756
952
  msgid "Manage License Settings"
953
+ msgstr "Gérer les paramètres de licence"
954
 
955
+ #: class-bws-settings.php:758
 
956
  msgid "Login to Client Area"
957
+ msgstr "Se connecter à l'espace client"
958
 
959
+ #: class-bws-settings.php:760
960
  msgid ""
961
  "Manage active licenses, download BWS products, and view your payment history "
962
  "using BestWebSoft Client Area."
963
  msgstr ""
964
+ "Gérer les licences actives, télécharger les produits BWS, et voir "
965
+ "l'historique de vos règlements dans l'interface client de BestWebSoft."
966
 
967
+ #: class-bws-settings.php:815 class-bws-settings.php:918 deprecated.php:141
968
  #: deprecated.php:360
 
969
  msgid "This license key is bound to another site."
970
  msgstr "La clé de licence correspond à un autre site."
971
 
972
+ #: class-bws-settings.php:817 deprecated.php:143
973
  msgid ""
974
  "This license key is valid, but Your license has expired. If you want to "
975
  "update our plugin in future, you should extend the license."
978
  "continuer à disposer du support rapide et des mises à jour de l'extension "
979
  "vous devez la renouveller."
980
 
981
+ #: class-bws-settings.php:819 deprecated.php:145
982
  msgid "Unfortunately, you have exceeded the number of available tries."
983
  msgstr ""
984
  "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
985
  "télécharger l'extension manuellement."
986
 
987
+ #: class-bws-settings.php:821 deprecated.php:147
988
  msgid ""
989
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
990
  "The Pro Trial license can be installed only once."
992
  "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
993
  "peut-être installée qu'une seule fois."
994
 
995
+ #: class-bws-settings.php:826 deprecated.php:151
996
  msgid "The Pro Trial license key is valid."
997
  msgstr "La clé de licence d'évaluation est valide."
998
 
999
+ #: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
1000
  #, php-format
1001
  msgid ""
1002
  "In order to continue using the plugin it is necessary to buy a %s license."
1004
  "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
1005
  "d'acheter une licence %s."
1006
 
1007
+ #: class-bws-settings.php:1031 deprecated.php:463
1008
  msgid "Please, enter Your license key"
1009
  msgstr "Merci de saisir votre clé de licence"
1010
 
1011
+ #: class-bws-settings.php:1043
 
1012
  msgid "Need Help?"
1013
  msgstr "Besoin d'aide ?"
1014
 
1015
+ #: class-bws-settings.php:1045
 
1016
  msgid "Read the Instruction"
1017
+ msgstr "Lire les instructions"
1018
 
1019
+ #: class-bws-settings.php:1049
1020
  msgid "Watch the Video"
1021
+ msgstr "Regarder la vidéo"
1022
 
1023
+ #: class-bws-settings.php:1060
 
1024
  msgid "Start Your Free Trial"
1025
+ msgstr "Débuter votre licence d'évaluation gratuite"
1026
 
1027
  #: deprecated.php:93
1028
  msgid "System Status"
1033
  msgstr "Merci de saisir votre clé de licence"
1034
 
1035
  #: deprecated.php:223
 
1036
  msgid ""
1037
  "If necessary, you can check if the license key is correct or reenter it in "
1038
  "the field below. You can find your license key on your personal page - "
1052
  "mot de passe perdu."
1053
 
1054
  #: deprecated.php:247
 
1055
  msgid "After that, you can activate it by entering your license key."
1056
  msgstr ""
1057
  " Après vous pouvez activer cette extension en donnant votre clé de licence."
1067
  "l'achat de l'extension)."
1068
 
1069
  #: deprecated.php:278
 
1070
  msgid ""
1071
  "Congratulations! The Pro license of the plugin is activated successfully."
1072
  msgstr ""
1073
+ "Félicitations! La version PRO de cette extension a été activée avec succès."
 
1074
 
1075
  #: deprecated.php:280 deprecated.php:669
1076
  msgid "Please, go to"
1115
  msgstr "Modifier"
1116
 
1117
  #: deprecated.php:667
 
1118
  msgid ""
1119
  "Congratulations! Pro version of the plugin is installed and activated "
1120
  "successfully."
1170
  msgid "Other"
1171
  msgstr "Autre"
1172
 
1173
+ #~ msgid "Thank you for installing"
1174
+ #~ msgstr "Merci d'avoir installé"
1175
 
1176
+ #~ msgid "Thank you for choosing"
1177
+ #~ msgstr "Merci d'avoir choisi"
1178
 
1179
+ #~ msgid "You will be automatically redirected to the %s in 7 seconds."
1180
+ #~ msgstr "Vous allez être redirigé automatiquement vers %s dans 7 secondes"
1181
 
1182
+ #~ msgid "PHP Safe Mode"
1183
+ #~ msgstr "PHP Safe Mode"
1184
+
1185
+ #~ msgid "WordPress Version"
1186
+ #~ msgstr "WordPress Version"
1187
 
1188
  #~ msgid "Successfully installed the plugin"
1189
  #~ msgstr "Extension installée avec succès"
1190
 
 
 
 
 
 
 
 
1191
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1192
  #~ msgstr ""
1193
  #~ "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans "
1199
  #~ msgid "Donations play an important role in supporting great projects"
1200
  #~ msgstr "Les dons jouent un rôle important dans l'aide aux projets"
1201
 
1202
+ #~ msgid "This license key is bind to another site"
1203
+ #~ msgstr "La clé de licence correspond à un autre site."
1204
+
1205
+ #~ msgid "You license for"
1206
+ #~ msgstr "Votre licence pour"
1207
 
1208
  #~ msgid "Activate Membership"
1209
  #~ msgstr "Activer l'adhésion"
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: 2017-02-28 17:07+0200\n"
6
- "PO-Revision-Date: 2017-02-28 17:07+0200\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"
@@ -51,7 +51,7 @@ msgstr ""
51
  msgid "Need help?"
52
  msgstr "Potrzebujesz pomocy?"
53
 
54
- #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1036
55
  msgid "Visit Help Center"
56
  msgstr ""
57
 
@@ -60,7 +60,7 @@ msgstr ""
60
  msgid "Want to support the plugin?"
61
  msgstr "Oceń wtyczkę"
62
 
63
- #: bws_functions.php:107 bws_menu.php:551
64
  msgid "Donate"
65
  msgstr ""
66
 
@@ -80,8 +80,8 @@ msgstr ""
80
  "Panel Klienta. Zalecamy rozwiązanie tego problemu w przeciągu 24 godzin, w "
81
  "przeciwnym wypadku wersja PRO zostanie zablokowana."
82
 
83
- #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:625
84
- #: class-bws-settings.php:142
85
  msgid "Learn More"
86
  msgstr "Dowiedz się więcej"
87
 
@@ -129,20 +129,21 @@ msgstr ""
129
  "Proszę zaktualizować WordPress do najnowszej wersji."
130
 
131
  #: bws_functions.php:207
132
- msgid "Thank you for installing"
133
- msgstr "Dziękujemy za instalację"
 
134
 
135
  #: bws_functions.php:208
136
  msgid "Let's get started"
137
  msgstr "Zaczynajmny"
138
 
139
- #: bws_functions.php:209 bws_functions.php:242 bws_menu.php:555
140
- #: bws_menu.php:557
141
  msgid "Settings"
142
  msgstr "Ustawienia"
143
 
144
- #: bws_functions.php:211 bws_menu.php:326 class-bws-settings.php:725
145
- #: class-bws-settings.php:1038 class-bws-settings.php:1048 deprecated.php:694
146
  msgid "or"
147
  msgstr "lub"
148
 
@@ -205,9 +206,9 @@ msgstr ""
205
  "AKTUALIZACJI."
206
 
207
  #: bws_functions.php:477
208
- #, fuzzy
209
- msgid "Thank you for choosing"
210
- msgstr "Dziękujemy za instalację"
211
 
212
  #: bws_functions.php:478
213
  msgid ""
@@ -219,8 +220,8 @@ msgstr ""
219
  msgid "Suggest a Feature"
220
  msgstr ""
221
 
222
- #: bws_functions.php:495 class-bws-settings.php:532 class-bws-settings.php:535
223
- #: class-bws-settings.php:583 class-bws-settings.php:586
224
  msgid "Notice"
225
  msgstr "Uwaga"
226
 
@@ -228,7 +229,7 @@ msgstr "Uwaga"
228
  msgid "The plugin's settings have been changed."
229
  msgstr "Ustawienia wtyczki zostały zmienione."
230
 
231
- #: bws_functions.php:496 class-bws-settings.php:181 class-bws-settings.php:201
232
  #: deprecated.php:640
233
  msgid "Save Changes"
234
  msgstr "Zapisz zmiany"
@@ -307,12 +308,12 @@ msgstr ""
307
  msgid "Submit a Request"
308
  msgstr "送信ボタン"
309
 
310
- #: bws_menu.php:99 class-bws-settings.php:770 deprecated.php:322
311
  msgid "Wrong license key"
312
  msgstr "Niepoprawny klucz licencji"
313
 
314
- #: bws_menu.php:120 class-bws-settings.php:796 class-bws-settings.php:863
315
- #: class-bws-settings.php:899 deprecated.php:133 deprecated.php:199
316
  #: deprecated.php:352
317
  msgid ""
318
  "Something went wrong. Please try again later. If the error appears again, "
@@ -321,33 +322,33 @@ msgstr ""
321
  "Coś poszło nie tak. Spróbuj ponownie później. Jeśli błąd pojawi się ponownie "
322
  "proszę skontaktować się z nami"
323
 
324
- #: bws_menu.php:120 class-bws-settings.php:796 class-bws-settings.php:863
325
- #: class-bws-settings.php:899 deprecated.php:133 deprecated.php:199
326
  #: deprecated.php:352
327
  msgid "We are sorry for inconvenience."
328
  msgstr "Przepraszamy za niedogodności."
329
 
330
- #: bws_menu.php:126 class-bws-settings.php:802 class-bws-settings.php:905
331
  #: deprecated.php:139 deprecated.php:358
332
  msgid "Wrong license key."
333
  msgstr "Niepoprawny klucz licencji"
334
 
335
- #: bws_menu.php:128
336
  #, fuzzy
337
  msgid ""
338
  "This license key is bound to another site. Change it via personal Client "
339
  "Area."
340
  msgstr "Klucz licencji został przypisany do innej strony."
341
 
342
- #: bws_menu.php:128
343
  msgid "Log in"
344
  msgstr ""
345
 
346
- #: bws_menu.php:130 bws_menu.php:332 deprecated.php:261
347
  msgid "Unfortunately, you have exceeded the number of available tries per day."
348
  msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
349
 
350
- #: bws_menu.php:132 class-bws-settings.php:911 deprecated.php:364
351
  #, fuzzy, php-format
352
  msgid ""
353
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -356,7 +357,7 @@ msgstr ""
356
  "Niestety, Twoja licencja wygasła. By nadal korzystać z szybkiego dostępu do "
357
  "wsparcia oraz aktualizacji powinieneś przedłużyć licencję."
358
 
359
- #: bws_menu.php:134 class-bws-settings.php:913 deprecated.php:366
360
  msgid ""
361
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
362
  "Trial license can be installed only once."
@@ -364,20 +365,20 @@ msgstr ""
364
  "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
365
  "może być wykorzystana tylko raz."
366
 
367
- #: bws_menu.php:140 class-bws-settings.php:817 deprecated.php:153
368
  msgid "The license key is valid."
369
  msgstr "Klucz licencji jest poprawny"
370
 
371
- #: bws_menu.php:142 class-bws-settings.php:820 deprecated.php:156
372
  msgid "Your license will expire on"
373
  msgstr "Twoja licencja wygaśnie"
374
 
375
- #: bws_menu.php:144
376
  #, fuzzy
377
  msgid "Congratulations! Pro Membership license is activated successfully."
378
  msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
379
 
380
- #: bws_menu.php:151 class-bws-settings.php:985 deprecated.php:435
381
  msgid ""
382
  "Something went wrong. Try again later or upload the plugin manually. We are "
383
  "sorry for inconvenience."
@@ -385,227 +386,227 @@ msgstr ""
385
  "Coś poszło nie tak. Spróbuj ponowie później lub dodaj wtyczkę manualnie. "
386
  "Przepraszamy za niedogodności."
387
 
388
- #: bws_menu.php:161
389
  #, fuzzy
390
  msgid "Please enter your license key."
391
  msgstr "Podaj klucz licencji"
392
 
393
- #: bws_menu.php:172
394
  msgid "Not set"
395
  msgstr "Nie ustawiono"
396
 
397
- #: bws_menu.php:174
398
  msgid "On"
399
  msgstr "Włączone"
400
 
401
- #: bws_menu.php:174
402
  msgid "Off"
403
  msgstr "Wyłączone"
404
 
405
- #: bws_menu.php:175 bws_menu.php:176 bws_menu.php:177 bws_menu.php:178
406
- #: bws_menu.php:179 bws_menu.php:180 bws_menu.php:189
407
  msgid "N/A"
408
  msgstr "Brak danych"
409
 
410
- #: bws_menu.php:180
411
  msgid " Mb"
412
  msgstr " Mb"
413
 
414
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:183 bws_menu.php:187
415
  msgid "Yes"
416
  msgstr "Tak"
417
 
418
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:183 bws_menu.php:187
419
  msgid "No"
420
  msgstr "Nie"
421
 
422
- #: bws_menu.php:194
423
  #, fuzzy
424
  msgid "WordPress Environment"
425
  msgstr "Środowisko"
426
 
427
- #: bws_menu.php:196
428
  msgid "Home URL"
429
  msgstr "Adres strony głównej:"
430
 
431
- #: bws_menu.php:197
432
  #, fuzzy
433
  msgid "Website URL"
434
  msgstr "Adres strony:"
435
 
436
- #: bws_menu.php:198
437
  #, fuzzy
438
  msgid "WP Version"
439
  msgstr "Wersja PHP"
440
 
441
- #: bws_menu.php:199
442
  #, fuzzy
443
  msgid "WP Multisite"
444
  msgstr "Multisite"
445
 
446
- #: bws_menu.php:200
447
  #, fuzzy
448
  msgid "WP Memory Limit"
449
  msgstr "PHP Limit pamięci"
450
 
451
- #: bws_menu.php:201
452
  msgid "Active Theme"
453
  msgstr "Aktywny motyw"
454
 
455
- #: bws_menu.php:201 bws_menu.php:246 bws_menu.php:249
456
  #, fuzzy, php-format
457
  msgid "by %s"
458
  msgstr "Od %s"
459
 
460
- #: bws_menu.php:205
461
  #, fuzzy
462
  msgid "Server Environment"
463
  msgstr "Środowisko"
464
 
465
- #: bws_menu.php:207
466
  msgid "Operating System"
467
  msgstr "System operacyjny"
468
 
469
- #: bws_menu.php:208
470
  msgid "Server"
471
  msgstr "Serwer"
472
 
473
- #: bws_menu.php:209
474
  msgid "PHP Version"
475
  msgstr "Wersja PHP"
476
 
477
- #: bws_menu.php:210
478
  msgid "PHP Allow URL fopen"
479
  msgstr "Zezwól na PHP fopen"
480
 
481
- #: bws_menu.php:211
482
  msgid "PHP Memory Limit"
483
  msgstr "PHP Limit pamięci"
484
 
485
- #: bws_menu.php:212
486
  #, fuzzy
487
  msgid "Memory Usage"
488
  msgstr "Wykorzystanie pamięci"
489
 
490
- #: bws_menu.php:213
491
  msgid "PHP Max Upload Size"
492
  msgstr "PHP Max rozmiar przesyłanego pliku"
493
 
494
- #: bws_menu.php:214
495
  msgid "PHP Max Post Size"
496
  msgstr "PHP Max rozmiar przesyłania POST"
497
 
498
- #: bws_menu.php:215
499
  msgid "PHP Max Script Execute Time"
500
  msgstr "PHP Max czas przetwarzania skryptu"
501
 
502
- #: bws_menu.php:216
503
  msgid "PHP Exif support"
504
  msgstr "PHP Wsparcie Exif"
505
 
506
- #: bws_menu.php:217
507
  msgid "PHP IPTC support"
508
  msgstr "PHP Wsparcie IPTC"
509
 
510
- #: bws_menu.php:218
511
  msgid "PHP XML support"
512
  msgstr "PHP Wsparcie XML"
513
 
514
- #: bws_menu.php:224
515
  msgid "Database"
516
  msgstr ""
517
 
518
- #: bws_menu.php:226
519
  #, fuzzy
520
  msgid "WP DB version"
521
  msgstr "Wersja Bazy Danych dla WordPress"
522
 
523
- #: bws_menu.php:227
524
  #, fuzzy
525
  msgid "MySQL version"
526
  msgstr "Wersja MySQL"
527
 
528
- #: bws_menu.php:228
529
  msgid "SQL Mode"
530
  msgstr "Tryb SQL"
531
 
532
- #: bws_menu.php:232
533
  msgid "Active Plugins"
534
  msgstr "Aktywne wtyczki"
535
 
536
- #: bws_menu.php:237
537
  msgid "Inactive Plugins"
538
  msgstr "Nieaktywne wtyczki"
539
 
540
- #: bws_menu.php:258
541
  msgid "Please enter a valid email address."
542
  msgstr "Podaj poprawny adres email"
543
 
544
- #: bws_menu.php:262
545
  #, fuzzy
546
  msgid "Email with system info is sent to"
547
  msgstr "Wiadomość z informacjami systemowymi zostanie wysłana do "
548
 
549
- #: bws_menu.php:266
550
  msgid "Thank you for contacting us."
551
  msgstr "Dziękujemy za kontakt."
552
 
553
- #: bws_menu.php:289
554
  msgid "Sorry, email message could not be delivered."
555
  msgstr "Przepraszamy, wiadomość nie została dostarczona."
556
 
557
- #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
558
  msgid "Plugins"
559
  msgstr "Wtyczki"
560
 
561
- #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:609 deprecated.php:92
562
  msgid "Themes"
563
  msgstr "Motywy"
564
 
565
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:660
566
  msgid "System status"
567
  msgstr "Status systemu"
568
 
569
- #: bws_menu.php:315
570
  msgid "Support"
571
  msgstr "サポート"
572
 
573
- #: bws_menu.php:316
574
  msgid "Manage purchased licenses & subscriptions"
575
  msgstr ""
576
 
577
- #: bws_menu.php:324
578
  #, php-format
579
  msgid "Get Access to %s+ Premium Plugins"
580
  msgstr ""
581
 
582
- #: bws_menu.php:326
583
  #, fuzzy
584
  msgid "Subscribe to Pro Membership"
585
  msgstr "有効なテーマ"
586
 
587
- #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:738
588
  #: deprecated.php:227
589
  msgid "Check license key"
590
  msgstr "Sprawdź klucz licencji"
591
 
592
- #: bws_menu.php:337
593
  #, fuzzy
594
  msgid "Enter your license key"
595
  msgstr "Podaj klucz licencji"
596
 
597
- #: bws_menu.php:343 bws_menu.php:561 bws_menu.php:570
598
- #: class-bws-settings.php:717 deprecated.php:259 deprecated.php:267
599
  #: deprecated.php:629 deprecated.php:700 deprecated.php:709
600
  msgid "Activate"
601
  msgstr "Aktywuj"
602
 
603
- #: bws_menu.php:359
604
  #, fuzzy
605
  msgid "Upload Plugin"
606
  msgstr "Wtyczka"
607
 
608
- #: bws_menu.php:363
609
  #, php-format
610
  msgid ""
611
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -614,330 +615,330 @@ msgid ""
614
  "or removing this plugin."
615
  msgstr ""
616
 
617
- #: bws_menu.php:365
618
  msgid ""
619
  "Plugin could not be activated because it triggered a <strong>fatal error</"
620
  "strong>."
621
  msgstr ""
622
 
623
- #: bws_menu.php:368
624
  msgid "Plugin <strong>activated</strong>."
625
  msgstr ""
626
 
627
- #: bws_menu.php:375
628
  #, fuzzy
629
  msgid "Installing Plugin"
630
  msgstr "Zainstalowane"
631
 
632
- #: bws_menu.php:381
633
  msgid "Downloading install package from"
634
  msgstr ""
635
 
636
- #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440
637
- #: class-bws-settings.php:937 class-bws-settings.php:959
638
- #: class-bws-settings.php:981 deprecated.php:387 deprecated.php:409
639
  #: deprecated.php:431
640
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
641
  msgstr ""
642
  "Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
643
  "manualnie"
644
 
645
- #: bws_menu.php:406
646
  msgid "Unpacking the package"
647
  msgstr ""
648
 
649
- #: bws_menu.php:411 bws_menu.php:419
650
  #, fuzzy
651
  msgid "Installing the plugin"
652
  msgstr "Zainstalowane"
653
 
654
- #: bws_menu.php:415 class-bws-settings.php:949 deprecated.php:399
655
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
656
  msgstr ""
657
  "Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
658
  "manualnie"
659
 
660
- #: bws_menu.php:422 class-bws-settings.php:955 deprecated.php:405
661
  msgid ""
662
  "Your server does not support either ZipArchive or Phar. Please, upload the "
663
  "plugin manually"
664
  msgstr ""
665
  "Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę manualnie"
666
 
667
- #: bws_menu.php:425
668
  #, php-format
669
  msgid "The plugin %s is successfully installed."
670
  msgstr ""
671
 
672
- #: bws_menu.php:432 class-bws-settings.php:962 deprecated.php:412
673
  msgid "UploadDir is not writable. Please, upload the plugin manually"
674
  msgstr ""
675
  "Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
676
 
677
- #: bws_menu.php:437
678
  #, fuzzy
679
  msgid "Activate Plugin"
680
  msgstr "Aktywne wtyczki"
681
 
682
- #: bws_menu.php:437 bws_menu.php:443
683
  msgid "Return to BestWebSoft Panel"
684
  msgstr ""
685
 
686
- #: bws_menu.php:447 bws_menu.php:462 bws_menu.php:591
687
  msgid "All"
688
  msgstr "Wszystko"
689
 
690
- #: bws_menu.php:448 bws_menu.php:648
691
  msgid "Installed"
692
  msgstr "Zainstalowane"
693
 
694
- #: bws_menu.php:449
695
  #, fuzzy
696
  msgid "Not Installed"
697
  msgstr "Zainstalowane"
698
 
699
- #: bws_menu.php:455
700
  msgid "Filter results"
701
  msgstr ""
702
 
703
- #: bws_menu.php:458 bws_menu.php:587
704
  msgid "Category"
705
  msgstr ""
706
 
707
- #: bws_menu.php:522
708
  #, fuzzy
709
  msgid "Not installed"
710
  msgstr "Zainstalowane"
711
 
712
- #: bws_menu.php:526
713
  #, fuzzy
714
  msgid "Renew to get updates"
715
  msgstr "ページに転送"
716
 
717
- #: bws_menu.php:529
718
  #, fuzzy, php-format
719
  msgid "Update to v %s"
720
  msgstr "Aktualizuj do wersji %s"
721
 
722
- #: bws_menu.php:541 bws_menu.php:564 bws_menu.php:573
723
  msgid "Install Now"
724
  msgstr "Instaluj teraz"
725
 
726
- #: bws_menu.php:547 class-bws-settings.php:155 class-bws-settings.php:1045
727
  msgid "Upgrade to Pro"
728
  msgstr ""
729
 
730
- #: bws_menu.php:561 bws_menu.php:570
731
  msgid "Activate this plugin"
732
  msgstr "Aktywuj wtyczkę"
733
 
734
- #: bws_menu.php:573
735
  #, fuzzy
736
  msgid "Install this plugin"
737
  msgstr "Zainstalowane"
738
 
739
- #: bws_menu.php:582
740
  msgid "Nothing found. Try another criteria."
741
  msgstr ""
742
 
743
- #: bws_menu.php:619 bws_menu.php:639
744
  #, php-format
745
  msgid "By %s"
746
  msgstr "Od %s"
747
 
748
- #: bws_menu.php:646
749
  msgid "Already Installed"
750
  msgstr "Zainstalowane"
751
 
752
- #: bws_menu.php:657
753
  msgid "Browse Free WordPress Themes"
754
  msgstr ""
755
 
756
- #: bws_menu.php:666
757
  msgid "Send to support"
758
  msgstr "Wyślij do supportu"
759
 
760
- #: bws_menu.php:673
761
  msgid "Send to custom email &#187;"
762
  msgstr "Prześlij na własny adres &#187;"
763
 
764
- #: class-bws-settings.php:134
765
  msgid "Information"
766
  msgstr ""
767
 
768
- #: class-bws-settings.php:142
769
  #, fuzzy
770
  msgid "Inactive"
771
  msgstr "Nieaktywne wtyczki"
772
 
773
- #: class-bws-settings.php:150
774
  msgid "Expired"
775
  msgstr ""
776
 
777
- #: class-bws-settings.php:153
778
  #, php-format
779
  msgid "%s day(-s) left"
780
  msgstr ""
781
 
782
- #: class-bws-settings.php:159
783
  #, fuzzy, php-format
784
  msgid "Expired on %s"
785
  msgstr "wygasa"
786
 
787
- #: class-bws-settings.php:159
788
  msgid "Renew Now"
789
  msgstr ""
790
 
791
- #: class-bws-settings.php:161
792
  #, fuzzy
793
  msgid "Active"
794
  msgstr "Aktywuj"
795
 
796
- #: class-bws-settings.php:166
797
  #, fuzzy
798
  msgid "License"
799
  msgstr "Niepoprawny klucz licencji"
800
 
801
- #: class-bws-settings.php:169
802
  #, fuzzy
803
  msgid "Status"
804
  msgstr "Status systemu"
805
 
806
- #: class-bws-settings.php:173
807
  #, fuzzy
808
  msgid "Version"
809
  msgstr "wersji!"
810
 
811
- #: class-bws-settings.php:281
812
  #, fuzzy
813
  msgid "All plugin settings were restored."
814
  msgstr "Ustawienia wtyczki zostały zmienione."
815
 
816
- #: class-bws-settings.php:419
817
  msgid "Custom Code"
818
  msgstr ""
819
 
820
- #: class-bws-settings.php:423 deprecated.php:497
821
  msgid "You do not have sufficient permissions to edit plugins for this site."
822
  msgstr ""
823
 
824
- #: class-bws-settings.php:428 deprecated.php:618
825
  msgid "These styles will be added to the header on all pages of your site."
826
  msgstr ""
827
 
828
- #: class-bws-settings.php:431 deprecated.php:620
829
  #, php-format
830
  msgid ""
831
  "This PHP code will be hooked to the %s action and will be printed on front "
832
  "end only."
833
  msgstr ""
834
 
835
- #: class-bws-settings.php:434
836
  msgid "These code will be added to the header on all pages of your site."
837
  msgstr ""
838
 
839
- #: class-bws-settings.php:442 deprecated.php:644
840
  #, php-format
841
  msgid ""
842
  "You need to make this files writable before you can save your changes. See "
843
  "%s the Codex %s for more information."
844
  msgstr ""
845
 
846
- #: class-bws-settings.php:452 deprecated.php:626
847
  msgid "Browsing"
848
  msgstr ""
849
 
850
- #: class-bws-settings.php:456
851
  #, php-format
852
  msgid "Activate custom %s code."
853
  msgstr ""
854
 
855
- #: class-bws-settings.php:463 deprecated.php:633
856
  #, fuzzy, php-format
857
  msgid "Learn more about %s"
858
  msgstr "Dowiedz się więcej"
859
 
860
- #: class-bws-settings.php:523
861
  msgid "Miscellaneous Settings"
862
  msgstr ""
863
 
864
- #: class-bws-settings.php:532 class-bws-settings.php:583
865
  #, php-format
866
  msgid ""
867
  "It is prohibited to change %s settings on this site in the %s network "
868
  "settings."
869
  msgstr ""
870
 
871
- #: class-bws-settings.php:535 class-bws-settings.php:586
872
  #, php-format
873
  msgid ""
874
  "It is prohibited to view %s settings on this site in the %s network settings."
875
  msgstr ""
876
 
877
- #: class-bws-settings.php:544
878
  #, fuzzy
879
  msgid "Pro Options"
880
  msgstr "Pro Plugins"
881
 
882
- #: class-bws-settings.php:547
883
  msgid "Enable to display plugin Pro options."
884
  msgstr ""
885
 
886
- #: class-bws-settings.php:552
887
  msgid "Track Usage"
888
  msgstr ""
889
 
890
- #: class-bws-settings.php:555
891
  msgid ""
892
  "Enable to allow tracking plugin usage anonymously in order to make it better."
893
  msgstr ""
894
 
895
- #: class-bws-settings.php:559
896
  #, fuzzy
897
  msgid "Default Settings"
898
  msgstr "Ustawienia"
899
 
900
- #: class-bws-settings.php:561
901
  #, fuzzy
902
  msgid "Restore Settings"
903
  msgstr "Przywróć ustawienia"
904
 
905
- #: class-bws-settings.php:562
906
  #, fuzzy
907
  msgid "This will restore plugin settings to defaults."
908
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
909
 
910
- #: class-bws-settings.php:574
911
  msgid "Import / Export"
912
  msgstr ""
913
 
914
- #: class-bws-settings.php:690 class-bws-settings.php:713
915
- #: class-bws-settings.php:735
916
  #, fuzzy
917
  msgid "License Key"
918
  msgstr "Niepoprawny klucz licencji"
919
 
920
- #: class-bws-settings.php:703
921
  #, fuzzy
922
  msgid "Congratulations! Pro license is activated successfully."
923
  msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
924
 
925
- #: class-bws-settings.php:704
926
- #, fuzzy, php-format
927
- msgid "You will be automatically redirected to the %s in 7 seconds."
928
- msgstr "Zostaniesz automatycznie przekierowany w ciągu 5 sekund."
929
 
930
- #: class-bws-settings.php:704
931
  #, fuzzy
932
  msgid "Settings page"
933
  msgstr "設定保存."
934
 
935
- #: class-bws-settings.php:719
936
  #, php-format
937
  msgid "Enter your license key to activate %s and get premium plugin features."
938
  msgstr ""
939
 
940
- #: class-bws-settings.php:722 class-bws-settings.php:909 deprecated.php:362
941
  #: deprecated.php:703
942
  msgid ""
943
  "Unfortunately, you have exceeded the number of available tries per day. "
@@ -946,12 +947,12 @@ msgstr ""
946
  "Niestety, przekroczono liczb dostępnych prób na dziś. Proszę dodać wtyczkę "
947
  "manualnie."
948
 
949
- #: class-bws-settings.php:725 deprecated.php:694
950
  #, php-format
951
  msgid "Start Your Free %s-Day Trial Now"
952
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
953
 
954
- #: class-bws-settings.php:740
955
  #, fuzzy
956
  msgid ""
957
  "If necessary, you can check if the license key is correct or reenter it in "
@@ -961,28 +962,28 @@ msgstr ""
961
  "w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
962
  "Panel Klienta"
963
 
964
- #: class-bws-settings.php:745
965
  msgid "Manage License Settings"
966
  msgstr ""
967
 
968
- #: class-bws-settings.php:747
969
  #, fuzzy
970
  msgid "Login to Client Area"
971
  msgstr "Panel Klienta"
972
 
973
- #: class-bws-settings.php:749
974
  msgid ""
975
  "Manage active licenses, download BWS products, and view your payment history "
976
  "using BestWebSoft Client Area."
977
  msgstr ""
978
 
979
- #: class-bws-settings.php:804 class-bws-settings.php:907 deprecated.php:141
980
  #: deprecated.php:360
981
  #, fuzzy
982
  msgid "This license key is bound to another site."
983
  msgstr "Klucz licencji został przypisany do innej strony."
984
 
985
- #: class-bws-settings.php:806 deprecated.php:143
986
  msgid ""
987
  "This license key is valid, but Your license has expired. If you want to "
988
  "update our plugin in future, you should extend the license."
@@ -990,11 +991,11 @@ msgstr ""
990
  "Klucz jest poprawny, jednak Twoja licencja wygasła. Jeśli chcesz "
991
  "aktualizować naszą wtyczkę w przyszłości powinieneś przedłużyć licencję."
992
 
993
- #: class-bws-settings.php:808 deprecated.php:145
994
  msgid "Unfortunately, you have exceeded the number of available tries."
995
  msgstr "Niestety, przekroczono liczbę dostępnych prób."
996
 
997
- #: class-bws-settings.php:810 deprecated.php:147
998
  msgid ""
999
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
1000
  "The Pro Trial license can be installed only once."
@@ -1002,11 +1003,11 @@ msgstr ""
1002
  "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
1003
  "może być wykorzystana tylko raz."
1004
 
1005
- #: class-bws-settings.php:815 deprecated.php:151
1006
  msgid "The Pro Trial license key is valid."
1007
  msgstr "Klucz licencji do testowej wersji PRO jest poprawny."
1008
 
1009
- #: class-bws-settings.php:823 deprecated.php:159 deprecated.php:246
1010
  #, php-format
1011
  msgid ""
1012
  "In order to continue using the plugin it is necessary to buy a %s license."
@@ -1014,24 +1015,24 @@ msgstr ""
1014
  "W celu dalszego wykorzystywania wtyczki niezbędne jest wykupienie licencji "
1015
  "%s."
1016
 
1017
- #: class-bws-settings.php:1020 deprecated.php:463
1018
  msgid "Please, enter Your license key"
1019
  msgstr "Proszę podać klucz licencji."
1020
 
1021
- #: class-bws-settings.php:1032
1022
  #, fuzzy
1023
  msgid "Need Help?"
1024
  msgstr "Potrzebujesz pomocy?"
1025
 
1026
- #: class-bws-settings.php:1034
1027
  msgid "Read the Instruction"
1028
  msgstr ""
1029
 
1030
- #: class-bws-settings.php:1038
1031
  msgid "Watch the Video"
1032
  msgstr ""
1033
 
1034
- #: class-bws-settings.php:1049
1035
  #, fuzzy
1036
  msgid "Start Your Free Trial"
1037
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
@@ -1183,6 +1184,17 @@ msgstr ""
1183
  msgid "Other"
1184
  msgstr ""
1185
 
 
 
 
 
 
 
 
 
 
 
 
1186
  #~ msgid "PHP Safe Mode"
1187
  #~ msgstr "PHP Safe Mode"
1188
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-03-28 13:51+0300\n"
6
+ "PO-Revision-Date: 2017-03-28 13:51+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"
51
  msgid "Need help?"
52
  msgstr "Potrzebujesz pomocy?"
53
 
54
+ #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1047
55
  msgid "Visit Help Center"
56
  msgstr ""
57
 
60
  msgid "Want to support the plugin?"
61
  msgstr "Oceń wtyczkę"
62
 
63
+ #: bws_functions.php:107 bws_menu.php:553
64
  msgid "Donate"
65
  msgstr ""
66
 
80
  "Panel Klienta. Zalecamy rozwiązanie tego problemu w przeciągu 24 godzin, w "
81
  "przeciwnym wypadku wersja PRO zostanie zablokowana."
82
 
83
+ #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
84
+ #: class-bws-settings.php:143
85
  msgid "Learn More"
86
  msgstr "Dowiedz się więcej"
87
 
129
  "Proszę zaktualizować WordPress do najnowszej wersji."
130
 
131
  #: bws_functions.php:207
132
+ #, php-format
133
+ msgid "Thank you for installing %s plugin!"
134
+ msgstr ""
135
 
136
  #: bws_functions.php:208
137
  msgid "Let's get started"
138
  msgstr "Zaczynajmny"
139
 
140
+ #: bws_functions.php:209 bws_functions.php:242 bws_menu.php:557
141
+ #: bws_menu.php:559
142
  msgid "Settings"
143
  msgstr "Ustawienia"
144
 
145
+ #: bws_functions.php:211 bws_menu.php:328 class-bws-settings.php:736
146
+ #: class-bws-settings.php:1049 class-bws-settings.php:1059 deprecated.php:694
147
  msgid "or"
148
  msgstr "lub"
149
 
206
  "AKTUALIZACJI."
207
 
208
  #: bws_functions.php:477
209
+ #, php-format
210
+ msgid "Thank you for choosing %s plugin!"
211
+ msgstr ""
212
 
213
  #: bws_functions.php:478
214
  msgid ""
220
  msgid "Suggest a Feature"
221
  msgstr ""
222
 
223
+ #: bws_functions.php:495 class-bws-settings.php:533 class-bws-settings.php:536
224
+ #: class-bws-settings.php:584 class-bws-settings.php:587
225
  msgid "Notice"
226
  msgstr "Uwaga"
227
 
229
  msgid "The plugin's settings have been changed."
230
  msgstr "Ustawienia wtyczki zostały zmienione."
231
 
232
+ #: bws_functions.php:496 class-bws-settings.php:182 class-bws-settings.php:202
233
  #: deprecated.php:640
234
  msgid "Save Changes"
235
  msgstr "Zapisz zmiany"
308
  msgid "Submit a Request"
309
  msgstr "送信ボタン"
310
 
311
+ #: bws_menu.php:101 class-bws-settings.php:781 deprecated.php:322
312
  msgid "Wrong license key"
313
  msgstr "Niepoprawny klucz licencji"
314
 
315
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
316
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
317
  #: deprecated.php:352
318
  msgid ""
319
  "Something went wrong. Please try again later. If the error appears again, "
322
  "Coś poszło nie tak. Spróbuj ponownie później. Jeśli błąd pojawi się ponownie "
323
  "proszę skontaktować się z nami"
324
 
325
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
326
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
327
  #: deprecated.php:352
328
  msgid "We are sorry for inconvenience."
329
  msgstr "Przepraszamy za niedogodności."
330
 
331
+ #: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
332
  #: deprecated.php:139 deprecated.php:358
333
  msgid "Wrong license key."
334
  msgstr "Niepoprawny klucz licencji"
335
 
336
+ #: bws_menu.php:130
337
  #, fuzzy
338
  msgid ""
339
  "This license key is bound to another site. Change it via personal Client "
340
  "Area."
341
  msgstr "Klucz licencji został przypisany do innej strony."
342
 
343
+ #: bws_menu.php:130
344
  msgid "Log in"
345
  msgstr ""
346
 
347
+ #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
348
  msgid "Unfortunately, you have exceeded the number of available tries per day."
349
  msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
350
 
351
+ #: bws_menu.php:134 class-bws-settings.php:922 deprecated.php:364
352
  #, fuzzy, php-format
353
  msgid ""
354
  "Unfortunately, Your license has expired. To continue getting top-priority "
357
  "Niestety, Twoja licencja wygasła. By nadal korzystać z szybkiego dostępu do "
358
  "wsparcia oraz aktualizacji powinieneś przedłużyć licencję."
359
 
360
+ #: bws_menu.php:136 class-bws-settings.php:924 deprecated.php:366
361
  msgid ""
362
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
363
  "Trial license can be installed only once."
365
  "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
366
  "może być wykorzystana tylko raz."
367
 
368
+ #: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
369
  msgid "The license key is valid."
370
  msgstr "Klucz licencji jest poprawny"
371
 
372
+ #: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
373
  msgid "Your license will expire on"
374
  msgstr "Twoja licencja wygaśnie"
375
 
376
+ #: bws_menu.php:146
377
  #, fuzzy
378
  msgid "Congratulations! Pro Membership license is activated successfully."
379
  msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
380
 
381
+ #: bws_menu.php:153 class-bws-settings.php:996 deprecated.php:435
382
  msgid ""
383
  "Something went wrong. Try again later or upload the plugin manually. We are "
384
  "sorry for inconvenience."
386
  "Coś poszło nie tak. Spróbuj ponowie później lub dodaj wtyczkę manualnie. "
387
  "Przepraszamy za niedogodności."
388
 
389
+ #: bws_menu.php:163
390
  #, fuzzy
391
  msgid "Please enter your license key."
392
  msgstr "Podaj klucz licencji"
393
 
394
+ #: bws_menu.php:174
395
  msgid "Not set"
396
  msgstr "Nie ustawiono"
397
 
398
+ #: bws_menu.php:176
399
  msgid "On"
400
  msgstr "Włączone"
401
 
402
+ #: bws_menu.php:176
403
  msgid "Off"
404
  msgstr "Wyłączone"
405
 
406
+ #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
407
+ #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
408
  msgid "N/A"
409
  msgstr "Brak danych"
410
 
411
+ #: bws_menu.php:182
412
  msgid " Mb"
413
  msgstr " Mb"
414
 
415
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
416
  msgid "Yes"
417
  msgstr "Tak"
418
 
419
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
420
  msgid "No"
421
  msgstr "Nie"
422
 
423
+ #: bws_menu.php:196
424
  #, fuzzy
425
  msgid "WordPress Environment"
426
  msgstr "Środowisko"
427
 
428
+ #: bws_menu.php:198
429
  msgid "Home URL"
430
  msgstr "Adres strony głównej:"
431
 
432
+ #: bws_menu.php:199
433
  #, fuzzy
434
  msgid "Website URL"
435
  msgstr "Adres strony:"
436
 
437
+ #: bws_menu.php:200
438
  #, fuzzy
439
  msgid "WP Version"
440
  msgstr "Wersja PHP"
441
 
442
+ #: bws_menu.php:201
443
  #, fuzzy
444
  msgid "WP Multisite"
445
  msgstr "Multisite"
446
 
447
+ #: bws_menu.php:202
448
  #, fuzzy
449
  msgid "WP Memory Limit"
450
  msgstr "PHP Limit pamięci"
451
 
452
+ #: bws_menu.php:203
453
  msgid "Active Theme"
454
  msgstr "Aktywny motyw"
455
 
456
+ #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
457
  #, fuzzy, php-format
458
  msgid "by %s"
459
  msgstr "Od %s"
460
 
461
+ #: bws_menu.php:207
462
  #, fuzzy
463
  msgid "Server Environment"
464
  msgstr "Środowisko"
465
 
466
+ #: bws_menu.php:209
467
  msgid "Operating System"
468
  msgstr "System operacyjny"
469
 
470
+ #: bws_menu.php:210
471
  msgid "Server"
472
  msgstr "Serwer"
473
 
474
+ #: bws_menu.php:211
475
  msgid "PHP Version"
476
  msgstr "Wersja PHP"
477
 
478
+ #: bws_menu.php:212
479
  msgid "PHP Allow URL fopen"
480
  msgstr "Zezwól na PHP fopen"
481
 
482
+ #: bws_menu.php:213
483
  msgid "PHP Memory Limit"
484
  msgstr "PHP Limit pamięci"
485
 
486
+ #: bws_menu.php:214
487
  #, fuzzy
488
  msgid "Memory Usage"
489
  msgstr "Wykorzystanie pamięci"
490
 
491
+ #: bws_menu.php:215
492
  msgid "PHP Max Upload Size"
493
  msgstr "PHP Max rozmiar przesyłanego pliku"
494
 
495
+ #: bws_menu.php:216
496
  msgid "PHP Max Post Size"
497
  msgstr "PHP Max rozmiar przesyłania POST"
498
 
499
+ #: bws_menu.php:217
500
  msgid "PHP Max Script Execute Time"
501
  msgstr "PHP Max czas przetwarzania skryptu"
502
 
503
+ #: bws_menu.php:218
504
  msgid "PHP Exif support"
505
  msgstr "PHP Wsparcie Exif"
506
 
507
+ #: bws_menu.php:219
508
  msgid "PHP IPTC support"
509
  msgstr "PHP Wsparcie IPTC"
510
 
511
+ #: bws_menu.php:220
512
  msgid "PHP XML support"
513
  msgstr "PHP Wsparcie XML"
514
 
515
+ #: bws_menu.php:226
516
  msgid "Database"
517
  msgstr ""
518
 
519
+ #: bws_menu.php:228
520
  #, fuzzy
521
  msgid "WP DB version"
522
  msgstr "Wersja Bazy Danych dla WordPress"
523
 
524
+ #: bws_menu.php:229
525
  #, fuzzy
526
  msgid "MySQL version"
527
  msgstr "Wersja MySQL"
528
 
529
+ #: bws_menu.php:230
530
  msgid "SQL Mode"
531
  msgstr "Tryb SQL"
532
 
533
+ #: bws_menu.php:234
534
  msgid "Active Plugins"
535
  msgstr "Aktywne wtyczki"
536
 
537
+ #: bws_menu.php:239
538
  msgid "Inactive Plugins"
539
  msgstr "Nieaktywne wtyczki"
540
 
541
+ #: bws_menu.php:260
542
  msgid "Please enter a valid email address."
543
  msgstr "Podaj poprawny adres email"
544
 
545
+ #: bws_menu.php:264
546
  #, fuzzy
547
  msgid "Email with system info is sent to"
548
  msgstr "Wiadomość z informacjami systemowymi zostanie wysłana do "
549
 
550
+ #: bws_menu.php:268
551
  msgid "Thank you for contacting us."
552
  msgstr "Dziękujemy za kontakt."
553
 
554
+ #: bws_menu.php:291
555
  msgid "Sorry, email message could not be delivered."
556
  msgstr "Przepraszamy, wiadomość nie została dostarczona."
557
 
558
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
559
  msgid "Plugins"
560
  msgstr "Wtyczki"
561
 
562
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
563
  msgid "Themes"
564
  msgstr "Motywy"
565
 
566
+ #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
567
  msgid "System status"
568
  msgstr "Status systemu"
569
 
570
+ #: bws_menu.php:317
571
  msgid "Support"
572
  msgstr "サポート"
573
 
574
+ #: bws_menu.php:318
575
  msgid "Manage purchased licenses & subscriptions"
576
  msgstr ""
577
 
578
+ #: bws_menu.php:326
579
  #, php-format
580
  msgid "Get Access to %s+ Premium Plugins"
581
  msgstr ""
582
 
583
+ #: bws_menu.php:328
584
  #, fuzzy
585
  msgid "Subscribe to Pro Membership"
586
  msgstr "有効なテーマ"
587
 
588
+ #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:749
589
  #: deprecated.php:227
590
  msgid "Check license key"
591
  msgstr "Sprawdź klucz licencji"
592
 
593
+ #: bws_menu.php:339
594
  #, fuzzy
595
  msgid "Enter your license key"
596
  msgstr "Podaj klucz licencji"
597
 
598
+ #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
599
+ #: class-bws-settings.php:728 deprecated.php:259 deprecated.php:267
600
  #: deprecated.php:629 deprecated.php:700 deprecated.php:709
601
  msgid "Activate"
602
  msgstr "Aktywuj"
603
 
604
+ #: bws_menu.php:361
605
  #, fuzzy
606
  msgid "Upload Plugin"
607
  msgstr "Wtyczka"
608
 
609
+ #: bws_menu.php:365
610
  #, php-format
611
  msgid ""
612
  "The plugin generated %d characters of <strong>unexpected output</strong> "
615
  "or removing this plugin."
616
  msgstr ""
617
 
618
+ #: bws_menu.php:367
619
  msgid ""
620
  "Plugin could not be activated because it triggered a <strong>fatal error</"
621
  "strong>."
622
  msgstr ""
623
 
624
+ #: bws_menu.php:370
625
  msgid "Plugin <strong>activated</strong>."
626
  msgstr ""
627
 
628
+ #: bws_menu.php:377
629
  #, fuzzy
630
  msgid "Installing Plugin"
631
  msgstr "Zainstalowane"
632
 
633
+ #: bws_menu.php:383
634
  msgid "Downloading install package from"
635
  msgstr ""
636
 
637
+ #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
638
+ #: class-bws-settings.php:948 class-bws-settings.php:970
639
+ #: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
640
  #: deprecated.php:431
641
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
642
  msgstr ""
643
  "Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
644
  "manualnie"
645
 
646
+ #: bws_menu.php:408
647
  msgid "Unpacking the package"
648
  msgstr ""
649
 
650
+ #: bws_menu.php:413 bws_menu.php:421
651
  #, fuzzy
652
  msgid "Installing the plugin"
653
  msgstr "Zainstalowane"
654
 
655
+ #: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
656
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
657
  msgstr ""
658
  "Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
659
  "manualnie"
660
 
661
+ #: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
662
  msgid ""
663
  "Your server does not support either ZipArchive or Phar. Please, upload the "
664
  "plugin manually"
665
  msgstr ""
666
  "Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę manualnie"
667
 
668
+ #: bws_menu.php:427
669
  #, php-format
670
  msgid "The plugin %s is successfully installed."
671
  msgstr ""
672
 
673
+ #: bws_menu.php:434 class-bws-settings.php:973 deprecated.php:412
674
  msgid "UploadDir is not writable. Please, upload the plugin manually"
675
  msgstr ""
676
  "Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
677
 
678
+ #: bws_menu.php:439
679
  #, fuzzy
680
  msgid "Activate Plugin"
681
  msgstr "Aktywne wtyczki"
682
 
683
+ #: bws_menu.php:439 bws_menu.php:445
684
  msgid "Return to BestWebSoft Panel"
685
  msgstr ""
686
 
687
+ #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
688
  msgid "All"
689
  msgstr "Wszystko"
690
 
691
+ #: bws_menu.php:450 bws_menu.php:650
692
  msgid "Installed"
693
  msgstr "Zainstalowane"
694
 
695
+ #: bws_menu.php:451
696
  #, fuzzy
697
  msgid "Not Installed"
698
  msgstr "Zainstalowane"
699
 
700
+ #: bws_menu.php:457
701
  msgid "Filter results"
702
  msgstr ""
703
 
704
+ #: bws_menu.php:460 bws_menu.php:589
705
  msgid "Category"
706
  msgstr ""
707
 
708
+ #: bws_menu.php:524
709
  #, fuzzy
710
  msgid "Not installed"
711
  msgstr "Zainstalowane"
712
 
713
+ #: bws_menu.php:528
714
  #, fuzzy
715
  msgid "Renew to get updates"
716
  msgstr "ページに転送"
717
 
718
+ #: bws_menu.php:531
719
  #, fuzzy, php-format
720
  msgid "Update to v %s"
721
  msgstr "Aktualizuj do wersji %s"
722
 
723
+ #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
724
  msgid "Install Now"
725
  msgstr "Instaluj teraz"
726
 
727
+ #: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
728
  msgid "Upgrade to Pro"
729
  msgstr ""
730
 
731
+ #: bws_menu.php:563 bws_menu.php:572
732
  msgid "Activate this plugin"
733
  msgstr "Aktywuj wtyczkę"
734
 
735
+ #: bws_menu.php:575
736
  #, fuzzy
737
  msgid "Install this plugin"
738
  msgstr "Zainstalowane"
739
 
740
+ #: bws_menu.php:584
741
  msgid "Nothing found. Try another criteria."
742
  msgstr ""
743
 
744
+ #: bws_menu.php:621 bws_menu.php:641
745
  #, php-format
746
  msgid "By %s"
747
  msgstr "Od %s"
748
 
749
+ #: bws_menu.php:648
750
  msgid "Already Installed"
751
  msgstr "Zainstalowane"
752
 
753
+ #: bws_menu.php:659
754
  msgid "Browse Free WordPress Themes"
755
  msgstr ""
756
 
757
+ #: bws_menu.php:668
758
  msgid "Send to support"
759
  msgstr "Wyślij do supportu"
760
 
761
+ #: bws_menu.php:675
762
  msgid "Send to custom email &#187;"
763
  msgstr "Prześlij na własny adres &#187;"
764
 
765
+ #: class-bws-settings.php:135
766
  msgid "Information"
767
  msgstr ""
768
 
769
+ #: class-bws-settings.php:143
770
  #, fuzzy
771
  msgid "Inactive"
772
  msgstr "Nieaktywne wtyczki"
773
 
774
+ #: class-bws-settings.php:151
775
  msgid "Expired"
776
  msgstr ""
777
 
778
+ #: class-bws-settings.php:154
779
  #, php-format
780
  msgid "%s day(-s) left"
781
  msgstr ""
782
 
783
+ #: class-bws-settings.php:160
784
  #, fuzzy, php-format
785
  msgid "Expired on %s"
786
  msgstr "wygasa"
787
 
788
+ #: class-bws-settings.php:160
789
  msgid "Renew Now"
790
  msgstr ""
791
 
792
+ #: class-bws-settings.php:162
793
  #, fuzzy
794
  msgid "Active"
795
  msgstr "Aktywuj"
796
 
797
+ #: class-bws-settings.php:167
798
  #, fuzzy
799
  msgid "License"
800
  msgstr "Niepoprawny klucz licencji"
801
 
802
+ #: class-bws-settings.php:170
803
  #, fuzzy
804
  msgid "Status"
805
  msgstr "Status systemu"
806
 
807
+ #: class-bws-settings.php:174
808
  #, fuzzy
809
  msgid "Version"
810
  msgstr "wersji!"
811
 
812
+ #: class-bws-settings.php:282
813
  #, fuzzy
814
  msgid "All plugin settings were restored."
815
  msgstr "Ustawienia wtyczki zostały zmienione."
816
 
817
+ #: class-bws-settings.php:420
818
  msgid "Custom Code"
819
  msgstr ""
820
 
821
+ #: class-bws-settings.php:424 deprecated.php:497
822
  msgid "You do not have sufficient permissions to edit plugins for this site."
823
  msgstr ""
824
 
825
+ #: class-bws-settings.php:429 deprecated.php:618
826
  msgid "These styles will be added to the header on all pages of your site."
827
  msgstr ""
828
 
829
+ #: class-bws-settings.php:432 deprecated.php:620
830
  #, php-format
831
  msgid ""
832
  "This PHP code will be hooked to the %s action and will be printed on front "
833
  "end only."
834
  msgstr ""
835
 
836
+ #: class-bws-settings.php:435
837
  msgid "These code will be added to the header on all pages of your site."
838
  msgstr ""
839
 
840
+ #: class-bws-settings.php:443 deprecated.php:644
841
  #, php-format
842
  msgid ""
843
  "You need to make this files writable before you can save your changes. See "
844
  "%s the Codex %s for more information."
845
  msgstr ""
846
 
847
+ #: class-bws-settings.php:453 deprecated.php:626
848
  msgid "Browsing"
849
  msgstr ""
850
 
851
+ #: class-bws-settings.php:457
852
  #, php-format
853
  msgid "Activate custom %s code."
854
  msgstr ""
855
 
856
+ #: class-bws-settings.php:464 deprecated.php:633
857
  #, fuzzy, php-format
858
  msgid "Learn more about %s"
859
  msgstr "Dowiedz się więcej"
860
 
861
+ #: class-bws-settings.php:524
862
  msgid "Miscellaneous Settings"
863
  msgstr ""
864
 
865
+ #: class-bws-settings.php:533 class-bws-settings.php:584
866
  #, php-format
867
  msgid ""
868
  "It is prohibited to change %s settings on this site in the %s network "
869
  "settings."
870
  msgstr ""
871
 
872
+ #: class-bws-settings.php:536 class-bws-settings.php:587
873
  #, php-format
874
  msgid ""
875
  "It is prohibited to view %s settings on this site in the %s network settings."
876
  msgstr ""
877
 
878
+ #: class-bws-settings.php:545
879
  #, fuzzy
880
  msgid "Pro Options"
881
  msgstr "Pro Plugins"
882
 
883
+ #: class-bws-settings.php:548
884
  msgid "Enable to display plugin Pro options."
885
  msgstr ""
886
 
887
+ #: class-bws-settings.php:553
888
  msgid "Track Usage"
889
  msgstr ""
890
 
891
+ #: class-bws-settings.php:556
892
  msgid ""
893
  "Enable to allow tracking plugin usage anonymously in order to make it better."
894
  msgstr ""
895
 
896
+ #: class-bws-settings.php:560
897
  #, fuzzy
898
  msgid "Default Settings"
899
  msgstr "Ustawienia"
900
 
901
+ #: class-bws-settings.php:562
902
  #, fuzzy
903
  msgid "Restore Settings"
904
  msgstr "Przywróć ustawienia"
905
 
906
+ #: class-bws-settings.php:563
907
  #, fuzzy
908
  msgid "This will restore plugin settings to defaults."
909
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
910
 
911
+ #: class-bws-settings.php:575
912
  msgid "Import / Export"
913
  msgstr ""
914
 
915
+ #: class-bws-settings.php:691 class-bws-settings.php:724
916
+ #: class-bws-settings.php:746
917
  #, fuzzy
918
  msgid "License Key"
919
  msgstr "Niepoprawny klucz licencji"
920
 
921
+ #: class-bws-settings.php:714
922
  #, fuzzy
923
  msgid "Congratulations! Pro license is activated successfully."
924
  msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
925
 
926
+ #: class-bws-settings.php:715
927
+ #, php-format
928
+ msgid "You will be automatically redirected to the %s in %s seconds."
929
+ msgstr ""
930
 
931
+ #: class-bws-settings.php:715
932
  #, fuzzy
933
  msgid "Settings page"
934
  msgstr "設定保存."
935
 
936
+ #: class-bws-settings.php:730
937
  #, php-format
938
  msgid "Enter your license key to activate %s and get premium plugin features."
939
  msgstr ""
940
 
941
+ #: class-bws-settings.php:733 class-bws-settings.php:920 deprecated.php:362
942
  #: deprecated.php:703
943
  msgid ""
944
  "Unfortunately, you have exceeded the number of available tries per day. "
947
  "Niestety, przekroczono liczb dostępnych prób na dziś. Proszę dodać wtyczkę "
948
  "manualnie."
949
 
950
+ #: class-bws-settings.php:736 deprecated.php:694
951
  #, php-format
952
  msgid "Start Your Free %s-Day Trial Now"
953
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
954
 
955
+ #: class-bws-settings.php:751
956
  #, fuzzy
957
  msgid ""
958
  "If necessary, you can check if the license key is correct or reenter it in "
962
  "w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
963
  "Panel Klienta"
964
 
965
+ #: class-bws-settings.php:756
966
  msgid "Manage License Settings"
967
  msgstr ""
968
 
969
+ #: class-bws-settings.php:758
970
  #, fuzzy
971
  msgid "Login to Client Area"
972
  msgstr "Panel Klienta"
973
 
974
+ #: class-bws-settings.php:760
975
  msgid ""
976
  "Manage active licenses, download BWS products, and view your payment history "
977
  "using BestWebSoft Client Area."
978
  msgstr ""
979
 
980
+ #: class-bws-settings.php:815 class-bws-settings.php:918 deprecated.php:141
981
  #: deprecated.php:360
982
  #, fuzzy
983
  msgid "This license key is bound to another site."
984
  msgstr "Klucz licencji został przypisany do innej strony."
985
 
986
+ #: class-bws-settings.php:817 deprecated.php:143
987
  msgid ""
988
  "This license key is valid, but Your license has expired. If you want to "
989
  "update our plugin in future, you should extend the license."
991
  "Klucz jest poprawny, jednak Twoja licencja wygasła. Jeśli chcesz "
992
  "aktualizować naszą wtyczkę w przyszłości powinieneś przedłużyć licencję."
993
 
994
+ #: class-bws-settings.php:819 deprecated.php:145
995
  msgid "Unfortunately, you have exceeded the number of available tries."
996
  msgstr "Niestety, przekroczono liczbę dostępnych prób."
997
 
998
+ #: class-bws-settings.php:821 deprecated.php:147
999
  msgid ""
1000
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
1001
  "The Pro Trial license can be installed only once."
1003
  "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
1004
  "może być wykorzystana tylko raz."
1005
 
1006
+ #: class-bws-settings.php:826 deprecated.php:151
1007
  msgid "The Pro Trial license key is valid."
1008
  msgstr "Klucz licencji do testowej wersji PRO jest poprawny."
1009
 
1010
+ #: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
1011
  #, php-format
1012
  msgid ""
1013
  "In order to continue using the plugin it is necessary to buy a %s license."
1015
  "W celu dalszego wykorzystywania wtyczki niezbędne jest wykupienie licencji "
1016
  "%s."
1017
 
1018
+ #: class-bws-settings.php:1031 deprecated.php:463
1019
  msgid "Please, enter Your license key"
1020
  msgstr "Proszę podać klucz licencji."
1021
 
1022
+ #: class-bws-settings.php:1043
1023
  #, fuzzy
1024
  msgid "Need Help?"
1025
  msgstr "Potrzebujesz pomocy?"
1026
 
1027
+ #: class-bws-settings.php:1045
1028
  msgid "Read the Instruction"
1029
  msgstr ""
1030
 
1031
+ #: class-bws-settings.php:1049
1032
  msgid "Watch the Video"
1033
  msgstr ""
1034
 
1035
+ #: class-bws-settings.php:1060
1036
  #, fuzzy
1037
  msgid "Start Your Free Trial"
1038
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
1184
  msgid "Other"
1185
  msgstr ""
1186
 
1187
+ #~ msgid "Thank you for installing"
1188
+ #~ msgstr "Dziękujemy za instalację"
1189
+
1190
+ #, fuzzy
1191
+ #~ msgid "Thank you for choosing"
1192
+ #~ msgstr "Dziękujemy za instalację"
1193
+
1194
+ #, fuzzy
1195
+ #~ msgid "You will be automatically redirected to the %s in 7 seconds."
1196
+ #~ msgstr "Zostaniesz automatycznie przekierowany w ciągu 5 sekund."
1197
+
1198
  #~ msgid "PHP Safe Mode"
1199
  #~ msgstr "PHP Safe Mode"
1200
 
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: 2017-02-28 17:08+0200\n"
6
- "PO-Revision-Date: 2017-02-28 17:08+0200\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -48,7 +48,7 @@ msgstr "Оценить"
48
  msgid "Need help?"
49
  msgstr "Нужна помощь?"
50
 
51
- #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1036
52
  msgid "Visit Help Center"
53
  msgstr "Перейти в Help Center"
54
 
@@ -56,7 +56,7 @@ msgstr "Перейти в Help Center"
56
  msgid "Want to support the plugin?"
57
  msgstr "Хотите поддержать плагин?"
58
 
59
- #: bws_functions.php:107 bws_menu.php:551
60
  msgid "Donate"
61
  msgstr "Пожертвовать"
62
 
@@ -76,8 +76,8 @@ msgstr ""
76
  "используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить "
77
  "проблему в течение 24 часов, в противном случае плагин будет деактивирован."
78
 
79
- #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:625
80
- #: class-bws-settings.php:142
81
  msgid "Learn More"
82
  msgstr "Подробнее"
83
 
@@ -124,20 +124,21 @@ msgstr ""
124
  "Пожалуйста, обновите WordPress до последней версии."
125
 
126
  #: bws_functions.php:207
127
- msgid "Thank you for installing"
128
- msgstr "Спасибо за установку"
 
129
 
130
  #: bws_functions.php:208
131
  msgid "Let's get started"
132
  msgstr "Давайте начнем"
133
 
134
- #: bws_functions.php:209 bws_functions.php:242 bws_menu.php:555
135
- #: bws_menu.php:557
136
  msgid "Settings"
137
  msgstr "Настройки"
138
 
139
- #: bws_functions.php:211 bws_menu.php:326 class-bws-settings.php:725
140
- #: class-bws-settings.php:1038 class-bws-settings.php:1048 deprecated.php:694
141
  msgid "or"
142
  msgstr "или"
143
 
@@ -199,8 +200,9 @@ msgstr ""
199
  "приоритетную тех.поддержку или обновления."
200
 
201
  #: bws_functions.php:477
202
- msgid "Thank you for choosing"
203
- msgstr "Спасибо за выбор"
 
204
 
205
  #: bws_functions.php:478
206
  msgid ""
@@ -215,8 +217,8 @@ msgstr ""
215
  msgid "Suggest a Feature"
216
  msgstr "Предложить функционал"
217
 
218
- #: bws_functions.php:495 class-bws-settings.php:532 class-bws-settings.php:535
219
- #: class-bws-settings.php:583 class-bws-settings.php:586
220
  msgid "Notice"
221
  msgstr "Внимание"
222
 
@@ -224,7 +226,7 @@ msgstr "Внимание"
224
  msgid "The plugin's settings have been changed."
225
  msgstr "Настройки плагина были изменены"
226
 
227
- #: bws_functions.php:496 class-bws-settings.php:181 class-bws-settings.php:201
228
  #: deprecated.php:640
229
  msgid "Save Changes"
230
  msgstr "Сохранить изменения"
@@ -299,12 +301,12 @@ msgstr "Видео инструкции"
299
  msgid "Submit a Request"
300
  msgstr "Отправить запрос"
301
 
302
- #: bws_menu.php:99 class-bws-settings.php:770 deprecated.php:322
303
  msgid "Wrong license key"
304
  msgstr "Неправильный лицензионный ключ"
305
 
306
- #: bws_menu.php:120 class-bws-settings.php:796 class-bws-settings.php:863
307
- #: class-bws-settings.php:899 deprecated.php:133 deprecated.php:199
308
  #: deprecated.php:352
309
  msgid ""
310
  "Something went wrong. Please try again later. If the error appears again, "
@@ -313,33 +315,33 @@ msgstr ""
313
  "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, "
314
  "пожалуйста, свяжитесь с нами"
315
 
316
- #: bws_menu.php:120 class-bws-settings.php:796 class-bws-settings.php:863
317
- #: class-bws-settings.php:899 deprecated.php:133 deprecated.php:199
318
  #: deprecated.php:352
319
  msgid "We are sorry for inconvenience."
320
  msgstr "Приносим извинения за неудобства."
321
 
322
- #: bws_menu.php:126 class-bws-settings.php:802 class-bws-settings.php:905
323
  #: deprecated.php:139 deprecated.php:358
324
  msgid "Wrong license key."
325
  msgstr "Неправильный лицензионный ключ."
326
 
327
- #: bws_menu.php:128
328
  msgid ""
329
  "This license key is bound to another site. Change it via personal Client "
330
  "Area."
331
  msgstr ""
332
  "Этот лицензионный ключ привязан к другому сайту. Измените это в Client Area."
333
 
334
- #: bws_menu.php:128
335
  msgid "Log in"
336
  msgstr "Авторизоваться"
337
 
338
- #: bws_menu.php:130 bws_menu.php:332 deprecated.php:261
339
  msgid "Unfortunately, you have exceeded the number of available tries per day."
340
  msgstr "К сожалению, вы превысили количество доступных попыток."
341
 
342
- #: bws_menu.php:132 class-bws-settings.php:911 deprecated.php:364
343
  #, php-format
344
  msgid ""
345
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -349,7 +351,7 @@ msgstr ""
349
  "обновлений и приоритетной тех.поддержки, вам необходимо продлить лицензию в "
350
  "вашей %s"
351
 
352
- #: bws_menu.php:134 class-bws-settings.php:913 deprecated.php:366
353
  msgid ""
354
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
355
  "Trial license can be installed only once."
@@ -357,19 +359,19 @@ msgstr ""
357
  "К сожалению, Pro лицензия уже была установлена на этом доменен. Pro Trial "
358
  "лицензия может быть установлена только один раз."
359
 
360
- #: bws_menu.php:140 class-bws-settings.php:817 deprecated.php:153
361
  msgid "The license key is valid."
362
  msgstr "Лицензионный ключ действителен."
363
 
364
- #: bws_menu.php:142 class-bws-settings.php:820 deprecated.php:156
365
  msgid "Your license will expire on"
366
  msgstr "Ваша лицензия истечет"
367
 
368
- #: bws_menu.php:144
369
  msgid "Congratulations! Pro Membership license is activated successfully."
370
  msgstr "Поздравляем! Pro Membership лицензия успешно активирована."
371
 
372
- #: bws_menu.php:151 class-bws-settings.php:985 deprecated.php:435
373
  msgid ""
374
  "Something went wrong. Try again later or upload the plugin manually. We are "
375
  "sorry for inconvenience."
@@ -377,213 +379,213 @@ msgstr ""
377
  "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. "
378
  "Приносим извинения за неудобства."
379
 
380
- #: bws_menu.php:161
381
  msgid "Please enter your license key."
382
  msgstr "Пожалуйста, введите Ваш лицензионный ключ."
383
 
384
- #: bws_menu.php:172
385
  msgid "Not set"
386
  msgstr "Не задан"
387
 
388
- #: bws_menu.php:174
389
  msgid "On"
390
  msgstr "Вкл"
391
 
392
- #: bws_menu.php:174
393
  msgid "Off"
394
  msgstr "Выкл"
395
 
396
- #: bws_menu.php:175 bws_menu.php:176 bws_menu.php:177 bws_menu.php:178
397
- #: bws_menu.php:179 bws_menu.php:180 bws_menu.php:189
398
  msgid "N/A"
399
  msgstr "Неизвестно"
400
 
401
- #: bws_menu.php:180
402
  msgid " Mb"
403
  msgstr "Mb"
404
 
405
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:183 bws_menu.php:187
406
  msgid "Yes"
407
  msgstr "Да"
408
 
409
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:183 bws_menu.php:187
410
  msgid "No"
411
  msgstr "Нет"
412
 
413
- #: bws_menu.php:194
414
  msgid "WordPress Environment"
415
  msgstr "WordPress Системная среда"
416
 
417
- #: bws_menu.php:196
418
  msgid "Home URL"
419
  msgstr "Основной адрес сайта"
420
 
421
- #: bws_menu.php:197
422
  msgid "Website URL"
423
  msgstr "Адрес сайта"
424
 
425
- #: bws_menu.php:198
426
  msgid "WP Version"
427
  msgstr "Версия WordPress"
428
 
429
- #: bws_menu.php:199
430
  msgid "WP Multisite"
431
  msgstr "Мультисайт"
432
 
433
- #: bws_menu.php:200
434
  msgid "WP Memory Limit"
435
  msgstr "Лимит памяти WordPress"
436
 
437
- #: bws_menu.php:201
438
  msgid "Active Theme"
439
  msgstr "Текущая тема"
440
 
441
- #: bws_menu.php:201 bws_menu.php:246 bws_menu.php:249
442
  #, php-format
443
  msgid "by %s"
444
  msgstr "%s"
445
 
446
- #: bws_menu.php:205
447
  msgid "Server Environment"
448
  msgstr "Системная среда сервера"
449
 
450
- #: bws_menu.php:207
451
  msgid "Operating System"
452
  msgstr "Операционная система"
453
 
454
- #: bws_menu.php:208
455
  msgid "Server"
456
  msgstr "Тип сервера"
457
 
458
- #: bws_menu.php:209
459
  msgid "PHP Version"
460
  msgstr "Версия PHP"
461
 
462
- #: bws_menu.php:210
463
  msgid "PHP Allow URL fopen"
464
  msgstr "PHP Allow URL fopen"
465
 
466
- #: bws_menu.php:211
467
  msgid "PHP Memory Limit"
468
  msgstr "Лимит памяти"
469
 
470
- #: bws_menu.php:212
471
  msgid "Memory Usage"
472
  msgstr "Использование памяти"
473
 
474
- #: bws_menu.php:213
475
  msgid "PHP Max Upload Size"
476
  msgstr "Макс. размер загружаемого файла"
477
 
478
- #: bws_menu.php:214
479
  msgid "PHP Max Post Size"
480
  msgstr "Макс. размер записи"
481
 
482
- #: bws_menu.php:215
483
  msgid "PHP Max Script Execute Time"
484
  msgstr "Макс. время выполнения сценария"
485
 
486
- #: bws_menu.php:216
487
  msgid "PHP Exif support"
488
  msgstr "Поддержка PHP Exif"
489
 
490
- #: bws_menu.php:217
491
  msgid "PHP IPTC support"
492
  msgstr "Поддержка PHP IPTC"
493
 
494
- #: bws_menu.php:218
495
  msgid "PHP XML support"
496
  msgstr "Поддержка PHP XML"
497
 
498
- #: bws_menu.php:224
499
  msgid "Database"
500
  msgstr "База данных"
501
 
502
- #: bws_menu.php:226
503
  msgid "WP DB version"
504
  msgstr "Версия базы данных WordPress"
505
 
506
- #: bws_menu.php:227
507
  msgid "MySQL version"
508
  msgstr "Версия MYSQL"
509
 
510
- #: bws_menu.php:228
511
  msgid "SQL Mode"
512
  msgstr "Режим SQL"
513
 
514
- #: bws_menu.php:232
515
  msgid "Active Plugins"
516
  msgstr "Активированные плагины"
517
 
518
- #: bws_menu.php:237
519
  msgid "Inactive Plugins"
520
  msgstr "Неактивированные плагины"
521
 
522
- #: bws_menu.php:258
523
  msgid "Please enter a valid email address."
524
  msgstr "Пожалуйста, введите валидный емайл."
525
 
526
- #: bws_menu.php:262
527
  msgid "Email with system info is sent to"
528
  msgstr "Емейл с системной информацией отправлен на"
529
 
530
- #: bws_menu.php:266
531
  msgid "Thank you for contacting us."
532
  msgstr "Спасибо что связались с нами."
533
 
534
- #: bws_menu.php:289
535
  msgid "Sorry, email message could not be delivered."
536
  msgstr "Извините, ваш емейл не может быть отправлен."
537
 
538
- #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
539
  msgid "Plugins"
540
  msgstr "Плагины"
541
 
542
- #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:609 deprecated.php:92
543
  msgid "Themes"
544
  msgstr "Темы"
545
 
546
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:660
547
  msgid "System status"
548
  msgstr "Системная информация"
549
 
550
- #: bws_menu.php:315
551
  msgid "Support"
552
  msgstr "Тех. поддержка"
553
 
554
- #: bws_menu.php:316
555
  msgid "Manage purchased licenses & subscriptions"
556
  msgstr "Управление купленными лицензиями и подписками"
557
 
558
- #: bws_menu.php:324
559
  #, php-format
560
  msgid "Get Access to %s+ Premium Plugins"
561
  msgstr "Получить Доступ к %s+ Премиум Плагинам"
562
 
563
- #: bws_menu.php:326
564
  msgid "Subscribe to Pro Membership"
565
  msgstr "Подписаться на Pro Membership"
566
 
567
- #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:738
568
  #: deprecated.php:227
569
  msgid "Check license key"
570
  msgstr "Проверка лицензионного ключа"
571
 
572
- #: bws_menu.php:337
573
  msgid "Enter your license key"
574
  msgstr "Ваш лицензионный ключ"
575
 
576
- #: bws_menu.php:343 bws_menu.php:561 bws_menu.php:570
577
- #: class-bws-settings.php:717 deprecated.php:259 deprecated.php:267
578
  #: deprecated.php:629 deprecated.php:700 deprecated.php:709
579
  msgid "Activate"
580
  msgstr "Активировать"
581
 
582
- #: bws_menu.php:359
583
  msgid "Upload Plugin"
584
  msgstr "Добавить новый"
585
 
586
- #: bws_menu.php:363
587
  #, php-format
588
  msgid ""
589
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -596,7 +598,7 @@ msgstr ""
596
  "проблемы с RSS-лентами или другие неполадки, попробуйте деактивировать или "
597
  "удалить этот плагин."
598
 
599
- #: bws_menu.php:365
600
  msgid ""
601
  "Plugin could not be activated because it triggered a <strong>fatal error</"
602
  "strong>."
@@ -604,39 +606,39 @@ msgstr ""
604
  "Плагин не может быть активирован, поскольку он вызвал <strong>фатальную "
605
  "ошибку</strong>."
606
 
607
- #: bws_menu.php:368
608
  msgid "Plugin <strong>activated</strong>."
609
  msgstr "Плагин <strong>активировано</strong>."
610
 
611
- #: bws_menu.php:375
612
  msgid "Installing Plugin"
613
  msgstr "Установка плагина"
614
 
615
- #: bws_menu.php:381
616
  msgid "Downloading install package from"
617
  msgstr "Скачивание установочного пакета из"
618
 
619
- #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440
620
- #: class-bws-settings.php:937 class-bws-settings.php:959
621
- #: class-bws-settings.php:981 deprecated.php:387 deprecated.php:409
622
  #: deprecated.php:431
623
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
624
  msgstr ""
625
  "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
626
 
627
- #: bws_menu.php:406
628
  msgid "Unpacking the package"
629
  msgstr "Распаковка пакета"
630
 
631
- #: bws_menu.php:411 bws_menu.php:419
632
  msgid "Installing the plugin"
633
  msgstr "Установка плагина"
634
 
635
- #: bws_menu.php:415 class-bws-settings.php:949 deprecated.php:399
636
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
637
  msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
638
 
639
- #: bws_menu.php:422 class-bws-settings.php:955 deprecated.php:405
640
  msgid ""
641
  "Your server does not support either ZipArchive or Phar. Please, upload the "
642
  "plugin manually"
@@ -644,158 +646,158 @@ msgstr ""
644
  "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. "
645
  "Пожалуйста, загрузите плагин вручную"
646
 
647
- #: bws_menu.php:425
648
  #, php-format
649
  msgid "The plugin %s is successfully installed."
650
  msgstr "Плагин %s успешно установлен."
651
 
652
- #: bws_menu.php:432 class-bws-settings.php:962 deprecated.php:412
653
  msgid "UploadDir is not writable. Please, upload the plugin manually"
654
  msgstr ""
655
  "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
656
 
657
- #: bws_menu.php:437
658
  msgid "Activate Plugin"
659
  msgstr "Активировать плагин"
660
 
661
- #: bws_menu.php:437 bws_menu.php:443
662
  msgid "Return to BestWebSoft Panel"
663
  msgstr "Возврат к BestWebSoft Panel"
664
 
665
- #: bws_menu.php:447 bws_menu.php:462 bws_menu.php:591
666
  msgid "All"
667
  msgstr "Все"
668
 
669
- #: bws_menu.php:448 bws_menu.php:648
670
  msgid "Installed"
671
  msgstr "Установленные"
672
 
673
- #: bws_menu.php:449
674
  msgid "Not Installed"
675
  msgstr "Не установленные"
676
 
677
- #: bws_menu.php:455
678
  msgid "Filter results"
679
  msgstr "Фильтр результатов"
680
 
681
- #: bws_menu.php:458 bws_menu.php:587
682
  msgid "Category"
683
  msgstr "Категория"
684
 
685
- #: bws_menu.php:522
686
  msgid "Not installed"
687
  msgstr "Не установлен"
688
 
689
- #: bws_menu.php:526
690
  msgid "Renew to get updates"
691
  msgstr "Продлить для обновления"
692
 
693
- #: bws_menu.php:529
694
  #, php-format
695
  msgid "Update to v %s"
696
  msgstr "Обновить до версии %s"
697
 
698
- #: bws_menu.php:541 bws_menu.php:564 bws_menu.php:573
699
  msgid "Install Now"
700
  msgstr "Установить"
701
 
702
- #: bws_menu.php:547 class-bws-settings.php:155 class-bws-settings.php:1045
703
  msgid "Upgrade to Pro"
704
  msgstr "Обновиться на Pro"
705
 
706
- #: bws_menu.php:561 bws_menu.php:570
707
  msgid "Activate this plugin"
708
  msgstr "Активировать плагин"
709
 
710
- #: bws_menu.php:573
711
  msgid "Install this plugin"
712
  msgstr "Установить этот плагин"
713
 
714
- #: bws_menu.php:582
715
  msgid "Nothing found. Try another criteria."
716
  msgstr "Ничего не найдено. Попробуйте другие критерии."
717
 
718
- #: bws_menu.php:619 bws_menu.php:639
719
  #, php-format
720
  msgid "By %s"
721
  msgstr "%s"
722
 
723
- #: bws_menu.php:646
724
  msgid "Already Installed"
725
  msgstr "Уже установлена"
726
 
727
- #: bws_menu.php:657
728
  msgid "Browse Free WordPress Themes"
729
  msgstr "Обзор бесплатных WordPress тем"
730
 
731
- #: bws_menu.php:666
732
  msgid "Send to support"
733
  msgstr "Отправить в тех. поддержку"
734
 
735
- #: bws_menu.php:673
736
  msgid "Send to custom email &#187;"
737
  msgstr "Отправить на емейл &#187;"
738
 
739
- #: class-bws-settings.php:134
740
  msgid "Information"
741
  msgstr "Информация"
742
 
743
- #: class-bws-settings.php:142
744
  msgid "Inactive"
745
  msgstr "Неактивна"
746
 
747
- #: class-bws-settings.php:150
748
  msgid "Expired"
749
  msgstr "Истекла"
750
 
751
- #: class-bws-settings.php:153
752
  #, php-format
753
  msgid "%s day(-s) left"
754
  msgstr "%s дней осталось"
755
 
756
- #: class-bws-settings.php:159
757
  #, php-format
758
  msgid "Expired on %s"
759
  msgstr "Истекает %s"
760
 
761
- #: class-bws-settings.php:159
762
  msgid "Renew Now"
763
  msgstr "Возобновить сейчас"
764
 
765
- #: class-bws-settings.php:161
766
  msgid "Active"
767
  msgstr "Активна"
768
 
769
- #: class-bws-settings.php:166
770
  msgid "License"
771
  msgstr "Лицензия"
772
 
773
- #: class-bws-settings.php:169
774
  msgid "Status"
775
  msgstr "Статус"
776
 
777
- #: class-bws-settings.php:173
778
  msgid "Version"
779
  msgstr "Версия"
780
 
781
- #: class-bws-settings.php:281
782
  msgid "All plugin settings were restored."
783
  msgstr "Все настройки плагина были восстановлены."
784
 
785
- #: class-bws-settings.php:419
786
  msgid "Custom Code"
787
  msgstr "Пользовательский код"
788
 
789
- #: class-bws-settings.php:423 deprecated.php:497
790
  msgid "You do not have sufficient permissions to edit plugins for this site."
791
  msgstr ""
792
  "У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
793
 
794
- #: class-bws-settings.php:428 deprecated.php:618
795
  msgid "These styles will be added to the header on all pages of your site."
796
  msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
797
 
798
- #: class-bws-settings.php:431 deprecated.php:620
799
  #, php-format
800
  msgid ""
801
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -804,11 +806,11 @@ msgstr ""
804
  "Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
805
  "фронтенде."
806
 
807
- #: class-bws-settings.php:434
808
  msgid "These code will be added to the header on all pages of your site."
809
  msgstr "Этот код будет добавлен в хедер на всех страницах вашего сайта."
810
 
811
- #: class-bws-settings.php:442 deprecated.php:644
812
  #, php-format
813
  msgid ""
814
  "You need to make this files writable before you can save your changes. See "
@@ -817,25 +819,25 @@ msgstr ""
817
  "Чтобы сохранить изменения, нужно сделать этот файл доступным для записи. "
818
  "Дополнительную информацию можно получить в %s Кодексе %s."
819
 
820
- #: class-bws-settings.php:452 deprecated.php:626
821
  msgid "Browsing"
822
  msgstr "Просмотр"
823
 
824
- #: class-bws-settings.php:456
825
  #, php-format
826
  msgid "Activate custom %s code."
827
  msgstr "Активировать пользовательский %s код."
828
 
829
- #: class-bws-settings.php:463 deprecated.php:633
830
  #, php-format
831
  msgid "Learn more about %s"
832
  msgstr "Подробнее о %s"
833
 
834
- #: class-bws-settings.php:523
835
  msgid "Miscellaneous Settings"
836
  msgstr "Прочие настройки"
837
 
838
- #: class-bws-settings.php:532 class-bws-settings.php:583
839
  #, php-format
840
  msgid ""
841
  "It is prohibited to change %s settings on this site in the %s network "
@@ -843,74 +845,74 @@ msgid ""
843
  msgstr ""
844
  "Cетевыми настройками %s запрещается изменять настройки %s на этом сайте."
845
 
846
- #: class-bws-settings.php:535 class-bws-settings.php:586
847
  #, php-format
848
  msgid ""
849
  "It is prohibited to view %s settings on this site in the %s network settings."
850
  msgstr ""
851
  "Cетевыми настройками %s запрещается просматривать настройки %s на этом сайте."
852
 
853
- #: class-bws-settings.php:544
854
  msgid "Pro Options"
855
  msgstr "Pro опции"
856
 
857
- #: class-bws-settings.php:547
858
  msgid "Enable to display plugin Pro options."
859
  msgstr "Включите для отображения Pro опций плагина."
860
 
861
- #: class-bws-settings.php:552
862
  msgid "Track Usage"
863
  msgstr "Собирать статистику"
864
 
865
- #: class-bws-settings.php:555
866
  msgid ""
867
  "Enable to allow tracking plugin usage anonymously in order to make it better."
868
  msgstr ""
869
  "Включить, чтобы разрешить анонимно отслеживать использование и сделать "
870
  "плагин лучше."
871
 
872
- #: class-bws-settings.php:559
873
  msgid "Default Settings"
874
  msgstr "Настройки по умолчанию"
875
 
876
- #: class-bws-settings.php:561
877
  msgid "Restore Settings"
878
  msgstr "Восстановить настройки"
879
 
880
- #: class-bws-settings.php:562
881
  msgid "This will restore plugin settings to defaults."
882
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию."
883
 
884
- #: class-bws-settings.php:574
885
  msgid "Import / Export"
886
  msgstr "Импорт / Экспорт"
887
 
888
- #: class-bws-settings.php:690 class-bws-settings.php:713
889
- #: class-bws-settings.php:735
890
  msgid "License Key"
891
  msgstr "Лицензионный ключ"
892
 
893
- #: class-bws-settings.php:703
894
  msgid "Congratulations! Pro license is activated successfully."
895
  msgstr "Поздравляем! Pro лицензия успешно активирована."
896
 
897
- #: class-bws-settings.php:704
898
  #, php-format
899
- msgid "You will be automatically redirected to the %s in 7 seconds."
900
- msgstr "Вы будете автоматически перенаправлены на %s через 7 секунд."
901
 
902
- #: class-bws-settings.php:704
903
  msgid "Settings page"
904
  msgstr "страницу Настроек"
905
 
906
- #: class-bws-settings.php:719
907
  #, php-format
908
  msgid "Enter your license key to activate %s and get premium plugin features."
909
  msgstr ""
910
  "Введите лицензионный ключ для активации %s и получения дополнительных "
911
  "возможностей плагина."
912
 
913
- #: class-bws-settings.php:722 class-bws-settings.php:909 deprecated.php:362
914
  #: deprecated.php:703
915
  msgid ""
916
  "Unfortunately, you have exceeded the number of available tries per day. "
@@ -919,12 +921,12 @@ msgstr ""
919
  "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, "
920
  "загрузите плагин вручную."
921
 
922
- #: class-bws-settings.php:725 deprecated.php:694
923
  #, php-format
924
  msgid "Start Your Free %s-Day Trial Now"
925
  msgstr "Попробуйте %s-дневную Trial версию бесплатно"
926
 
927
- #: class-bws-settings.php:740
928
  msgid ""
929
  "If necessary, you can check if the license key is correct or reenter it in "
930
  "the field below."
@@ -932,15 +934,15 @@ msgstr ""
932
  "При необходимости вы можете проверить валидность лицензионного ключа или "
933
  "повторно ввести его в поле ниже."
934
 
935
- #: class-bws-settings.php:745
936
  msgid "Manage License Settings"
937
  msgstr "Управление настройками лицензий"
938
 
939
- #: class-bws-settings.php:747
940
  msgid "Login to Client Area"
941
  msgstr "Зайти в Client Area"
942
 
943
- #: class-bws-settings.php:749
944
  msgid ""
945
  "Manage active licenses, download BWS products, and view your payment history "
946
  "using BestWebSoft Client Area."
@@ -948,12 +950,12 @@ msgstr ""
948
  "Управляй активными лицензиями, загружай BWS продукты, а также просматривай "
949
  "историю платежей с помощью BestWebSoft Client Area."
950
 
951
- #: class-bws-settings.php:804 class-bws-settings.php:907 deprecated.php:141
952
  #: deprecated.php:360
953
  msgid "This license key is bound to another site."
954
  msgstr "Этот лицензионный ключ привязан к другому сайту."
955
 
956
- #: class-bws-settings.php:806 deprecated.php:143
957
  msgid ""
958
  "This license key is valid, but Your license has expired. If you want to "
959
  "update our plugin in future, you should extend the license."
@@ -961,11 +963,11 @@ msgstr ""
961
  "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите "
962
  "обновлять плагин в будущем, вы должны продлить лицензию."
963
 
964
- #: class-bws-settings.php:808 deprecated.php:145
965
  msgid "Unfortunately, you have exceeded the number of available tries."
966
  msgstr "К сожалению, вы превысили количество доступных попыток."
967
 
968
- #: class-bws-settings.php:810 deprecated.php:147
969
  msgid ""
970
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
971
  "The Pro Trial license can be installed only once."
@@ -973,34 +975,34 @@ msgstr ""
973
  "К сожалению, Pro Trial версия плагина уже устанавливалась на этот домен. Pro "
974
  "Trial версию можно устанавливать лишь один раз."
975
 
976
- #: class-bws-settings.php:815 deprecated.php:151
977
  msgid "The Pro Trial license key is valid."
978
  msgstr "Ключ Pro Trial версии действителен."
979
 
980
- #: class-bws-settings.php:823 deprecated.php:159 deprecated.php:246
981
  #, php-format
982
  msgid ""
983
  "In order to continue using the plugin it is necessary to buy a %s license."
984
  msgstr ""
985
  "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
986
 
987
- #: class-bws-settings.php:1020 deprecated.php:463
988
  msgid "Please, enter Your license key"
989
  msgstr "Пожалуйста, введите ваш лицензионный ключ"
990
 
991
- #: class-bws-settings.php:1032
992
  msgid "Need Help?"
993
  msgstr "Нужна помощь?"
994
 
995
- #: class-bws-settings.php:1034
996
  msgid "Read the Instruction"
997
  msgstr "Читать инструкцию"
998
 
999
- #: class-bws-settings.php:1038
1000
  msgid "Watch the Video"
1001
  msgstr "Смотреть видео"
1002
 
1003
- #: class-bws-settings.php:1049
1004
  msgid "Start Your Free Trial"
1005
  msgstr "Использовать бесплатную Trial версию"
1006
 
@@ -1142,6 +1144,15 @@ msgstr "Утилиты"
1142
  msgid "Other"
1143
  msgstr "Другое"
1144
 
 
 
 
 
 
 
 
 
 
1145
  #~ msgid "PHP Safe Mode"
1146
  #~ msgstr "PHP Safe Mode"
1147
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-03-28 13:51+0300\n"
6
+ "PO-Revision-Date: 2017-03-28 13:53+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
48
  msgid "Need help?"
49
  msgstr "Нужна помощь?"
50
 
51
+ #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1047
52
  msgid "Visit Help Center"
53
  msgstr "Перейти в Help Center"
54
 
56
  msgid "Want to support the plugin?"
57
  msgstr "Хотите поддержать плагин?"
58
 
59
+ #: bws_functions.php:107 bws_menu.php:553
60
  msgid "Donate"
61
  msgstr "Пожертвовать"
62
 
76
  "используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить "
77
  "проблему в течение 24 часов, в противном случае плагин будет деактивирован."
78
 
79
+ #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
80
+ #: class-bws-settings.php:143
81
  msgid "Learn More"
82
  msgstr "Подробнее"
83
 
124
  "Пожалуйста, обновите WordPress до последней версии."
125
 
126
  #: bws_functions.php:207
127
+ #, php-format
128
+ msgid "Thank you for installing %s plugin!"
129
+ msgstr "Спасибо, что установили %s плагин!"
130
 
131
  #: bws_functions.php:208
132
  msgid "Let's get started"
133
  msgstr "Давайте начнем"
134
 
135
+ #: bws_functions.php:209 bws_functions.php:242 bws_menu.php:557
136
+ #: bws_menu.php:559
137
  msgid "Settings"
138
  msgstr "Настройки"
139
 
140
+ #: bws_functions.php:211 bws_menu.php:328 class-bws-settings.php:736
141
+ #: class-bws-settings.php:1049 class-bws-settings.php:1059 deprecated.php:694
142
  msgid "or"
143
  msgstr "или"
144
 
200
  "приоритетную тех.поддержку или обновления."
201
 
202
  #: bws_functions.php:477
203
+ #, php-format
204
+ msgid "Thank you for choosing %s plugin!"
205
+ msgstr "Спасибо за выбор плагина %s!"
206
 
207
  #: bws_functions.php:478
208
  msgid ""
217
  msgid "Suggest a Feature"
218
  msgstr "Предложить функционал"
219
 
220
+ #: bws_functions.php:495 class-bws-settings.php:533 class-bws-settings.php:536
221
+ #: class-bws-settings.php:584 class-bws-settings.php:587
222
  msgid "Notice"
223
  msgstr "Внимание"
224
 
226
  msgid "The plugin's settings have been changed."
227
  msgstr "Настройки плагина были изменены"
228
 
229
+ #: bws_functions.php:496 class-bws-settings.php:182 class-bws-settings.php:202
230
  #: deprecated.php:640
231
  msgid "Save Changes"
232
  msgstr "Сохранить изменения"
301
  msgid "Submit a Request"
302
  msgstr "Отправить запрос"
303
 
304
+ #: bws_menu.php:101 class-bws-settings.php:781 deprecated.php:322
305
  msgid "Wrong license key"
306
  msgstr "Неправильный лицензионный ключ"
307
 
308
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
309
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
310
  #: deprecated.php:352
311
  msgid ""
312
  "Something went wrong. Please try again later. If the error appears again, "
315
  "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, "
316
  "пожалуйста, свяжитесь с нами"
317
 
318
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
319
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
320
  #: deprecated.php:352
321
  msgid "We are sorry for inconvenience."
322
  msgstr "Приносим извинения за неудобства."
323
 
324
+ #: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
325
  #: deprecated.php:139 deprecated.php:358
326
  msgid "Wrong license key."
327
  msgstr "Неправильный лицензионный ключ."
328
 
329
+ #: bws_menu.php:130
330
  msgid ""
331
  "This license key is bound to another site. Change it via personal Client "
332
  "Area."
333
  msgstr ""
334
  "Этот лицензионный ключ привязан к другому сайту. Измените это в Client Area."
335
 
336
+ #: bws_menu.php:130
337
  msgid "Log in"
338
  msgstr "Авторизоваться"
339
 
340
+ #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
341
  msgid "Unfortunately, you have exceeded the number of available tries per day."
342
  msgstr "К сожалению, вы превысили количество доступных попыток."
343
 
344
+ #: bws_menu.php:134 class-bws-settings.php:922 deprecated.php:364
345
  #, php-format
346
  msgid ""
347
  "Unfortunately, Your license has expired. To continue getting top-priority "
351
  "обновлений и приоритетной тех.поддержки, вам необходимо продлить лицензию в "
352
  "вашей %s"
353
 
354
+ #: bws_menu.php:136 class-bws-settings.php:924 deprecated.php:366
355
  msgid ""
356
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
357
  "Trial license can be installed only once."
359
  "К сожалению, Pro лицензия уже была установлена на этом доменен. Pro Trial "
360
  "лицензия может быть установлена только один раз."
361
 
362
+ #: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
363
  msgid "The license key is valid."
364
  msgstr "Лицензионный ключ действителен."
365
 
366
+ #: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
367
  msgid "Your license will expire on"
368
  msgstr "Ваша лицензия истечет"
369
 
370
+ #: bws_menu.php:146
371
  msgid "Congratulations! Pro Membership license is activated successfully."
372
  msgstr "Поздравляем! Pro Membership лицензия успешно активирована."
373
 
374
+ #: bws_menu.php:153 class-bws-settings.php:996 deprecated.php:435
375
  msgid ""
376
  "Something went wrong. Try again later or upload the plugin manually. We are "
377
  "sorry for inconvenience."
379
  "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. "
380
  "Приносим извинения за неудобства."
381
 
382
+ #: bws_menu.php:163
383
  msgid "Please enter your license key."
384
  msgstr "Пожалуйста, введите Ваш лицензионный ключ."
385
 
386
+ #: bws_menu.php:174
387
  msgid "Not set"
388
  msgstr "Не задан"
389
 
390
+ #: bws_menu.php:176
391
  msgid "On"
392
  msgstr "Вкл"
393
 
394
+ #: bws_menu.php:176
395
  msgid "Off"
396
  msgstr "Выкл"
397
 
398
+ #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
399
+ #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
400
  msgid "N/A"
401
  msgstr "Неизвестно"
402
 
403
+ #: bws_menu.php:182
404
  msgid " Mb"
405
  msgstr "Mb"
406
 
407
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
408
  msgid "Yes"
409
  msgstr "Да"
410
 
411
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
412
  msgid "No"
413
  msgstr "Нет"
414
 
415
+ #: bws_menu.php:196
416
  msgid "WordPress Environment"
417
  msgstr "WordPress Системная среда"
418
 
419
+ #: bws_menu.php:198
420
  msgid "Home URL"
421
  msgstr "Основной адрес сайта"
422
 
423
+ #: bws_menu.php:199
424
  msgid "Website URL"
425
  msgstr "Адрес сайта"
426
 
427
+ #: bws_menu.php:200
428
  msgid "WP Version"
429
  msgstr "Версия WordPress"
430
 
431
+ #: bws_menu.php:201
432
  msgid "WP Multisite"
433
  msgstr "Мультисайт"
434
 
435
+ #: bws_menu.php:202
436
  msgid "WP Memory Limit"
437
  msgstr "Лимит памяти WordPress"
438
 
439
+ #: bws_menu.php:203
440
  msgid "Active Theme"
441
  msgstr "Текущая тема"
442
 
443
+ #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
444
  #, php-format
445
  msgid "by %s"
446
  msgstr "%s"
447
 
448
+ #: bws_menu.php:207
449
  msgid "Server Environment"
450
  msgstr "Системная среда сервера"
451
 
452
+ #: bws_menu.php:209
453
  msgid "Operating System"
454
  msgstr "Операционная система"
455
 
456
+ #: bws_menu.php:210
457
  msgid "Server"
458
  msgstr "Тип сервера"
459
 
460
+ #: bws_menu.php:211
461
  msgid "PHP Version"
462
  msgstr "Версия PHP"
463
 
464
+ #: bws_menu.php:212
465
  msgid "PHP Allow URL fopen"
466
  msgstr "PHP Allow URL fopen"
467
 
468
+ #: bws_menu.php:213
469
  msgid "PHP Memory Limit"
470
  msgstr "Лимит памяти"
471
 
472
+ #: bws_menu.php:214
473
  msgid "Memory Usage"
474
  msgstr "Использование памяти"
475
 
476
+ #: bws_menu.php:215
477
  msgid "PHP Max Upload Size"
478
  msgstr "Макс. размер загружаемого файла"
479
 
480
+ #: bws_menu.php:216
481
  msgid "PHP Max Post Size"
482
  msgstr "Макс. размер записи"
483
 
484
+ #: bws_menu.php:217
485
  msgid "PHP Max Script Execute Time"
486
  msgstr "Макс. время выполнения сценария"
487
 
488
+ #: bws_menu.php:218
489
  msgid "PHP Exif support"
490
  msgstr "Поддержка PHP Exif"
491
 
492
+ #: bws_menu.php:219
493
  msgid "PHP IPTC support"
494
  msgstr "Поддержка PHP IPTC"
495
 
496
+ #: bws_menu.php:220
497
  msgid "PHP XML support"
498
  msgstr "Поддержка PHP XML"
499
 
500
+ #: bws_menu.php:226
501
  msgid "Database"
502
  msgstr "База данных"
503
 
504
+ #: bws_menu.php:228
505
  msgid "WP DB version"
506
  msgstr "Версия базы данных WordPress"
507
 
508
+ #: bws_menu.php:229
509
  msgid "MySQL version"
510
  msgstr "Версия MYSQL"
511
 
512
+ #: bws_menu.php:230
513
  msgid "SQL Mode"
514
  msgstr "Режим SQL"
515
 
516
+ #: bws_menu.php:234
517
  msgid "Active Plugins"
518
  msgstr "Активированные плагины"
519
 
520
+ #: bws_menu.php:239
521
  msgid "Inactive Plugins"
522
  msgstr "Неактивированные плагины"
523
 
524
+ #: bws_menu.php:260
525
  msgid "Please enter a valid email address."
526
  msgstr "Пожалуйста, введите валидный емайл."
527
 
528
+ #: bws_menu.php:264
529
  msgid "Email with system info is sent to"
530
  msgstr "Емейл с системной информацией отправлен на"
531
 
532
+ #: bws_menu.php:268
533
  msgid "Thank you for contacting us."
534
  msgstr "Спасибо что связались с нами."
535
 
536
+ #: bws_menu.php:291
537
  msgid "Sorry, email message could not be delivered."
538
  msgstr "Извините, ваш емейл не может быть отправлен."
539
 
540
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
541
  msgid "Plugins"
542
  msgstr "Плагины"
543
 
544
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
545
  msgid "Themes"
546
  msgstr "Темы"
547
 
548
+ #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
549
  msgid "System status"
550
  msgstr "Системная информация"
551
 
552
+ #: bws_menu.php:317
553
  msgid "Support"
554
  msgstr "Тех. поддержка"
555
 
556
+ #: bws_menu.php:318
557
  msgid "Manage purchased licenses & subscriptions"
558
  msgstr "Управление купленными лицензиями и подписками"
559
 
560
+ #: bws_menu.php:326
561
  #, php-format
562
  msgid "Get Access to %s+ Premium Plugins"
563
  msgstr "Получить Доступ к %s+ Премиум Плагинам"
564
 
565
+ #: bws_menu.php:328
566
  msgid "Subscribe to Pro Membership"
567
  msgstr "Подписаться на Pro Membership"
568
 
569
+ #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:749
570
  #: deprecated.php:227
571
  msgid "Check license key"
572
  msgstr "Проверка лицензионного ключа"
573
 
574
+ #: bws_menu.php:339
575
  msgid "Enter your license key"
576
  msgstr "Ваш лицензионный ключ"
577
 
578
+ #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
579
+ #: class-bws-settings.php:728 deprecated.php:259 deprecated.php:267
580
  #: deprecated.php:629 deprecated.php:700 deprecated.php:709
581
  msgid "Activate"
582
  msgstr "Активировать"
583
 
584
+ #: bws_menu.php:361
585
  msgid "Upload Plugin"
586
  msgstr "Добавить новый"
587
 
588
+ #: bws_menu.php:365
589
  #, php-format
590
  msgid ""
591
  "The plugin generated %d characters of <strong>unexpected output</strong> "
598
  "проблемы с RSS-лентами или другие неполадки, попробуйте деактивировать или "
599
  "удалить этот плагин."
600
 
601
+ #: bws_menu.php:367
602
  msgid ""
603
  "Plugin could not be activated because it triggered a <strong>fatal error</"
604
  "strong>."
606
  "Плагин не может быть активирован, поскольку он вызвал <strong>фатальную "
607
  "ошибку</strong>."
608
 
609
+ #: bws_menu.php:370
610
  msgid "Plugin <strong>activated</strong>."
611
  msgstr "Плагин <strong>активировано</strong>."
612
 
613
+ #: bws_menu.php:377
614
  msgid "Installing Plugin"
615
  msgstr "Установка плагина"
616
 
617
+ #: bws_menu.php:383
618
  msgid "Downloading install package from"
619
  msgstr "Скачивание установочного пакета из"
620
 
621
+ #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
622
+ #: class-bws-settings.php:948 class-bws-settings.php:970
623
+ #: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
624
  #: deprecated.php:431
625
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
626
  msgstr ""
627
  "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
628
 
629
+ #: bws_menu.php:408
630
  msgid "Unpacking the package"
631
  msgstr "Распаковка пакета"
632
 
633
+ #: bws_menu.php:413 bws_menu.php:421
634
  msgid "Installing the plugin"
635
  msgstr "Установка плагина"
636
 
637
+ #: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
638
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
639
  msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
640
 
641
+ #: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
642
  msgid ""
643
  "Your server does not support either ZipArchive or Phar. Please, upload the "
644
  "plugin manually"
646
  "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. "
647
  "Пожалуйста, загрузите плагин вручную"
648
 
649
+ #: bws_menu.php:427
650
  #, php-format
651
  msgid "The plugin %s is successfully installed."
652
  msgstr "Плагин %s успешно установлен."
653
 
654
+ #: bws_menu.php:434 class-bws-settings.php:973 deprecated.php:412
655
  msgid "UploadDir is not writable. Please, upload the plugin manually"
656
  msgstr ""
657
  "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
658
 
659
+ #: bws_menu.php:439
660
  msgid "Activate Plugin"
661
  msgstr "Активировать плагин"
662
 
663
+ #: bws_menu.php:439 bws_menu.php:445
664
  msgid "Return to BestWebSoft Panel"
665
  msgstr "Возврат к BestWebSoft Panel"
666
 
667
+ #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
668
  msgid "All"
669
  msgstr "Все"
670
 
671
+ #: bws_menu.php:450 bws_menu.php:650
672
  msgid "Installed"
673
  msgstr "Установленные"
674
 
675
+ #: bws_menu.php:451
676
  msgid "Not Installed"
677
  msgstr "Не установленные"
678
 
679
+ #: bws_menu.php:457
680
  msgid "Filter results"
681
  msgstr "Фильтр результатов"
682
 
683
+ #: bws_menu.php:460 bws_menu.php:589
684
  msgid "Category"
685
  msgstr "Категория"
686
 
687
+ #: bws_menu.php:524
688
  msgid "Not installed"
689
  msgstr "Не установлен"
690
 
691
+ #: bws_menu.php:528
692
  msgid "Renew to get updates"
693
  msgstr "Продлить для обновления"
694
 
695
+ #: bws_menu.php:531
696
  #, php-format
697
  msgid "Update to v %s"
698
  msgstr "Обновить до версии %s"
699
 
700
+ #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
701
  msgid "Install Now"
702
  msgstr "Установить"
703
 
704
+ #: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
705
  msgid "Upgrade to Pro"
706
  msgstr "Обновиться на Pro"
707
 
708
+ #: bws_menu.php:563 bws_menu.php:572
709
  msgid "Activate this plugin"
710
  msgstr "Активировать плагин"
711
 
712
+ #: bws_menu.php:575
713
  msgid "Install this plugin"
714
  msgstr "Установить этот плагин"
715
 
716
+ #: bws_menu.php:584
717
  msgid "Nothing found. Try another criteria."
718
  msgstr "Ничего не найдено. Попробуйте другие критерии."
719
 
720
+ #: bws_menu.php:621 bws_menu.php:641
721
  #, php-format
722
  msgid "By %s"
723
  msgstr "%s"
724
 
725
+ #: bws_menu.php:648
726
  msgid "Already Installed"
727
  msgstr "Уже установлена"
728
 
729
+ #: bws_menu.php:659
730
  msgid "Browse Free WordPress Themes"
731
  msgstr "Обзор бесплатных WordPress тем"
732
 
733
+ #: bws_menu.php:668
734
  msgid "Send to support"
735
  msgstr "Отправить в тех. поддержку"
736
 
737
+ #: bws_menu.php:675
738
  msgid "Send to custom email &#187;"
739
  msgstr "Отправить на емейл &#187;"
740
 
741
+ #: class-bws-settings.php:135
742
  msgid "Information"
743
  msgstr "Информация"
744
 
745
+ #: class-bws-settings.php:143
746
  msgid "Inactive"
747
  msgstr "Неактивна"
748
 
749
+ #: class-bws-settings.php:151
750
  msgid "Expired"
751
  msgstr "Истекла"
752
 
753
+ #: class-bws-settings.php:154
754
  #, php-format
755
  msgid "%s day(-s) left"
756
  msgstr "%s дней осталось"
757
 
758
+ #: class-bws-settings.php:160
759
  #, php-format
760
  msgid "Expired on %s"
761
  msgstr "Истекает %s"
762
 
763
+ #: class-bws-settings.php:160
764
  msgid "Renew Now"
765
  msgstr "Возобновить сейчас"
766
 
767
+ #: class-bws-settings.php:162
768
  msgid "Active"
769
  msgstr "Активна"
770
 
771
+ #: class-bws-settings.php:167
772
  msgid "License"
773
  msgstr "Лицензия"
774
 
775
+ #: class-bws-settings.php:170
776
  msgid "Status"
777
  msgstr "Статус"
778
 
779
+ #: class-bws-settings.php:174
780
  msgid "Version"
781
  msgstr "Версия"
782
 
783
+ #: class-bws-settings.php:282
784
  msgid "All plugin settings were restored."
785
  msgstr "Все настройки плагина были восстановлены."
786
 
787
+ #: class-bws-settings.php:420
788
  msgid "Custom Code"
789
  msgstr "Пользовательский код"
790
 
791
+ #: class-bws-settings.php:424 deprecated.php:497
792
  msgid "You do not have sufficient permissions to edit plugins for this site."
793
  msgstr ""
794
  "У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
795
 
796
+ #: class-bws-settings.php:429 deprecated.php:618
797
  msgid "These styles will be added to the header on all pages of your site."
798
  msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
799
 
800
+ #: class-bws-settings.php:432 deprecated.php:620
801
  #, php-format
802
  msgid ""
803
  "This PHP code will be hooked to the %s action and will be printed on front "
806
  "Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
807
  "фронтенде."
808
 
809
+ #: class-bws-settings.php:435
810
  msgid "These code will be added to the header on all pages of your site."
811
  msgstr "Этот код будет добавлен в хедер на всех страницах вашего сайта."
812
 
813
+ #: class-bws-settings.php:443 deprecated.php:644
814
  #, php-format
815
  msgid ""
816
  "You need to make this files writable before you can save your changes. See "
819
  "Чтобы сохранить изменения, нужно сделать этот файл доступным для записи. "
820
  "Дополнительную информацию можно получить в %s Кодексе %s."
821
 
822
+ #: class-bws-settings.php:453 deprecated.php:626
823
  msgid "Browsing"
824
  msgstr "Просмотр"
825
 
826
+ #: class-bws-settings.php:457
827
  #, php-format
828
  msgid "Activate custom %s code."
829
  msgstr "Активировать пользовательский %s код."
830
 
831
+ #: class-bws-settings.php:464 deprecated.php:633
832
  #, php-format
833
  msgid "Learn more about %s"
834
  msgstr "Подробнее о %s"
835
 
836
+ #: class-bws-settings.php:524
837
  msgid "Miscellaneous Settings"
838
  msgstr "Прочие настройки"
839
 
840
+ #: class-bws-settings.php:533 class-bws-settings.php:584
841
  #, php-format
842
  msgid ""
843
  "It is prohibited to change %s settings on this site in the %s network "
845
  msgstr ""
846
  "Cетевыми настройками %s запрещается изменять настройки %s на этом сайте."
847
 
848
+ #: class-bws-settings.php:536 class-bws-settings.php:587
849
  #, php-format
850
  msgid ""
851
  "It is prohibited to view %s settings on this site in the %s network settings."
852
  msgstr ""
853
  "Cетевыми настройками %s запрещается просматривать настройки %s на этом сайте."
854
 
855
+ #: class-bws-settings.php:545
856
  msgid "Pro Options"
857
  msgstr "Pro опции"
858
 
859
+ #: class-bws-settings.php:548
860
  msgid "Enable to display plugin Pro options."
861
  msgstr "Включите для отображения Pro опций плагина."
862
 
863
+ #: class-bws-settings.php:553
864
  msgid "Track Usage"
865
  msgstr "Собирать статистику"
866
 
867
+ #: class-bws-settings.php:556
868
  msgid ""
869
  "Enable to allow tracking plugin usage anonymously in order to make it better."
870
  msgstr ""
871
  "Включить, чтобы разрешить анонимно отслеживать использование и сделать "
872
  "плагин лучше."
873
 
874
+ #: class-bws-settings.php:560
875
  msgid "Default Settings"
876
  msgstr "Настройки по умолчанию"
877
 
878
+ #: class-bws-settings.php:562
879
  msgid "Restore Settings"
880
  msgstr "Восстановить настройки"
881
 
882
+ #: class-bws-settings.php:563
883
  msgid "This will restore plugin settings to defaults."
884
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию."
885
 
886
+ #: class-bws-settings.php:575
887
  msgid "Import / Export"
888
  msgstr "Импорт / Экспорт"
889
 
890
+ #: class-bws-settings.php:691 class-bws-settings.php:724
891
+ #: class-bws-settings.php:746
892
  msgid "License Key"
893
  msgstr "Лицензионный ключ"
894
 
895
+ #: class-bws-settings.php:714
896
  msgid "Congratulations! Pro license is activated successfully."
897
  msgstr "Поздравляем! Pro лицензия успешно активирована."
898
 
899
+ #: class-bws-settings.php:715
900
  #, php-format
901
+ msgid "You will be automatically redirected to the %s in %s seconds."
902
+ msgstr "Вы будете автоматически перенаправлены на %s через %s секунд."
903
 
904
+ #: class-bws-settings.php:715
905
  msgid "Settings page"
906
  msgstr "страницу Настроек"
907
 
908
+ #: class-bws-settings.php:730
909
  #, php-format
910
  msgid "Enter your license key to activate %s and get premium plugin features."
911
  msgstr ""
912
  "Введите лицензионный ключ для активации %s и получения дополнительных "
913
  "возможностей плагина."
914
 
915
+ #: class-bws-settings.php:733 class-bws-settings.php:920 deprecated.php:362
916
  #: deprecated.php:703
917
  msgid ""
918
  "Unfortunately, you have exceeded the number of available tries per day. "
921
  "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, "
922
  "загрузите плагин вручную."
923
 
924
+ #: class-bws-settings.php:736 deprecated.php:694
925
  #, php-format
926
  msgid "Start Your Free %s-Day Trial Now"
927
  msgstr "Попробуйте %s-дневную Trial версию бесплатно"
928
 
929
+ #: class-bws-settings.php:751
930
  msgid ""
931
  "If necessary, you can check if the license key is correct or reenter it in "
932
  "the field below."
934
  "При необходимости вы можете проверить валидность лицензионного ключа или "
935
  "повторно ввести его в поле ниже."
936
 
937
+ #: class-bws-settings.php:756
938
  msgid "Manage License Settings"
939
  msgstr "Управление настройками лицензий"
940
 
941
+ #: class-bws-settings.php:758
942
  msgid "Login to Client Area"
943
  msgstr "Зайти в Client Area"
944
 
945
+ #: class-bws-settings.php:760
946
  msgid ""
947
  "Manage active licenses, download BWS products, and view your payment history "
948
  "using BestWebSoft Client Area."
950
  "Управляй активными лицензиями, загружай BWS продукты, а также просматривай "
951
  "историю платежей с помощью BestWebSoft Client Area."
952
 
953
+ #: class-bws-settings.php:815 class-bws-settings.php:918 deprecated.php:141
954
  #: deprecated.php:360
955
  msgid "This license key is bound to another site."
956
  msgstr "Этот лицензионный ключ привязан к другому сайту."
957
 
958
+ #: class-bws-settings.php:817 deprecated.php:143
959
  msgid ""
960
  "This license key is valid, but Your license has expired. If you want to "
961
  "update our plugin in future, you should extend the license."
963
  "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите "
964
  "обновлять плагин в будущем, вы должны продлить лицензию."
965
 
966
+ #: class-bws-settings.php:819 deprecated.php:145
967
  msgid "Unfortunately, you have exceeded the number of available tries."
968
  msgstr "К сожалению, вы превысили количество доступных попыток."
969
 
970
+ #: class-bws-settings.php:821 deprecated.php:147
971
  msgid ""
972
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
973
  "The Pro Trial license can be installed only once."
975
  "К сожалению, Pro Trial версия плагина уже устанавливалась на этот домен. Pro "
976
  "Trial версию можно устанавливать лишь один раз."
977
 
978
+ #: class-bws-settings.php:826 deprecated.php:151
979
  msgid "The Pro Trial license key is valid."
980
  msgstr "Ключ Pro Trial версии действителен."
981
 
982
+ #: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
983
  #, php-format
984
  msgid ""
985
  "In order to continue using the plugin it is necessary to buy a %s license."
986
  msgstr ""
987
  "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
988
 
989
+ #: class-bws-settings.php:1031 deprecated.php:463
990
  msgid "Please, enter Your license key"
991
  msgstr "Пожалуйста, введите ваш лицензионный ключ"
992
 
993
+ #: class-bws-settings.php:1043
994
  msgid "Need Help?"
995
  msgstr "Нужна помощь?"
996
 
997
+ #: class-bws-settings.php:1045
998
  msgid "Read the Instruction"
999
  msgstr "Читать инструкцию"
1000
 
1001
+ #: class-bws-settings.php:1049
1002
  msgid "Watch the Video"
1003
  msgstr "Смотреть видео"
1004
 
1005
+ #: class-bws-settings.php:1060
1006
  msgid "Start Your Free Trial"
1007
  msgstr "Использовать бесплатную Trial версию"
1008
 
1144
  msgid "Other"
1145
  msgstr "Другое"
1146
 
1147
+ #~ msgid "Thank you for installing"
1148
+ #~ msgstr "Спасибо за установку"
1149
+
1150
+ #~ msgid "Thank you for choosing"
1151
+ #~ msgstr "Спасибо за выбор"
1152
+
1153
+ #~ msgid "You will be automatically redirected to the %s in 7 seconds."
1154
+ #~ msgstr "Вы будете автоматически перенаправлены на %s через 7 секунд."
1155
+
1156
  #~ msgid "PHP Safe Mode"
1157
  #~ msgstr "PHP Safe Mode"
1158
 
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: 2017-02-28 17:08+0200\n"
6
- "PO-Revision-Date: 2017-02-28 17:08+0200\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
@@ -48,15 +48,15 @@ msgstr "Оцінити"
48
  msgid "Need help?"
49
  msgstr "Потрібна допомога?"
50
 
51
- #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1036
52
  msgid "Visit Help Center"
53
- msgstr "Перейти в Help Center"
54
 
55
  #: bws_functions.php:106
56
  msgid "Want to support the plugin?"
57
  msgstr "Хочете підтримати плагін?"
58
 
59
- #: bws_functions.php:107 bws_menu.php:551
60
  msgid "Donate"
61
  msgstr "Пожертвувати"
62
 
@@ -76,8 +76,8 @@ msgstr ""
76
  "вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання "
77
  "протягом 24 годин, інакше плагін буде деактивовано."
78
 
79
- #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:625
80
- #: class-bws-settings.php:142
81
  msgid "Learn More"
82
  msgstr "Дізнатись більше"
83
 
@@ -123,20 +123,21 @@ msgstr ""
123
  "ласка, оновіть WordPress до останньої версії."
124
 
125
  #: bws_functions.php:207
126
- msgid "Thank you for installing"
127
- msgstr "Дякуємо, що встановили"
 
128
 
129
  #: bws_functions.php:208
130
  msgid "Let's get started"
131
  msgstr "Розпочнемо"
132
 
133
- #: bws_functions.php:209 bws_functions.php:242 bws_menu.php:555
134
- #: bws_menu.php:557
135
  msgid "Settings"
136
  msgstr "Налаштування"
137
 
138
- #: bws_functions.php:211 bws_menu.php:326 class-bws-settings.php:725
139
- #: class-bws-settings.php:1038 class-bws-settings.php:1048 deprecated.php:694
140
  msgid "or"
141
  msgstr "або"
142
 
@@ -197,8 +198,9 @@ msgstr ""
197
  "першочергову технічну підтримку та оновлення."
198
 
199
  #: bws_functions.php:477
200
- msgid "Thank you for choosing"
201
- msgstr "Дякуємо, що обрали"
 
202
 
203
  #: bws_functions.php:478
204
  msgid ""
@@ -213,8 +215,8 @@ msgstr ""
213
  msgid "Suggest a Feature"
214
  msgstr "Запропонувати функціонал"
215
 
216
- #: bws_functions.php:495 class-bws-settings.php:532 class-bws-settings.php:535
217
- #: class-bws-settings.php:583 class-bws-settings.php:586
218
  msgid "Notice"
219
  msgstr "Зауважте"
220
 
@@ -222,7 +224,7 @@ msgstr "Зауважте"
222
  msgid "The plugin's settings have been changed."
223
  msgstr "Налаштування плагіну змінено."
224
 
225
- #: bws_functions.php:496 class-bws-settings.php:181 class-bws-settings.php:201
226
  #: deprecated.php:640
227
  msgid "Save Changes"
228
  msgstr "Зберегти зміни"
@@ -295,12 +297,12 @@ msgstr "Відео інструкції"
295
  msgid "Submit a Request"
296
  msgstr "Надіслати запит"
297
 
298
- #: bws_menu.php:99 class-bws-settings.php:770 deprecated.php:322
299
  msgid "Wrong license key"
300
  msgstr "Невірний ключ ліцензії"
301
 
302
- #: bws_menu.php:120 class-bws-settings.php:796 class-bws-settings.php:863
303
- #: class-bws-settings.php:899 deprecated.php:133 deprecated.php:199
304
  #: deprecated.php:352
305
  msgid ""
306
  "Something went wrong. Please try again later. If the error appears again, "
@@ -309,33 +311,33 @@ msgstr ""
309
  "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, "
310
  "повідомте нам"
311
 
312
- #: bws_menu.php:120 class-bws-settings.php:796 class-bws-settings.php:863
313
- #: class-bws-settings.php:899 deprecated.php:133 deprecated.php:199
314
  #: deprecated.php:352
315
  msgid "We are sorry for inconvenience."
316
  msgstr "Просимо вибачення за незручності."
317
 
318
- #: bws_menu.php:126 class-bws-settings.php:802 class-bws-settings.php:905
319
  #: deprecated.php:139 deprecated.php:358
320
  msgid "Wrong license key."
321
  msgstr "Неправильний ліцензійний ключ."
322
 
323
- #: bws_menu.php:128
324
  msgid ""
325
  "This license key is bound to another site. Change it via personal Client "
326
  "Area."
327
  msgstr ""
328
  "Цей ліцензійний ключ прив'язано до іншого сайту. Змініть це в Client Area."
329
 
330
- #: bws_menu.php:128
331
  msgid "Log in"
332
  msgstr "Увійти"
333
 
334
- #: bws_menu.php:130 bws_menu.php:332 deprecated.php:261
335
  msgid "Unfortunately, you have exceeded the number of available tries per day."
336
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
337
 
338
- #: bws_menu.php:132 class-bws-settings.php:911 deprecated.php:364
339
  #, php-format
340
  msgid ""
341
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -344,7 +346,7 @@ msgstr ""
344
  "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
345
  "першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію на %s"
346
 
347
- #: bws_menu.php:134 class-bws-settings.php:913 deprecated.php:366
348
  msgid ""
349
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
350
  "Trial license can be installed only once."
@@ -352,19 +354,19 @@ msgstr ""
352
  "На жаль, Pro ліцензія уже використовувалась на цьому домені. Тріал Pro "
353
  "версії плагіну можна використати лише один раз."
354
 
355
- #: bws_menu.php:140 class-bws-settings.php:817 deprecated.php:153
356
  msgid "The license key is valid."
357
  msgstr "Ліцензійний ключ дійсний."
358
 
359
- #: bws_menu.php:142 class-bws-settings.php:820 deprecated.php:156
360
  msgid "Your license will expire on"
361
  msgstr "Ваша ліцензія закінчується"
362
 
363
- #: bws_menu.php:144
364
  msgid "Congratulations! Pro Membership license is activated successfully."
365
  msgstr "Вітаємо! Pro Membership ліцензія успішно активована."
366
 
367
- #: bws_menu.php:151 class-bws-settings.php:985 deprecated.php:435
368
  msgid ""
369
  "Something went wrong. Try again later or upload the plugin manually. We are "
370
  "sorry for inconvenience."
@@ -372,213 +374,213 @@ msgstr ""
372
  "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін "
373
  "вручну. Просимо вибачення за незручності."
374
 
375
- #: bws_menu.php:161
376
  msgid "Please enter your license key."
377
  msgstr "Будь ласка, введіть ваш ліцензійний ключ."
378
 
379
- #: bws_menu.php:172
380
  msgid "Not set"
381
  msgstr "Не задано"
382
 
383
- #: bws_menu.php:174
384
  msgid "On"
385
  msgstr "Увімк."
386
 
387
- #: bws_menu.php:174
388
  msgid "Off"
389
  msgstr "Вимк."
390
 
391
- #: bws_menu.php:175 bws_menu.php:176 bws_menu.php:177 bws_menu.php:178
392
- #: bws_menu.php:179 bws_menu.php:180 bws_menu.php:189
393
  msgid "N/A"
394
  msgstr "Невідомо"
395
 
396
- #: bws_menu.php:180
397
  msgid " Mb"
398
  msgstr "Мб"
399
 
400
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:183 bws_menu.php:187
401
  msgid "Yes"
402
  msgstr "Так"
403
 
404
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:183 bws_menu.php:187
405
  msgid "No"
406
  msgstr "Ні"
407
 
408
- #: bws_menu.php:194
409
  msgid "WordPress Environment"
410
  msgstr "Системне оточення WordPress"
411
 
412
- #: bws_menu.php:196
413
  msgid "Home URL"
414
  msgstr "Адреса домашньої сторінки"
415
 
416
- #: bws_menu.php:197
417
  msgid "Website URL"
418
  msgstr "Адреса сайту"
419
 
420
- #: bws_menu.php:198
421
  msgid "WP Version"
422
  msgstr "Версія WordPress"
423
 
424
- #: bws_menu.php:199
425
  msgid "WP Multisite"
426
  msgstr "Мультисайт"
427
 
428
- #: bws_menu.php:200
429
  msgid "WP Memory Limit"
430
  msgstr "Ліміт пам’яті WordPress"
431
 
432
- #: bws_menu.php:201
433
  msgid "Active Theme"
434
  msgstr "Активна тема"
435
 
436
- #: bws_menu.php:201 bws_menu.php:246 bws_menu.php:249
437
  #, php-format
438
  msgid "by %s"
439
  msgstr "%s"
440
 
441
- #: bws_menu.php:205
442
  msgid "Server Environment"
443
  msgstr "Системне оточення сервера"
444
 
445
- #: bws_menu.php:207
446
  msgid "Operating System"
447
  msgstr "Операційна система"
448
 
449
- #: bws_menu.php:208
450
  msgid "Server"
451
  msgstr "Тип серверу"
452
 
453
- #: bws_menu.php:209
454
  msgid "PHP Version"
455
  msgstr "Версія PHP"
456
 
457
- #: bws_menu.php:210
458
  msgid "PHP Allow URL fopen"
459
  msgstr "Дозволити PHP URL fopen"
460
 
461
- #: bws_menu.php:211
462
  msgid "PHP Memory Limit"
463
  msgstr "Ліміт пам’яті"
464
 
465
- #: bws_menu.php:212
466
  msgid "Memory Usage"
467
  msgstr "Використання пам'яті"
468
 
469
- #: bws_menu.php:213
470
  msgid "PHP Max Upload Size"
471
  msgstr "Макс. розмір файлу, що завантажується"
472
 
473
- #: bws_menu.php:214
474
  msgid "PHP Max Post Size"
475
  msgstr "Макс. розмір посту"
476
 
477
- #: bws_menu.php:215
478
  msgid "PHP Max Script Execute Time"
479
  msgstr "Макс. час виконання сценарію"
480
 
481
- #: bws_menu.php:216
482
  msgid "PHP Exif support"
483
  msgstr "Підтримка PHP Exif"
484
 
485
- #: bws_menu.php:217
486
  msgid "PHP IPTC support"
487
  msgstr "Підтримка PHP IPTC"
488
 
489
- #: bws_menu.php:218
490
  msgid "PHP XML support"
491
  msgstr "Підтримка PHP XML"
492
 
493
- #: bws_menu.php:224
494
  msgid "Database"
495
  msgstr "База даних"
496
 
497
- #: bws_menu.php:226
498
  msgid "WP DB version"
499
  msgstr "Версія бази даних WordPress"
500
 
501
- #: bws_menu.php:227
502
  msgid "MySQL version"
503
  msgstr "Версія MYSQL"
504
 
505
- #: bws_menu.php:228
506
  msgid "SQL Mode"
507
  msgstr "Режим SQL"
508
 
509
- #: bws_menu.php:232
510
  msgid "Active Plugins"
511
  msgstr "Активні плагіни"
512
 
513
- #: bws_menu.php:237
514
  msgid "Inactive Plugins"
515
  msgstr "Не активні плагіни"
516
 
517
- #: bws_menu.php:258
518
  msgid "Please enter a valid email address."
519
  msgstr "Будь ласка, введіть коректний емейл."
520
 
521
- #: bws_menu.php:262
522
  msgid "Email with system info is sent to"
523
  msgstr "Емейл з системною інформацією надіслано на"
524
 
525
- #: bws_menu.php:266
526
  msgid "Thank you for contacting us."
527
  msgstr "Дякуємо, що звернулись до нас."
528
 
529
- #: bws_menu.php:289
530
  msgid "Sorry, email message could not be delivered."
531
  msgstr "Вибачте, ваше емейл не може бути доставлено"
532
 
533
- #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
534
  msgid "Plugins"
535
  msgstr "Плагіни"
536
 
537
- #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:609 deprecated.php:92
538
  msgid "Themes"
539
  msgstr "Теми"
540
 
541
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:660
542
  msgid "System status"
543
  msgstr "Системна інформація"
544
 
545
- #: bws_menu.php:315
546
  msgid "Support"
547
  msgstr "Підтримка"
548
 
549
- #: bws_menu.php:316
550
  msgid "Manage purchased licenses & subscriptions"
551
  msgstr "Управління придбаними ліцензіями і підписками"
552
 
553
- #: bws_menu.php:324
554
  #, php-format
555
  msgid "Get Access to %s+ Premium Plugins"
556
  msgstr "Отримати Доступ до %s+ Преміум Плагинам"
557
 
558
- #: bws_menu.php:326
559
  msgid "Subscribe to Pro Membership"
560
  msgstr "Підписатися на Pro Membership"
561
 
562
- #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:738
563
  #: deprecated.php:227
564
  msgid "Check license key"
565
  msgstr "Перевірте ліцензійний ключ"
566
 
567
- #: bws_menu.php:337
568
  msgid "Enter your license key"
569
  msgstr "Ваш ліцензійний ключ"
570
 
571
- #: bws_menu.php:343 bws_menu.php:561 bws_menu.php:570
572
- #: class-bws-settings.php:717 deprecated.php:259 deprecated.php:267
573
  #: deprecated.php:629 deprecated.php:700 deprecated.php:709
574
  msgid "Activate"
575
  msgstr "Активувати"
576
 
577
- #: bws_menu.php:359
578
  msgid "Upload Plugin"
579
  msgstr "Завантажити плагін"
580
 
581
- #: bws_menu.php:363
582
  #, php-format
583
  msgid ""
584
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -591,7 +593,7 @@ msgstr ""
591
  "надіслані&#8221;, проблеми з каналами чи інші неполадки, спробуйте вимкнути "
592
  "чи видалити цей плагін."
593
 
594
- #: bws_menu.php:365
595
  msgid ""
596
  "Plugin could not be activated because it triggered a <strong>fatal error</"
597
  "strong>."
@@ -599,39 +601,39 @@ msgstr ""
599
  "Плагін не вдалося активувати, бо він спричинив <strong>критичну помилку</"
600
  "strong>."
601
 
602
- #: bws_menu.php:368
603
  msgid "Plugin <strong>activated</strong>."
604
  msgstr "Плагін <strong>активовано</strong>."
605
 
606
- #: bws_menu.php:375
607
  msgid "Installing Plugin"
608
  msgstr "Встановлення плагіну"
609
 
610
- #: bws_menu.php:381
611
  msgid "Downloading install package from"
612
  msgstr "Завантаження встановлюючого пакунку з"
613
 
614
- #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440
615
- #: class-bws-settings.php:937 class-bws-settings.php:959
616
- #: class-bws-settings.php:981 deprecated.php:387 deprecated.php:409
617
  #: deprecated.php:431
618
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
619
  msgstr ""
620
  "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
621
 
622
- #: bws_menu.php:406
623
  msgid "Unpacking the package"
624
  msgstr "Розпакування пакета"
625
 
626
- #: bws_menu.php:411 bws_menu.php:419
627
  msgid "Installing the plugin"
628
  msgstr "Встановлення плагіну"
629
 
630
- #: bws_menu.php:415 class-bws-settings.php:949 deprecated.php:399
631
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
632
  msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
633
 
634
- #: bws_menu.php:422 class-bws-settings.php:955 deprecated.php:405
635
  msgid ""
636
  "Your server does not support either ZipArchive or Phar. Please, upload the "
637
  "plugin manually"
@@ -639,158 +641,158 @@ msgstr ""
639
  "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
640
  "вручну"
641
 
642
- #: bws_menu.php:425
643
  #, php-format
644
  msgid "The plugin %s is successfully installed."
645
  msgstr "Плагін %s успішно встановлено."
646
 
647
- #: bws_menu.php:432 class-bws-settings.php:962 deprecated.php:412
648
  msgid "UploadDir is not writable. Please, upload the plugin manually"
649
  msgstr ""
650
  "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
651
  "вручну"
652
 
653
- #: bws_menu.php:437
654
  msgid "Activate Plugin"
655
  msgstr "Активувати плагін"
656
 
657
- #: bws_menu.php:437 bws_menu.php:443
658
  msgid "Return to BestWebSoft Panel"
659
  msgstr "Назад до BestWebSoft Panel"
660
 
661
- #: bws_menu.php:447 bws_menu.php:462 bws_menu.php:591
662
  msgid "All"
663
  msgstr "Всі"
664
 
665
- #: bws_menu.php:448 bws_menu.php:648
666
  msgid "Installed"
667
  msgstr "Встановлені"
668
 
669
- #: bws_menu.php:449
670
  msgid "Not Installed"
671
  msgstr "Не встановлені"
672
 
673
- #: bws_menu.php:455
674
  msgid "Filter results"
675
  msgstr "Фільтр результатів"
676
 
677
- #: bws_menu.php:458 bws_menu.php:587
678
  msgid "Category"
679
  msgstr "Категорія"
680
 
681
- #: bws_menu.php:522
682
  msgid "Not installed"
683
  msgstr "Не встановлен"
684
 
685
- #: bws_menu.php:526
686
  msgid "Renew to get updates"
687
  msgstr "Продовжити для поновлення"
688
 
689
- #: bws_menu.php:529
690
  #, php-format
691
  msgid "Update to v %s"
692
  msgstr "Оновити до версії %s"
693
 
694
- #: bws_menu.php:541 bws_menu.php:564 bws_menu.php:573
695
  msgid "Install Now"
696
  msgstr "Встановити"
697
 
698
- #: bws_menu.php:547 class-bws-settings.php:155 class-bws-settings.php:1045
699
  msgid "Upgrade to Pro"
700
  msgstr "Оновитися на Pro"
701
 
702
- #: bws_menu.php:561 bws_menu.php:570
703
  msgid "Activate this plugin"
704
  msgstr "Активувати плагін"
705
 
706
- #: bws_menu.php:573
707
  msgid "Install this plugin"
708
  msgstr "Встановити плагін"
709
 
710
- #: bws_menu.php:582
711
  msgid "Nothing found. Try another criteria."
712
  msgstr "Нічого не знайдено. Спробуйте інші критерії."
713
 
714
- #: bws_menu.php:619 bws_menu.php:639
715
  #, php-format
716
  msgid "By %s"
717
  msgstr "За %s"
718
 
719
- #: bws_menu.php:646
720
  msgid "Already Installed"
721
  msgstr "Уже встановлено %s"
722
 
723
- #: bws_menu.php:657
724
  msgid "Browse Free WordPress Themes"
725
  msgstr "Огляд безкоштовних WordPress тем"
726
 
727
- #: bws_menu.php:666
728
  msgid "Send to support"
729
  msgstr "Відправити службі тех. підтримки"
730
 
731
- #: bws_menu.php:673
732
  msgid "Send to custom email &#187;"
733
  msgstr "Відправити на електронну адресу &#187;"
734
 
735
- #: class-bws-settings.php:134
736
  msgid "Information"
737
  msgstr "Інформація"
738
 
739
- #: class-bws-settings.php:142
740
  msgid "Inactive"
741
  msgstr "Неактивна"
742
 
743
- #: class-bws-settings.php:150
744
  msgid "Expired"
745
  msgstr "Закінчилась"
746
 
747
- #: class-bws-settings.php:153
748
  #, php-format
749
  msgid "%s day(-s) left"
750
  msgstr "%s днів залишилося"
751
 
752
- #: class-bws-settings.php:159
753
  #, php-format
754
  msgid "Expired on %s"
755
  msgstr "Витікає %s"
756
 
757
- #: class-bws-settings.php:159
758
  msgid "Renew Now"
759
  msgstr "Відновити зараз"
760
 
761
- #: class-bws-settings.php:161
762
  msgid "Active"
763
  msgstr "Активна"
764
 
765
- #: class-bws-settings.php:166
766
  msgid "License"
767
  msgstr "Ліцензія"
768
 
769
- #: class-bws-settings.php:169
770
  msgid "Status"
771
  msgstr "Статус"
772
 
773
- #: class-bws-settings.php:173
774
  msgid "Version"
775
  msgstr "Версія"
776
 
777
- #: class-bws-settings.php:281
778
  msgid "All plugin settings were restored."
779
  msgstr "Усі налаштування плагіну відновлені."
780
 
781
- #: class-bws-settings.php:419
782
  msgid "Custom Code"
783
  msgstr "Користувацький код"
784
 
785
- #: class-bws-settings.php:423 deprecated.php:497
786
  msgid "You do not have sufficient permissions to edit plugins for this site."
787
  msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
788
 
789
- #: class-bws-settings.php:428 deprecated.php:618
790
  msgid "These styles will be added to the header on all pages of your site."
791
  msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
792
 
793
- #: class-bws-settings.php:431 deprecated.php:620
794
  #, php-format
795
  msgid ""
796
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -798,11 +800,11 @@ msgid ""
798
  msgstr ""
799
  "Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
800
 
801
- #: class-bws-settings.php:434
802
  msgid "These code will be added to the header on all pages of your site."
803
  msgstr "Цей код буде додано в заголовок на всіх сторінках вашого сайту."
804
 
805
- #: class-bws-settings.php:442 deprecated.php:644
806
  #, php-format
807
  msgid ""
808
  "You need to make this files writable before you can save your changes. See "
@@ -811,25 +813,25 @@ msgstr ""
811
  "Вам потрібно зробити цей файл доступним для запису, перед тим як ви зможете "
812
  "зберегти свої зміни. Перегляньте %sКодекс%s для додаткової інформації."
813
 
814
- #: class-bws-settings.php:452 deprecated.php:626
815
  msgid "Browsing"
816
  msgstr "Огляд"
817
 
818
- #: class-bws-settings.php:456
819
  #, php-format
820
  msgid "Activate custom %s code."
821
  msgstr "Активувать користувацький %s код."
822
 
823
- #: class-bws-settings.php:463 deprecated.php:633
824
  #, php-format
825
  msgid "Learn more about %s"
826
  msgstr "Дізнатись більше про %s"
827
 
828
- #: class-bws-settings.php:523
829
  msgid "Miscellaneous Settings"
830
  msgstr "Інші налаштування"
831
 
832
- #: class-bws-settings.php:532 class-bws-settings.php:583
833
  #, php-format
834
  msgid ""
835
  "It is prohibited to change %s settings on this site in the %s network "
@@ -838,7 +840,7 @@ msgstr ""
838
  "Мережевими налаштуваннями %s забороняється змінювати налаштування %s на "
839
  "цьому сайті."
840
 
841
- #: class-bws-settings.php:535 class-bws-settings.php:586
842
  #, php-format
843
  msgid ""
844
  "It is prohibited to view %s settings on this site in the %s network settings."
@@ -846,67 +848,67 @@ msgstr ""
846
  "Мережевими налаштуваннями %s забороняється дивитися налаштування %s на цьому "
847
  "сайті."
848
 
849
- #: class-bws-settings.php:544
850
  msgid "Pro Options"
851
  msgstr "Pro опції"
852
 
853
- #: class-bws-settings.php:547
854
  msgid "Enable to display plugin Pro options."
855
  msgstr "Увімкніть для відображення Pro опцій плагіна."
856
 
857
- #: class-bws-settings.php:552
858
  msgid "Track Usage"
859
  msgstr "Збирати статистику"
860
 
861
- #: class-bws-settings.php:555
862
  msgid ""
863
  "Enable to allow tracking plugin usage anonymously in order to make it better."
864
  msgstr ""
865
  "Включити, щоб дозволити анонімно відстежувати використання і зробити плагін "
866
  "краще."
867
 
868
- #: class-bws-settings.php:559
869
  msgid "Default Settings"
870
  msgstr "Налаштування за замовчуванням"
871
 
872
- #: class-bws-settings.php:561
873
  msgid "Restore Settings"
874
  msgstr "Відновлення налаштувань"
875
 
876
- #: class-bws-settings.php:562
877
  msgid "This will restore plugin settings to defaults."
878
  msgstr "Відновити всі налаштування плагіна до налаштувань за замовчуванням."
879
 
880
- #: class-bws-settings.php:574
881
  msgid "Import / Export"
882
  msgstr "Імпорт / Експорт"
883
 
884
- #: class-bws-settings.php:690 class-bws-settings.php:713
885
- #: class-bws-settings.php:735
886
  msgid "License Key"
887
  msgstr "Ключ ліцензії"
888
 
889
- #: class-bws-settings.php:703
890
  msgid "Congratulations! Pro license is activated successfully."
891
  msgstr "Вітаємо! Pro ліцензія успішно активована."
892
 
893
- #: class-bws-settings.php:704
894
  #, php-format
895
- msgid "You will be automatically redirected to the %s in 7 seconds."
896
- msgstr "Вас буде автоматично перенаправлено на %s через 7 секунд."
897
 
898
- #: class-bws-settings.php:704
899
  msgid "Settings page"
900
  msgstr "сторінку налаштувань"
901
 
902
- #: class-bws-settings.php:719
903
  #, php-format
904
  msgid "Enter your license key to activate %s and get premium plugin features."
905
  msgstr ""
906
  "Введіть ліцензійний ключ для активації %s і отримання додаткових можливостей "
907
  "плагіна."
908
 
909
- #: class-bws-settings.php:722 class-bws-settings.php:909 deprecated.php:362
910
  #: deprecated.php:703
911
  msgid ""
912
  "Unfortunately, you have exceeded the number of available tries per day. "
@@ -915,12 +917,12 @@ msgstr ""
915
  "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, "
916
  "завантажте плагін вручну"
917
 
918
- #: class-bws-settings.php:725 deprecated.php:694
919
  #, php-format
920
  msgid "Start Your Free %s-Day Trial Now"
921
  msgstr "Спробуйте %s-денну Trial версію безкоштовно"
922
 
923
- #: class-bws-settings.php:740
924
  msgid ""
925
  "If necessary, you can check if the license key is correct or reenter it in "
926
  "the field below."
@@ -928,15 +930,15 @@ msgstr ""
928
  "При необхідності ви можете перевірити правильність вашого ліцензійного ключа "
929
  "або знову ввести його у полі, що знаходиться нижче."
930
 
931
- #: class-bws-settings.php:745
932
  msgid "Manage License Settings"
933
  msgstr "Управління налаштуваннями ліцензій"
934
 
935
- #: class-bws-settings.php:747
936
  msgid "Login to Client Area"
937
  msgstr "Зайти в Client Area"
938
 
939
- #: class-bws-settings.php:749
940
  msgid ""
941
  "Manage active licenses, download BWS products, and view your payment history "
942
  "using BestWebSoft Client Area."
@@ -944,12 +946,12 @@ msgstr ""
944
  "Керуй активними ліцензіями, завантажуй BWS продукти, а також переглядай "
945
  "історію платежів за допомогою BestWebSoft Client Area."
946
 
947
- #: class-bws-settings.php:804 class-bws-settings.php:907 deprecated.php:141
948
  #: deprecated.php:360
949
  msgid "This license key is bound to another site."
950
  msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
951
 
952
- #: class-bws-settings.php:806 deprecated.php:143
953
  msgid ""
954
  "This license key is valid, but Your license has expired. If you want to "
955
  "update our plugin in future, you should extend the license."
@@ -957,11 +959,11 @@ msgstr ""
957
  "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви "
958
  "хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
959
 
960
- #: class-bws-settings.php:808 deprecated.php:145
961
  msgid "Unfortunately, you have exceeded the number of available tries."
962
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
963
 
964
- #: class-bws-settings.php:810 deprecated.php:147
965
  msgid ""
966
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
967
  "The Pro Trial license can be installed only once."
@@ -969,33 +971,33 @@ msgstr ""
969
  "На жаль, Trial Pro версія плагіну уже встановлювалась на цей домен. Trial "
970
  "Pro версію можна встановлювати лише один раз."
971
 
972
- #: class-bws-settings.php:815 deprecated.php:151
973
  msgid "The Pro Trial license key is valid."
974
  msgstr "Ключ тріал Pro версії вірний."
975
 
976
- #: class-bws-settings.php:823 deprecated.php:159 deprecated.php:246
977
  #, php-format
978
  msgid ""
979
  "In order to continue using the plugin it is necessary to buy a %s license."
980
  msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
981
 
982
- #: class-bws-settings.php:1020 deprecated.php:463
983
  msgid "Please, enter Your license key"
984
  msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
985
 
986
- #: class-bws-settings.php:1032
987
  msgid "Need Help?"
988
  msgstr "Потрібна допомога?"
989
 
990
- #: class-bws-settings.php:1034
991
  msgid "Read the Instruction"
992
  msgstr "Читати інструкцію"
993
 
994
- #: class-bws-settings.php:1038
995
  msgid "Watch the Video"
996
  msgstr "Дивитися відео"
997
 
998
- #: class-bws-settings.php:1049
999
  msgid "Start Your Free Trial"
1000
  msgstr "Використовувати безкоштовну Trial версію"
1001
 
@@ -1138,6 +1140,15 @@ msgstr "Утиліти"
1138
  msgid "Other"
1139
  msgstr "Інше"
1140
 
 
 
 
 
 
 
 
 
 
1141
  #~ msgid "PHP Safe Mode"
1142
  #~ msgstr "PHP Безпечний режим"
1143
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-03-28 13:52+0300\n"
6
+ "PO-Revision-Date: 2017-03-28 13:54+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: ru_RU\n"
48
  msgid "Need help?"
49
  msgstr "Потрібна допомога?"
50
 
51
+ #: bws_functions.php:103 bws_functions.php:916 class-bws-settings.php:1047
52
  msgid "Visit Help Center"
53
+ msgstr "Перейти до Help Center"
54
 
55
  #: bws_functions.php:106
56
  msgid "Want to support the plugin?"
57
  msgstr "Хочете підтримати плагін?"
58
 
59
+ #: bws_functions.php:107 bws_menu.php:553
60
  msgid "Donate"
61
  msgstr "Пожертвувати"
62
 
76
  "вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання "
77
  "протягом 24 годин, інакше плагін буде деактивовано."
78
 
79
+ #: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
80
+ #: class-bws-settings.php:143
81
  msgid "Learn More"
82
  msgstr "Дізнатись більше"
83
 
123
  "ласка, оновіть WordPress до останньої версії."
124
 
125
  #: bws_functions.php:207
126
+ #, php-format
127
+ msgid "Thank you for installing %s plugin!"
128
+ msgstr "Дякуємо, що встановили %s плагін!"
129
 
130
  #: bws_functions.php:208
131
  msgid "Let's get started"
132
  msgstr "Розпочнемо"
133
 
134
+ #: bws_functions.php:209 bws_functions.php:242 bws_menu.php:557
135
+ #: bws_menu.php:559
136
  msgid "Settings"
137
  msgstr "Налаштування"
138
 
139
+ #: bws_functions.php:211 bws_menu.php:328 class-bws-settings.php:736
140
+ #: class-bws-settings.php:1049 class-bws-settings.php:1059 deprecated.php:694
141
  msgid "or"
142
  msgstr "або"
143
 
198
  "першочергову технічну підтримку та оновлення."
199
 
200
  #: bws_functions.php:477
201
+ #, php-format
202
+ msgid "Thank you for choosing %s plugin!"
203
+ msgstr "Дякую за вибір плагіна %s!"
204
 
205
  #: bws_functions.php:478
206
  msgid ""
215
  msgid "Suggest a Feature"
216
  msgstr "Запропонувати функціонал"
217
 
218
+ #: bws_functions.php:495 class-bws-settings.php:533 class-bws-settings.php:536
219
+ #: class-bws-settings.php:584 class-bws-settings.php:587
220
  msgid "Notice"
221
  msgstr "Зауважте"
222
 
224
  msgid "The plugin's settings have been changed."
225
  msgstr "Налаштування плагіну змінено."
226
 
227
+ #: bws_functions.php:496 class-bws-settings.php:182 class-bws-settings.php:202
228
  #: deprecated.php:640
229
  msgid "Save Changes"
230
  msgstr "Зберегти зміни"
297
  msgid "Submit a Request"
298
  msgstr "Надіслати запит"
299
 
300
+ #: bws_menu.php:101 class-bws-settings.php:781 deprecated.php:322
301
  msgid "Wrong license key"
302
  msgstr "Невірний ключ ліцензії"
303
 
304
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
305
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
306
  #: deprecated.php:352
307
  msgid ""
308
  "Something went wrong. Please try again later. If the error appears again, "
311
  "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, "
312
  "повідомте нам"
313
 
314
+ #: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
315
+ #: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
316
  #: deprecated.php:352
317
  msgid "We are sorry for inconvenience."
318
  msgstr "Просимо вибачення за незручності."
319
 
320
+ #: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
321
  #: deprecated.php:139 deprecated.php:358
322
  msgid "Wrong license key."
323
  msgstr "Неправильний ліцензійний ключ."
324
 
325
+ #: bws_menu.php:130
326
  msgid ""
327
  "This license key is bound to another site. Change it via personal Client "
328
  "Area."
329
  msgstr ""
330
  "Цей ліцензійний ключ прив'язано до іншого сайту. Змініть це в Client Area."
331
 
332
+ #: bws_menu.php:130
333
  msgid "Log in"
334
  msgstr "Увійти"
335
 
336
+ #: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
337
  msgid "Unfortunately, you have exceeded the number of available tries per day."
338
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
339
 
340
+ #: bws_menu.php:134 class-bws-settings.php:922 deprecated.php:364
341
  #, php-format
342
  msgid ""
343
  "Unfortunately, Your license has expired. To continue getting top-priority "
346
  "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
347
  "першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію на %s"
348
 
349
+ #: bws_menu.php:136 class-bws-settings.php:924 deprecated.php:366
350
  msgid ""
351
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
352
  "Trial license can be installed only once."
354
  "На жаль, Pro ліцензія уже використовувалась на цьому домені. Тріал Pro "
355
  "версії плагіну можна використати лише один раз."
356
 
357
+ #: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
358
  msgid "The license key is valid."
359
  msgstr "Ліцензійний ключ дійсний."
360
 
361
+ #: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
362
  msgid "Your license will expire on"
363
  msgstr "Ваша ліцензія закінчується"
364
 
365
+ #: bws_menu.php:146
366
  msgid "Congratulations! Pro Membership license is activated successfully."
367
  msgstr "Вітаємо! Pro Membership ліцензія успішно активована."
368
 
369
+ #: bws_menu.php:153 class-bws-settings.php:996 deprecated.php:435
370
  msgid ""
371
  "Something went wrong. Try again later or upload the plugin manually. We are "
372
  "sorry for inconvenience."
374
  "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін "
375
  "вручну. Просимо вибачення за незручності."
376
 
377
+ #: bws_menu.php:163
378
  msgid "Please enter your license key."
379
  msgstr "Будь ласка, введіть ваш ліцензійний ключ."
380
 
381
+ #: bws_menu.php:174
382
  msgid "Not set"
383
  msgstr "Не задано"
384
 
385
+ #: bws_menu.php:176
386
  msgid "On"
387
  msgstr "Увімк."
388
 
389
+ #: bws_menu.php:176
390
  msgid "Off"
391
  msgstr "Вимк."
392
 
393
+ #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
394
+ #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
395
  msgid "N/A"
396
  msgstr "Невідомо"
397
 
398
+ #: bws_menu.php:182
399
  msgid " Mb"
400
  msgstr "Мб"
401
 
402
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
403
  msgid "Yes"
404
  msgstr "Так"
405
 
406
+ #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
407
  msgid "No"
408
  msgstr "Ні"
409
 
410
+ #: bws_menu.php:196
411
  msgid "WordPress Environment"
412
  msgstr "Системне оточення WordPress"
413
 
414
+ #: bws_menu.php:198
415
  msgid "Home URL"
416
  msgstr "Адреса домашньої сторінки"
417
 
418
+ #: bws_menu.php:199
419
  msgid "Website URL"
420
  msgstr "Адреса сайту"
421
 
422
+ #: bws_menu.php:200
423
  msgid "WP Version"
424
  msgstr "Версія WordPress"
425
 
426
+ #: bws_menu.php:201
427
  msgid "WP Multisite"
428
  msgstr "Мультисайт"
429
 
430
+ #: bws_menu.php:202
431
  msgid "WP Memory Limit"
432
  msgstr "Ліміт пам’яті WordPress"
433
 
434
+ #: bws_menu.php:203
435
  msgid "Active Theme"
436
  msgstr "Активна тема"
437
 
438
+ #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
439
  #, php-format
440
  msgid "by %s"
441
  msgstr "%s"
442
 
443
+ #: bws_menu.php:207
444
  msgid "Server Environment"
445
  msgstr "Системне оточення сервера"
446
 
447
+ #: bws_menu.php:209
448
  msgid "Operating System"
449
  msgstr "Операційна система"
450
 
451
+ #: bws_menu.php:210
452
  msgid "Server"
453
  msgstr "Тип серверу"
454
 
455
+ #: bws_menu.php:211
456
  msgid "PHP Version"
457
  msgstr "Версія PHP"
458
 
459
+ #: bws_menu.php:212
460
  msgid "PHP Allow URL fopen"
461
  msgstr "Дозволити PHP URL fopen"
462
 
463
+ #: bws_menu.php:213
464
  msgid "PHP Memory Limit"
465
  msgstr "Ліміт пам’яті"
466
 
467
+ #: bws_menu.php:214
468
  msgid "Memory Usage"
469
  msgstr "Використання пам'яті"
470
 
471
+ #: bws_menu.php:215
472
  msgid "PHP Max Upload Size"
473
  msgstr "Макс. розмір файлу, що завантажується"
474
 
475
+ #: bws_menu.php:216
476
  msgid "PHP Max Post Size"
477
  msgstr "Макс. розмір посту"
478
 
479
+ #: bws_menu.php:217
480
  msgid "PHP Max Script Execute Time"
481
  msgstr "Макс. час виконання сценарію"
482
 
483
+ #: bws_menu.php:218
484
  msgid "PHP Exif support"
485
  msgstr "Підтримка PHP Exif"
486
 
487
+ #: bws_menu.php:219
488
  msgid "PHP IPTC support"
489
  msgstr "Підтримка PHP IPTC"
490
 
491
+ #: bws_menu.php:220
492
  msgid "PHP XML support"
493
  msgstr "Підтримка PHP XML"
494
 
495
+ #: bws_menu.php:226
496
  msgid "Database"
497
  msgstr "База даних"
498
 
499
+ #: bws_menu.php:228
500
  msgid "WP DB version"
501
  msgstr "Версія бази даних WordPress"
502
 
503
+ #: bws_menu.php:229
504
  msgid "MySQL version"
505
  msgstr "Версія MYSQL"
506
 
507
+ #: bws_menu.php:230
508
  msgid "SQL Mode"
509
  msgstr "Режим SQL"
510
 
511
+ #: bws_menu.php:234
512
  msgid "Active Plugins"
513
  msgstr "Активні плагіни"
514
 
515
+ #: bws_menu.php:239
516
  msgid "Inactive Plugins"
517
  msgstr "Не активні плагіни"
518
 
519
+ #: bws_menu.php:260
520
  msgid "Please enter a valid email address."
521
  msgstr "Будь ласка, введіть коректний емейл."
522
 
523
+ #: bws_menu.php:264
524
  msgid "Email with system info is sent to"
525
  msgstr "Емейл з системною інформацією надіслано на"
526
 
527
+ #: bws_menu.php:268
528
  msgid "Thank you for contacting us."
529
  msgstr "Дякуємо, що звернулись до нас."
530
 
531
+ #: bws_menu.php:291
532
  msgid "Sorry, email message could not be delivered."
533
  msgstr "Вибачте, ваше емейл не може бути доставлено"
534
 
535
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
536
  msgid "Plugins"
537
  msgstr "Плагіни"
538
 
539
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
540
  msgid "Themes"
541
  msgstr "Теми"
542
 
543
+ #: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
544
  msgid "System status"
545
  msgstr "Системна інформація"
546
 
547
+ #: bws_menu.php:317
548
  msgid "Support"
549
  msgstr "Підтримка"
550
 
551
+ #: bws_menu.php:318
552
  msgid "Manage purchased licenses & subscriptions"
553
  msgstr "Управління придбаними ліцензіями і підписками"
554
 
555
+ #: bws_menu.php:326
556
  #, php-format
557
  msgid "Get Access to %s+ Premium Plugins"
558
  msgstr "Отримати Доступ до %s+ Преміум Плагинам"
559
 
560
+ #: bws_menu.php:328
561
  msgid "Subscribe to Pro Membership"
562
  msgstr "Підписатися на Pro Membership"
563
 
564
+ #: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:749
565
  #: deprecated.php:227
566
  msgid "Check license key"
567
  msgstr "Перевірте ліцензійний ключ"
568
 
569
+ #: bws_menu.php:339
570
  msgid "Enter your license key"
571
  msgstr "Ваш ліцензійний ключ"
572
 
573
+ #: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
574
+ #: class-bws-settings.php:728 deprecated.php:259 deprecated.php:267
575
  #: deprecated.php:629 deprecated.php:700 deprecated.php:709
576
  msgid "Activate"
577
  msgstr "Активувати"
578
 
579
+ #: bws_menu.php:361
580
  msgid "Upload Plugin"
581
  msgstr "Завантажити плагін"
582
 
583
+ #: bws_menu.php:365
584
  #, php-format
585
  msgid ""
586
  "The plugin generated %d characters of <strong>unexpected output</strong> "
593
  "надіслані&#8221;, проблеми з каналами чи інші неполадки, спробуйте вимкнути "
594
  "чи видалити цей плагін."
595
 
596
+ #: bws_menu.php:367
597
  msgid ""
598
  "Plugin could not be activated because it triggered a <strong>fatal error</"
599
  "strong>."
601
  "Плагін не вдалося активувати, бо він спричинив <strong>критичну помилку</"
602
  "strong>."
603
 
604
+ #: bws_menu.php:370
605
  msgid "Plugin <strong>activated</strong>."
606
  msgstr "Плагін <strong>активовано</strong>."
607
 
608
+ #: bws_menu.php:377
609
  msgid "Installing Plugin"
610
  msgstr "Встановлення плагіну"
611
 
612
+ #: bws_menu.php:383
613
  msgid "Downloading install package from"
614
  msgstr "Завантаження встановлюючого пакунку з"
615
 
616
+ #: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
617
+ #: class-bws-settings.php:948 class-bws-settings.php:970
618
+ #: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
619
  #: deprecated.php:431
620
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
621
  msgstr ""
622
  "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
623
 
624
+ #: bws_menu.php:408
625
  msgid "Unpacking the package"
626
  msgstr "Розпакування пакета"
627
 
628
+ #: bws_menu.php:413 bws_menu.php:421
629
  msgid "Installing the plugin"
630
  msgstr "Встановлення плагіну"
631
 
632
+ #: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
633
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
634
  msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
635
 
636
+ #: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
637
  msgid ""
638
  "Your server does not support either ZipArchive or Phar. Please, upload the "
639
  "plugin manually"
641
  "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
642
  "вручну"
643
 
644
+ #: bws_menu.php:427
645
  #, php-format
646
  msgid "The plugin %s is successfully installed."
647
  msgstr "Плагін %s успішно встановлено."
648
 
649
+ #: bws_menu.php:434 class-bws-settings.php:973 deprecated.php:412
650
  msgid "UploadDir is not writable. Please, upload the plugin manually"
651
  msgstr ""
652
  "Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
653
  "вручну"
654
 
655
+ #: bws_menu.php:439
656
  msgid "Activate Plugin"
657
  msgstr "Активувати плагін"
658
 
659
+ #: bws_menu.php:439 bws_menu.php:445
660
  msgid "Return to BestWebSoft Panel"
661
  msgstr "Назад до BestWebSoft Panel"
662
 
663
+ #: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
664
  msgid "All"
665
  msgstr "Всі"
666
 
667
+ #: bws_menu.php:450 bws_menu.php:650
668
  msgid "Installed"
669
  msgstr "Встановлені"
670
 
671
+ #: bws_menu.php:451
672
  msgid "Not Installed"
673
  msgstr "Не встановлені"
674
 
675
+ #: bws_menu.php:457
676
  msgid "Filter results"
677
  msgstr "Фільтр результатів"
678
 
679
+ #: bws_menu.php:460 bws_menu.php:589
680
  msgid "Category"
681
  msgstr "Категорія"
682
 
683
+ #: bws_menu.php:524
684
  msgid "Not installed"
685
  msgstr "Не встановлен"
686
 
687
+ #: bws_menu.php:528
688
  msgid "Renew to get updates"
689
  msgstr "Продовжити для поновлення"
690
 
691
+ #: bws_menu.php:531
692
  #, php-format
693
  msgid "Update to v %s"
694
  msgstr "Оновити до версії %s"
695
 
696
+ #: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
697
  msgid "Install Now"
698
  msgstr "Встановити"
699
 
700
+ #: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
701
  msgid "Upgrade to Pro"
702
  msgstr "Оновитися на Pro"
703
 
704
+ #: bws_menu.php:563 bws_menu.php:572
705
  msgid "Activate this plugin"
706
  msgstr "Активувати плагін"
707
 
708
+ #: bws_menu.php:575
709
  msgid "Install this plugin"
710
  msgstr "Встановити плагін"
711
 
712
+ #: bws_menu.php:584
713
  msgid "Nothing found. Try another criteria."
714
  msgstr "Нічого не знайдено. Спробуйте інші критерії."
715
 
716
+ #: bws_menu.php:621 bws_menu.php:641
717
  #, php-format
718
  msgid "By %s"
719
  msgstr "За %s"
720
 
721
+ #: bws_menu.php:648
722
  msgid "Already Installed"
723
  msgstr "Уже встановлено %s"
724
 
725
+ #: bws_menu.php:659
726
  msgid "Browse Free WordPress Themes"
727
  msgstr "Огляд безкоштовних WordPress тем"
728
 
729
+ #: bws_menu.php:668
730
  msgid "Send to support"
731
  msgstr "Відправити службі тех. підтримки"
732
 
733
+ #: bws_menu.php:675
734
  msgid "Send to custom email &#187;"
735
  msgstr "Відправити на електронну адресу &#187;"
736
 
737
+ #: class-bws-settings.php:135
738
  msgid "Information"
739
  msgstr "Інформація"
740
 
741
+ #: class-bws-settings.php:143
742
  msgid "Inactive"
743
  msgstr "Неактивна"
744
 
745
+ #: class-bws-settings.php:151
746
  msgid "Expired"
747
  msgstr "Закінчилась"
748
 
749
+ #: class-bws-settings.php:154
750
  #, php-format
751
  msgid "%s day(-s) left"
752
  msgstr "%s днів залишилося"
753
 
754
+ #: class-bws-settings.php:160
755
  #, php-format
756
  msgid "Expired on %s"
757
  msgstr "Витікає %s"
758
 
759
+ #: class-bws-settings.php:160
760
  msgid "Renew Now"
761
  msgstr "Відновити зараз"
762
 
763
+ #: class-bws-settings.php:162
764
  msgid "Active"
765
  msgstr "Активна"
766
 
767
+ #: class-bws-settings.php:167
768
  msgid "License"
769
  msgstr "Ліцензія"
770
 
771
+ #: class-bws-settings.php:170
772
  msgid "Status"
773
  msgstr "Статус"
774
 
775
+ #: class-bws-settings.php:174
776
  msgid "Version"
777
  msgstr "Версія"
778
 
779
+ #: class-bws-settings.php:282
780
  msgid "All plugin settings were restored."
781
  msgstr "Усі налаштування плагіну відновлені."
782
 
783
+ #: class-bws-settings.php:420
784
  msgid "Custom Code"
785
  msgstr "Користувацький код"
786
 
787
+ #: class-bws-settings.php:424 deprecated.php:497
788
  msgid "You do not have sufficient permissions to edit plugins for this site."
789
  msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
790
 
791
+ #: class-bws-settings.php:429 deprecated.php:618
792
  msgid "These styles will be added to the header on all pages of your site."
793
  msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
794
 
795
+ #: class-bws-settings.php:432 deprecated.php:620
796
  #, php-format
797
  msgid ""
798
  "This PHP code will be hooked to the %s action and will be printed on front "
800
  msgstr ""
801
  "Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
802
 
803
+ #: class-bws-settings.php:435
804
  msgid "These code will be added to the header on all pages of your site."
805
  msgstr "Цей код буде додано в заголовок на всіх сторінках вашого сайту."
806
 
807
+ #: class-bws-settings.php:443 deprecated.php:644
808
  #, php-format
809
  msgid ""
810
  "You need to make this files writable before you can save your changes. See "
813
  "Вам потрібно зробити цей файл доступним для запису, перед тим як ви зможете "
814
  "зберегти свої зміни. Перегляньте %sКодекс%s для додаткової інформації."
815
 
816
+ #: class-bws-settings.php:453 deprecated.php:626
817
  msgid "Browsing"
818
  msgstr "Огляд"
819
 
820
+ #: class-bws-settings.php:457
821
  #, php-format
822
  msgid "Activate custom %s code."
823
  msgstr "Активувать користувацький %s код."
824
 
825
+ #: class-bws-settings.php:464 deprecated.php:633
826
  #, php-format
827
  msgid "Learn more about %s"
828
  msgstr "Дізнатись більше про %s"
829
 
830
+ #: class-bws-settings.php:524
831
  msgid "Miscellaneous Settings"
832
  msgstr "Інші налаштування"
833
 
834
+ #: class-bws-settings.php:533 class-bws-settings.php:584
835
  #, php-format
836
  msgid ""
837
  "It is prohibited to change %s settings on this site in the %s network "
840
  "Мережевими налаштуваннями %s забороняється змінювати налаштування %s на "
841
  "цьому сайті."
842
 
843
+ #: class-bws-settings.php:536 class-bws-settings.php:587
844
  #, php-format
845
  msgid ""
846
  "It is prohibited to view %s settings on this site in the %s network settings."
848
  "Мережевими налаштуваннями %s забороняється дивитися налаштування %s на цьому "
849
  "сайті."
850
 
851
+ #: class-bws-settings.php:545
852
  msgid "Pro Options"
853
  msgstr "Pro опції"
854
 
855
+ #: class-bws-settings.php:548
856
  msgid "Enable to display plugin Pro options."
857
  msgstr "Увімкніть для відображення Pro опцій плагіна."
858
 
859
+ #: class-bws-settings.php:553
860
  msgid "Track Usage"
861
  msgstr "Збирати статистику"
862
 
863
+ #: class-bws-settings.php:556
864
  msgid ""
865
  "Enable to allow tracking plugin usage anonymously in order to make it better."
866
  msgstr ""
867
  "Включити, щоб дозволити анонімно відстежувати використання і зробити плагін "
868
  "краще."
869
 
870
+ #: class-bws-settings.php:560
871
  msgid "Default Settings"
872
  msgstr "Налаштування за замовчуванням"
873
 
874
+ #: class-bws-settings.php:562
875
  msgid "Restore Settings"
876
  msgstr "Відновлення налаштувань"
877
 
878
+ #: class-bws-settings.php:563
879
  msgid "This will restore plugin settings to defaults."
880
  msgstr "Відновити всі налаштування плагіна до налаштувань за замовчуванням."
881
 
882
+ #: class-bws-settings.php:575
883
  msgid "Import / Export"
884
  msgstr "Імпорт / Експорт"
885
 
886
+ #: class-bws-settings.php:691 class-bws-settings.php:724
887
+ #: class-bws-settings.php:746
888
  msgid "License Key"
889
  msgstr "Ключ ліцензії"
890
 
891
+ #: class-bws-settings.php:714
892
  msgid "Congratulations! Pro license is activated successfully."
893
  msgstr "Вітаємо! Pro ліцензія успішно активована."
894
 
895
+ #: class-bws-settings.php:715
896
  #, php-format
897
+ msgid "You will be automatically redirected to the %s in %s seconds."
898
+ msgstr "Вас буде автоматично перенаправлено на %s через %s секунд."
899
 
900
+ #: class-bws-settings.php:715
901
  msgid "Settings page"
902
  msgstr "сторінку налаштувань"
903
 
904
+ #: class-bws-settings.php:730
905
  #, php-format
906
  msgid "Enter your license key to activate %s and get premium plugin features."
907
  msgstr ""
908
  "Введіть ліцензійний ключ для активації %s і отримання додаткових можливостей "
909
  "плагіна."
910
 
911
+ #: class-bws-settings.php:733 class-bws-settings.php:920 deprecated.php:362
912
  #: deprecated.php:703
913
  msgid ""
914
  "Unfortunately, you have exceeded the number of available tries per day. "
917
  "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, "
918
  "завантажте плагін вручну"
919
 
920
+ #: class-bws-settings.php:736 deprecated.php:694
921
  #, php-format
922
  msgid "Start Your Free %s-Day Trial Now"
923
  msgstr "Спробуйте %s-денну Trial версію безкоштовно"
924
 
925
+ #: class-bws-settings.php:751
926
  msgid ""
927
  "If necessary, you can check if the license key is correct or reenter it in "
928
  "the field below."
930
  "При необхідності ви можете перевірити правильність вашого ліцензійного ключа "
931
  "або знову ввести його у полі, що знаходиться нижче."
932
 
933
+ #: class-bws-settings.php:756
934
  msgid "Manage License Settings"
935
  msgstr "Управління налаштуваннями ліцензій"
936
 
937
+ #: class-bws-settings.php:758
938
  msgid "Login to Client Area"
939
  msgstr "Зайти в Client Area"
940
 
941
+ #: class-bws-settings.php:760
942
  msgid ""
943
  "Manage active licenses, download BWS products, and view your payment history "
944
  "using BestWebSoft Client Area."
946
  "Керуй активними ліцензіями, завантажуй BWS продукти, а також переглядай "
947
  "історію платежів за допомогою BestWebSoft Client Area."
948
 
949
+ #: class-bws-settings.php:815 class-bws-settings.php:918 deprecated.php:141
950
  #: deprecated.php:360
951
  msgid "This license key is bound to another site."
952
  msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
953
 
954
+ #: class-bws-settings.php:817 deprecated.php:143
955
  msgid ""
956
  "This license key is valid, but Your license has expired. If you want to "
957
  "update our plugin in future, you should extend the license."
959
  "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви "
960
  "хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
961
 
962
+ #: class-bws-settings.php:819 deprecated.php:145
963
  msgid "Unfortunately, you have exceeded the number of available tries."
964
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
965
 
966
+ #: class-bws-settings.php:821 deprecated.php:147
967
  msgid ""
968
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
969
  "The Pro Trial license can be installed only once."
971
  "На жаль, Trial Pro версія плагіну уже встановлювалась на цей домен. Trial "
972
  "Pro версію можна встановлювати лише один раз."
973
 
974
+ #: class-bws-settings.php:826 deprecated.php:151
975
  msgid "The Pro Trial license key is valid."
976
  msgstr "Ключ тріал Pro версії вірний."
977
 
978
+ #: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
979
  #, php-format
980
  msgid ""
981
  "In order to continue using the plugin it is necessary to buy a %s license."
982
  msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
983
 
984
+ #: class-bws-settings.php:1031 deprecated.php:463
985
  msgid "Please, enter Your license key"
986
  msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
987
 
988
+ #: class-bws-settings.php:1043
989
  msgid "Need Help?"
990
  msgstr "Потрібна допомога?"
991
 
992
+ #: class-bws-settings.php:1045
993
  msgid "Read the Instruction"
994
  msgstr "Читати інструкцію"
995
 
996
+ #: class-bws-settings.php:1049
997
  msgid "Watch the Video"
998
  msgstr "Дивитися відео"
999
 
1000
+ #: class-bws-settings.php:1060
1001
  msgid "Start Your Free Trial"
1002
  msgstr "Використовувати безкоштовну Trial версію"
1003
 
1140
  msgid "Other"
1141
  msgstr "Інше"
1142
 
1143
+ #~ msgid "Thank you for installing"
1144
+ #~ msgstr "Дякуємо, що встановили"
1145
+
1146
+ #~ msgid "Thank you for choosing"
1147
+ #~ msgstr "Дякуємо, що обрали"
1148
+
1149
+ #~ msgid "You will be automatically redirected to the %s in 7 seconds."
1150
+ #~ msgstr "Вас буде автоматично перенаправлено на %s через 7 секунд."
1151
+
1152
  #~ msgid "PHP Safe Mode"
1153
  #~ msgstr "PHP Безпечний режим"
1154
 
contact_form.php CHANGED
@@ -6,7 +6,7 @@ Description: Simple contact form plugin any WordPress website must have.
6
  Author: BestWebSoft
7
  Text Domain: contact-form-plugin
8
  Domain Path: /languages
9
- Version: 4.0.5
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
6
  Author: BestWebSoft
7
  Text Domain: contact-form-plugin
8
  Domain Path: /languages
9
+ Version: 4.0.6
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
languages/contact-form-plugin-fr_FR.mo CHANGED
Binary file
languages/contact-form-plugin-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact-form-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-02-27 16:23+0300\n"
6
- "PO-Revision-Date: 2017-02-27 16:23+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"
@@ -15,7 +15,7 @@ msgstr ""
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "Plural-Forms: nplurals=2;plural=n>2;\n"
18
- "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #: contact_form.php:42 contact_form.php:1066
@@ -467,9 +467,8 @@ msgid "'Send me a copy' block"
467
  msgstr "Afficher le bloc \"M'envoyer une copie\""
468
 
469
  #: contact_form.php:1560
470
- #, fuzzy
471
  msgid "Activate for network"
472
- msgstr "Activer l'enregistrement"
473
 
474
  #: contact_form.php:1651
475
  msgid "Agreement checkbox"
@@ -520,7 +519,6 @@ msgid "Sent from (referer)"
520
  msgstr "Envoyer de (référence)"
521
 
522
  #: contact_form.php:1688
523
- #, fuzzy
524
  msgid ""
525
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
526
  msgstr ""
@@ -957,35 +955,174 @@ msgstr ""
957
  "dans votre site. Merci de le remplacer par %3s. Si vous fermez ce message, "
958
  "il réapparaîtra a chaque utilisation du code court en cause."
959
 
960
- #~ msgid "Unlock premium options by upgrading to Pro version"
961
- #~ msgstr "Débloquer les options premium en migrant vers la version PRO."
962
 
963
- #~ msgid "Advertisement"
964
- #~ msgstr "Publicité"
965
 
966
- #~ msgid "Content & Media"
967
- #~ msgstr "Contenu & média"
968
 
969
- #~ msgid "Management"
970
- #~ msgstr "Administration"
971
 
972
- #~ msgid "Recommended"
973
- #~ msgstr "Recommandés"
974
 
975
- #~ msgid "Security"
976
- #~ msgstr "Sécurité"
977
 
978
- #~ msgid "Site Stats"
979
- #~ msgstr "Statistiques"
980
 
981
- #~ msgid "Social"
982
- #~ msgstr "Social"
983
 
984
- #~ msgid "Utilities"
985
- #~ msgstr "Utilitaires"
986
 
987
- #~ msgid "Other"
988
- #~ msgstr "Autre"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
989
 
990
  #~ msgid "Wrong license key"
991
  #~ msgstr "Clé de licence incorrecte"
@@ -1001,29 +1138,54 @@ msgstr ""
1001
  #~ msgid "We are sorry for inconvenience."
1002
  #~ msgstr "Nous sommes désolés pour le désagrément."
1003
 
1004
- #~ msgid ""
1005
- #~ "This license key is bind to another website. Change it via personal "
1006
- #~ "Client Area."
1007
- #~ msgstr ""
1008
- #~ "La clé de licence correspond à un autre site. Modifier là au travers de "
1009
- #~ "votre espace client."
1010
 
1011
- #~ msgid "Log in"
1012
- #~ msgstr "Connexion"
1013
 
1014
  #~ msgid ""
1015
- #~ "Unfortunately, you have exceeded the number of available tries per day."
 
 
 
 
 
 
 
1016
  #~ msgstr ""
1017
  #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1018
  #~ "télécharger l'extension manuellement."
1019
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1020
  #~ msgid ""
1021
  #~ "Unfortunately, Your license has expired. To continue getting top-priority "
1022
- #~ "support and plugin updates you should extend it in your"
1023
  #~ msgstr ""
1024
  #~ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
1025
  #~ "rapide et des mises à jour de l'extension vous devez la renouveler dans "
1026
- #~ "votre"
1027
 
1028
  #~ msgid ""
1029
  #~ "Unfortunately, the Pro licence was already installed to this domain. The "
@@ -1032,16 +1194,28 @@ msgstr ""
1032
  #~ "Une licence a déjà été installée sur ce domaine. La licence d'évaluation "
1033
  #~ "ne peut-être installée qu'une seule fois."
1034
 
1035
- #~ msgid "The license key is valid."
1036
- #~ msgstr "La clé de licence est valide."
 
 
 
1037
 
1038
- #~ msgid "Your license will expire on"
1039
- #~ msgstr "Votre licence se termine le"
 
 
 
 
 
 
 
 
 
1040
 
1041
- #~ msgid "Congratulations! Pro Membership license is successfully activated."
1042
  #~ msgstr ""
1043
- #~ "Félicitations! La version PRO de cette extension a été téléchargée et "
1044
- #~ "activée avec succès."
1045
 
1046
  #~ msgid ""
1047
  #~ "Something went wrong. Try again later or upload the plugin manually. We "
@@ -1050,6 +1224,72 @@ msgstr ""
1050
  #~ "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
1051
  #~ "l'extension manuellement.Nous sommes désolés pour le désagrément."
1052
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1053
  #~ msgid "Please enter your license key."
1054
  #~ msgstr "Merci de saisir votre clé de licence."
1055
 
@@ -1074,33 +1314,51 @@ msgstr ""
1074
  #~ msgid "No"
1075
  #~ msgstr "No"
1076
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1077
  #~ msgid "Operating System"
1078
  #~ msgstr "Operating System"
1079
 
1080
  #~ msgid "Server"
1081
  #~ msgstr "Server"
1082
 
1083
- #~ msgid "Memory usage"
1084
- #~ msgstr "Memory usage"
1085
-
1086
- #~ msgid "MYSQL Version"
1087
- #~ msgstr "MYSQL Version"
1088
-
1089
- #~ msgid "SQL Mode"
1090
- #~ msgstr "SQL Mode"
1091
-
1092
  #~ msgid "PHP Version"
1093
  #~ msgstr "PHP Version"
1094
 
1095
- #~ msgid "PHP Safe Mode"
1096
- #~ msgstr "PHP Safe Mode"
1097
-
1098
  #~ msgid "PHP Allow URL fopen"
1099
  #~ msgstr "PHP Allow URL fopen"
1100
 
1101
  #~ msgid "PHP Memory Limit"
1102
  #~ msgstr "PHP Memory Limit"
1103
 
 
 
 
1104
  #~ msgid "PHP Max Upload Size"
1105
  #~ msgstr "PHP Max Upload Size"
1106
 
@@ -1119,28 +1377,28 @@ msgstr ""
1119
  #~ msgid "PHP XML support"
1120
  #~ msgstr "PHP XML support"
1121
 
1122
- #~ msgid "Site URL"
1123
- #~ msgstr "Site URL"
1124
 
1125
- #~ msgid "Home URL"
1126
- #~ msgstr "Home URL"
1127
 
1128
- #~ msgid "WordPress Version"
1129
- #~ msgstr "WordPress Version"
1130
 
1131
- #~ msgid "WordPress DB Version"
1132
- #~ msgstr "WordPress DB Version"
1133
 
1134
- #~ msgid "Multisite"
1135
- #~ msgstr "Multisite"
1136
 
1137
- #~ msgid "Active Theme"
1138
- #~ msgstr "Active Theme"
1139
 
1140
  #~ msgid "Please enter a valid email address."
1141
  #~ msgstr "Merci de saisir une adresse e-mail valide."
1142
 
1143
- #~ msgid "Email with system info is sent to "
1144
  #~ msgstr "Le courriel avec les informations système est envoyé à"
1145
 
1146
  #~ msgid "Plugins"
@@ -1155,21 +1413,12 @@ msgstr ""
1155
  #~ msgid "Manage purchased licenses & subscriptions"
1156
  #~ msgstr "Gérer les licences et les adhésions"
1157
 
1158
- #~ msgid "Client Area"
1159
- #~ msgstr "Espace client"
1160
-
1161
  #~ msgid "Get Access to %s+ Premium Plugins"
1162
  #~ msgstr "Accéder à plus de %s extension premiums"
1163
 
1164
  #~ msgid "Subscribe to Pro Membership"
1165
  #~ msgstr "Souscrire une adhésion PRO"
1166
 
1167
- #~ msgid "or"
1168
- #~ msgstr "ou"
1169
-
1170
- #~ msgid "Check license key"
1171
- #~ msgstr "Vérifier la clé de licence"
1172
-
1173
  #~ msgid "Enter your license key"
1174
  #~ msgstr "Merci de saisir votre clé de licence"
1175
 
@@ -1203,37 +1452,14 @@ msgstr ""
1203
  #~ msgid "Downloading install package from"
1204
  #~ msgstr "Télécharger le paquet d'installation depuis"
1205
 
1206
- #~ msgid ""
1207
- #~ "Failed to download the zip archive. Please, upload the plugin manually"
1208
- #~ msgstr ""
1209
- #~ "Erreur de téléchargement de l'archive ZIP. Merci de télécharger "
1210
- #~ "l'extension manuellement."
1211
-
1212
  #~ msgid "Unpacking the package"
1213
  #~ msgstr "Décompresser le paquet"
1214
 
1215
  #~ msgid "Installing the plugin"
1216
  #~ msgstr "Installer l'extension"
1217
 
1218
- #~ msgid "Failed to open the zip archive. Please, upload the plugin manually"
1219
- #~ msgstr ""
1220
- #~ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
1221
- #~ "manuellement."
1222
-
1223
- #~ msgid ""
1224
- #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1225
- #~ "the plugin manually"
1226
- #~ msgstr ""
1227
- #~ "Votre serveur n'a pas le support du format des archives ZIP ou Phar. "
1228
- #~ "Merci de télécharger l'extension manuellement."
1229
-
1230
- #~ msgid "Successfully installed the plugin"
1231
- #~ msgstr "Extension installée avec succès"
1232
-
1233
- #~ msgid "UploadDir is not writable. Please, upload the plugin manually"
1234
- #~ msgstr ""
1235
- #~ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
1236
- #~ "manuellement."
1237
 
1238
  #~ msgid "Activate Plugin"
1239
  #~ msgstr "Activer l'extension"
@@ -1298,18 +1524,6 @@ msgstr ""
1298
  #~ msgid "Send to custom email &#187;"
1299
  #~ msgstr "Envoyer un e-mail spécifique &#187;"
1300
 
1301
- #~ msgid "Environment"
1302
- #~ msgstr "Environnent"
1303
-
1304
- #~ msgid "Active Plugins"
1305
- #~ msgstr "Extensions actives"
1306
-
1307
- #~ msgid "Inactive Plugins"
1308
- #~ msgstr "Extensions inactives"
1309
-
1310
- #~ msgid "System Status"
1311
- #~ msgstr "Etat du système"
1312
-
1313
  #~ msgid "requires"
1314
  #~ msgstr "obligatoire"
1315
 
@@ -1326,178 +1540,17 @@ msgstr ""
1326
  #~ msgid "Plugins page"
1327
  #~ msgstr "Page des extensions"
1328
 
1329
- #~ msgid ""
1330
- #~ "or higher! We do not guarantee that our plugin will work correctly. "
1331
- #~ "Please upgrade to WordPress latest version."
1332
- #~ msgstr ""
1333
- #~ "ou plus! Nous ne garantissons pas que notre extension fonctionne "
1334
- #~ "correctement. Merci de mettre à jour votre version de WordPress."
1335
-
1336
- #~ msgid "Thank you for installing"
1337
- #~ msgstr "Merci d'avoir installé"
1338
-
1339
- #~ msgid "Let's get started"
1340
- #~ msgstr "C'est parti"
1341
-
1342
- #~ msgid "Add New"
1343
- #~ msgstr "Ajouter un nouveau"
1344
-
1345
- #~ msgid "Thank you for installing plugins by BestWebSoft!"
1346
- #~ msgstr "Merci d'avoir installé des extensions de BestWebSoft!"
1347
-
1348
- #~ msgid "More Details"
1349
- #~ msgstr "Plus de détails"
1350
-
1351
- #~ msgid "Less Details"
1352
- #~ msgstr "Moins de détails"
1353
-
1354
- #~ msgid "It’s time to upgrade your"
1355
- #~ msgstr "C'est le moment de mettre à jour votre "
1356
-
1357
- #~ msgid "to"
1358
- #~ msgstr "à"
1359
-
1360
- #~ msgid "version!"
1361
- #~ msgstr "version"
1362
-
1363
- #~ msgid "Extend standard plugin functionality with new great options."
1364
- #~ msgstr ""
1365
- #~ "Étend les fonctionnalités de base de l'extension avec de nouvelles "
1366
- #~ "options."
1367
-
1368
- #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1369
- #~ msgstr ""
1370
- #~ "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans "
1371
- #~ "Wordpress"
1372
-
1373
- #~ msgid "Rate the plugin"
1374
- #~ msgstr "Noter l'extension"
1375
-
1376
- #~ msgid "If there is something wrong about it, please contact us"
1377
- #~ msgstr ""
1378
- #~ "Si quelque chose ne fonctionne pas correctement, merci de nous contacter"
1379
-
1380
- #~ msgid "Donations play an important role in supporting great projects"
1381
- #~ msgstr "Les dons jouent un rôle important dans l'aide aux projets"
1382
-
1383
- #~ msgid "Check premium options on the plugin settings page!"
1384
- #~ msgstr "Vérifier les options premium dans les paramètres de l'extension!"
1385
-
1386
- #~ msgid "This license key is bind to another site"
1387
- #~ msgstr "La clé de licence correspond à un autre site."
1388
-
1389
- #~ msgid ""
1390
- #~ "Unfortunately, you have exceeded the number of available tries per day. "
1391
- #~ "Please, upload the plugin manually."
1392
- #~ msgstr ""
1393
- #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1394
- #~ "télécharger l'extension manuellement."
1395
-
1396
- #~ msgid "Please, enter Your license key"
1397
- #~ msgstr "Merci de saisir votre clé de licence"
1398
-
1399
- #~ msgid ""
1400
- #~ "Congratulations! Pro version of the plugin is successfully installed and "
1401
- #~ "activated."
1402
- #~ msgstr ""
1403
- #~ "Félicitations! La version PRO de cette extension a été téléchargée et "
1404
- #~ "activée avec succès."
1405
-
1406
- #~ msgid "Please, go to"
1407
- #~ msgstr "Merci d’aller à"
1408
-
1409
- #~ msgid "the setting page"
1410
- #~ msgstr "Options supplémentaires"
1411
-
1412
- #~ msgid "You will be redirected automatically in 5 seconds."
1413
- #~ msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
1414
-
1415
- #~ msgid "Show Pro features"
1416
- #~ msgstr "Voir les fonctionnalités PRO"
1417
-
1418
- #~ msgid "Enter your license key to install and activate"
1419
- #~ msgstr "Saisir votre clé de licence pour installer et activer"
1420
-
1421
- #~ msgid "version of the plugin."
1422
- #~ msgstr "version de l'extension."
1423
-
1424
- #~ msgid "License key can be found in the"
1425
- #~ msgstr "La clé de licence peut être trouvée dans "
1426
-
1427
- #~ msgid "(your username is the email address specified during the purchase)."
1428
- #~ msgstr ""
1429
- #~ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors "
1430
- #~ "de l'achat de l'extension)."
1431
-
1432
- #~ msgid "Start Your Free %s-Day Trial Now"
1433
- #~ msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
1434
-
1435
- #~ msgid ""
1436
- #~ "In order to continue using the plugin it is necessary to buy a %s license."
1437
- #~ msgstr ""
1438
- #~ "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
1439
- #~ "d'acheter une licence %s."
1440
-
1441
- #~ msgid "After that you can activate it by entering your license key."
1442
- #~ msgstr ""
1443
- #~ " Après vous pouvez activer cette extension en donnant votre clé de "
1444
- #~ "licence."
1445
-
1446
- #~ msgid ""
1447
- #~ "Congratulations! The Pro license of the plugin is successfully activated."
1448
- #~ msgstr ""
1449
- #~ "Félicitations! La version PRO de cette extension a été téléchargée et "
1450
- #~ "activée avec succès."
1451
-
1452
- #~ msgid "Wrong license key."
1453
- #~ msgstr "Clé de licence incorrecte"
1454
-
1455
- #~ msgid "This license key is bind to another site."
1456
- #~ msgstr "La clé de licence correspond à un autre site."
1457
-
1458
- #~ msgid ""
1459
- #~ "This license key is valid, but Your license has expired. If you want to "
1460
- #~ "update our plugin in future, you should extend the license."
1461
- #~ msgstr ""
1462
- #~ "La clé de licence est valide mais votre durée de validité est passée. "
1463
- #~ "Pour continuer à disposer du support rapide et des mises à jour de "
1464
- #~ "l'extension vous devez la renouveller."
1465
-
1466
- #~ msgid "Unfortunately, you have exceeded the number of available tries."
1467
- #~ msgstr ""
1468
- #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1469
- #~ "télécharger l'extension manuellement."
1470
-
1471
- #~ msgid ""
1472
- #~ "Unfortunately, the Pro Trial licence was already installed to this "
1473
- #~ "domain. The Pro Trial license can be installed only once."
1474
- #~ msgstr ""
1475
- #~ "Malheureusement la licence PRO a déjà été installée sur ce domaine. La "
1476
- #~ "licence PRO d'évaluation peut être installée une seule fois."
1477
-
1478
- #~ msgid "The Pro Trial license key is valid."
1479
- #~ msgstr "La clé de licence d'évaluation est valide."
1480
 
1481
- #~ msgid "Please, enter your license key"
1482
- #~ msgstr "Merci de saisir votre clé de licence"
1483
 
1484
- #~ msgid ""
1485
- #~ "If needed you can check if the license key is correct or reenter it in "
1486
- #~ "the field below. You can find your license key on your personal page - "
1487
- #~ "Client area - on our website"
1488
- #~ msgstr ""
1489
- #~ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou "
1490
- #~ "la saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre "
1491
- #~ "clé de licence sur votre page personnelle (zone client) sur notre site "
1492
- #~ "web."
1493
 
1494
- #~ msgid ""
1495
- #~ "(your username is the email address specified during the purchase). If "
1496
- #~ "necessary, please submit \"Lost your password?\" request."
1497
- #~ msgstr ""
1498
- #~ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors "
1499
- #~ "de l'achat de l'extension). Si nécessaire, utilisez la fonction de "
1500
- #~ "demande de mot de passe perdu."
1501
 
1502
  #~ msgid "WARNING: Illegal use notification"
1503
  #~ msgstr "AVERTISSEMENT&nbsp;: Notification d'utilisation abusive"
@@ -1515,7 +1568,7 @@ msgstr ""
1515
  #~ "l'extension sera rendue inactive."
1516
 
1517
  #~ msgid ""
1518
- #~ "Notice: Your Pro Trial license has expired. To continue using the plugin "
1519
  #~ "you should buy a Pro license"
1520
  #~ msgstr ""
1521
  #~ "Information&nbsp;: Votre licence d'évaluation est terminée. Pour "
@@ -1523,7 +1576,7 @@ msgstr ""
1523
 
1524
  #~ msgid ""
1525
  #~ "Your license has expired. To continue getting top-priority support and "
1526
- #~ "plugin updates you should extend it."
1527
  #~ msgstr ""
1528
  #~ "Votre licence est terminée. Pour continuer à disposer du support rapide "
1529
  #~ "et des mises à jour de l'extension vous devez la renouveler."
@@ -1540,14 +1593,61 @@ msgstr ""
1540
  #~ msgid "The Pro Trial license will expire on"
1541
  #~ msgstr "Votre licence se termine le"
1542
 
1543
- #~ msgid "You license for"
1544
- #~ msgstr "Votre licence pour"
 
 
 
 
 
 
 
 
 
 
1545
 
1546
- #~ msgid "expires on"
1547
- #~ msgstr "se termine le"
 
 
 
 
 
 
 
 
 
1548
 
1549
- #~ msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
1550
- #~ msgstr "et vous ne disposerez plus du support rapide et des mises à jour."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1551
 
1552
  #~ msgid "Thank you for choosing"
1553
  #~ msgstr "Merci d'avoir choisi"
@@ -1566,11 +1666,11 @@ msgstr ""
1566
  #~ msgstr "Les paramètres de l'extension ont été modifiés."
1567
 
1568
  #~ msgid ""
1569
- #~ "You can always look at premium options by clicking on the \"Show Pro "
1570
- #~ "features\" in the \"Go PRO\" tab"
1571
  #~ msgstr ""
1572
  #~ "Vous pouvez toujours consulter les options premium en cliquant sur \"Voir "
1573
- #~ "les fonctionnalités PRO\" dans l'onglet \"Passer PRO\""
1574
 
1575
  #~ msgid "Add BWS Shortcode"
1576
  #~ msgstr "Ajouter un code court de l'extension BWS"
@@ -1584,13 +1684,7 @@ msgstr ""
1584
  #~ msgid "Add BestWebSoft plugins' shortcodes using this button."
1585
  #~ msgstr "Ajouter le code court de l'extension BWS avec ce bouton."
1586
 
1587
- #~ msgid "Restore all plugin settings to defaults"
1588
- #~ msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
1589
-
1590
- #~ msgid "Restore settings"
1591
- #~ msgstr "Remettre les paramètres"
1592
-
1593
- #~ msgid "Are you sure you want to restore all settings by default?"
1594
  #~ msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
1595
 
1596
  #~ msgid "Yes, restore all settings"
@@ -1611,9 +1705,6 @@ msgstr ""
1611
  #~ msgid "Insert"
1612
  #~ msgstr "Insérer"
1613
 
1614
- #~ msgid "Visit Help Center"
1615
- #~ msgstr "Visiter le site du support"
1616
-
1617
  #~ msgid "For more information:"
1618
  #~ msgstr "Pour plus d'informations:"
1619
 
@@ -1626,10 +1717,66 @@ msgstr ""
1626
  #~ msgid "Submit a Request"
1627
  #~ msgstr "Envoyer une requête"
1628
 
 
 
 
 
 
 
1629
  #~ msgid ""
1630
- #~ "You do not have sufficient permissions to edit plugins for this site."
 
 
1631
  #~ msgstr ""
1632
- #~ "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1633
 
1634
  #~ msgid "File %s edited successfully."
1635
  #~ msgstr "Le fichier %s a été modifié avec succès."
@@ -1640,32 +1787,54 @@ msgstr ""
1640
  #~ msgid "Not enough permissions to create the file"
1641
  #~ msgstr "Pas assez de droits pour créer le fichier"
1642
 
1643
- #~ msgid "These styles will be added to the header on all pages of your site."
1644
- #~ msgstr ""
1645
- #~ "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
1646
 
1647
  #~ msgid ""
1648
- #~ "This PHP code will be hooked to the %s action and will be printed on "
1649
- #~ "front end only."
1650
  #~ msgstr ""
1651
- #~ "Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
1652
- #~ "partie publique."
1653
 
1654
- #~ msgid "Editing"
1655
- #~ msgstr "Modifier"
1656
 
1657
- #~ msgid "Browsing"
1658
- #~ msgstr "Parcourir"
1659
 
1660
- #~ msgid "Learn more about %s"
1661
- #~ msgstr "En savoir plus sur %s"
1662
 
1663
- #~ msgid ""
1664
- #~ "You need to make this files writable before you can save your changes. "
1665
- #~ "See %s the Codex %s for more information."
 
 
 
 
 
 
 
 
 
 
1666
  #~ msgstr ""
1667
- #~ "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
1668
- #~ "modifications. Regarder %s du Codex %s pour plus d'informations."
 
 
 
 
 
 
 
 
 
 
 
 
 
1669
 
1670
  #~ msgid "Name:"
1671
  #~ msgstr "Nom&nbsp;:"
@@ -1734,9 +1903,6 @@ msgstr ""
1734
  #~ msgid "Don’t have valid license key yet?"
1735
  #~ msgstr "Vous n'avez pas encore de licence valide ?"
1736
 
1737
- #~ msgid "Need help?"
1738
- #~ msgstr "Besoin d'aide ?"
1739
-
1740
  #~ msgid "Go"
1741
  #~ msgstr "Passez"
1742
 
@@ -1918,9 +2084,6 @@ msgstr ""
1918
  #~ msgid "Switch to new interface"
1919
  #~ msgstr "Basculer vers la nouvelle interface"
1920
 
1921
- #~ msgid "Pro plugins"
1922
- #~ msgstr "Extensions Pro"
1923
-
1924
  #~ msgid "Read more"
1925
  #~ msgstr "Lire la suite"
1926
 
2
  msgstr ""
3
  "Project-Id-Version: contact-form-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2017-04-14 12:19+0300\n"
6
+ "PO-Revision-Date: 2017-04-14 12:19+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"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "Plural-Forms: nplurals=2;plural=n>2;\n"
18
+ "X-Generator: Poedit 1.8.7.1\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #: contact_form.php:42 contact_form.php:1066
467
  msgstr "Afficher le bloc \"M'envoyer une copie\""
468
 
469
  #: contact_form.php:1560
 
470
  msgid "Activate for network"
471
+ msgstr "Activer pour le réseau"
472
 
473
  #: contact_form.php:1651
474
  msgid "Agreement checkbox"
519
  msgstr "Envoyer de (référence)"
520
 
521
  #: contact_form.php:1688
 
522
  msgid ""
523
  "Example: Sent from (referer):\thttps://bestwebsoft.com/contacts/contact-us/"
524
  msgstr ""
955
  "dans votre site. Merci de le remplacer par %3s. Si vous fermez ce message, "
956
  "il réapparaîtra a chaque utilisation du code court en cause."
957
 
958
+ #~ msgid "Information"
959
+ #~ msgstr "Informations"
960
 
961
+ #~ msgid "Inactive"
962
+ #~ msgstr "Inactives"
963
 
964
+ #~ msgid "Expired"
965
+ #~ msgstr "Expiré"
966
 
967
+ #~ msgid "%s day(-s) left"
968
+ #~ msgstr "%s (jour(s) restant"
969
 
970
+ #~ msgid "Expired on %s"
971
+ #~ msgstr "Se termine le %s"
972
 
973
+ #~ msgid "Renew Now"
974
+ #~ msgstr "Renouveler maintenant"
975
 
976
+ #~ msgid "Active"
977
+ #~ msgstr "Active"
978
 
979
+ #~ msgid "License"
980
+ #~ msgstr "License"
981
 
982
+ #~ msgid "Status"
983
+ #~ msgstr "Etat"
984
 
985
+ #~ msgid "Version"
986
+ #~ msgstr "Version"
987
+
988
+ #~ msgid "Custom Code"
989
+ #~ msgstr "Code personnaliser"
990
+
991
+ #~ msgid ""
992
+ #~ "You do not have sufficient permissions to edit plugins for this site."
993
+ #~ msgstr ""
994
+ #~ "Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
995
+
996
+ #~ msgid "These styles will be added to the header on all pages of your site."
997
+ #~ msgstr ""
998
+ #~ "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
999
+
1000
+ #~ msgid ""
1001
+ #~ "This PHP code will be hooked to the %s action and will be printed on "
1002
+ #~ "front end only."
1003
+ #~ msgstr ""
1004
+ #~ "Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
1005
+ #~ "partie publique."
1006
+
1007
+ #~ msgid "These code will be added to the header on all pages of your site."
1008
+ #~ msgstr "Ce code sera ajouté aux entêtes sur tous les pages de votre site."
1009
+
1010
+ #~ msgid ""
1011
+ #~ "You need to make this files writable before you can save your changes. "
1012
+ #~ "See %s the Codex %s for more information."
1013
+ #~ msgstr ""
1014
+ #~ "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
1015
+ #~ "modifications. Regarder %s du Codex %s pour plus d'informations."
1016
+
1017
+ #~ msgid "Browsing"
1018
+ #~ msgstr "Parcourir"
1019
+
1020
+ #~ msgid "Activate custom %s code."
1021
+ #~ msgstr "Activer le code personalisé %s."
1022
+
1023
+ #~ msgid "Learn more about %s"
1024
+ #~ msgstr "En savoir plus sur %s"
1025
+
1026
+ #~ msgid "Miscellaneous Settings"
1027
+ #~ msgstr "Paramètres divers"
1028
+
1029
+ #~ msgid ""
1030
+ #~ "It is prohibited to change %s settings on this site in the %s network "
1031
+ #~ "settings."
1032
+ #~ msgstr ""
1033
+ #~ "Il est interdit de modifier le paramètre %s sur ce site dans les "
1034
+ #~ "paramètres du réseau %s."
1035
+
1036
+ #~ msgid ""
1037
+ #~ "It is prohibited to view %s settings on this site in the %s network "
1038
+ #~ "settings."
1039
+ #~ msgstr ""
1040
+ #~ "Il est interdit de voir le paramètre %s sur ce site dans les paramètres "
1041
+ #~ "réseaux %s."
1042
+
1043
+ #~ msgid "Pro Options"
1044
+ #~ msgstr "Extensions Pro"
1045
+
1046
+ #~ msgid "Enable to display plugin Pro options."
1047
+ #~ msgstr "Activer pour voir les options PRO."
1048
+
1049
+ #~ msgid "Track Usage"
1050
+ #~ msgstr "Suivre l'utilisation"
1051
+
1052
+ #~ msgid ""
1053
+ #~ "Enable to allow tracking plugin usage anonymously in order to make it "
1054
+ #~ "better."
1055
+ #~ msgstr ""
1056
+ #~ "Activer pour autoriser le suivi de l'usage de l'extension de manière "
1057
+ #~ "anonyme afin de la rendre meilleur."
1058
+
1059
+ #~ msgid "Default Settings"
1060
+ #~ msgstr "Réglages par défaut"
1061
+
1062
+ #~ msgid "Restore Settings"
1063
+ #~ msgstr "Remettre les paramètres"
1064
+
1065
+ #~ msgid "This will restore plugin settings to defaults."
1066
+ #~ msgstr "Remettre les valeurs par défaut des paramètres de l'extension."
1067
+
1068
+ #~ msgid "Import / Export"
1069
+ #~ msgstr "Import / Export"
1070
+
1071
+ #~ msgid "License Key"
1072
+ #~ msgstr "Clé de licence"
1073
+
1074
+ #~ msgid "Congratulations! Pro license is activated successfully."
1075
+ #~ msgstr ""
1076
+ #~ "Félicitations! La version PRO de cette extension a été activée avec "
1077
+ #~ "succès."
1078
+
1079
+ #~ msgid "You will be automatically redirected to the %s in 7 seconds."
1080
+ #~ msgstr "Vous allez être redirigé automatiquement vers %s dans 7 secondes."
1081
+
1082
+ #~ msgid "Settings page"
1083
+ #~ msgstr "Page des paramètres"
1084
+
1085
+ #~ msgid ""
1086
+ #~ "Enter your license key to activate %s and get premium plugin features."
1087
+ #~ msgstr ""
1088
+ #~ "Saisir votre clé de licence pour activer %s et obtenir les "
1089
+ #~ "fonctionnalités premium."
1090
+
1091
+ #~ msgid ""
1092
+ #~ "Unfortunately, you have exceeded the number of available tries per day. "
1093
+ #~ "Please, upload the plugin manually."
1094
+ #~ msgstr ""
1095
+ #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1096
+ #~ "télécharger l'extension manuellement."
1097
+
1098
+ #~ msgid "or"
1099
+ #~ msgstr "ou"
1100
+
1101
+ #~ msgid "Start Your Free %s-Day Trial Now"
1102
+ #~ msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
1103
+
1104
+ #~ msgid "Check license key"
1105
+ #~ msgstr "Vérifier la clé de licence"
1106
+
1107
+ #~ msgid ""
1108
+ #~ "If necessary, you can check if the license key is correct or reenter it "
1109
+ #~ "in the field below."
1110
+ #~ msgstr ""
1111
+ #~ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou "
1112
+ #~ "la saisir de nouveau dans le champ ci-dessous."
1113
+
1114
+ #~ msgid "Manage License Settings"
1115
+ #~ msgstr "Paramètres de gestion des licences"
1116
+
1117
+ #~ msgid "Login to Client Area"
1118
+ #~ msgstr "Connexion à l'espace client"
1119
+
1120
+ #~ msgid ""
1121
+ #~ "Manage active licenses, download BWS products, and view your payment "
1122
+ #~ "history using BestWebSoft Client Area."
1123
+ #~ msgstr ""
1124
+ #~ "Gérer les licences, télécharger des produits BWS et voir l'historique de "
1125
+ #~ "vos règlements dans la zone client de BestWebSoft."
1126
 
1127
  #~ msgid "Wrong license key"
1128
  #~ msgstr "Clé de licence incorrecte"
1138
  #~ msgid "We are sorry for inconvenience."
1139
  #~ msgstr "Nous sommes désolés pour le désagrément."
1140
 
1141
+ #~ msgid "Wrong license key."
1142
+ #~ msgstr "Clé de licence incorrecte"
 
 
 
 
1143
 
1144
+ #~ msgid "This license key is bound to another site."
1145
+ #~ msgstr "La clé de licence correspond à un autre site."
1146
 
1147
  #~ msgid ""
1148
+ #~ "This license key is valid, but Your license has expired. If you want to "
1149
+ #~ "update our plugin in future, you should extend the license."
1150
+ #~ msgstr ""
1151
+ #~ "La clé de licence est valide mais votre durée de validité est passée. "
1152
+ #~ "Pour continuer à disposer du support rapide et des mises à jour de "
1153
+ #~ "l'extension vous devez la renouveller."
1154
+
1155
+ #~ msgid "Unfortunately, you have exceeded the number of available tries."
1156
  #~ msgstr ""
1157
  #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1158
  #~ "télécharger l'extension manuellement."
1159
 
1160
+ #~ msgid ""
1161
+ #~ "Unfortunately, the Pro Trial licence was already installed to this "
1162
+ #~ "domain. The Pro Trial license can be installed only once."
1163
+ #~ msgstr ""
1164
+ #~ "Malheureusement la licence PRO a déjà été installée sur ce domaine. La "
1165
+ #~ "licence PRO d'évaluation peut être installée une seule fois."
1166
+
1167
+ #~ msgid "The Pro Trial license key is valid."
1168
+ #~ msgstr "La clé de licence d'évaluation est valide."
1169
+
1170
+ #~ msgid "The license key is valid."
1171
+ #~ msgstr "La clé de licence est valide."
1172
+
1173
+ #~ msgid "Your license will expire on"
1174
+ #~ msgstr "Votre licence se termine le"
1175
+
1176
+ #~ msgid ""
1177
+ #~ "In order to continue using the plugin it is necessary to buy a %s license."
1178
+ #~ msgstr ""
1179
+ #~ "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
1180
+ #~ "d'acheter une licence %s."
1181
+
1182
  #~ msgid ""
1183
  #~ "Unfortunately, Your license has expired. To continue getting top-priority "
1184
+ #~ "support and plugin updates, you should extend it in your %s"
1185
  #~ msgstr ""
1186
  #~ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
1187
  #~ "rapide et des mises à jour de l'extension vous devez la renouveler dans "
1188
+ #~ "votre %s"
1189
 
1190
  #~ msgid ""
1191
  #~ "Unfortunately, the Pro licence was already installed to this domain. The "
1194
  #~ "Une licence a déjà été installée sur ce domaine. La licence d'évaluation "
1195
  #~ "ne peut-être installée qu'une seule fois."
1196
 
1197
+ #~ msgid ""
1198
+ #~ "Failed to download the zip archive. Please, upload the plugin manually"
1199
+ #~ msgstr ""
1200
+ #~ "Erreur de téléchargement de l'archive ZIP. Merci de télécharger "
1201
+ #~ "l'extension manuellement."
1202
 
1203
+ #~ msgid "Failed to open the zip archive. Please, upload the plugin manually"
1204
+ #~ msgstr ""
1205
+ #~ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
1206
+ #~ "manuellement."
1207
+
1208
+ #~ msgid ""
1209
+ #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1210
+ #~ "the plugin manually"
1211
+ #~ msgstr ""
1212
+ #~ "Votre serveur n'a pas le support du format des archives ZIP ou Phar. "
1213
+ #~ "Merci de télécharger l'extension manuellement."
1214
 
1215
+ #~ msgid "UploadDir is not writable. Please, upload the plugin manually"
1216
  #~ msgstr ""
1217
+ #~ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
1218
+ #~ "manuellement."
1219
 
1220
  #~ msgid ""
1221
  #~ "Something went wrong. Try again later or upload the plugin manually. We "
1224
  #~ "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
1225
  #~ "l'extension manuellement.Nous sommes désolés pour le désagrément."
1226
 
1227
+ #~ msgid "Please, enter Your license key"
1228
+ #~ msgstr "Merci de saisir votre clé de licence"
1229
+
1230
+ #~ msgid "Need Help?"
1231
+ #~ msgstr "Besoin d'aide ?"
1232
+
1233
+ #~ msgid "Read the Instruction"
1234
+ #~ msgstr "Lire les instructions"
1235
+
1236
+ #~ msgid "Visit Help Center"
1237
+ #~ msgstr "Visiter le site du support"
1238
+
1239
+ #~ msgid "Watch the Video"
1240
+ #~ msgstr "Voir la vidéo"
1241
+
1242
+ #~ msgid "Start Your Free Trial"
1243
+ #~ msgstr "Débuter votre licence d'évaluation gratuite"
1244
+
1245
+ #~ msgid "Advertisement"
1246
+ #~ msgstr "Publicité"
1247
+
1248
+ #~ msgid "Content & Media"
1249
+ #~ msgstr "Contenu & média"
1250
+
1251
+ #~ msgid "Management"
1252
+ #~ msgstr "Administration"
1253
+
1254
+ #~ msgid "Recommended"
1255
+ #~ msgstr "Recommandés"
1256
+
1257
+ #~ msgid "Security"
1258
+ #~ msgstr "Sécurité"
1259
+
1260
+ #~ msgid "Site Stats"
1261
+ #~ msgstr "Statistiques"
1262
+
1263
+ #~ msgid "Social"
1264
+ #~ msgstr "Social"
1265
+
1266
+ #~ msgid "Utilities"
1267
+ #~ msgstr "Utilitaires"
1268
+
1269
+ #~ msgid "Other"
1270
+ #~ msgstr "Autre"
1271
+
1272
+ #~ msgid ""
1273
+ #~ "This license key is bound to another site. Change it via personal Client "
1274
+ #~ "Area."
1275
+ #~ msgstr ""
1276
+ #~ "La clé de licence correspond à un autre site. Modifier là au travers de "
1277
+ #~ "votre espace client."
1278
+
1279
+ #~ msgid "Log in"
1280
+ #~ msgstr "Connexion"
1281
+
1282
+ #~ msgid ""
1283
+ #~ "Unfortunately, you have exceeded the number of available tries per day."
1284
+ #~ msgstr ""
1285
+ #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1286
+ #~ "télécharger l'extension manuellement."
1287
+
1288
+ #~ msgid "Congratulations! Pro Membership license is activated successfully."
1289
+ #~ msgstr ""
1290
+ #~ "Félicitations! La version PRO de cette extension a été activée avec "
1291
+ #~ "succès."
1292
+
1293
  #~ msgid "Please enter your license key."
1294
  #~ msgstr "Merci de saisir votre clé de licence."
1295
 
1314
  #~ msgid "No"
1315
  #~ msgstr "No"
1316
 
1317
+ #~ msgid "WordPress Environment"
1318
+ #~ msgstr "Environnent WordPress"
1319
+
1320
+ #~ msgid "Home URL"
1321
+ #~ msgstr "Home URL"
1322
+
1323
+ #~ msgid "Website URL"
1324
+ #~ msgstr "Site URL"
1325
+
1326
+ #~ msgid "WP Version"
1327
+ #~ msgstr "WP Version"
1328
+
1329
+ #~ msgid "WP Multisite"
1330
+ #~ msgstr "WP Multi-site"
1331
+
1332
+ #~ msgid "WP Memory Limit"
1333
+ #~ msgstr "WP Memory Limit"
1334
+
1335
+ #~ msgid "Active Theme"
1336
+ #~ msgstr "Active Theme"
1337
+
1338
+ #~ msgid "by %s"
1339
+ #~ msgstr "par %s"
1340
+
1341
+ #~ msgid "Server Environment"
1342
+ #~ msgstr "Environnent serveur"
1343
+
1344
  #~ msgid "Operating System"
1345
  #~ msgstr "Operating System"
1346
 
1347
  #~ msgid "Server"
1348
  #~ msgstr "Server"
1349
 
 
 
 
 
 
 
 
 
 
1350
  #~ msgid "PHP Version"
1351
  #~ msgstr "PHP Version"
1352
 
 
 
 
1353
  #~ msgid "PHP Allow URL fopen"
1354
  #~ msgstr "PHP Allow URL fopen"
1355
 
1356
  #~ msgid "PHP Memory Limit"
1357
  #~ msgstr "PHP Memory Limit"
1358
 
1359
+ #~ msgid "Memory Usage"
1360
+ #~ msgstr "Memory usage"
1361
+
1362
  #~ msgid "PHP Max Upload Size"
1363
  #~ msgstr "PHP Max Upload Size"
1364
 
1377
  #~ msgid "PHP XML support"
1378
  #~ msgstr "PHP XML support"
1379
 
1380
+ #~ msgid "Database"
1381
+ #~ msgstr "Base de données"
1382
 
1383
+ #~ msgid "WP DB version"
1384
+ #~ msgstr "WordPress DB Version"
1385
 
1386
+ #~ msgid "MySQL version"
1387
+ #~ msgstr "MySQL Version"
1388
 
1389
+ #~ msgid "SQL Mode"
1390
+ #~ msgstr "SQL Mode"
1391
 
1392
+ #~ msgid "Active Plugins"
1393
+ #~ msgstr "Extensions actives"
1394
 
1395
+ #~ msgid "Inactive Plugins"
1396
+ #~ msgstr "Extensions inactives"
1397
 
1398
  #~ msgid "Please enter a valid email address."
1399
  #~ msgstr "Merci de saisir une adresse e-mail valide."
1400
 
1401
+ #~ msgid "Email with system info is sent to"
1402
  #~ msgstr "Le courriel avec les informations système est envoyé à"
1403
 
1404
  #~ msgid "Plugins"
1413
  #~ msgid "Manage purchased licenses & subscriptions"
1414
  #~ msgstr "Gérer les licences et les adhésions"
1415
 
 
 
 
1416
  #~ msgid "Get Access to %s+ Premium Plugins"
1417
  #~ msgstr "Accéder à plus de %s extension premiums"
1418
 
1419
  #~ msgid "Subscribe to Pro Membership"
1420
  #~ msgstr "Souscrire une adhésion PRO"
1421
 
 
 
 
 
 
 
1422
  #~ msgid "Enter your license key"
1423
  #~ msgstr "Merci de saisir votre clé de licence"
1424
 
1452
  #~ msgid "Downloading install package from"
1453
  #~ msgstr "Télécharger le paquet d'installation depuis"
1454
 
 
 
 
 
 
 
1455
  #~ msgid "Unpacking the package"
1456
  #~ msgstr "Décompresser le paquet"
1457
 
1458
  #~ msgid "Installing the plugin"
1459
  #~ msgstr "Installer l'extension"
1460
 
1461
+ #~ msgid "The plugin %s is successfully installed."
1462
+ #~ msgstr "L'extension %s a été installée avec succès."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1463
 
1464
  #~ msgid "Activate Plugin"
1465
  #~ msgstr "Activer l'extension"
1524
  #~ msgid "Send to custom email &#187;"
1525
  #~ msgstr "Envoyer un e-mail spécifique &#187;"
1526
 
 
 
 
 
 
 
 
 
 
 
 
 
1527
  #~ msgid "requires"
1528
  #~ msgstr "obligatoire"
1529
 
1540
  #~ msgid "Plugins page"
1541
  #~ msgstr "Page des extensions"
1542
 
1543
+ #~ msgid "Like the plugin?"
1544
+ #~ msgstr "Vous aimez cette extension?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1545
 
1546
+ #~ msgid "Rate it"
1547
+ #~ msgstr "Noter la"
1548
 
1549
+ #~ msgid "Need help?"
1550
+ #~ msgstr "Besoin d'aide ?"
 
 
 
 
 
 
 
1551
 
1552
+ #~ msgid "Want to support the plugin?"
1553
+ #~ msgstr "Vous voulez aider cette extension?"
 
 
 
 
 
1554
 
1555
  #~ msgid "WARNING: Illegal use notification"
1556
  #~ msgstr "AVERTISSEMENT&nbsp;: Notification d'utilisation abusive"
1568
  #~ "l'extension sera rendue inactive."
1569
 
1570
  #~ msgid ""
1571
+ #~ "Notice: Your Pro Trial license has expired. To continue using the plugin, "
1572
  #~ "you should buy a Pro license"
1573
  #~ msgstr ""
1574
  #~ "Information&nbsp;: Votre licence d'évaluation est terminée. Pour "
1576
 
1577
  #~ msgid ""
1578
  #~ "Your license has expired. To continue getting top-priority support and "
1579
+ #~ "plugin updates, you should extend it."
1580
  #~ msgstr ""
1581
  #~ "Votre licence est terminée. Pour continuer à disposer du support rapide "
1582
  #~ "et des mises à jour de l'extension vous devez la renouveler."
1593
  #~ msgid "The Pro Trial license will expire on"
1594
  #~ msgstr "Votre licence se termine le"
1595
 
1596
+ #~ msgid ""
1597
+ #~ "or higher! We do not guarantee that our plugin will work correctly. "
1598
+ #~ "Please upgrade to WordPress latest version."
1599
+ #~ msgstr ""
1600
+ #~ "ou plus! Nous ne garantissons pas que notre extension fonctionne "
1601
+ #~ "correctement. Merci de mettre à jour votre version de WordPress."
1602
+
1603
+ #~ msgid "Thank you for installing"
1604
+ #~ msgstr "Merci d'avoir installé"
1605
+
1606
+ #~ msgid "Let's get started"
1607
+ #~ msgstr "C'est parti"
1608
 
1609
+ #~ msgid "Add New"
1610
+ #~ msgstr "Ajouter un nouveau"
1611
+
1612
+ #~ msgid "Thank you for installing plugins by BestWebSoft!"
1613
+ #~ msgstr "Merci d'avoir installé des extensions de BestWebSoft!"
1614
+
1615
+ #~ msgid "More Details"
1616
+ #~ msgstr "Plus de détails"
1617
+
1618
+ #~ msgid "Less Details"
1619
+ #~ msgstr "Moins de détails"
1620
 
1621
+ #~ msgid "Deprecated function(-s) is used on the site here:"
1622
+ #~ msgstr "Des fonctions obsolètes sont utilisées sur ce site ici&nbsp;:"
1623
+
1624
+ #~ msgid ""
1625
+ #~ "This function(-s) will be removed over time. Please update the product(-"
1626
+ #~ "s)."
1627
+ #~ msgstr ""
1628
+ #~ "Ces fonctions seront supprimées rapidement. Merci de mettre à jour "
1629
+ #~ "l'extension."
1630
+
1631
+ #~ msgid "It’s time to upgrade your"
1632
+ #~ msgstr "C'est le moment de mettre à jour votre "
1633
+
1634
+ #~ msgid "to"
1635
+ #~ msgstr "à"
1636
+
1637
+ #~ msgid "version!"
1638
+ #~ msgstr "version"
1639
+
1640
+ #~ msgid "Extend standard plugin functionality with new great options."
1641
+ #~ msgstr ""
1642
+ #~ "Étend les fonctionnalités de base de l'extension avec de nouvelles "
1643
+ #~ "options."
1644
+
1645
+ #~ msgid ""
1646
+ #~ "Your license key for %s expires on %s and you won't be granted TOP-"
1647
+ #~ "PRIORITY SUPPORT or UPDATES."
1648
+ #~ msgstr ""
1649
+ #~ "Votre clé de licence pour %s se termine le %s et vous n'aurez plus de "
1650
+ #~ "support prioritaire ni de mises à jour."
1651
 
1652
  #~ msgid "Thank you for choosing"
1653
  #~ msgstr "Merci d'avoir choisi"
1666
  #~ msgstr "Les paramètres de l'extension ont été modifiés."
1667
 
1668
  #~ msgid ""
1669
+ #~ "You can always look at premium options by checking the \"Pro Options\" in "
1670
+ #~ "the \"Misc\" tab."
1671
  #~ msgstr ""
1672
  #~ "Vous pouvez toujours consulter les options premium en cliquant sur \"Voir "
1673
+ #~ "les fonctionnalités PRO\" dans l'onglet \"Divers\""
1674
 
1675
  #~ msgid "Add BWS Shortcode"
1676
  #~ msgstr "Ajouter un code court de l'extension BWS"
1684
  #~ msgid "Add BestWebSoft plugins' shortcodes using this button."
1685
  #~ msgstr "Ajouter le code court de l'extension BWS avec ce bouton."
1686
 
1687
+ #~ msgid "Are you sure you want to restore default settings?"
 
 
 
 
 
 
1688
  #~ msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
1689
 
1690
  #~ msgid "Yes, restore all settings"
1705
  #~ msgid "Insert"
1706
  #~ msgstr "Insérer"
1707
 
 
 
 
1708
  #~ msgid "For more information:"
1709
  #~ msgstr "Pour plus d'informations:"
1710
 
1717
  #~ msgid "Submit a Request"
1718
  #~ msgstr "Envoyer une requête"
1719
 
1720
+ #~ msgid "System Status"
1721
+ #~ msgstr "Etat du système"
1722
+
1723
+ #~ msgid "Please, enter your license key"
1724
+ #~ msgstr "Merci de saisir votre clé de licence"
1725
+
1726
  #~ msgid ""
1727
+ #~ "If necessary, you can check if the license key is correct or reenter it "
1728
+ #~ "in the field below. You can find your license key on your personal page - "
1729
+ #~ "Client Area - on our website"
1730
  #~ msgstr ""
1731
+ #~ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou "
1732
+ #~ "la saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre "
1733
+ #~ "clé de licence sur votre page personnelle (zone client) sur notre site "
1734
+ #~ "web."
1735
+
1736
+ #~ msgid ""
1737
+ #~ "(your username is the email address specified during the purchase). If "
1738
+ #~ "necessary, please submit \"Lost your password?\" request."
1739
+ #~ msgstr ""
1740
+ #~ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors "
1741
+ #~ "de l'achat de l'extension). Si nécessaire, utilisez la fonction de "
1742
+ #~ "demande de mot de passe perdu."
1743
+
1744
+ #~ msgid "After that, you can activate it by entering your license key."
1745
+ #~ msgstr ""
1746
+ #~ " Après vous pouvez activer cette extension en donnant votre clé de "
1747
+ #~ "licence."
1748
+
1749
+ #~ msgid "License key can be found in the"
1750
+ #~ msgstr "La clé de licence peut être trouvée dans "
1751
+
1752
+ #~ msgid "(your username is the email address specified during the purchase)."
1753
+ #~ msgstr ""
1754
+ #~ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donnée lors "
1755
+ #~ "de l'achat de l'extension)."
1756
+
1757
+ #~ msgid ""
1758
+ #~ "Congratulations! The Pro license of the plugin is activated successfully."
1759
+ #~ msgstr ""
1760
+ #~ "Félicitations! La version PRO de cette extension a été activée avec "
1761
+ #~ "succès."
1762
+
1763
+ #~ msgid "Please, go to"
1764
+ #~ msgstr "Merci d’aller à"
1765
+
1766
+ #~ msgid "the setting page"
1767
+ #~ msgstr "Options supplémentaires"
1768
+
1769
+ #~ msgid "You will be redirected automatically in 5 seconds."
1770
+ #~ msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
1771
+
1772
+ #~ msgid "Check premium options on the plugin settings page!"
1773
+ #~ msgstr "Vérifier les options premium dans les paramètres de l'extension!"
1774
+
1775
+ #~ msgid "Restore all plugin settings to defaults"
1776
+ #~ msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
1777
+
1778
+ #~ msgid "Restore settings"
1779
+ #~ msgstr "Remettre les paramètres"
1780
 
1781
  #~ msgid "File %s edited successfully."
1782
  #~ msgstr "Le fichier %s a été modifié avec succès."
1787
  #~ msgid "Not enough permissions to create the file"
1788
  #~ msgstr "Pas assez de droits pour créer le fichier"
1789
 
1790
+ #~ msgid "Editing"
1791
+ #~ msgstr "Modifier"
 
1792
 
1793
  #~ msgid ""
1794
+ #~ "Congratulations! Pro version of the plugin is installed and activated "
1795
+ #~ "successfully."
1796
  #~ msgstr ""
1797
+ #~ "Félicitations! La version PRO de cette extension a été téléchargée et "
1798
+ #~ "activée avec succès."
1799
 
1800
+ #~ msgid "Show Pro features"
1801
+ #~ msgstr "Voir les fonctionnalités PRO"
1802
 
1803
+ #~ msgid "Enter your license key to install and activate"
1804
+ #~ msgstr "Saisir votre clé de licence pour installer et activer"
1805
 
1806
+ #~ msgid "version of the plugin."
1807
+ #~ msgstr "version de l'extension."
1808
 
1809
+ #~ msgid "Unlock premium options by upgrading to Pro version"
1810
+ #~ msgstr "Débloquer les options premium en migrant vers la version PRO."
1811
+
1812
+ #~ msgid "PHP Safe Mode"
1813
+ #~ msgstr "PHP Safe Mode"
1814
+
1815
+ #~ msgid "WordPress Version"
1816
+ #~ msgstr "WordPress Version"
1817
+
1818
+ #~ msgid "Successfully installed the plugin"
1819
+ #~ msgstr "Extension installée avec succès"
1820
+
1821
+ #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1822
  #~ msgstr ""
1823
+ #~ "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans "
1824
+ #~ "Wordpress"
1825
+
1826
+ #~ msgid "If there is something wrong about it, please contact us"
1827
+ #~ msgstr ""
1828
+ #~ "Si quelque chose ne fonctionne pas correctement, merci de nous contacter"
1829
+
1830
+ #~ msgid "Donations play an important role in supporting great projects"
1831
+ #~ msgstr "Les dons jouent un rôle important dans l'aide aux projets"
1832
+
1833
+ #~ msgid "This license key is bind to another site"
1834
+ #~ msgstr "La clé de licence correspond à un autre site."
1835
+
1836
+ #~ msgid "You license for"
1837
+ #~ msgstr "Votre licence pour"
1838
 
1839
  #~ msgid "Name:"
1840
  #~ msgstr "Nom&nbsp;:"
1903
  #~ msgid "Don’t have valid license key yet?"
1904
  #~ msgstr "Vous n'avez pas encore de licence valide ?"
1905
 
 
 
 
1906
  #~ msgid "Go"
1907
  #~ msgstr "Passez"
1908
 
2084
  #~ msgid "Switch to new interface"
2085
  #~ msgstr "Basculer vers la nouvelle interface"
2086
 
 
 
 
2087
  #~ msgid "Read more"
2088
  #~ msgstr "Lire la suite"
2089
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
3
  Donate link: https://bestwebsoft.com/donate/
4
  Tags: contact, contact form, feedback form, contact us form, contact button, email form, contac, form, web-page feedback, cf, cf plugin, contact form plugin
5
  Requires at least: 3.8
6
- Tested up to: 4.7.2
7
- Stable tag: 4.0.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -18,7 +18,7 @@ Allow your customers to reach you in seconds!
18
 
19
  [View Demo](https://bestwebsoft.com/demo-for-contact-form-pro/)
20
 
21
- http://www.youtube.com/watch?v=F_piQa0hmkU
22
 
23
  = Free Features =
24
 
@@ -26,10 +26,18 @@ http://www.youtube.com/watch?v=F_piQa0hmkU
26
  * Data validation before the submission
27
  * Send a copy of the submitted message to the email
28
  * Receive submissions to the default admin or custom email addresses
29
- * Add additional data about the sender to the email notification
 
 
 
 
30
  * Responsive Layout
31
  * Editable field labels
32
  * Required fields
 
 
 
 
33
  * File attachments
34
  * Enable additional pre-build fields
35
  * Enable two column layout
@@ -54,7 +62,11 @@ http://www.youtube.com/watch?v=F_piQa0hmkU
54
  > * Automatically populate name and email input fields for logged-in users
55
  > * Add "Reply to" email address in the message head
56
  > * Set default text for subject and message input fields
57
- > * Hide and disable fields
 
 
 
 
58
  > * Enable auto response option with editable message
59
  > * Customizable form
60
  > * Styles (no programming knowledge required)
@@ -102,7 +114,7 @@ Visit our Help Center if you have any questions, our friendly Support Team is ha
102
  * Ukrainian (uk)
103
  * Vietnamese (vi) (thanks to [Dich Anh Viet](mailto:bizover@gmail.com), www.bizover.net)
104
 
105
- Some of these translations are not complete. We are constantly adding new features which should be translated. If you would like to create your own language pack or update the existing one, you can send [the text of PO and MO files](http://codex.wordpress.org/Translating_WordPress) to [BestWebSoft](https://support.bestwebsoft.com/hc/en-us/requests/new) and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO [files Poedit](http://www.poedit.net/download.php).
106
 
107
  = Recommended Plugins =
108
 
@@ -116,12 +128,6 @@ The author of the Contact Form also recommends the following plugins:
116
  * [Contact Form to DB](https://bestwebsoft.com/products/wordpress/plugins/contact-form-to-db/?k=d7d962591b5be0ce6c27af778b1b36ee) – Save and manage contact form messages. Never lose important data.
117
  * [Updater](https://bestwebsoft.com/products/wordpress/plugins/updater/?k=982fae837f4c6e3b152183537448dbca) – Automatically check and update WordPress website core with all installed plugins and themes to the latest versions.
118
 
119
- = Donate =
120
-
121
- Donations play an important role in supporting open-source projects. We greatly appreciate any donation you can make to help us continue further development of free products.
122
-
123
- [Donate Now](https://bestwebsoft.com/donate/)
124
-
125
  == Installation ==
126
 
127
  1. Upload the `Contact Form` folder to the `/wp-content/plugins/` directory.
@@ -129,9 +135,9 @@ Donations play an important role in supporting open-source projects. We greatly
129
  3. You can adjust the necessary settings using your WordPress admin panel in "BWS Panel" > "Contact Form".
130
  4. Create a page or a post and insert the shortcode [bestwebsoft_contact_form] into the text.
131
 
132
- [View a PDF version of Step-by-step Instruction on Contact Form Installation](https://docs.google.com/document/d/1obcWMPDPIIhUxcclYDwKSwNoFSHvGHyg_VKibjpQWTA/).
133
 
134
- http://www.youtube.com/watch?v=JwG2c4PcO8o
135
 
136
  == Frequently Asked Questions ==
137
 
@@ -200,6 +206,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
200
 
201
  == Changelog ==
202
 
 
 
 
 
203
  = V4.0.5 - 03.03.2017 =
204
  * Bugfix : The bug with selecting language via BWS Shortcode button was fixed.
205
  * Bugfix : The bug with enabling/disabling Captcha on the plugin additional settings page was fixed.
@@ -673,6 +683,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
673
 
674
  == Upgrade Notice ==
675
 
 
 
 
676
  = V4.0.5 =
677
  * Bugs fixed.
678
  * Appearance improved.
3
  Donate link: https://bestwebsoft.com/donate/
4
  Tags: contact, contact form, feedback form, contact us form, contact button, email form, contac, form, web-page feedback, cf, cf plugin, contact form plugin
5
  Requires at least: 3.8
6
+ Tested up to: 4.7.3
7
+ Stable tag: 4.0.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
18
 
19
  [View Demo](https://bestwebsoft.com/demo-for-contact-form-pro/)
20
 
21
+ https://www.youtube.com/watch?v=F_piQa0hmkU
22
 
23
  = Free Features =
24
 
26
  * Data validation before the submission
27
  * Send a copy of the submitted message to the email
28
  * Receive submissions to the default admin or custom email addresses
29
+ * Add additional data about the sender to the email notification:
30
+ * Sent from (IP address)
31
+ * Date/Time
32
+ * Sent from (referer)
33
+ * Using (user agent)
34
  * Responsive Layout
35
  * Editable field labels
36
  * Required fields
37
+ * Select used/required for the following fields:
38
+ * Name
39
+ * Address
40
+ * Phone number
41
  * File attachments
42
  * Enable additional pre-build fields
43
  * Enable two column layout
62
  > * Automatically populate name and email input fields for logged-in users
63
  > * Add "Reply to" email address in the message head
64
  > * Set default text for subject and message input fields
65
+ > * Show, hide or disable fields:
66
+ > * Name
67
+ > * Email Address
68
+ > * Subject
69
+ > * Message
70
  > * Enable auto response option with editable message
71
  > * Customizable form
72
  > * Styles (no programming knowledge required)
114
  * Ukrainian (uk)
115
  * Vietnamese (vi) (thanks to [Dich Anh Viet](mailto:bizover@gmail.com), www.bizover.net)
116
 
117
+ Some of these translations are not complete. We are constantly adding new features which should be translated. If you would like to create your own language pack or update the existing one, you can send [the text of PO and MO files](https://codex.wordpress.org/Translating_WordPress) to [BestWebSoft](https://support.bestwebsoft.com/hc/en-us/requests/new) and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO [files Poedit](https://www.poedit.net/download.php).
118
 
119
  = Recommended Plugins =
120
 
128
  * [Contact Form to DB](https://bestwebsoft.com/products/wordpress/plugins/contact-form-to-db/?k=d7d962591b5be0ce6c27af778b1b36ee) – Save and manage contact form messages. Never lose important data.
129
  * [Updater](https://bestwebsoft.com/products/wordpress/plugins/updater/?k=982fae837f4c6e3b152183537448dbca) – Automatically check and update WordPress website core with all installed plugins and themes to the latest versions.
130
 
 
 
 
 
 
 
131
  == Installation ==
132
 
133
  1. Upload the `Contact Form` folder to the `/wp-content/plugins/` directory.
135
  3. You can adjust the necessary settings using your WordPress admin panel in "BWS Panel" > "Contact Form".
136
  4. Create a page or a post and insert the shortcode [bestwebsoft_contact_form] into the text.
137
 
138
+ [View a PDF version of Step-by-step Instruction on Contact Form Installation](https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/).
139
 
140
+ https://www.youtube.com/watch?v=JwG2c4PcO8o
141
 
142
  == Frequently Asked Questions ==
143
 
206
 
207
  == Changelog ==
208
 
209
+ = V4.0.6 - 14.04.2017 =
210
+ * Bugfix : Multiple Cross-Site Scripting (XSS) vulnerability was fixed.
211
+ * Update : The French language file is updated.
212
+
213
  = V4.0.5 - 03.03.2017 =
214
  * Bugfix : The bug with selecting language via BWS Shortcode button was fixed.
215
  * Bugfix : The bug with enabling/disabling Captcha on the plugin additional settings page was fixed.
683
 
684
  == Upgrade Notice ==
685
 
686
+ = V4.0.6 =
687
+ * Bugs fixed.
688
+
689
  = V4.0.5 =
690
  * Bugs fixed.
691
  * Appearance improved.