Google Sitemap by BestWebSoft - Version 3.2.5

Version Description

  • 26.11.2021 =
  • Bugfix : The issue with installing new plugins has been fixed.
  • Update: Video User Guide has been added.
  • Update : We updated all functionality for wordpress 5.8.2.
  • Update : BWS Panel section was updated.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Google Sitemap by BestWebSoft
Version 3.2.5
Comparing to
See all releases

Code changes from version 3.2.4 to 3.2.5

bws_menu/bws_functions.php CHANGED
@@ -481,6 +481,53 @@ if ( ! function_exists( 'bws_plugin_suggest_feature_banner' ) ) {
481
  <?php }
482
  }
483
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
484
  if ( ! function_exists( 'bws_show_settings_notice' ) ) {
485
  function bws_show_settings_notice() { ?>
486
  <div id="bws_save_settings_notice" class="updated fade below-h2" style="display:none;">
@@ -516,6 +563,7 @@ if ( ! function_exists( 'bws_hide_premium_options_check' ) ) {
516
 
517
  if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
518
  function bws_plugins_admin_init() {
 
519
  if ( isset( $_GET['bws_activate_plugin'] ) && check_admin_referer( 'bws_activate_plugin' . $_GET['bws_activate_plugin'] ) ) {
520
 
521
  $plugin = isset( $_GET['bws_activate_plugin'] ) ? sanitize_text_field( $_GET['bws_activate_plugin'] ) : '';
@@ -542,9 +590,8 @@ if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
542
  /**
543
  * @deprecated 1.9.8 (15.12.2016)
544
  */
545
- $is_main_page = in_array( $_GET['page'], array( 'bws_panel', 'bws_themes', 'bws_system_status' ) );
546
- $page = wp_unslash( $_GET['page'] );
547
- $tab = isset( $_GET['tab'] ) ? wp_unslash( $_GET['tab'] ) : '';
548
 
549
  if ( $is_main_page )
550
  $current_page = 'admin.php?page=' . $page;
@@ -556,7 +603,7 @@ if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
556
  exit();
557
  }
558
 
559
- if ( isset( $_GET['page'] ) && ( $_GET['page'] == 'bws_panel' || strpos( $_GET['page'], '-bws-panel' ) ) ) {
560
  if ( ! session_id() )
561
  @session_start();
562
  }
@@ -572,12 +619,16 @@ if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
572
  $bws_plugin_banner_go_pro, $bws_plugin_banner_timeout, $bstwbsftwppdtplgns_banner_array,
573
  $bws_shortcode_list;
574
 
 
 
575
  $jquery_ui_version = isset( $wp_scripts->registered['jquery-ui-core']->ver ) ? $wp_scripts->registered['jquery-ui-core']->ver : '1.12.1';
576
- wp_enqueue_style( 'jquery-ui-style', bws_menu_url( 'css/jquery-ui-styles/' . $jquery_ui_version . '/jquery-ui.css' ) );
 
 
577
  wp_enqueue_style( 'bws-admin-css', bws_menu_url( 'css/general_style.css' ) );
578
  wp_enqueue_script( 'bws-admin-scripts', bws_menu_url( 'js/general_script.js' ), array( 'jquery', 'jquery-ui-tooltip' ) );
579
 
580
- if ( isset( $_GET['page'] ) && ( in_array( $_GET['page'], array( 'bws_panel', 'bws_themes', 'bws_system_status' ) ) || strpos( $_GET['page'], '-bws-panel' ) ) ) {
581
  wp_enqueue_style( 'bws_menu_style', bws_menu_url( 'css/style.css' ) );
582
  wp_enqueue_script( 'bws_menu_script', bws_menu_url( 'js/bws_menu.js' ) );
583
  wp_enqueue_script( 'theme-install' );
@@ -703,7 +754,9 @@ if ( ! function_exists( 'bws_enqueue_settings_scripts' ) ) {
703
 
704
  if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
705
  function bws_plugins_admin_head() {
706
- if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_panel" ) { ?>
 
 
707
  <noscript>
708
  <style type="text/css">
709
  .bws_product_button {
@@ -800,7 +853,7 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
800
  if ( ! in_array( $tooltip_args['position']['edge'], array( 'left', 'right', 'top', 'bottom' ) ) ) {
801
  $tooltip_args['position']['edge'] = 'top';
802
  }
803
- if ( ! in_array( $tooltip_args['position']['align'], array( 'top', 'bottom', 'left', 'right', 'center', ) ) ) {
804
  $tooltip_args['position']['align'] = 'center';
805
  }
806
  }
@@ -958,7 +1011,7 @@ if ( ! function_exists( 'bws_help_tab' ) ) {
958
 
959
  $screen->set_help_sidebar(
960
  '<p><strong>' . __( 'For more information:', 'bestwebsoft' ) . '</strong></p>' .
961
- '<p><a href="https://drive.google.com/folderview?id=0B5l8lO-CaKt9VGh0a09vUjNFNjA&usp=sharing#list" target="_blank">' . __( 'Documentation', 'bestwebsoft' ) . '</a></p>' .
962
  '<p><a href="https://www.youtube.com/user/bestwebsoft/playlists?flow=grid&sort=da&view=1" target="_blank">' . __( 'Video Instructions', 'bestwebsoft' ) . '</a></p>' .
963
  '<p><a href="https://support.bestwebsoft.com/hc/en-us/requests/new" target="_blank">' . __( 'Submit a Request', 'bestwebsoft' ) . '</a></p>'
964
  );
481
  <?php }
482
  }
483
 
484
+ if ( ! function_exists( 'bws_affiliate_postbox' ) ) {
485
+ function bws_affiliate_postbox() {
486
+
487
+ $dismissed = get_user_meta( get_current_user_id(), '_bws_affiliate_postbox_dismissed', true );
488
+
489
+ if ( ! empty( $dismissed ) && strtotime( '-3 month' ) < $dismissed ) {
490
+ return;
491
+ }
492
+
493
+ if ( isset( $_POST['bws_hide_affiliate_banner' ] ) && check_admin_referer( 'bws_affiliate_postbox', 'bws_settings_nonce_name' ) ) {
494
+ update_user_meta( get_current_user_id(), '_bws_affiliate_postbox_dismissed', strtotime( 'now' ) );
495
+ return;
496
+ }
497
+
498
+ $bws_link = esc_url( 'https://bestwebsoft.com/affiliate/?utm_source=plugin&utm_medium=settings&utm_campaign=affiliate_program' ); ?>
499
+ <div id="bws-affiliate-postbox" class="postbox">
500
+ <form action="" method="post">
501
+ <button class="notice-dismiss bws_hide_settings_notice" title="<?php esc_html_e( 'Close notice', 'bestwebsoft' ); ?>"></button>
502
+ <input type="hidden" name="bws_hide_affiliate_banner" value="hide" />
503
+ <?php wp_nonce_field( 'bws_affiliate_postbox', 'bws_settings_nonce_name' ); ?>
504
+ </form>
505
+ <p>BESTWEBSOFT</p>
506
+ <h3><?php esc_html_e( 'Affiliate Program', 'bestwebsoft' ); ?></h3>
507
+ <div class="bws-affiliate-get"><?php printf( esc_html__( 'Get %s', 'bestwebsoft' ), '20%' ); ?></div>
508
+ <div><?php esc_html_e( 'from each BestWebSoft plugin and theme sale you refer', 'bestwebsoft' ); ?></div>
509
+ <div class="bws-row">
510
+ <div class="bws-cell">
511
+ <img src="<?php echo bws_menu_url( "images/join-icon.svg" ); ?>" alt="" />
512
+ <div><?php esc_html_e( 'Join affiliate program', 'bestwebsoft' ); ?></div>
513
+ </div>
514
+ <div class="bws-cell">
515
+ <img src="<?php echo bws_menu_url( "images/promote-icon.svg" ); ?>" alt="" />
516
+ <div><?php esc_html_e( 'Promote and sell products', 'bestwebsoft' ); ?></div>
517
+ </div>
518
+ <div class="bws-cell">
519
+ <img src="<?php echo bws_menu_url( "images/earn-icon.svg" ); ?>" alt="" />
520
+ <div><?php esc_html_e( 'Get commission!', 'bestwebsoft' ); ?></div>
521
+ </div>
522
+ </div>
523
+ <div class="clear"></div>
524
+ <p>
525
+ <a class="button" href="<?php echo $bws_link; ?>" target="_blank"><?php esc_html_e( 'Start Now', 'bestwebsoft' ); ?></a>
526
+ </p>
527
+ </div>
528
+ <?php }
529
+ }
530
+
531
  if ( ! function_exists( 'bws_show_settings_notice' ) ) {
532
  function bws_show_settings_notice() { ?>
533
  <div id="bws_save_settings_notice" class="updated fade below-h2" style="display:none;">
563
 
564
  if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
565
  function bws_plugins_admin_init() {
566
+ $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : '';
567
  if ( isset( $_GET['bws_activate_plugin'] ) && check_admin_referer( 'bws_activate_plugin' . $_GET['bws_activate_plugin'] ) ) {
568
 
569
  $plugin = isset( $_GET['bws_activate_plugin'] ) ? sanitize_text_field( $_GET['bws_activate_plugin'] ) : '';
590
  /**
591
  * @deprecated 1.9.8 (15.12.2016)
592
  */
593
+ $is_main_page = in_array( $page, array( 'bws_panel', 'bws_themes', 'bws_system_status' ) );
594
+ $tab = isset( $_GET['tab'] ) ? sanitize_text_field( $_GET['tab'] ) : '';
 
595
 
596
  if ( $is_main_page )
597
  $current_page = 'admin.php?page=' . $page;
603
  exit();
604
  }
605
 
606
+ if ( $page == 'bws_panel' || strpos( $page, '-bws-panel' ) ) {
607
  if ( ! session_id() )
608
  @session_start();
609
  }
619
  $bws_plugin_banner_go_pro, $bws_plugin_banner_timeout, $bstwbsftwppdtplgns_banner_array,
620
  $bws_shortcode_list;
621
 
622
+ $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : '';
623
+
624
  $jquery_ui_version = isset( $wp_scripts->registered['jquery-ui-core']->ver ) ? $wp_scripts->registered['jquery-ui-core']->ver : '1.12.1';
625
+ if ( 'et_divi_options' != $page ) {
626
+ wp_enqueue_style( 'jquery-ui-style', bws_menu_url( 'css/jquery-ui-styles/' . $jquery_ui_version . '/jquery-ui.css' ) );
627
+ }
628
  wp_enqueue_style( 'bws-admin-css', bws_menu_url( 'css/general_style.css' ) );
629
  wp_enqueue_script( 'bws-admin-scripts', bws_menu_url( 'js/general_script.js' ), array( 'jquery', 'jquery-ui-tooltip' ) );
630
 
631
+ if ( in_array( $page, array( 'bws_panel', 'bws_themes', 'bws_system_status' ) ) || strpos( $page, '-bws-panel' ) ) {
632
  wp_enqueue_style( 'bws_menu_style', bws_menu_url( 'css/style.css' ) );
633
  wp_enqueue_script( 'bws_menu_script', bws_menu_url( 'js/bws_menu.js' ) );
634
  wp_enqueue_script( 'theme-install' );
754
 
755
  if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
756
  function bws_plugins_admin_head() {
757
+ $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : '';
758
+
759
+ if ( $page == "bws_panel" ) { ?>
760
  <noscript>
761
  <style type="text/css">
762
  .bws_product_button {
853
  if ( ! in_array( $tooltip_args['position']['edge'], array( 'left', 'right', 'top', 'bottom' ) ) ) {
854
  $tooltip_args['position']['edge'] = 'top';
855
  }
856
+ if ( ! in_array( $tooltip_args['position']['align'], array( 'top', 'bottom', 'left', 'right', 'center' ) ) ) {
857
  $tooltip_args['position']['align'] = 'center';
858
  }
859
  }
1011
 
1012
  $screen->set_help_sidebar(
1013
  '<p><strong>' . __( 'For more information:', 'bestwebsoft' ) . '</strong></p>' .
1014
+ '<p><a href="https://bestwebsoft.com/documentation/" target="_blank">' . __( 'Documentation', 'bestwebsoft' ) . '</a></p>' .
1015
  '<p><a href="https://www.youtube.com/user/bestwebsoft/playlists?flow=grid&sort=da&view=1" target="_blank">' . __( 'Video Instructions', 'bestwebsoft' ) . '</a></p>' .
1016
  '<p><a href="https://support.bestwebsoft.com/hc/en-us/requests/new" target="_blank">' . __( 'Submit a Request', 'bestwebsoft' ) . '</a></p>'
1017
  );
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 2.3.7
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
@@ -16,8 +16,8 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
16
  * @deprecated 1.9.8 (15.12.2016)
17
  */
18
  $is_main_page = in_array( $_GET['page'], array( 'bws_panel', 'bws_themes', 'bws_system_status' ) );
19
- $page = wp_unslash( $_GET['page'] );
20
- $tab = isset( $_GET['tab'] ) ? wp_unslash( $_GET['tab'] ) : '';
21
 
22
  if ( $is_main_page )
23
  $current_page = 'admin.php?page=' . $page;
@@ -393,12 +393,12 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
393
  <p>
394
  <strong><?php _e( 'Need help installing the plugin?', 'bestwebsoft' ); ?></strong>
395
  <br>
396
- <a target="_blank" href="https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/"><?php _e( 'How to install WordPress plugin from your admin Dashboard (ZIP archive)', 'bestwebsoft' ); ?></a>
397
  </p>
398
  <p>
399
  <strong><?php _e( 'Get Started', 'bestwebsoft' ); ?></strong>
400
  <br>
401
- <a target="_blank" href="https://drive.google.com/drive/u/0/folders/0B5l8lO-CaKt9VGh0a09vUjNFNjA"><?php _e( 'Documentation', 'bestwebsoft' ); ?></a>
402
  <br>
403
  <a target="_blank" href="https://www.youtube.com/user/bestwebsoft"><?php _e( 'Video Instructions', 'bestwebsoft' ); ?></a>
404
  <br>
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 2.4.1
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
16
  * @deprecated 1.9.8 (15.12.2016)
17
  */
18
  $is_main_page = in_array( $_GET['page'], array( 'bws_panel', 'bws_themes', 'bws_system_status' ) );
19
+ $page = sanitize_text_field( $_GET['page'] );
20
+ $tab = isset( $_GET['tab'] ) ? sanitize_text_field( $_GET['tab'] ) : '';
21
 
22
  if ( $is_main_page )
23
  $current_page = 'admin.php?page=' . $page;
393
  <p>
394
  <strong><?php _e( 'Need help installing the plugin?', 'bestwebsoft' ); ?></strong>
395
  <br>
396
+ <a target="_blank" href="https://bestwebsoft.com/documentation/how-to-install-a-wordpress-product/how-to-install-a-wordpress-plugin/"><?php _e( 'How to install WordPress plugin from your admin Dashboard (ZIP archive)', 'bestwebsoft' ); ?></a>
397
  </p>
398
  <p>
399
  <strong><?php _e( 'Get Started', 'bestwebsoft' ); ?></strong>
400
  <br>
401
+ <a target="_blank" href="https://bestwebsoft.com/documentation/"><?php _e( 'Documentation', 'bestwebsoft' ); ?></a>
402
  <br>
403
  <a target="_blank" href="https://www.youtube.com/user/bestwebsoft"><?php _e( 'Video Instructions', 'bestwebsoft' ); ?></a>
404
  <br>
bws_menu/class-bws-settings.php CHANGED
@@ -230,7 +230,10 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
230
  <?php /**
231
  * action - Display custom metabox
232
  */
233
- do_action( __CLASS__ . '_display_metabox' ); ?>
 
 
 
234
  </div>
235
  </div>
236
  <div id="postbox-container-2" class="postbox-container">
@@ -527,7 +530,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
527
 
528
  if ( isset( $_POST["bws_newcontent_{$extension}"] ) &&
529
  $this->custom_code_args["{$extension}_writeable"] ) {
530
- $newcontent = trim( wp_unslash( $_POST["bws_newcontent_{$extension}"] ) );
531
  if ( 'css' == $extension )
532
  $newcontent = wp_kses( $newcontent, array( '\'', '\"' ) );
533
 
@@ -767,13 +770,13 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
767
  <p>
768
  <strong><?php _e( 'Need help installing the plugin?', 'bestwebsoft' ); ?></strong>
769
  <br>
770
- <a target="_blank" href="https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/"><?php _e( 'How to install WordPress plugin from your admin Dashboard (ZIP archive)', 'bestwebsoft' ); ?></a>
771
  </p>
772
  <br>
773
  <p>
774
  <strong><?php _e( 'Get Started', 'bestwebsoft' ); ?></strong>
775
  <br>
776
- <a target="_blank" href="https://drive.google.com/drive/u/0/folders/0B5l8lO-CaKt9VGh0a09vUjNFNjA"><?php _e( 'Documentation', 'bestwebsoft' ); ?></a>
777
  <br>
778
  <a target="_blank" href="https://www.youtube.com/user/bestwebsoft"><?php _e( 'Video Instructions', 'bestwebsoft' ); ?></a>
779
  <br>
230
  <?php /**
231
  * action - Display custom metabox
232
  */
233
+ do_action( __CLASS__ . '_display_metabox' );
234
+
235
+ if ( function_exists( 'bws_affiliate_postbox' ) )
236
+ bws_affiliate_postbox(); ?>
237
  </div>
238
  </div>
239
  <div id="postbox-container-2" class="postbox-container">
530
 
531
  if ( isset( $_POST["bws_newcontent_{$extension}"] ) &&
532
  $this->custom_code_args["{$extension}_writeable"] ) {
533
+ $newcontent = trim( sanitize_text_field( $_POST["bws_newcontent_{$extension}"] ) );
534
  if ( 'css' == $extension )
535
  $newcontent = wp_kses( $newcontent, array( '\'', '\"' ) );
536
 
770
  <p>
771
  <strong><?php _e( 'Need help installing the plugin?', 'bestwebsoft' ); ?></strong>
772
  <br>
773
+ <a target="_blank" href="https://bestwebsoft.com/documentation/how-to-install-a-wordpress-product/how-to-install-a-wordpress-plugin/"><?php _e( 'How to install WordPress plugin from your admin Dashboard (ZIP archive)', 'bestwebsoft' ); ?></a>
774
  </p>
775
  <br>
776
  <p>
777
  <strong><?php _e( 'Get Started', 'bestwebsoft' ); ?></strong>
778
  <br>
779
+ <a target="_blank" href="https://bestwebsoft.com/documentation/"><?php _e( 'Documentation', 'bestwebsoft' ); ?></a>
780
  <br>
781
  <a target="_blank" href="https://www.youtube.com/user/bestwebsoft"><?php _e( 'Video Instructions', 'bestwebsoft' ); ?></a>
782
  <br>
bws_menu/css/general_style.css CHANGED
@@ -425,6 +425,56 @@ div.bws_banner_on_plugin_page .icon {
425
  padding: 15px 20px 21px;
426
  }
427
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
428
  /* display code */
429
  span.bws_code {
430
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07);
@@ -837,4 +887,4 @@ span.bws_code {
837
  padding-left: 0;
838
  padding-right: 0;
839
  }
840
- }
425
  padding: 15px 20px 21px;
426
  }
427
  }
428
+ /*
429
+ * affiliate postbox
430
+ */
431
+ #bws-affiliate-postbox {
432
+ background: url("../images/affiliate-background.png") no-repeat center #1a3e59;
433
+ overflow: hidden;
434
+ position: relative;
435
+ padding: 12px;
436
+ color: #ffffff;
437
+ text-align: center;
438
+ }
439
+ #bws-affiliate-postbox .notice-dismiss:active:before,
440
+ #bws-affiliate-postbox .notice-dismiss:focus:before,
441
+ #bws-affiliate-postbox .notice-dismiss:hover:before {
442
+ color: #fff;
443
+ }
444
+ #bws-affiliate-postbox h3 {
445
+ color: #ffffff;
446
+ font-size: 1.3em;
447
+ }
448
+ .bws-affiliate-get {
449
+ color: #f67f48;
450
+ font-size: 1.3em;
451
+ font-weight: bold;
452
+ margin: 10px 0 5px;
453
+ }
454
+ #bws-affiliate-postbox img {
455
+ max-width: 65px;
456
+ margin-bottom: 5px;
457
+ }
458
+ .bws-row {
459
+ margin-top: 25px;
460
+ }
461
+ .bws-cell {
462
+ float: left;
463
+ width: 33.33%;
464
+ }
465
+ .bws-cell div {
466
+ margin: 5px;
467
+ }
468
+ #bws-affiliate-postbox .button {
469
+ background: #dd6930;
470
+ border-color: #dd6930;
471
+ color: #fff;
472
+ margin-top: 5px;
473
+ font-weight: bold;
474
+ }
475
+ #bws-affiliate-postbox .button:hover {
476
+ color: rgba(255, 255, 255, 0.8);
477
+ }
478
  /* display code */
479
  span.bws_code {
480
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.07);
887
  padding-left: 0;
888
  padding-right: 0;
889
  }
890
+ }
bws_menu/css/style.css CHANGED
@@ -152,7 +152,7 @@ body[class*="-bws-panel"] .update-nag {
152
  text-align: left;
153
  line-height: 1;
154
  }
155
- .bws-membership .bws-button {
156
  background: #dd6930;
157
  color: #fff;
158
  text-align: center;
@@ -484,4 +484,4 @@ a.bws_donate {
484
  max-width: 160px;
485
  padding-right: 10px;
486
  }
487
- }
152
  text-align: left;
153
  line-height: 1;
154
  }
155
+ .bws-button {
156
  background: #dd6930;
157
  color: #fff;
158
  text-align: center;
484
  max-width: 160px;
485
  padding-right: 10px;
486
  }
487
+ }
bws_menu/deactivation-form.php CHANGED
@@ -338,7 +338,7 @@ if ( ! function_exists( 'bws_add_deactivation_feedback_dialog_box' ) ) {
338
  /* add script in FOOTER */
339
  wp_register_script( 'bws-deactivation-feedback-dialog-boxes', '', array( 'jquery' ), false, true );
340
  wp_enqueue_script( 'bws-deactivation-feedback-dialog-boxes' );
341
- wp_add_inline_script( 'bws-deactivation-feedback-dialog-boxes', sprintf( $script ) );
342
  }
343
  }
344
 
338
  /* add script in FOOTER */
339
  wp_register_script( 'bws-deactivation-feedback-dialog-boxes', '', array( 'jquery' ), false, true );
340
  wp_enqueue_script( 'bws-deactivation-feedback-dialog-boxes' );
341
+ wp_add_inline_script( 'bws-deactivation-feedback-dialog-boxes', $script );
342
  }
343
  }
344
 
bws_menu/images/affiliate-background.png ADDED
Binary file
bws_menu/images/earn-icon.svg ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg width="202" height="202" viewBox="0 0 202 202" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M202 101C202 156.663 156.915 202 101 202C45.0848 202 0 156.663 0 101C0 45.0848 45.0848 0 101 0C156.663 0 202 45.0848 202 101Z" fill="white" fill-opacity="0.47"/>
3
+ <path d="M30.224 88.9104C30.7277 62.9677 52.3886 42.3144 78.5831 42.8181C104.526 43.3218 125.179 64.9827 124.675 91.1772C124.172 117.12 102.511 137.773 76.3162 137.269C50.1217 136.514 29.7202 114.853 30.224 88.9104Z" fill="white"/>
4
+ <path d="M34.758 88.9101C35.2618 65.4862 54.9076 46.5959 78.3316 47.3515C101.756 47.8552 120.646 67.5011 119.89 90.9251C119.386 114.601 99.7406 133.239 76.3166 132.484C52.8927 132.232 34.2543 112.586 34.758 88.9101Z" fill="#3F8ABC"/>
5
+ <path d="M96.9695 102.511C96.9695 91.6808 88.154 88.1546 80.5979 85.384L80.8498 71.2793C84.376 72.2868 87.3984 74.3017 90.169 76.3167L91.4284 77.0723L95.7102 68.7606L94.7027 68.005C89.9171 64.7307 85.3835 62.7157 80.8498 62.212V57.1746H76.568V61.9601C67.2488 62.4638 59.9446 68.7606 60.1964 77.0723C60.1964 87.1471 69.2638 90.6733 76.0643 93.4439L75.8124 109.312C71.2787 108.052 66.4932 104.778 63.4708 101.756L62.2114 100.496L56.9221 108.304L57.9296 109.06C63.2189 113.845 69.7675 116.868 75.8124 117.875V122.913H80.0942V118.127C88.4059 118.127 97.2214 112.082 96.9695 102.511ZM70.2712 77.0723C70.2712 73.2943 73.2937 70.7756 76.568 70.5237L76.3161 83.3691C73.0418 82.1097 70.2712 80.0948 70.2712 77.0723ZM80.3461 109.564L80.5979 94.9551C84.376 96.4663 87.1466 98.4813 87.1466 103.015C87.1466 107.297 83.6204 109.312 80.3461 109.564Z" fill="white"/>
6
+ <path d="M57.6789 56.9226C57.6789 56.9226 56.9233 57.6782 55.9158 58.9376C54.6565 60.1969 53.1453 62.2119 51.3822 64.4787C50.6266 65.7381 49.6191 66.9974 48.8635 68.5086C47.856 69.768 47.3522 71.5311 46.3448 73.0423C45.5891 74.8054 44.8335 76.3166 44.3298 78.0797C44.0779 78.8353 43.8261 79.8428 43.5742 80.8503C43.3223 81.8578 43.3223 82.6134 43.0704 83.6209C42.5667 85.384 42.5667 87.3989 42.3148 89.162C42.063 90.9251 42.3148 92.9401 42.3148 94.7032C42.5667 96.4662 42.8186 98.2293 43.0704 99.7406C43.0704 100.496 43.3223 101.252 43.5742 102.007C43.8261 102.763 44.0779 103.519 44.0779 104.274C44.5817 105.785 44.8335 107.045 45.3373 108.052C45.841 109.06 46.0929 110.067 46.3448 111.075C46.8485 112.838 47.3522 113.593 47.3522 113.593C47.3522 113.593 46.5966 112.838 45.5891 111.327C45.0854 110.571 44.3298 109.815 43.5742 108.808C42.8186 107.8 42.3148 106.541 41.5592 105.282C41.0555 103.77 40.048 102.511 39.5443 100.748C39.0405 98.985 38.2849 97.2219 38.033 95.2069C38.033 94.1994 37.7812 93.1919 37.7812 92.1844C37.5293 91.177 37.5293 90.1695 37.5293 89.162C37.7812 87.147 37.5293 84.8802 38.2849 82.8653C38.5368 81.8578 38.7886 80.8503 39.0405 79.8428C39.2924 78.8353 39.7961 77.8278 40.048 76.8204C40.2999 75.8129 40.8036 74.8054 41.3074 74.0498C41.8111 73.0423 42.3148 72.2867 42.8186 71.5311C43.8261 70.0199 44.8335 68.2568 46.0929 66.9974C47.1004 65.4862 48.3597 64.4787 49.6191 63.2194C50.6266 62.2119 51.8859 61.2044 52.8934 60.4488C53.9009 59.6932 54.9083 59.1894 55.664 58.6857C56.6714 57.4263 57.6789 56.9226 57.6789 56.9226Z" fill="white"/>
7
+ <path d="M96.2148 122.661C96.2148 122.661 96.9705 121.905 97.9779 120.646C99.2373 119.387 100.749 117.372 102.512 115.105C103.267 113.845 104.275 112.586 105.03 111.075C106.038 109.815 106.542 108.052 107.549 106.541C108.305 104.778 109.06 103.267 109.564 101.504C109.816 100.748 110.068 99.7406 110.32 98.7331C110.571 97.7257 110.571 96.97 110.823 95.9626C111.327 94.1995 111.327 92.1845 111.579 90.4214C111.831 88.6583 111.579 86.6434 111.579 84.8803C111.327 83.1172 111.075 81.3541 110.823 79.8429C110.823 79.0873 110.571 78.3316 110.32 77.576C110.068 76.8204 109.816 76.0648 109.816 75.3092C109.312 73.798 109.06 72.5386 108.556 71.5311C108.053 70.5237 107.801 69.5162 107.549 68.5087C107.045 66.7456 106.542 65.99 106.542 65.99C106.542 65.99 107.297 66.7456 108.305 68.2568C108.808 69.0124 109.564 69.768 110.32 70.7755C111.075 71.783 111.579 73.0424 112.335 74.3017C112.838 75.8129 113.846 77.0723 114.35 78.8354C114.853 80.5985 115.609 82.3616 115.861 84.3765C115.861 85.384 116.113 86.3915 116.113 87.399C116.364 88.4065 116.364 89.4139 116.364 90.4214C116.113 92.4364 116.364 94.7032 115.609 96.7182C115.357 97.7257 115.105 98.7331 114.853 99.7406C114.601 100.748 114.098 101.756 113.846 102.763C113.594 103.771 113.09 104.778 112.586 105.534C112.083 106.541 111.579 107.297 111.075 108.052C110.068 109.564 109.06 111.327 107.801 112.586C106.793 114.097 105.534 115.105 104.275 116.364C103.267 117.372 102.008 118.379 101 119.135C99.9929 119.89 99.2373 120.394 98.2298 120.898C97.2223 122.409 96.2148 122.661 96.2148 122.661Z" fill="#C7C7C7"/>
8
+ <path d="M64.4793 119.135C65.235 93.1921 86.6439 72.5387 112.838 73.0425C138.781 73.5462 159.434 95.2071 158.931 121.402C158.427 147.344 136.766 167.998 110.572 167.494C84.3771 166.738 63.9756 145.329 64.4793 119.135Z" fill="white"/>
9
+ <path d="M69.0131 119.387C69.5169 95.9627 89.1628 77.0724 112.587 77.8281C136.011 78.3318 154.901 97.9777 154.145 121.402C153.642 145.077 133.996 163.716 110.572 162.96C87.1478 162.456 68.5094 142.811 69.0131 119.387Z" fill="#3F8ABC"/>
10
+ <path d="M131.225 132.736C131.225 121.905 122.409 118.379 114.853 115.608L115.105 101.504C118.631 102.511 121.654 104.526 124.424 106.541L125.684 107.297L129.965 98.985L129.21 98.2294C124.424 94.955 119.89 92.9401 115.357 92.4363V87.3989H111.075V92.1845C101.756 92.6882 94.4516 98.985 94.7034 107.297C94.7034 117.371 103.771 120.898 110.571 123.668L110.319 139.536C105.786 138.277 101 135.002 97.9778 131.98L96.7184 130.721L91.1772 139.032L92.1847 139.788C97.474 144.573 104.023 147.596 110.068 148.603V153.641H114.349V148.855C122.661 148.603 131.477 142.307 131.225 132.736ZM104.526 107.549C104.526 103.771 107.549 101.252 110.823 101L110.571 113.845C107.297 112.334 104.526 110.319 104.526 107.549ZM114.601 139.788L114.853 125.179C118.631 126.691 121.402 128.706 121.402 133.239C121.402 137.773 117.876 139.536 114.601 139.788Z" fill="white"/>
11
+ <path d="M91.9326 87.147C91.9326 87.147 91.177 87.9026 90.1695 89.1619C88.9101 90.4213 87.3989 92.4362 85.6358 94.7031C84.8802 95.9624 83.8727 97.2218 83.1171 98.733C82.1096 99.9924 81.6059 101.755 80.5984 103.267C79.8428 105.03 79.0872 106.541 78.5835 108.304C78.3316 109.06 78.0797 110.067 77.8278 111.075C77.576 112.082 77.576 112.838 77.3241 113.845C76.8204 115.608 76.8204 117.623 76.5685 119.386C76.3166 121.149 76.5685 123.164 76.5685 124.928C76.8204 126.691 77.0722 128.454 77.3241 129.965C77.3241 130.721 77.576 131.476 77.8278 132.232C78.0797 132.987 78.3316 133.743 78.3316 134.499C78.8353 136.01 79.0872 137.269 79.5909 138.277C80.0947 139.284 80.3466 140.292 80.5984 141.299C81.1022 143.062 81.6059 143.818 81.6059 143.818C81.6059 143.818 80.8503 143.062 79.8428 141.551C79.3391 140.795 78.5835 140.04 77.8278 139.032C77.0722 138.025 76.5685 136.765 75.8129 135.506C75.3091 133.995 74.3017 132.736 73.7979 130.972C73.2942 129.209 72.5386 127.446 72.2867 125.431C72.2867 124.424 72.0348 123.416 72.0348 122.409C71.783 121.401 71.783 120.394 71.783 119.386C72.0348 117.371 71.783 115.105 72.5386 113.09C72.7904 112.082 73.0423 111.075 73.2942 110.067C73.5461 109.06 74.0498 108.052 74.3017 107.045C74.5535 106.037 75.0573 105.03 75.561 104.274C76.0648 103.267 76.5685 102.511 77.0722 101.755C78.0797 100.244 79.0872 98.4811 80.3466 97.2218C81.354 95.7106 82.6134 94.7031 83.8727 93.4437C84.8802 92.4362 86.1396 91.4288 87.1471 90.6732C88.1545 89.9176 89.162 89.4138 89.9176 88.9101C91.177 87.6507 91.9326 87.147 91.9326 87.147Z" fill="white"/>
12
+ <path d="M130.469 152.885C130.469 152.885 131.224 152.13 132.232 150.87C133.491 149.611 135.002 147.596 136.765 145.329C137.521 144.07 138.528 142.81 139.284 141.299C140.291 140.04 140.795 138.277 141.803 136.766C142.558 135.002 143.314 133.491 143.818 131.728C144.07 130.973 144.321 129.965 144.573 128.958C144.825 127.95 144.825 127.194 145.077 126.187C146.084 124.676 146.084 122.913 146.084 120.898C146.336 119.135 146.084 117.12 146.084 115.357C145.833 113.593 145.581 111.83 145.329 110.319C145.329 109.564 145.077 108.808 144.825 108.052C144.573 107.297 144.321 106.541 144.321 105.786C143.818 104.274 143.566 103.015 143.062 102.007C142.558 101 142.306 99.9925 142.055 98.985C141.551 97.2219 141.047 96.4663 141.047 96.4663C141.047 96.4663 141.803 97.2219 142.81 98.7331C143.314 99.4888 144.07 100.244 144.825 101.252C145.581 102.259 146.084 103.519 146.84 104.778C147.344 106.289 148.351 107.549 148.855 109.312C149.359 111.075 150.114 112.838 150.366 114.853C150.366 115.86 150.618 116.868 150.618 117.875C150.87 118.883 150.87 119.89 150.87 120.898C150.618 122.913 150.87 125.18 150.114 127.194C149.863 128.202 149.611 129.209 149.359 130.217C149.107 131.224 148.603 132.232 148.351 133.239C148.099 134.247 147.596 135.254 147.092 136.01C146.588 137.017 146.084 137.773 145.581 138.529C144.573 140.04 143.566 141.803 142.306 143.062C141.299 144.574 140.04 145.581 138.78 146.84C137.773 147.848 136.513 148.855 135.506 149.611C134.498 150.367 133.491 150.87 132.735 151.374C131.476 152.633 130.469 152.885 130.469 152.885Z" fill="white"/>
13
+ <path d="M77.324 80.5986C77.8277 54.656 99.4886 34.0026 125.683 34.5063C151.626 35.0101 172.279 56.6709 171.775 82.8654C171.02 108.808 149.359 129.461 123.416 128.706C97.4736 128.202 76.8202 106.541 77.324 80.5986Z" fill="white"/>
14
+ <path d="M81.8579 80.5986C82.3616 57.1746 102.007 38.2844 125.431 39.04C148.855 39.5437 167.494 59.1896 166.99 82.6135C166.486 106.289 146.84 124.928 123.416 124.172C99.9925 123.668 81.3541 104.023 81.8579 80.5986Z" fill="#3F8ABC"/>
15
+ <path d="M144.07 93.9477C144.07 83.1173 135.255 79.5911 127.698 76.8206L127.95 62.7158C131.476 63.7233 134.499 65.7383 137.27 67.7532L138.529 68.5088L142.811 60.1971L141.803 59.4415C137.018 56.1672 132.484 54.1522 127.95 53.6485V48.6111H123.669V53.3966C114.349 53.9004 107.045 60.1971 107.297 68.5088C107.297 78.5837 116.364 82.1098 123.165 84.8804L122.913 100.748C118.379 99.4889 113.594 96.2146 110.571 93.1921L109.312 91.9328L103.771 100.244L104.778 101C110.068 105.786 116.616 108.808 122.661 109.816V114.853H126.943V110.067C135.506 109.816 144.322 103.771 144.07 93.9477ZM117.372 68.7607C117.372 64.9827 120.394 62.464 123.669 62.2121L123.417 75.0575C120.142 73.7981 117.372 71.7831 117.372 68.7607ZM127.447 101L127.698 86.3916C131.476 87.9028 134.247 89.9178 134.247 94.4515C134.247 98.9851 130.721 100.748 127.447 101Z" fill="white"/>
16
+ <path d="M104.777 48.6111C104.777 48.6111 104.022 49.3667 103.014 50.626C101.755 51.8854 100.244 53.9004 98.4806 56.1672C97.7249 57.4265 96.7175 58.6859 95.9619 60.1971C94.9544 61.4565 94.4506 63.2196 93.4431 64.7308C92.6875 66.4939 91.9319 68.0051 91.4282 69.7682C91.1763 70.5238 90.9244 71.5313 90.6726 72.5388C90.4207 73.5462 90.4207 74.3019 90.1688 75.3093C89.6651 77.0724 89.6651 79.0874 89.4132 80.8505C89.1614 82.6136 89.4132 84.6285 89.4132 86.3916C89.6651 88.1547 89.917 89.9178 90.1688 91.429C90.1688 92.1847 90.4207 92.9403 90.6726 93.6959C90.9244 94.4515 91.1763 95.2071 91.1763 95.9627C91.6801 97.4739 91.9319 98.7333 92.4357 99.7408C92.9394 100.748 93.1913 101.756 93.4431 102.763C93.9469 104.526 94.4506 105.282 94.4506 105.282C94.4506 105.282 93.695 104.526 92.6875 103.015C92.1838 102.259 91.4282 101.504 90.6726 100.496C89.917 99.4889 89.4132 98.2295 88.6576 96.9702C88.1539 95.459 87.1464 94.1996 86.6427 92.4365C86.1389 90.6734 85.3833 88.9103 85.1314 86.8954C85.1314 85.8879 84.8796 84.8804 84.8796 83.8729C84.6277 82.8655 84.6277 81.858 84.6277 80.8505C84.8796 78.8355 84.6277 76.5687 85.3833 74.5537C85.6352 73.5463 85.887 72.5388 86.1389 71.5313C86.3908 70.5238 86.8945 69.5163 87.1464 68.5088C87.3983 67.5014 87.902 66.4939 88.4057 65.7383C88.9095 64.7308 89.4132 63.9752 89.917 63.2196C90.9244 61.7083 91.9319 59.9452 93.1913 58.6859C94.1988 57.1747 95.4581 56.1672 96.7175 54.9078C97.725 53.9004 98.9843 52.8929 99.9918 52.1373C100.999 51.3817 102.007 50.8779 102.762 50.3742C104.022 48.863 104.777 48.6111 104.777 48.6111Z" fill="white"/>
17
+ <path d="M143.315 114.349C143.315 114.349 144.071 113.594 145.078 112.334C146.337 111.075 147.849 109.06 149.612 106.793C150.367 105.534 151.375 104.274 152.13 102.763C153.138 101.504 153.642 99.7408 154.649 98.2296C155.405 96.4665 156.16 94.9553 156.664 93.1922C156.916 92.4366 157.168 91.4291 157.42 90.4216C157.672 89.4141 157.672 88.6585 157.923 87.651C158.427 85.8879 158.427 83.873 158.679 82.1099C158.931 80.3468 158.679 78.3318 158.679 76.5687C158.427 74.8057 158.175 73.0426 157.923 71.5313C157.923 70.7757 157.672 70.0201 157.42 69.2645C157.168 68.5089 156.916 67.7533 156.916 66.9977C156.412 65.4864 156.16 64.2271 155.657 63.2196C155.153 62.2121 154.901 61.2047 154.649 60.1972C154.145 58.4341 153.642 57.6785 153.642 57.6785C153.642 57.6785 154.397 58.4341 155.405 59.9453C155.908 60.7009 156.664 61.4565 157.42 62.464C158.175 63.4715 158.679 64.7308 159.435 65.9902C159.938 67.5014 160.946 68.7608 161.45 70.5239C161.953 72.2869 162.709 74.05 162.961 76.065C162.961 77.0725 163.213 78.08 163.213 79.0874C163.465 80.0949 163.465 81.1024 163.465 82.1099C163.213 84.1249 163.465 86.3917 162.709 88.4066C162.457 89.4141 162.205 90.4216 161.953 91.4291C161.701 92.4366 161.198 93.4441 160.946 94.4515C160.694 95.459 160.19 96.4665 159.686 97.2221C159.183 98.2296 158.679 98.9852 158.175 99.7408C157.168 101.252 156.16 103.015 154.901 104.274C153.893 105.786 152.634 106.793 151.375 108.053C150.367 109.06 149.108 110.068 148.1 110.823C147.093 111.579 146.086 112.082 145.33 112.586C144.322 113.846 143.315 114.349 143.315 114.349Z" fill="white"/>
18
+ </svg>
bws_menu/images/join-icon.svg ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg width="202" height="202" viewBox="0 0 202 202" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M202 101C202 156.663 156.915 202 101 202C45.0848 202 0 156.663 0 101C0 45.3367 45.0848 0 101 0C156.663 0 202 45.0848 202 101Z" fill="white" fill-opacity="0.47"/>
3
+ <path d="M52.1856 111.848L31.5895 111.346L29.329 112.099L28.5754 112.601V113.103L35.1059 132.681L36.8641 137.951H47.4133L48.418 132.932L54.195 113.103V112.35L52.1856 111.848Z" fill="white"/>
4
+ <path d="M28.4621 113.342C22.669 120.898 13.3498 121.905 11.5867 131.224L11.083 138.277H36.7738L35.0107 132.987L28.4621 113.342Z" fill="#3F8ABC"/>
5
+ <path d="M47.3513 138.277H72.0346L71.5309 131.224C70.2715 124.928 63.2191 121.905 53.8999 113.594L48.3588 133.491L47.3513 138.277Z" fill="#3F8ABC"/>
6
+ <path d="M48.1077 102.511H46.0928H35.2623C32.9955 102.511 31.2324 104.022 31.2324 106.037V115.105C31.2324 117.12 32.9955 118.631 35.2623 118.631H48.1077C50.1227 118.631 51.6339 117.372 52.1377 115.86V115.105V114.853V105.786C52.1377 104.022 50.3746 102.511 48.1077 102.511Z" fill="#FFE2C2"/>
7
+ <path d="M60.7002 85.636C60.1965 85.3842 59.6927 85.8879 59.189 86.6435C59.189 86.3917 59.189 85.8879 59.189 85.636C59.189 74.3019 51.381 64.9827 41.8099 64.9827C32.2389 64.9827 24.4309 74.3019 24.4309 85.636C24.4309 85.8879 24.4309 86.3917 24.4309 86.6435C23.9271 85.8879 23.4234 85.636 22.9197 85.636C21.6603 86.1398 21.4084 89.1622 22.164 92.6884C22.9197 96.2146 24.4309 98.7333 25.6902 98.4814C26.194 98.2296 26.4458 97.9777 26.6977 97.2221C29.7202 105.786 35.2613 113.594 41.8099 113.594C48.3586 113.594 54.1516 105.786 56.9222 97.2221C57.174 97.9777 57.4259 98.4814 57.9296 98.4814C59.189 98.7333 60.7002 96.2146 61.4558 92.6884C62.2114 89.1622 61.9596 86.1398 60.7002 85.636Z" fill="#FFE2C2"/>
8
+ <path d="M30.9804 112.586C30.9804 112.586 31.2323 115.86 37.2771 117.623C43.0702 119.386 39.2921 123.416 39.2921 123.416L34.7584 124.424L31.9879 119.135L30.7285 115.105L30.9804 112.586Z" fill="white"/>
9
+ <path d="M52.3891 113.09C52.3891 113.09 52.1373 116.364 46.0924 118.127C40.2994 119.89 44.0774 123.92 44.0774 123.92L48.6111 124.928L51.3817 119.638L52.641 115.609L52.3891 113.09Z" fill="white"/>
10
+ <path d="M29.4691 112.082L23.1724 115.86L35.0103 132.988L29.4691 112.082Z" fill="white" fill-opacity="0.47"/>
11
+ <path d="M54.1524 111.831L60.701 116.868L48.3594 133.24L54.1524 111.831Z" fill="white" fill-opacity="0.47"/>
12
+ <path d="M40.5738 125.142L37.4438 137.951H46.3121L42.6605 125.142H40.5738Z" fill="#3F8ABC"/>
13
+ <path d="M39.2921 118.379L44.5814 118.631L45.337 122.409L44.3296 126.187H39.544L38.2847 122.661L39.2921 118.379Z" fill="#3F8ABC"/>
14
+ <path d="M23.1727 101.504C19.6465 95.7108 18.3872 89.4141 19.1428 84.3766C20.654 76.8205 23.6764 70.7757 28.462 66.7457C29.2176 61.7083 32.24 58.9377 38.033 58.9377C52.8934 59.9452 60.9532 68.7607 63.9757 82.8654C64.9832 87.9028 63.7238 94.1996 59.9458 99.9926C55.9158 107.801 58.4345 113.594 62.2126 121.653C52.6415 118.631 46.3448 115.357 48.3597 111.327C53.649 99.237 59.442 88.4066 51.8859 78.3318C49.3672 78.3318 38.033 86.3916 31.2325 80.5986C24.432 90.6734 29.9732 101.252 35.0106 112.838C37.0256 116.868 30.7288 120.142 21.1577 123.165C24.9358 115.105 27.2026 109.06 23.1727 101.504Z" fill="#D1AB86"/>
15
+ <path d="M167.997 111.579L145.581 111.327L143.062 112.082L142.307 112.334V113.09L149.359 132.484L151.374 137.773H162.96L163.967 132.988L170.012 113.09L170.264 112.334L167.997 111.579Z" fill="white"/>
16
+ <path d="M142.307 113.09C131.728 115.105 123.417 119.89 123.417 127.698L122.661 137.773H151.374L149.359 132.484L142.307 113.09Z" fill="#3F8ABC"/>
17
+ <path d="M162.96 137.773H190.666L189.911 127.698C189.911 120.394 181.095 115.357 170.013 113.09L163.968 132.988L162.96 137.773Z" fill="#3F8ABC"/>
18
+ <path d="M163.716 102.763H161.449H149.611C147.093 102.763 145.33 104.274 145.33 106.289V115.105C145.33 116.868 147.345 118.631 149.611 118.631H163.716C165.731 118.631 167.494 117.372 167.998 115.86V115.105V114.853V106.289C167.998 104.274 165.983 102.763 163.716 102.763Z" fill="#FFE2C2"/>
19
+ <path d="M177.066 86.6434C176.562 86.3915 175.806 86.8952 175.303 87.6508C175.303 87.399 175.303 86.8952 175.303 86.6434C175.303 75.5611 166.991 66.7456 156.664 66.7456C146.337 66.7456 138.026 75.5611 138.026 86.6434C138.026 86.8952 138.026 87.399 138.026 87.6508C137.522 86.8952 136.766 86.6434 136.263 86.6434C135.003 86.8952 134.5 90.1695 135.255 93.4439C136.011 96.97 137.774 99.2369 139.033 98.985C139.537 98.7331 139.789 98.4813 140.041 97.7256C143.315 106.037 149.36 113.342 156.412 113.342C163.465 113.342 169.761 105.785 172.784 97.7256C173.036 98.4813 173.288 98.985 173.791 98.985C175.051 99.2369 176.814 96.97 177.569 93.4439C178.829 90.1695 178.577 87.1471 177.066 86.6434Z" fill="#FFE2C2"/>
20
+ <path d="M145.077 112.082C145.077 112.082 145.329 115.357 151.878 117.12C158.175 118.883 153.893 122.913 153.893 122.913L148.855 123.92L146.085 118.631L144.825 114.601L145.077 112.082Z" fill="white"/>
21
+ <path d="M168.249 112.838C168.249 112.838 167.997 116.112 161.449 117.875C155.152 119.638 159.434 123.668 159.434 123.668L164.471 124.676L167.494 119.387L168.753 115.357L168.249 112.838Z" fill="white"/>
22
+ <path d="M143.315 110.823L137.522 113.342L149.36 132.484L143.315 110.823Z" fill="white" fill-opacity="0.47"/>
23
+ <path d="M170.265 111.075L175.806 113.846L163.969 132.988L170.265 111.075Z" fill="white" fill-opacity="0.47"/>
24
+ <path d="M155.908 125.431L152.885 137.773H161.449L157.923 125.431H155.908Z" fill="#3F8ABC"/>
25
+ <path d="M154.397 118.127H159.435L160.442 121.905L159.435 125.935H154.397L153.39 122.157L154.397 118.127Z" fill="#3F8ABC"/>
26
+ <path d="M168.25 70.7756C170.769 58.434 133.492 58.9377 138.026 87.651L140.293 97.7258C140.293 97.7258 154.649 89.4141 165.228 76.0649C169.258 77.828 171.273 81.1023 172.028 89.1622L173.036 97.7258L175.302 87.651C175.302 87.651 178.577 66.9976 168.25 70.7756Z" fill="#D1AB86"/>
27
+ <path d="M97.725 145.077L75.8123 110.068L87.1464 101.504L115.608 103.519L126.438 113.594L102.007 147.344C100.747 146.589 99.2362 145.833 97.725 145.077Z" fill="white"/>
28
+ <path d="M118.126 105.785L126.438 107.8C126.438 107.8 139.284 109.815 141.55 113.342C145.832 116.112 146.084 149.611 145.328 149.863C144.573 150.115 105.533 149.863 105.533 149.863C104.022 148.855 102.51 147.848 100.999 147.092L118.126 105.785Z" fill="#3F8ABC"/>
29
+ <path d="M83.621 105.785L75.5611 107.8C75.5611 107.8 62.7158 109.815 60.4489 113.342C56.1671 116.112 55.9153 149.611 56.6709 149.863C57.4265 150.115 107.801 149.863 107.801 149.863C109.312 148.855 104.022 148.351 101 147.092L83.621 105.785Z" fill="#3F8ABC"/>
30
+ <path d="M113.593 87.9028H88.1545V107.801H113.593V87.9028Z" fill="#FFE2C2"/>
31
+ <path d="M80.3469 75.0572C81.8581 90.4212 93.4442 101.755 101 101.755C108.808 101.755 119.639 89.9175 121.654 75.0572C123.417 60.4487 112.334 52.8926 101 52.8926C89.4142 53.1444 78.8357 60.4487 80.3469 75.0572Z" fill="#FFE2C2"/>
32
+ <path d="M122.157 59.9451C120.394 54.152 114.852 47.3516 107.8 45.5885C101.755 44.0772 91.1767 42.3141 81.8575 51.6333C80.5981 52.8927 78.0794 62.4638 78.3313 64.9825C79.3388 74.8054 80.3463 77.3241 80.3463 77.3241L82.865 78.3316C82.865 78.3316 81.6056 75.0573 83.3687 70.2717C83.8724 69.0124 84.3762 67.753 85.1318 66.7456C91.1767 70.0199 102.763 66.4937 109.815 67.2493C114.852 68.0049 115.86 73.5461 118.882 73.7979C119.134 76.3166 118.631 78.0797 118.631 78.0797L121.149 77.0722C121.149 77.0722 121.401 76.3166 121.905 73.7979C122.409 73.7979 122.912 73.7979 122.912 73.7979C122.912 73.7979 124.172 66.9974 122.157 59.9451Z" fill="#D1AB86"/>
33
+ <path d="M119.639 77.5759C118.631 80.5983 117.624 83.6208 119.135 84.1245C120.394 84.6282 123.165 82.3614 124.424 79.339C125.432 76.3165 125.432 73.2941 124.172 73.0422C122.661 72.2866 120.646 74.5534 119.639 77.5759Z" fill="#FFE2C2"/>
34
+ <path d="M82.1092 77.5759C83.1167 80.5983 84.1242 83.6208 82.613 84.1245C81.3536 84.6282 78.583 82.3614 77.3237 79.339C76.3162 76.3165 76.3162 73.2941 77.5755 73.0422C79.0868 72.2866 81.1017 74.5534 82.1092 77.5759Z" fill="#FFE2C2"/>
35
+ <path d="M94.4514 111.075L100.748 116.364L107.297 111.075L100.748 105.785L94.4514 111.075Z" fill="#3F8ABC"/>
36
+ <path d="M102.008 115.104L105.786 133.491L101.252 148.855L95.4595 133.491L99.7413 115.104H102.008Z" fill="#3F8ABC"/>
37
+ <path d="M114.601 97.7258L100.748 105.786L105.282 115.357L115.86 105.534C115.86 105.534 118.631 104.778 117.623 103.519C116.868 102.259 114.601 101 114.601 97.7258Z" fill="white"/>
38
+ <path d="M87.1477 97.7258L100.749 105.786L96.2151 115.357L85.6365 105.282C85.6365 105.282 82.8659 104.526 83.8734 103.267C84.8809 102.259 87.1477 101 87.1477 97.7258Z" fill="white"/>
39
+ <path d="M100.748 146.84L116.364 102.008L121.653 106.289L127.194 109.312L120.394 120.394H117.371L119.386 126.943L100.748 146.84Z" fill="white" fill-opacity="0.47"/>
40
+ <path d="M100.749 146.84L85.3847 102.008L80.0954 106.037L74.0505 109.312L81.3548 120.394H84.3772L82.3623 126.943L100.749 146.84Z" fill="white" fill-opacity="0.47"/>
41
+ </svg>
bws_menu/images/promote-icon.svg ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <svg width="202" height="202" viewBox="0 0 202 202" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0)">
3
+ <path d="M202.007 100.905C202.007 45.1232 156.787 -0.0964947 101.006 -0.0964918C45.2244 -0.0964889 0.00463195 45.1233 0.00463434 100.905C0.00463673 156.686 45.2244 201.906 101.006 201.906C156.787 201.906 202.007 156.686 202.007 100.905Z" fill="white" fill-opacity="0.47"/>
4
+ <path d="M51.8859 150.366C48.6116 158.678 54.6565 164.471 61.2051 164.975C67.7537 165.479 73.5467 157.922 71.2799 151.122C68.7612 144.321 68.2575 144.825 68.2575 144.825C68.2575 144.825 69.0131 143.818 70.0206 142.81C71.028 141.551 71.028 139.536 70.0206 138.277L68.2575 135.758C68.2575 135.758 69.2649 134.75 70.2724 133.491C71.2799 132.232 71.5318 130.217 70.2724 128.957L68.2575 126.691C68.2575 126.691 69.0131 125.683 69.7687 124.424C70.5243 123.164 70.2724 121.149 69.0131 119.89L66.7462 117.623L65.7388 105.785L50.1228 105.282C50.6265 105.03 55.4121 141.803 51.8859 150.366Z" fill="#3F8ABC"/>
5
+ <path d="M142.81 53.6483L170.768 44.3291V145.329L146.085 136.262L141.047 124.424L142.81 53.6483Z" fill="#3F8ABC"/>
6
+ <path d="M154.397 145.329L61.7089 108.052L61.457 83.6208L154.397 44.0771V145.329Z" fill="white"/>
7
+ <path d="M49.8701 95.7108C49.8701 103.519 43.5733 109.564 36.0172 109.564C28.2092 109.564 22.1643 103.267 22.1643 95.7108C22.1643 87.9028 28.4611 81.8579 36.0172 81.8579C43.5733 81.8579 49.8701 87.9028 49.8701 95.7108Z" fill="white"/>
8
+ <path d="M68.2573 80.5984H27.4543V110.823H68.2573V80.5984Z" fill="#3F8ABC"/>
9
+ <path d="M68.2573 101H27.4543V110.823H68.2573V101Z" fill="#3F8ABC"/>
10
+ <path d="M61.4563 104.526H50.374V107.045H61.4563V104.526Z" fill="#F2F2F2"/>
11
+ <path d="M38.5357 85.8876C38.5357 87.147 37.5282 88.4063 36.017 88.4063C34.7576 88.4063 33.4983 87.3988 33.4983 85.8876C33.4983 84.6282 34.5058 83.3689 36.017 83.3689C37.2763 83.3689 38.5357 84.3764 38.5357 85.8876Z" fill="white"/>
12
+ <path d="M60.1965 164.975C65.2339 141.299 59.9446 129.21 52.3885 122.913C53.1441 133.491 53.8997 146.085 52.1366 150.367C48.8623 158.175 53.8997 163.716 60.1965 164.975Z" fill="white"/>
13
+ <path d="M154.396 139.284L160.441 141.551V47.8552L154.396 49.8702V139.284Z" fill="#3F8ABC"/>
14
+ </g>
15
+ <defs>
16
+ <clipPath id="clip0">
17
+ <rect width="202" height="202" fill="white"/>
18
+ </clipPath>
19
+ </defs>
20
+ </svg>
bws_menu/js/bws_menu.js CHANGED
@@ -1,4 +1,5 @@
1
  (function($) {
 
2
  $(document).ready( function() {
3
  var product = $( '.bws_product_box' ),
4
  max = 0;
1
  (function($) {
2
+ "use strict";
3
  $(document).ready( function() {
4
  var product = $( '.bws_product_box' ),
5
  max = 0;
bws_menu/js/bws_tooltip.js CHANGED
@@ -3,6 +3,7 @@
3
  *
4
  */
5
  (function($) {
 
6
  $(document).ready( function() {
7
  jQuery.bwsTooltip = function( pointer_options ) {
8
  var pointer_buttons = pointer_options['buttons'];
@@ -17,7 +18,7 @@
17
  }
18
  }
19
  button = jQuery( button );
20
- button.bind('click.pointer', function () {
21
  t.element.pointer('close');
22
  });
23
  return button;
@@ -51,6 +52,9 @@
51
  };
52
  }
53
  /* adjust position of pointer */
 
 
 
54
  topPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("top") ) + parseInt( pointer_options['position']['pos-top'] );
55
  leftPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("left") ) + parseInt( pointer_options['position']['pos-left'] );
56
  if ( pointer_options['position']['align'] == 'left' ) {
3
  *
4
  */
5
  (function($) {
6
+ "use strict";
7
  $(document).ready( function() {
8
  jQuery.bwsTooltip = function( pointer_options ) {
9
  var pointer_buttons = pointer_options['buttons'];
18
  }
19
  }
20
  button = jQuery( button );
21
+ button.on('click.pointer', function () {
22
  t.element.pointer('close');
23
  });
24
  return button;
52
  };
53
  }
54
  /* adjust position of pointer */
55
+ var topPos,
56
+ leftPos,
57
+ pointerZindex;
58
  topPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("top") ) + parseInt( pointer_options['position']['pos-top'] );
59
  leftPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("left") ) + parseInt( pointer_options['position']['pos-left'] );
60
  if ( pointer_options['position']['align'] == 'left' ) {
bws_menu/js/general_script.js CHANGED
@@ -1,4 +1,5 @@
1
  function bws_show_settings_notice() {
 
2
  (function($) {
3
  $( '.updated.fade:not(.bws_visible), .error:not(.bws_visible)' ).css( 'display', 'none' );
4
  $( '#bws_save_settings_notice' ).css( 'display', 'block' );
@@ -6,11 +7,12 @@ function bws_show_settings_notice() {
6
  }
7
 
8
  (function($) {
 
9
  $( document ).ready( function() {
10
  /**
11
  * add notice about changing on the settings page
12
  */
13
- $( '.bws_form input, .bws_form textarea, .bws_form select' ).bind( "change paste select", function() {
14
  if ( $( this ).attr( 'type' ) != 'submit' && ! $( this ).hasClass( 'bws_no_bind_notice' ) ) {
15
  bws_show_settings_notice();
16
  };
1
  function bws_show_settings_notice() {
2
+ "use strict";
3
  (function($) {
4
  $( '.updated.fade:not(.bws_visible), .error:not(.bws_visible)' ).css( 'display', 'none' );
5
  $( '#bws_save_settings_notice' ).css( 'display', 'block' );
7
  }
8
 
9
  (function($) {
10
+ "use strict";
11
  $( document ).ready( function() {
12
  /**
13
  * add notice about changing on the settings page
14
  */
15
+ $( '.bws_form input, .bws_form textarea, .bws_form select' ).on( "change paste select", function() {
16
  if ( $( this ).attr( 'type' ) != 'submit' && ! $( this ).hasClass( 'bws_no_bind_notice' ) ) {
17
  bws_show_settings_notice();
18
  };
bws_menu/js/shortcode-button.js CHANGED
@@ -1,4 +1,5 @@
1
  (function($) {
 
2
  if ( typeof bws_shortcode_button != 'undefined' ) {
3
  var win;
4
 
1
  (function($) {
2
+ "use strict";
3
  if ( typeof bws_shortcode_button != 'undefined' ) {
4
  var win;
5
 
bws_menu/product_list.php CHANGED
@@ -22,7 +22,7 @@ $bws_plugins = array(
22
  'name' => 'Bike Rental',
23
  'description' => __( 'Give a birth for your bike rental and booking WordPress website.', 'bestwebsoft' ),
24
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/bike-rental/?k=04387cfc31fc8b9553e4741392762231&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
25
- 'settings' => 'edit.php?post_type=bws_bike&page=bike-rental-settings',
26
  'pro_version' => 'bike-rental-pro/bike-rental-pro.php',
27
  'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/bike-rental/buy/?k=9b3222b005340035eaead38a7a495a0d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
28
  'pro_settings' => 'edit.php?post_type=bws_bike&page=bkrntl_bws_bike_settings',
22
  'name' => 'Bike Rental',
23
  'description' => __( 'Give a birth for your bike rental and booking WordPress website.', 'bestwebsoft' ),
24
  'link' => 'https://bestwebsoft.com/products/wordpress/plugins/bike-rental/?k=04387cfc31fc8b9553e4741392762231&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
25
+ 'settings' => 'edit.php?post_type=bws_bike&page=bkng_general_settings',
26
  'pro_version' => 'bike-rental-pro/bike-rental-pro.php',
27
  'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/bike-rental/buy/?k=9b3222b005340035eaead38a7a495a0d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
28
  'pro_settings' => 'edit.php?post_type=bws_bike&page=bkrntl_bws_bike_settings',
google-sitemap-plugin.php CHANGED
@@ -6,7 +6,7 @@ Description: Generate and add XML sitemap to WordPress website. Help search engi
6
  Author: BestWebSoft
7
  Text Domain: google-sitemap-plugin
8
  Domain Path: /languages
9
- Version: 3.2.4
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
6
  Author: BestWebSoft
7
  Text Domain: google-sitemap-plugin
8
  Domain Path: /languages
9
+ Version: 3.2.5
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
includes/class-gglstmp-settings.php CHANGED
@@ -44,7 +44,8 @@ if ( ! class_exists( 'Gglstmp_Settings_Tabs' ) ) {
44
  'link_key' => '28d4cf0b4ab6f56e703f46f60d34d039',
45
  'link_pn' => '83',
46
  /* pls*/
47
- 'doc_link' => 'https://docs.google.com/document/d/1ffd0jasAtIEWXiW6Dg81QqmqHODj8j6vqzu2CQFyaT4/'
 
48
  ) );
49
 
50
  add_action( get_parent_class( $this ) . '_additional_misc_options', array( $this, 'additional_misc_options' ) );
44
  'link_key' => '28d4cf0b4ab6f56e703f46f60d34d039',
45
  'link_pn' => '83',
46
  /* pls*/
47
+ 'doc_link' => 'https://docs.google.com/document/d/1ffd0jasAtIEWXiW6Dg81QqmqHODj8j6vqzu2CQFyaT4/',
48
+ 'doc_video_link' => 'https://www.youtube.com/watch?v=hzz0_Yj4gaQ'
49
  ) );
50
 
51
  add_action( get_parent_class( $this ) . '_additional_misc_options', array( $this, 'additional_misc_options' ) );
languages/google-sitemap-plugin-fr_FR.mo ADDED
Binary file
languages/google-sitemap-plugin-fr_FR.po ADDED
@@ -0,0 +1,1744 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Sitemap by BestWebSoft\n"
4
+ "PO-Revision-Date: 2021-11-12 17:27+0200\n"
5
+ "Last-Translator: \n"
6
+ "Language-Team: \n"
7
+ "Language: fr\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=utf-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 2.2\n"
12
+ "X-Poedit-Basepath: ..\n"
13
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
14
+ "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
15
+ "X-Poedit-WPHeader: google-sitemap-plugin.php\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20
+ "POT-Creation-Date: \n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: *.js\n"
23
+
24
+ # automatic translation
25
+ #: bws_menu/bws_menu.php:101
26
+ msgid "Wrong license key"
27
+ msgstr "Clé de licence incorrecte"
28
+
29
+ # automatic translation
30
+ #: bws_menu/bws_menu.php:122
31
+ msgid ""
32
+ "Something went wrong. Please try again later. If the error appears again, please "
33
+ "contact us"
34
+ msgstr ""
35
+ "Quelque chose s'est mal passé. Veuillez réessayer plus tard. Si l'erreur "
36
+ "réapparaît, veuillez nous contacter"
37
+
38
+ # automatic translation
39
+ #: bws_menu/bws_menu.php:122
40
+ msgid "We are sorry for inconvenience."
41
+ msgstr "Nous sommes désolés pour le désagrément."
42
+
43
+ # automatic translation
44
+ #: bws_menu/bws_menu.php:129
45
+ msgid "Wrong license key."
46
+ msgstr "Clé de licence incorrecte."
47
+
48
+ # automatic translation
49
+ #: bws_menu/bws_menu.php:131
50
+ msgid ""
51
+ "This license key is bound to another site. Change it via personal Client Area."
52
+ msgstr ""
53
+ "Cette clé de licence est liée à un autre site. Modifiez-le via l'Espace Client "
54
+ "personnel."
55
+
56
+ # automatic translation
57
+ #: bws_menu/bws_menu.php:131
58
+ msgid "Log in"
59
+ msgstr "Connexion"
60
+
61
+ # automatic translation
62
+ #: bws_menu/bws_menu.php:133 bws_menu/bws_menu.php:333
63
+ msgid "Unfortunately, you have exceeded the number of available tries per day."
64
+ msgstr "Malheureusement, vous avez dépassé le nombre d'essais disponibles par jour."
65
+
66
+ # automatic translation
67
+ #: bws_menu/bws_menu.php:135
68
+ #, php-format
69
+ msgid ""
70
+ "Unfortunately, Your license has expired. To continue getting top-priority support "
71
+ "and plugin updates, you should extend it in your %s"
72
+ msgstr ""
73
+ "Malheureusement, votre licence a expiré. Pour continuer à bénéficier du support "
74
+ "prioritaire et des mises à jour des plugins, vous devez l'étendre dans votre %s"
75
+
76
+ # automatic translation
77
+ #: bws_menu/bws_menu.php:137
78
+ msgid ""
79
+ "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial "
80
+ "license can be installed only once."
81
+ msgstr ""
82
+ "Malheureusement, la licence Pro était déjà installée sur ce domaine. La licence "
83
+ "Pro Trial ne peut être installée qu'une seule fois."
84
+
85
+ # automatic translation
86
+ #: bws_menu/bws_menu.php:143
87
+ msgid "The license key is valid."
88
+ msgstr "La clé de licence est valide."
89
+
90
+ # automatic translation
91
+ #: bws_menu/bws_menu.php:145
92
+ msgid "Your license will expire on"
93
+ msgstr "Votre licence expirera le"
94
+
95
+ # automatic translation
96
+ #: bws_menu/bws_menu.php:147
97
+ msgid "Congratulations! Pro Membership license is activated successfully."
98
+ msgstr "Toutes nos félicitations! La licence d'adhésion Pro est activée avec succès."
99
+
100
+ # automatic translation
101
+ #: bws_menu/bws_menu.php:154
102
+ msgid ""
103
+ "Something went wrong. Try again later or upload the plugin manually. We are sorry "
104
+ "for inconvenience."
105
+ msgstr ""
106
+ "Quelque chose s'est mal passé. Réessayez plus tard ou téléchargez le plugin "
107
+ "manuellement. Nous sommes désolés pour le désagrément."
108
+
109
+ # automatic translation
110
+ #: bws_menu/bws_menu.php:164
111
+ msgid "Please enter your license key."
112
+ msgstr "S'il vous plaît entrer votre clé de licence."
113
+
114
+ # automatic translation
115
+ #: bws_menu/bws_menu.php:175
116
+ msgid "Not set"
117
+ msgstr "Pas encore défini"
118
+
119
+ # automatic translation
120
+ #: bws_menu/bws_menu.php:177
121
+ msgid "On"
122
+ msgstr "Au"
123
+
124
+ # automatic translation
125
+ #: bws_menu/bws_menu.php:177
126
+ msgid "Off"
127
+ msgstr "Désactivé"
128
+
129
+ # automatic translation
130
+ #: bws_menu/bws_menu.php:178 bws_menu/bws_menu.php:179 bws_menu/bws_menu.php:180
131
+ #: bws_menu/bws_menu.php:181 bws_menu/bws_menu.php:182 bws_menu/bws_menu.php:183
132
+ #: bws_menu/bws_menu.php:192
133
+ msgid "N/A"
134
+ msgstr "N / A"
135
+
136
+ # automatic translation
137
+ #: bws_menu/bws_menu.php:183
138
+ msgid "Mb"
139
+ msgstr "Mo"
140
+
141
+ # automatic translation
142
+ #: bws_menu/bws_menu.php:184 bws_menu/bws_menu.php:185 bws_menu/bws_menu.php:186
143
+ #: bws_menu/bws_menu.php:190 includes/pro_banners.php:150
144
+ msgid "Yes"
145
+ msgstr "Oui"
146
+
147
+ # automatic translation
148
+ #: bws_menu/bws_menu.php:184 bws_menu/bws_menu.php:185 bws_menu/bws_menu.php:186
149
+ #: bws_menu/bws_menu.php:190 includes/pro_banners.php:158
150
+ #: includes/pro_banners.php:166 includes/pro_banners.php:174
151
+ #: includes/pro_banners.php:182
152
+ msgid "No"
153
+ msgstr "Non"
154
+
155
+ # automatic translation
156
+ #: bws_menu/bws_menu.php:197
157
+ msgid "WordPress Environment"
158
+ msgstr "Environnement WordPress"
159
+
160
+ # automatic translation
161
+ #: bws_menu/bws_menu.php:199
162
+ msgid "Home URL"
163
+ msgstr "URL d'accueil"
164
+
165
+ # automatic translation
166
+ #: bws_menu/bws_menu.php:200
167
+ msgid "Website URL"
168
+ msgstr "URL de site web"
169
+
170
+ # automatic translation
171
+ #: bws_menu/bws_menu.php:201
172
+ msgid "WP Version"
173
+ msgstr "Version WP"
174
+
175
+ # automatic translation
176
+ #: bws_menu/bws_menu.php:202
177
+ msgid "WP Multisite"
178
+ msgstr "WP Multisite"
179
+
180
+ # automatic translation
181
+ #: bws_menu/bws_menu.php:203
182
+ msgid "WP Memory Limit"
183
+ msgstr "Limite de mémoire WP"
184
+
185
+ # automatic translation
186
+ #: bws_menu/bws_menu.php:204
187
+ msgid "Active Theme"
188
+ msgstr "Thème actif"
189
+
190
+ # automatic translation
191
+ #: bws_menu/bws_menu.php:204 bws_menu/bws_menu.php:249 bws_menu/bws_menu.php:252
192
+ #, php-format
193
+ msgid "by %s"
194
+ msgstr "par %s"
195
+
196
+ # automatic translation
197
+ #: bws_menu/bws_menu.php:208
198
+ msgid "Server Environment"
199
+ msgstr "Environnement de serveur"
200
+
201
+ # automatic translation
202
+ #: bws_menu/bws_menu.php:210
203
+ msgid "Operating System"
204
+ msgstr "Système opérateur"
205
+
206
+ # automatic translation
207
+ #: bws_menu/bws_menu.php:211
208
+ msgid "Server"
209
+ msgstr "Serveur"
210
+
211
+ # automatic translation
212
+ #: bws_menu/bws_menu.php:212
213
+ msgid "PHP Version"
214
+ msgstr "Version PHP"
215
+
216
+ # automatic translation
217
+ #: bws_menu/bws_menu.php:213
218
+ msgid "PHP Allow URL fopen"
219
+ msgstr "PHP Autoriser l'URL fopen"
220
+
221
+ # automatic translation
222
+ #: bws_menu/bws_menu.php:214
223
+ msgid "PHP Memory Limit"
224
+ msgstr "Limite de mémoire PHP"
225
+
226
+ # automatic translation
227
+ #: bws_menu/bws_menu.php:215
228
+ msgid "Memory Usage"
229
+ msgstr "Utilisation de la mémoire"
230
+
231
+ # automatic translation
232
+ #: bws_menu/bws_menu.php:216
233
+ msgid "PHP Max Upload Size"
234
+ msgstr "Taille maximale de téléchargement PHP"
235
+
236
+ # automatic translation
237
+ #: bws_menu/bws_menu.php:217
238
+ msgid "PHP Max Post Size"
239
+ msgstr "Taille maximale des messages PHP"
240
+
241
+ # automatic translation
242
+ #: bws_menu/bws_menu.php:218
243
+ msgid "PHP Max Script Execute Time"
244
+ msgstr "Temps d'exécution maximum du script PHP"
245
+
246
+ # automatic translation
247
+ #: bws_menu/bws_menu.php:219
248
+ msgid "PHP Exif support"
249
+ msgstr "Prise en charge de PHP Exif"
250
+
251
+ # automatic translation
252
+ #: bws_menu/bws_menu.php:220
253
+ msgid "PHP IPTC support"
254
+ msgstr "Prise en charge de PHP IPTC"
255
+
256
+ # automatic translation
257
+ #: bws_menu/bws_menu.php:221
258
+ msgid "PHP XML support"
259
+ msgstr "Prise en charge de PHP XML"
260
+
261
+ # automatic translation
262
+ #: bws_menu/bws_menu.php:227
263
+ msgid "Database"
264
+ msgstr "Base de données"
265
+
266
+ # automatic translation
267
+ #: bws_menu/bws_menu.php:229
268
+ msgid "WP DB version"
269
+ msgstr "Version de la base de données WP"
270
+
271
+ # automatic translation
272
+ #: bws_menu/bws_menu.php:230
273
+ msgid "MySQL version"
274
+ msgstr "Version MySQL"
275
+
276
+ # automatic translation
277
+ #: bws_menu/bws_menu.php:231
278
+ msgid "SQL Mode"
279
+ msgstr "Mode SQL"
280
+
281
+ # automatic translation
282
+ #: bws_menu/bws_menu.php:235
283
+ msgid "Active Plugins"
284
+ msgstr "Plugins actifs"
285
+
286
+ # automatic translation
287
+ #: bws_menu/bws_menu.php:240
288
+ msgid "Inactive Plugins"
289
+ msgstr "Plugins inactifs"
290
+
291
+ # automatic translation
292
+ #: bws_menu/bws_menu.php:261
293
+ msgid "Please enter a valid email address."
294
+ msgstr "S'il vous plaît, mettez une adresse email valide."
295
+
296
+ # automatic translation
297
+ #: bws_menu/bws_menu.php:263
298
+ #, php-format
299
+ msgid "Email with system info is sent to %s."
300
+ msgstr "Un e-mail contenant les informations système est envoyé à %s."
301
+
302
+ # automatic translation
303
+ #: bws_menu/bws_menu.php:267
304
+ msgid "Thank you for contacting us."
305
+ msgstr "Merci de nous contacter."
306
+
307
+ # automatic translation
308
+ #: bws_menu/bws_menu.php:290
309
+ msgid "Sorry, email message could not be delivered."
310
+ msgstr "Désolé, l'e-mail n'a pas pu être remis."
311
+
312
+ # automatic translation
313
+ #: bws_menu/bws_menu.php:306 bws_menu/bws_menu.php:310 bws_menu/bws_menu.php:359
314
+ msgid "Plugins"
315
+ msgstr "Plugins"
316
+
317
+ # automatic translation
318
+ #: bws_menu/bws_menu.php:307 bws_menu/bws_menu.php:311 bws_menu/bws_menu.php:587
319
+ msgid "Themes"
320
+ msgstr "Thèmes"
321
+
322
+ # automatic translation
323
+ #: bws_menu/bws_menu.php:308 bws_menu/bws_menu.php:312 bws_menu/bws_menu.php:617
324
+ msgid "System status"
325
+ msgstr "État du système"
326
+
327
+ # automatic translation
328
+ #: bws_menu/bws_menu.php:316 google-sitemap-plugin.php:1859
329
+ msgid "Support"
330
+ msgstr "Soutien"
331
+
332
+ # automatic translation
333
+ #: bws_menu/bws_menu.php:317
334
+ msgid "Manage purchased licenses & subscriptions"
335
+ msgstr "Gérer les licences achetées et les abonnements"
336
+
337
+ # automatic translation
338
+ #: bws_menu/bws_menu.php:325
339
+ #, php-format
340
+ msgid "Get Access to %s+ Premium Plugins"
341
+ msgstr "Accédez aux plugins %s+ Premium"
342
+
343
+ # automatic translation
344
+ #: bws_menu/bws_menu.php:327
345
+ msgid "Subscribe to Pro Membership"
346
+ msgstr "Abonnez-vous à l'adhésion Pro"
347
+
348
+ # automatic translation
349
+ #: bws_menu/bws_menu.php:327
350
+ msgid "or"
351
+ msgstr "ou"
352
+
353
+ # automatic translation
354
+ #: bws_menu/bws_menu.php:335 bws_menu/bws_menu.php:346
355
+ msgid "Check license key"
356
+ msgstr "Vérifier la clé de licence"
357
+
358
+ # automatic translation
359
+ #: bws_menu/bws_menu.php:338
360
+ msgid "Enter your license key"
361
+ msgstr "Entrez votre clé de licence"
362
+
363
+ # automatic translation
364
+ #: bws_menu/bws_menu.php:344 bws_menu/bws_menu.php:539 bws_menu/bws_menu.php:548
365
+ #: includes/class-gglstmp-settings.php:251 includes/class-gglstmp-settings.php:363
366
+ msgid "Activate"
367
+ msgstr "Activer"
368
+
369
+ # automatic translation
370
+ #: bws_menu/bws_menu.php:360
371
+ msgid "Upload Plugin"
372
+ msgstr "Télécharger le plugin"
373
+
374
+ # automatic translation
375
+ #: bws_menu/bws_menu.php:364
376
+ #, php-format
377
+ msgid ""
378
+ "The plugin generated %d characters of <strong>unexpected output</strong> during "
379
+ "activation. If you notice &#8220;headers already sent&#8221; messages, problems "
380
+ "with syndication feeds or other issues, try deactivating or removing this plugin."
381
+ msgstr ""
382
+ "Le plugin a généré %d caractères de <strong>sortie inattendue</strong> lors de "
383
+ "l&#39;activation. Si vous remarquez des messages « en-têtes déjà envoyés », des "
384
+ "problèmes avec les flux de syndication ou d&#39;autres problèmes, essayez de "
385
+ "désactiver ou de supprimer ce plugin."
386
+
387
+ # automatic translation
388
+ #: bws_menu/bws_menu.php:366
389
+ msgid ""
390
+ "Plugin could not be activated because it triggered a <strong>fatal error</strong>."
391
+ msgstr ""
392
+ "Le plugin n&#39;a pas pu être activé car il a déclenché une <strong>erreur fatale</"
393
+ "strong> ."
394
+
395
+ # automatic translation
396
+ #: bws_menu/bws_menu.php:369
397
+ msgid "Plugin <strong>activated</strong>."
398
+ msgstr "Plugin <strong>activé</strong> ."
399
+
400
+ # automatic translation
401
+ #: bws_menu/bws_menu.php:383
402
+ msgid "Download Pro Plugin"
403
+ msgstr "Télécharger le plugin Pro"
404
+
405
+ # automatic translation
406
+ #: bws_menu/bws_menu.php:385
407
+ msgid "Your Pro plugin is ready"
408
+ msgstr "Votre plugin Pro est prêt"
409
+
410
+ # automatic translation
411
+ #: bws_menu/bws_menu.php:387
412
+ msgid "Your plugin has been zipped, and now is ready to download."
413
+ msgstr "Votre plugin a été compressé et est maintenant prêt à être téléchargé."
414
+
415
+ # automatic translation
416
+ #: bws_menu/bws_menu.php:390
417
+ msgid "Download Now"
418
+ msgstr "Télécharger maintenant"
419
+
420
+ # automatic translation
421
+ #: bws_menu/bws_menu.php:394
422
+ msgid "Need help installing the plugin?"
423
+ msgstr "Besoin d'aide pour installer le plugin ?"
424
+
425
+ # automatic translation
426
+ #: bws_menu/bws_menu.php:396
427
+ msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
428
+ msgstr ""
429
+ "Comment installer le plugin WordPress depuis votre tableau de bord "
430
+ "d'administration (archive ZIP)"
431
+
432
+ # automatic translation
433
+ #: bws_menu/bws_menu.php:399
434
+ msgid "Get Started"
435
+ msgstr "Commencer"
436
+
437
+ # automatic translation
438
+ #: bws_menu/bws_menu.php:401
439
+ msgid "Documentation"
440
+ msgstr "Documentation"
441
+
442
+ # automatic translation
443
+ #: bws_menu/bws_menu.php:403
444
+ msgid "Video Instructions"
445
+ msgstr "Instructions vidéo"
446
+
447
+ # automatic translation
448
+ #: bws_menu/bws_menu.php:405
449
+ msgid "Knowledge Base"
450
+ msgstr "Base de connaissances"
451
+
452
+ # automatic translation
453
+ #: bws_menu/bws_menu.php:408
454
+ msgid "Licenses & Domains"
455
+ msgstr "Licences & Domaines"
456
+
457
+ # automatic translation
458
+ #: bws_menu/bws_menu.php:411
459
+ msgid "Client Area"
460
+ msgstr "Espace Client"
461
+
462
+ # automatic translation
463
+ #: bws_menu/bws_menu.php:413
464
+ msgid "Return to BestWebSoft Panel"
465
+ msgstr "Retour au panneau BestWebSoft"
466
+
467
+ # automatic translation
468
+ #: bws_menu/bws_menu.php:420 bws_menu/bws_menu.php:440 bws_menu/bws_menu.php:569
469
+ #: includes/pro_banners.php:91
470
+ msgid "All"
471
+ msgstr "Tous"
472
+
473
+ # automatic translation
474
+ #: bws_menu/bws_menu.php:423 bws_menu/bws_menu.php:606
475
+ msgid "Installed"
476
+ msgstr "installée"
477
+
478
+ # automatic translation
479
+ #: bws_menu/bws_menu.php:426
480
+ msgid "Not Installed"
481
+ msgstr "Pas installé"
482
+
483
+ # automatic translation
484
+ #: bws_menu/bws_menu.php:433
485
+ msgid "Filter results"
486
+ msgstr "Filtrer les résultats"
487
+
488
+ # automatic translation
489
+ #: bws_menu/bws_menu.php:436 bws_menu/bws_menu.php:565
490
+ msgid "Category"
491
+ msgstr "Catégorie"
492
+
493
+ # automatic translation
494
+ #: bws_menu/bws_menu.php:500
495
+ msgid "Not installed"
496
+ msgstr "Pas installé"
497
+
498
+ # automatic translation
499
+ #: bws_menu/bws_menu.php:504
500
+ msgid "Renew to get updates"
501
+ msgstr "Renouveler pour obtenir des mises à jour"
502
+
503
+ # automatic translation
504
+ #: bws_menu/bws_menu.php:507
505
+ #, php-format
506
+ msgid "Update to v %s"
507
+ msgstr "Mettre à jour vers v %s"
508
+
509
+ # automatic translation
510
+ #: bws_menu/bws_menu.php:519 bws_menu/bws_menu.php:542
511
+ msgid "Get Pro"
512
+ msgstr "Devenir pro"
513
+
514
+ # automatic translation
515
+ #: bws_menu/bws_menu.php:525 google-sitemap-plugin.php:74 includes/pro_banners.php:27
516
+ msgid "Upgrade to Pro"
517
+ msgstr "Passer à Pro"
518
+
519
+ # automatic translation
520
+ #: bws_menu/bws_menu.php:529
521
+ msgid "Donate"
522
+ msgstr "Faire un don"
523
+
524
+ # automatic translation
525
+ #: bws_menu/bws_menu.php:533 bws_menu/bws_menu.php:535 google-sitemap-plugin.php:48
526
+ #: google-sitemap-plugin.php:1369 google-sitemap-plugin.php:1842
527
+ #: google-sitemap-plugin.php:1856 includes/class-gglstmp-settings.php:27
528
+ msgid "Settings"
529
+ msgstr "Paramètres"
530
+
531
+ # automatic translation
532
+ #: bws_menu/bws_menu.php:539 bws_menu/bws_menu.php:548
533
+ msgid "Activate this plugin"
534
+ msgstr "Activer ce plugin"
535
+
536
+ # automatic translation
537
+ #: bws_menu/bws_menu.php:551
538
+ msgid "Install this plugin"
539
+ msgstr "Installer ce plugin"
540
+
541
+ # automatic translation
542
+ #: bws_menu/bws_menu.php:551 includes/class-gglstmp-settings.php:254
543
+ #: includes/class-gglstmp-settings.php:367
544
+ msgid "Install Now"
545
+ msgstr "Installer maintenant"
546
+
547
+ # automatic translation
548
+ #: bws_menu/bws_menu.php:560
549
+ msgid "Nothing found. Try another criteria."
550
+ msgstr "Rien n'a été trouvé. Essayez un autre critère."
551
+
552
+ # automatic translation
553
+ #: bws_menu/bws_menu.php:597
554
+ #, php-format
555
+ msgid "By %s"
556
+ msgstr "Par %s"
557
+
558
+ # automatic translation
559
+ #: bws_menu/bws_menu.php:600 google-sitemap-plugin.php:1477
560
+ #: google-sitemap-plugin.php:1495 google-sitemap-plugin.php:1585
561
+ #: google-sitemap-plugin.php:1624 google-sitemap-plugin.php:1654
562
+ #: google-sitemap-plugin.php:1694 includes/class-gglstmp-settings.php:298
563
+ #: includes/pro_banners.php:56 includes/pro_banners.php:126
564
+ msgid "Learn More"
565
+ msgstr "Apprendre encore plus"
566
+
567
+ # automatic translation
568
+ #: bws_menu/bws_menu.php:604
569
+ msgid "Already Installed"
570
+ msgstr "Déjà installé"
571
+
572
+ # automatic translation
573
+ #: bws_menu/bws_menu.php:614
574
+ msgid "Browse More WordPress Themes"
575
+ msgstr "Parcourir plus de thèmes WordPress"
576
+
577
+ # automatic translation
578
+ #: bws_menu/bws_menu.php:623
579
+ msgid "Send to support"
580
+ msgstr "Envoyer au support"
581
+
582
+ # automatic translation
583
+ #: bws_menu/bws_menu.php:630
584
+ msgid "Send to custom email &#187;"
585
+ msgstr "Envoyer à un e-mail personnalisé &#187;"
586
+
587
+ # automatic translation
588
+ #: bws_menu/deactivation-form.php:22
589
+ msgid "Need help? We are ready to answer your questions."
590
+ msgstr "Besoin d'aide? Nous sommes prêts à répondre à vos questions."
591
+
592
+ # automatic translation
593
+ #: bws_menu/deactivation-form.php:22
594
+ msgid "Contact Support"
595
+ msgstr "Contactez le support"
596
+
597
+ # automatic translation
598
+ #: bws_menu/deactivation-form.php:27
599
+ msgid "The plugin is not working"
600
+ msgstr "Le plugin ne fonctionne pas"
601
+
602
+ # automatic translation
603
+ #: bws_menu/deactivation-form.php:29
604
+ msgid "Kindly share what didn't work so we can fix it in future updates..."
605
+ msgstr ""
606
+ "Veuillez partager ce qui n'a pas fonctionné afin que nous puissions le corriger "
607
+ "dans les futures mises à jour..."
608
+
609
+ # automatic translation
610
+ #: bws_menu/deactivation-form.php:33
611
+ msgid "The plugin didn't work as expected"
612
+ msgstr "Le plugin n'a pas fonctionné comme prévu"
613
+
614
+ # automatic translation
615
+ #: bws_menu/deactivation-form.php:35
616
+ msgid "What did you expect?"
617
+ msgstr "Qu'est-ce que vous attendiez?"
618
+
619
+ # automatic translation
620
+ #: bws_menu/deactivation-form.php:39
621
+ msgid "The plugin suddenly stopped working"
622
+ msgstr "Le plugin a soudainement cessé de fonctionner"
623
+
624
+ # automatic translation
625
+ #: bws_menu/deactivation-form.php:46
626
+ msgid "The plugin broke my site"
627
+ msgstr "Le plugin a cassé mon site"
628
+
629
+ # automatic translation
630
+ #: bws_menu/deactivation-form.php:53
631
+ msgid "I couldn't understand how to get it work"
632
+ msgstr "Je ne pouvais pas comprendre comment le faire fonctionner"
633
+
634
+ # automatic translation
635
+ #: bws_menu/deactivation-form.php:60
636
+ msgid "I found a better plugin"
637
+ msgstr "J'ai trouvé un meilleur plugin"
638
+
639
+ # automatic translation
640
+ #: bws_menu/deactivation-form.php:62
641
+ msgid "What's the plugin name?"
642
+ msgstr "Quel est le nom du plugin ?"
643
+
644
+ # automatic translation
645
+ #: bws_menu/deactivation-form.php:66
646
+ msgid "The plugin is great, but I need specific feature that you don't support"
647
+ msgstr ""
648
+ "Le plugin est génial, mais j'ai besoin d'une fonctionnalité spécifique que vous ne "
649
+ "supportez pas"
650
+
651
+ # automatic translation
652
+ #: bws_menu/deactivation-form.php:68
653
+ msgid "What feature?"
654
+ msgstr "Quelle fonctionnalité ?"
655
+
656
+ # automatic translation
657
+ #: bws_menu/deactivation-form.php:72
658
+ msgid "I no longer need the plugin"
659
+ msgstr "je n'ai plus besoin du plugin"
660
+
661
+ # automatic translation
662
+ #: bws_menu/deactivation-form.php:78
663
+ msgid "It's a temporary deactivation, I'm just debugging an issue"
664
+ msgstr "C'est une désactivation temporaire, je débogue juste un problème"
665
+
666
+ # automatic translation
667
+ #: bws_menu/deactivation-form.php:84
668
+ msgid "Other"
669
+ msgstr "Autre"
670
+
671
+ # automatic translation
672
+ #: bws_menu/deactivation-form.php:93
673
+ msgid "Quick Feedback"
674
+ msgstr "Commentaires rapides"
675
+
676
+ # automatic translation
677
+ #: bws_menu/deactivation-form.php:95
678
+ msgid "If you have a moment, please let us know why you are deactivating"
679
+ msgstr "Si vous avez un moment, veuillez nous faire savoir pourquoi vous désactivez"
680
+
681
+ # automatic translation
682
+ #: bws_menu/deactivation-form.php:120
683
+ msgid "Send website data and allow to contact me back"
684
+ msgstr "Envoyer les données du site Web et permettre de me recontacter"
685
+
686
+ # automatic translation
687
+ #: bws_menu/deactivation-form.php:125
688
+ msgid "Submit and Deactivate"
689
+ msgstr "Soumettre et désactiver"
690
+
691
+ # automatic translation
692
+ #: bws_menu/deactivation-form.php:126
693
+ msgid "Skip and Deactivate"
694
+ msgstr "Ignorer et désactiver"
695
+
696
+ # automatic translation
697
+ #: bws_menu/deactivation-form.php:127
698
+ msgid "Processing"
699
+ msgstr "Traitement"
700
+
701
+ # automatic translation
702
+ #: bws_menu/deactivation-form.php:272
703
+ msgid "Please tell us the reason so we can improve it."
704
+ msgstr "S'il vous plaît dites-nous la raison afin que nous puissions l'améliorer."
705
+
706
+ # automatic translation
707
+ #: bws_menu/product_list.php:8
708
+ msgid "Admin Tools"
709
+ msgstr "Outils d'administration"
710
+
711
+ # automatic translation
712
+ #: bws_menu/product_list.php:9
713
+ msgid "Content"
714
+ msgstr "Teneur"
715
+
716
+ # automatic translation
717
+ #: bws_menu/product_list.php:10
718
+ msgid "eCommerce"
719
+ msgstr "commerce électronique"
720
+
721
+ # automatic translation
722
+ #: bws_menu/product_list.php:11
723
+ msgid "Marketing"
724
+ msgstr "Commercialisation"
725
+
726
+ # automatic translation
727
+ #: bws_menu/product_list.php:12
728
+ msgid "Navigation"
729
+ msgstr "La navigation"
730
+
731
+ # automatic translation
732
+ #: bws_menu/product_list.php:13
733
+ msgid "Recommended"
734
+ msgstr "conseillé"
735
+
736
+ # automatic translation
737
+ #: bws_menu/product_list.php:14
738
+ msgid "Security"
739
+ msgstr "Sécurité"
740
+
741
+ # automatic translation
742
+ #: bws_menu/product_list.php:15
743
+ msgid "SEO"
744
+ msgstr "Référencement"
745
+
746
+ # automatic translation
747
+ #: bws_menu/product_list.php:16
748
+ msgid "SMM"
749
+ msgstr "SMM"
750
+
751
+ # automatic translation
752
+ #: bws_menu/product_list.php:23
753
+ msgid "Give a birth for your bike rental and booking WordPress website."
754
+ msgstr ""
755
+ "Donnez naissance à votre site WordPress de location et de réservation de vélos."
756
+
757
+ # automatic translation
758
+ #: bws_menu/product_list.php:35
759
+ msgid "Best secure captcha plugin to protect your WordPress forms."
760
+ msgstr "Meilleur plugin captcha sécurisé pour protéger vos formulaires WordPress."
761
+
762
+ # automatic translation
763
+ #: bws_menu/product_list.php:45
764
+ msgid "Create your own rental website for car renting and booking."
765
+ msgstr ""
766
+ "Créez votre propre site Web de location pour la location et la réservation de "
767
+ "voitures."
768
+
769
+ # automatic translation
770
+ #: bws_menu/product_list.php:57
771
+ msgid ""
772
+ "Add columns with custom content to WordPress website pages, posts, widgets, etc."
773
+ msgstr ""
774
+ "Ajoutez des colonnes avec un contenu personnalisé aux pages du site Web WordPress, "
775
+ "aux publications, aux widgets, etc."
776
+
777
+ # automatic translation
778
+ #: bws_menu/product_list.php:64
779
+ msgid ""
780
+ "Allow customers to reach you using secure contact form plugin any website must "
781
+ "have."
782
+ msgstr ""
783
+ "Permettez aux clients de vous joindre à l'aide du plug-in de formulaire de contact "
784
+ "sécurisé que tout site Web doit avoir."
785
+
786
+ # automatic translation
787
+ #: bws_menu/product_list.php:74
788
+ msgid "Add unlimited number of contact forms to WordPress website."
789
+ msgstr "Ajoutez un nombre illimité de formulaires de contact au site Web WordPress."
790
+
791
+ # automatic translation
792
+ #: bws_menu/product_list.php:84
793
+ msgid "Save and manage Contact Form messages. Never lose important data."
794
+ msgstr ""
795
+ "Enregistrez et gérez les messages du formulaire de contact. Ne perdez jamais de "
796
+ "données importantes."
797
+
798
+ # automatic translation
799
+ #: bws_menu/product_list.php:94
800
+ msgid "Add unlimited custom pages to WordPress admin dashboard."
801
+ msgstr ""
802
+ "Ajoutez un nombre illimité de pages personnalisées au tableau de bord "
803
+ "d'administration WordPress."
804
+
805
+ # automatic translation
806
+ #: bws_menu/product_list.php:104
807
+ msgid "Add custom post types and taxonomies to WordPress website search results."
808
+ msgstr ""
809
+ "Ajoutez des types de publication et des taxonomies personnalisés aux résultats de "
810
+ "recherche de sites Web WordPress."
811
+
812
+ # automatic translation
813
+ #: bws_menu/product_list.php:114
814
+ msgid "Add PayPal and 2CO donate buttons to receive charity payments."
815
+ msgstr ""
816
+ "Ajoutez des boutons de don PayPal et 2CO pour recevoir des paiements caritatifs."
817
+
818
+ # automatic translation
819
+ #: bws_menu/product_list.php:121
820
+ msgid ""
821
+ "Get latest error log messages to diagnose website problems. Define and fix issues "
822
+ "faster."
823
+ msgstr ""
824
+ "Obtenez les derniers messages du journal d'erreurs pour diagnostiquer les "
825
+ "problèmes de site Web. Définissez et corrigez les problèmes plus rapidement."
826
+
827
+ # automatic translation
828
+ #: bws_menu/product_list.php:128
829
+ msgid ""
830
+ "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
831
+ "widgets."
832
+ msgstr ""
833
+ "Ajoutez des boutons Facebook Follow, Like et Share aux publications, pages et "
834
+ "widgets WordPress."
835
+
836
+ # automatic translation
837
+ #: bws_menu/product_list.php:138
838
+ msgid ""
839
+ "Add beautiful galleries, albums & images to your WordPress website in a few clicks."
840
+ msgstr ""
841
+ "Ajoutez de belles galeries, albums et images à votre site WordPress en quelques "
842
+ "clics."
843
+
844
+ # automatic translation
845
+ #: bws_menu/product_list.php:148
846
+ msgid ""
847
+ "Stronger security solution which protects your WordPress website from hacks and "
848
+ "unauthorized login attempts."
849
+ msgstr ""
850
+ "Une solution de sécurité renforcée qui protège votre site WordPress contre les "
851
+ "piratages et les tentatives de connexion non autorisées."
852
+
853
+ # automatic translation
854
+ #: bws_menu/product_list.php:158
855
+ msgid ""
856
+ "Add Adsense ads to WordPress website pages, posts, custom posts, search results, "
857
+ "categories, tags, and widgets."
858
+ msgstr ""
859
+ "Ajoutez des publicités Adsense aux pages de sites Web WordPress, aux publications, "
860
+ "aux publications personnalisées, aux résultats de recherche, aux catégories, aux "
861
+ "balises et aux widgets."
862
+
863
+ # automatic translation
864
+ #: bws_menu/product_list.php:168
865
+ msgid "Add Google Analytics code to WordPress website and track basic stats."
866
+ msgstr ""
867
+ "Ajoutez le code Google Analytics au site Web WordPress et suivez les statistiques "
868
+ "de base."
869
+
870
+ # automatic translation
871
+ #: bws_menu/product_list.php:178
872
+ msgid "Protect WordPress website forms from spam entries with reCaptcha."
873
+ msgstr ""
874
+ "Protégez les formulaires de sites Web WordPress des entrées de spam avec reCaptcha."
875
+
876
+ # automatic translation
877
+ #: bws_menu/product_list.php:188
878
+ msgid "Add customized Google maps to WordPress posts, pages and widgets."
879
+ msgstr ""
880
+ "Ajoutez des cartes Google personnalisées aux articles, pages et widgets WordPress."
881
+
882
+ # automatic translation
883
+ #. Description of the plugin/theme
884
+ #: bws_menu/product_list.php:198
885
+ msgid ""
886
+ "Generate and add XML sitemap to WordPress website. Help search engines index your "
887
+ "blog."
888
+ msgstr ""
889
+ "Générez et ajoutez un plan de site XML au site Web WordPress. Aidez les moteurs de "
890
+ "recherche à indexer votre blog."
891
+
892
+ # automatic translation
893
+ #: bws_menu/product_list.php:208
894
+ msgid ""
895
+ "Replace external WordPress website links with Google shortlinks and track click "
896
+ "stats."
897
+ msgstr ""
898
+ "Remplacez les liens de sites Web WordPress externes par des liens courts Google et "
899
+ "suivez les statistiques de clics."
900
+
901
+ # automatic translation
902
+ #: bws_menu/product_list.php:215
903
+ msgid ""
904
+ "Protect WordPress website – allow and deny access for certain IP addresses, "
905
+ "hostnames, etc."
906
+ msgstr ""
907
+ "Protégez le site Web WordPress – autorisez et refusez l'accès à certaines adresses "
908
+ "IP, noms d'hôtes, etc."
909
+
910
+ # automatic translation
911
+ #: bws_menu/product_list.php:225
912
+ msgid ""
913
+ "Create your personal job board and listing WordPress website. Search jobs, submit "
914
+ "CV/resumes, choose candidates."
915
+ msgstr ""
916
+ "Créez votre site d'emploi personnel et votre site Web WordPress. Rechercher des "
917
+ "emplois, soumettre des CV/CV, choisir des candidats."
918
+
919
+ # automatic translation
920
+ #: bws_menu/product_list.php:232
921
+ msgid ""
922
+ "Protect WordPress website against brute force attacks. Limit rate of login "
923
+ "attempts."
924
+ msgstr ""
925
+ "Protégez le site Web WordPress contre les attaques par force brute. Limiter le "
926
+ "taux de tentatives de connexion."
927
+
928
+ # automatic translation
929
+ #: bws_menu/product_list.php:242
930
+ msgid ""
931
+ "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. 5 "
932
+ "plugins included – profile, insider, etc."
933
+ msgstr ""
934
+ "Ajoutez des boutons LinkedIn Share et Follow aux publications, pages et widgets "
935
+ "WordPress. 5 plugins inclus – profil, initié, etc."
936
+
937
+ # automatic translation
938
+ #: bws_menu/product_list.php:252
939
+ msgid ""
940
+ "Translate WordPress website content to other languages manually. Create "
941
+ "multilingual pages, posts, widgets, menus, etc."
942
+ msgstr ""
943
+ "Traduisez manuellement le contenu du site Web WordPress dans d'autres langues. "
944
+ "Créez des pages multilingues, des articles, des widgets, des menus, etc."
945
+
946
+ # automatic translation
947
+ #: bws_menu/product_list.php:262
948
+ msgid ""
949
+ "Add customizable pagination to WordPress website. Split long content to multiple "
950
+ "pages for better navigation."
951
+ msgstr ""
952
+ "Ajoutez une pagination personnalisable au site Web WordPress. Divisez le contenu "
953
+ "long en plusieurs pages pour une meilleure navigation."
954
+
955
+ # automatic translation
956
+ #: bws_menu/product_list.php:272
957
+ msgid ""
958
+ "Generate PDF files and print WordPress posts/pages. Customize document header/"
959
+ "footer styles and appearance."
960
+ msgstr ""
961
+ "Générez des fichiers PDF et imprimez des articles/pages WordPress. Personnalisez "
962
+ "les styles et l'apparence de l'en-tête/pied de page du document."
963
+
964
+ # automatic translation
965
+ #: bws_menu/product_list.php:282
966
+ msgid ""
967
+ "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, Profile) to "
968
+ "WordPress posts, pages and widgets."
969
+ msgstr ""
970
+ "Ajoutez des boutons Pinterest Follow, Pin It et des widgets de profil (Pin, Board, "
971
+ "Profile) aux publications, pages et widgets WordPress."
972
+
973
+ # automatic translation
974
+ #: bws_menu/product_list.php:292
975
+ msgid ""
976
+ "Create your personal portfolio WordPress website. Manage and showcase past "
977
+ "projects to get more clients."
978
+ msgstr ""
979
+ "Créez votre site Web WordPress de portfolio personnel. Gérez et présentez les "
980
+ "projets passés pour obtenir plus de clients."
981
+
982
+ # automatic translation
983
+ #: bws_menu/product_list.php:302
984
+ msgid "Export WordPress posts to CSV file format easily. Configure data order."
985
+ msgstr ""
986
+ "Exportez facilement les publications WordPress au format de fichier CSV. "
987
+ "Configurer l'ordre des données."
988
+
989
+ # automatic translation
990
+ #: bws_menu/product_list.php:312
991
+ msgid ""
992
+ "Add extra fields to default WordPress user profile. The easiest way to create and "
993
+ "manage additional custom values."
994
+ msgstr ""
995
+ "Ajoutez des champs supplémentaires au profil d'utilisateur WordPress par défaut. "
996
+ "Le moyen le plus simple de créer et de gérer des valeurs personnalisées "
997
+ "supplémentaires."
998
+
999
+ # automatic translation
1000
+ #: bws_menu/product_list.php:322
1001
+ msgid ""
1002
+ "Add and display HTML advertisement banner on WordPress website. Customize bar "
1003
+ "styles and appearance."
1004
+ msgstr ""
1005
+ "Ajoutez et affichez une bannière publicitaire HTML sur le site Web WordPress. "
1006
+ "Personnalisez les styles et l'apparence des barres."
1007
+
1008
+ # automatic translation
1009
+ #: bws_menu/product_list.php:332
1010
+ msgid ""
1011
+ "Add customizable quotes and tips blocks to WordPress posts, pages and widgets."
1012
+ msgstr ""
1013
+ "Ajoutez des blocs de citations et de conseils personnalisables aux articles, pages "
1014
+ "et widgets WordPress."
1015
+
1016
+ # automatic translation
1017
+ #: bws_menu/product_list.php:339
1018
+ msgid ""
1019
+ "Add rating plugin to your WordPress website to receive feedback from your "
1020
+ "customers."
1021
+ msgstr ""
1022
+ "Ajoutez un plugin de notation à votre site WordPress pour recevoir les "
1023
+ "commentaires de vos clients."
1024
+
1025
+ # automatic translation
1026
+ #: bws_menu/product_list.php:349
1027
+ msgid ""
1028
+ "Create your personal real estate WordPress website. Sell, rent and buy properties. "
1029
+ "Add, search and browse listings easily."
1030
+ msgstr ""
1031
+ "Créez votre site WordPress immobilier personnel. Vendre, louer et acheter des "
1032
+ "propriétés. Ajoutez, recherchez et parcourez facilement les annonces."
1033
+
1034
+ # automatic translation
1035
+ #: bws_menu/product_list.php:359
1036
+ msgid ""
1037
+ "Add related, featured, latest, and popular posts to your WordPress website. "
1038
+ "Connect your blog readers with a relevant content."
1039
+ msgstr ""
1040
+ "Ajoutez des articles connexes, en vedette, les plus récents et les plus populaires "
1041
+ "à votre site Web WordPress. Connectez les lecteurs de votre blog avec un contenu "
1042
+ "pertinent."
1043
+
1044
+ # automatic translation
1045
+ #: bws_menu/product_list.php:366
1046
+ msgid ""
1047
+ "Send bulk email messages to WordPress users. Custom templates, advanced settings "
1048
+ "and detailed reports."
1049
+ msgstr ""
1050
+ "Envoyez des e-mails en masse aux utilisateurs de WordPress. Modèles personnalisés, "
1051
+ "paramètres avancés et rapports détaillés."
1052
+
1053
+ # automatic translation
1054
+ #: bws_menu/product_list.php:376
1055
+ msgid ""
1056
+ "The best responsive slider plugin for your WordPress website. Create beautifully "
1057
+ "animated slides just in a few clicks."
1058
+ msgstr ""
1059
+ "Le meilleur plugin de curseur réactif pour votre site Web WordPress. Créez des "
1060
+ "diapositives magnifiquement animées en quelques clics."
1061
+
1062
+ # automatic translation
1063
+ #: bws_menu/product_list.php:383
1064
+ msgid ""
1065
+ "Configure SMTP server to receive email messages from WordPress to Gmail, Yahoo, "
1066
+ "Hotmail and other services."
1067
+ msgstr ""
1068
+ "Configurez le serveur SMTP pour recevoir des e-mails de WordPress vers Gmail, "
1069
+ "Yahoo, Hotmail et d'autres services."
1070
+
1071
+ # automatic translation
1072
+ #: bws_menu/product_list.php:390
1073
+ msgid ""
1074
+ "Add social media buttons and widgets to WordPress posts, pages and widgets. FB, "
1075
+ "Twitter, Pinterest, LinkedIn."
1076
+ msgstr ""
1077
+ "Ajoutez des boutons et des widgets de réseaux sociaux aux publications, pages et "
1078
+ "widgets WordPress. Facebook, Twitter, Pinterest, LinkedIn."
1079
+
1080
+ # automatic translation
1081
+ #: bws_menu/product_list.php:400
1082
+ msgid ""
1083
+ "Add social media login, registration, and commenting to your WordPress website."
1084
+ msgstr ""
1085
+ "Ajoutez une connexion aux réseaux sociaux, une inscription et des commentaires à "
1086
+ "votre site Web WordPress."
1087
+
1088
+ # automatic translation
1089
+ #: bws_menu/product_list.php:407
1090
+ msgid ""
1091
+ "Add email newsletter sign up form to WordPress posts, pages and widgets. Collect "
1092
+ "data and subscribe your users."
1093
+ msgstr ""
1094
+ "Ajoutez un formulaire d'inscription à la newsletter par e-mail aux articles, pages "
1095
+ "et widgets WordPress. Collectez des données et abonnez vos utilisateurs."
1096
+
1097
+ # automatic translation
1098
+ #: bws_menu/product_list.php:417
1099
+ msgid ""
1100
+ "Add testimonials and feedbacks from your customers to WordPress website posts, "
1101
+ "pages, and widgets."
1102
+ msgstr ""
1103
+ "Ajoutez des témoignages et des commentaires de vos clients aux publications, pages "
1104
+ "et widgets du site Web WordPress."
1105
+
1106
+ # automatic translation
1107
+ #: bws_menu/product_list.php:424
1108
+ msgid ""
1109
+ "Best timesheet plugin for WordPress. Track employee time, streamline attendance "
1110
+ "and generate reports."
1111
+ msgstr ""
1112
+ "Meilleur plugin de feuille de temps pour WordPress. Suivez le temps des employés, "
1113
+ "rationalisez les présences et générez des rapports."
1114
+
1115
+ # automatic translation
1116
+ #: bws_menu/product_list.php:434
1117
+ msgid ""
1118
+ "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts and "
1119
+ "pages."
1120
+ msgstr ""
1121
+ "Ajoutez des boutons Twitter Follow, Tweet, Hashtag et Mention aux publications et "
1122
+ "pages WordPress."
1123
+
1124
+ # automatic translation
1125
+ #: bws_menu/product_list.php:444
1126
+ msgid ""
1127
+ "Automatically check and update WordPress website core with all installed plugins "
1128
+ "and themes to the latest versions."
1129
+ msgstr ""
1130
+ "Vérifiez et mettez à jour automatiquement le noyau du site Web WordPress avec tous "
1131
+ "les plugins et thèmes installés vers les dernières versions."
1132
+
1133
+ # automatic translation
1134
+ #: bws_menu/product_list.php:454
1135
+ msgid ""
1136
+ "Powerful user role management plugin for WordPress website. Create, edit, copy, "
1137
+ "and delete user roles."
1138
+ msgstr ""
1139
+ "Puissant plug-in de gestion des rôles d'utilisateur pour le site Web WordPress. "
1140
+ "Créez, modifiez, copiez et supprimez des rôles d'utilisateur."
1141
+
1142
+ # automatic translation
1143
+ #: bws_menu/product_list.php:464
1144
+ msgid ""
1145
+ "Display live count of online visitors who are currently browsing your WordPress "
1146
+ "website."
1147
+ msgstr ""
1148
+ "Affichez le nombre en direct de visiteurs en ligne qui naviguent actuellement sur "
1149
+ "votre site Web WordPress."
1150
+
1151
+ # automatic translation
1152
+ #: bws_menu/product_list.php:474
1153
+ msgid ""
1154
+ "Backup and export Zendesk Help Center content automatically to your WordPress "
1155
+ "website database."
1156
+ msgstr ""
1157
+ "Sauvegardez et exportez automatiquement le contenu du centre d'aide Zendesk vers "
1158
+ "la base de données de votre site Web WordPress."
1159
+
1160
+ # automatic translation
1161
+ #: google-sitemap-plugin.php:37 google-sitemap-plugin.php:47
1162
+ #: includes/class-gglstmp-settings.php:216
1163
+ msgid "Sitemap Settings"
1164
+ msgstr "Paramètres du plan du site"
1165
+
1166
+ # automatic translation
1167
+ #: google-sitemap-plugin.php:55 google-sitemap-plugin.php:56
1168
+ #: google-sitemap-plugin.php:1377
1169
+ msgid "Custom Links"
1170
+ msgstr "Liens personnalisés"
1171
+
1172
+ # automatic translation
1173
+ #: google-sitemap-plugin.php:389
1174
+ msgid "Post categories"
1175
+ msgstr "Catégories de messages"
1176
+
1177
+ # automatic translation
1178
+ #: google-sitemap-plugin.php:390
1179
+ msgid "Post tags"
1180
+ msgstr "Balises de publication"
1181
+
1182
+ # automatic translation
1183
+ #: google-sitemap-plugin.php:1371
1184
+ msgid "Please enable JavaScript in your browser."
1185
+ msgstr "Veuillez activer JavaScript dans votre navigateur."
1186
+
1187
+ # automatic translation
1188
+ #: google-sitemap-plugin.php:1378
1189
+ msgid "Add New"
1190
+ msgstr "Ajouter un nouveau"
1191
+
1192
+ # automatic translation
1193
+ #: google-sitemap-plugin.php:1422 google-sitemap-plugin.php:1509
1194
+ #: google-sitemap-plugin.php:1562
1195
+ msgid "Website"
1196
+ msgstr "Site Internet"
1197
+
1198
+ # automatic translation
1199
+ #: google-sitemap-plugin.php:1433 google-sitemap-plugin.php:1437
1200
+ #: google-sitemap-plugin.php:1526 google-sitemap-plugin.php:1542
1201
+ #: google-sitemap-plugin.php:1566 google-sitemap-plugin.php:1580
1202
+ msgid "Status"
1203
+ msgstr "Statut"
1204
+
1205
+ # automatic translation
1206
+ #: google-sitemap-plugin.php:1434 google-sitemap-plugin.php:1466
1207
+ #: google-sitemap-plugin.php:1543
1208
+ msgid "Not added"
1209
+ msgstr "Pas ajouté"
1210
+
1211
+ # automatic translation
1212
+ #: google-sitemap-plugin.php:1438 google-sitemap-plugin.php:1469
1213
+ #: google-sitemap-plugin.php:1567 google-sitemap-plugin.php:1678
1214
+ msgid "Added"
1215
+ msgstr "Ajoutée"
1216
+
1217
+ # automatic translation
1218
+ #: google-sitemap-plugin.php:1440 google-sitemap-plugin.php:1623
1219
+ #: google-sitemap-plugin.php:1635 google-sitemap-plugin.php:1649
1220
+ msgid "Verification Status"
1221
+ msgstr "Statut de vérification"
1222
+
1223
+ # automatic translation
1224
+ #: google-sitemap-plugin.php:1442 google-sitemap-plugin.php:1636
1225
+ msgid "Verified"
1226
+ msgstr "Vérifié"
1227
+
1228
+ # automatic translation
1229
+ #: google-sitemap-plugin.php:1444
1230
+ msgid "Not verified"
1231
+ msgstr "non vérifié"
1232
+
1233
+ # automatic translation
1234
+ #: google-sitemap-plugin.php:1453 google-sitemap-plugin.php:1657
1235
+ msgid "Sitemap Status"
1236
+ msgstr "État du plan du site"
1237
+
1238
+ # automatic translation
1239
+ #: google-sitemap-plugin.php:1471
1240
+ msgid "Added with errors."
1241
+ msgstr "Ajouté avec des erreurs."
1242
+
1243
+ # automatic translation
1244
+ #: google-sitemap-plugin.php:1471
1245
+ msgid "View errors in Google Webmaster Tools"
1246
+ msgstr "Afficher les erreurs dans les outils Google pour les webmasters"
1247
+
1248
+ # automatic translation
1249
+ #: google-sitemap-plugin.php:1474
1250
+ msgid "Sitemap URL"
1251
+ msgstr "URL du plan du site"
1252
+
1253
+ # automatic translation
1254
+ #: google-sitemap-plugin.php:1477 google-sitemap-plugin.php:1493
1255
+ #: google-sitemap-plugin.php:1545 google-sitemap-plugin.php:1582
1256
+ #: google-sitemap-plugin.php:1620 google-sitemap-plugin.php:1651
1257
+ #: google-sitemap-plugin.php:1691 google-sitemap-plugin.php:1711
1258
+ #: includes/class-gglstmp-settings.php:509
1259
+ msgid "Error"
1260
+ msgstr "Erreur"
1261
+
1262
+ # automatic translation
1263
+ #: google-sitemap-plugin.php:1477
1264
+ msgid "Please check the sitemap file manually."
1265
+ msgstr "Veuillez vérifier le fichier plan du site manuellement."
1266
+
1267
+ # automatic translation
1268
+ #: google-sitemap-plugin.php:1482 google-sitemap-plugin.php:1533
1269
+ #: google-sitemap-plugin.php:1570 google-sitemap-plugin.php:1608
1270
+ #: google-sitemap-plugin.php:1639 google-sitemap-plugin.php:1681
1271
+ msgid "Unexpected error"
1272
+ msgstr "Erreur inattendue"
1273
+
1274
+ # automatic translation
1275
+ #: google-sitemap-plugin.php:1495 google-sitemap-plugin.php:1585
1276
+ #: google-sitemap-plugin.php:1654
1277
+ msgid "Manual verification required."
1278
+ msgstr "Vérification manuelle requise."
1279
+
1280
+ # automatic translation
1281
+ #: google-sitemap-plugin.php:1527
1282
+ msgid "Deleted"
1283
+ msgstr "Supprimé"
1284
+
1285
+ # automatic translation
1286
+ #: google-sitemap-plugin.php:1600 google-sitemap-plugin.php:1603
1287
+ #: google-sitemap-plugin.php:1619
1288
+ msgid "Verification Code"
1289
+ msgstr "Le code de vérification"
1290
+
1291
+ # automatic translation
1292
+ #: google-sitemap-plugin.php:1601
1293
+ msgid "Received and added to the site"
1294
+ msgstr "Reçu et ajouté au site"
1295
+
1296
+ # automatic translation
1297
+ #: google-sitemap-plugin.php:1604
1298
+ msgid "Received, but has not been added to the site"
1299
+ msgstr "Reçu, mais n'a pas été ajouté au site"
1300
+
1301
+ # automatic translation
1302
+ #: google-sitemap-plugin.php:1694
1303
+ msgid "Please add the sitemap file manually."
1304
+ msgstr "Veuillez ajouter le fichier sitemap manuellement."
1305
+
1306
+ # automatic translation
1307
+ #: google-sitemap-plugin.php:1699
1308
+ msgid "Error 404"
1309
+ msgstr "Erreur 404"
1310
+
1311
+ # automatic translation
1312
+ #: google-sitemap-plugin.php:1701
1313
+ #, php-format
1314
+ msgid "The sitemap file %s not found."
1315
+ msgstr "Le fichier de plan de site %s est introuvable."
1316
+
1317
+ # automatic translation
1318
+ #: google-sitemap-plugin.php:1711
1319
+ msgid "The sitemap file not found."
1320
+ msgstr "Le fichier de plan du site est introuvable."
1321
+
1322
+ # automatic translation
1323
+ #: google-sitemap-plugin.php:1794 google-sitemap-plugin.php:1803
1324
+ msgid "Sitemap plugin"
1325
+ msgstr "Plugin de plan de site"
1326
+
1327
+ # automatic translation
1328
+ #: google-sitemap-plugin.php:1827
1329
+ msgid "Canonical Url"
1330
+ msgstr "URL canonique"
1331
+
1332
+ # automatic translation
1333
+ #: google-sitemap-plugin.php:1858
1334
+ msgid "FAQ"
1335
+ msgstr "FAQ"
1336
+
1337
+ # automatic translation
1338
+ #: includes/class-gglstmp-settings.php:28
1339
+ msgid "Structure"
1340
+ msgstr "Structure"
1341
+
1342
+ # automatic translation
1343
+ #: includes/class-gglstmp-settings.php:29
1344
+ msgid "Misc"
1345
+ msgstr "Divers"
1346
+
1347
+ # automatic translation
1348
+ #: includes/class-gglstmp-settings.php:31
1349
+ msgid "License Key"
1350
+ msgstr "Clé de licence"
1351
+
1352
+ # automatic translation
1353
+ #: includes/class-gglstmp-settings.php:93
1354
+ msgid "Post category"
1355
+ msgstr "Catégorie de poste"
1356
+
1357
+ # automatic translation
1358
+ #: includes/class-gglstmp-settings.php:94
1359
+ msgid "Post tag"
1360
+ msgstr "Jour de la poste"
1361
+
1362
+ # automatic translation
1363
+ #: includes/class-gglstmp-settings.php:206
1364
+ msgid "Settings saved."
1365
+ msgstr "Paramètres sauvegardés."
1366
+
1367
+ # automatic translation
1368
+ #: includes/class-gglstmp-settings.php:240
1369
+ msgid "Media Sitemap"
1370
+ msgstr "Plan du site pour les médias"
1371
+
1372
+ # automatic translation
1373
+ #: includes/class-gglstmp-settings.php:243
1374
+ msgid "Enable to create separate sitemap files for images and videos."
1375
+ msgstr ""
1376
+ "Activer pour créer des fichiers de plan de site distincts pour les images et les "
1377
+ "vidéos."
1378
+
1379
+ # automatic translation
1380
+ #: includes/class-gglstmp-settings.php:248
1381
+ msgid "This option will be applied to all websites in the network."
1382
+ msgstr "Cette option sera appliquée à tous les sites Web du réseau."
1383
+
1384
+ # automatic translation
1385
+ #: includes/class-gglstmp-settings.php:260
1386
+ #, php-format
1387
+ msgid "%s Plugin"
1388
+ msgstr "Plugin %s"
1389
+
1390
+ # automatic translation
1391
+ #: includes/class-gglstmp-settings.php:265
1392
+ #, php-format
1393
+ msgid "Enable to allow XML files access using %s plugin."
1394
+ msgstr "Activez pour autoriser l'accès aux fichiers XML à l'aide du plug-in %s."
1395
+
1396
+ # automatic translation
1397
+ #: includes/class-gglstmp-settings.php:266
1398
+ msgid "The following string will be added to your .htaccess file"
1399
+ msgstr "La chaîne suivante sera ajoutée à votre fichier .htaccess"
1400
+
1401
+ # automatic translation
1402
+ #: includes/class-gglstmp-settings.php:278 includes/class-gglstmp-settings.php:422
1403
+ #: includes/pro_banners.php:21
1404
+ msgid "Close"
1405
+ msgstr "proche"
1406
+
1407
+ # automatic translation
1408
+ #: includes/class-gglstmp-settings.php:290
1409
+ msgid "URLs Limit"
1410
+ msgstr "Limite d'URL"
1411
+
1412
+ # automatic translation
1413
+ #: includes/class-gglstmp-settings.php:295
1414
+ msgid ""
1415
+ "A sitemap file can't contain more than 50,000 URLs and must be no larger than 50 "
1416
+ "MB uncompressed."
1417
+ msgstr ""
1418
+ "Un fichier de plan de site ne peut pas contenir plus de 50 000 URL et ne doit pas "
1419
+ "dépasser 50 Mo non compressés."
1420
+
1421
+ # automatic translation
1422
+ #: includes/class-gglstmp-settings.php:299
1423
+ msgid "Decrease the limit if your sitemap exceeds file size limit."
1424
+ msgstr ""
1425
+ "Diminuez la limite si votre plan de site dépasse la limite de taille de fichier."
1426
+
1427
+ # automatic translation
1428
+ #: includes/class-gglstmp-settings.php:300
1429
+ msgid "When the limit is reached, the sitemap will be splitted into multiple files."
1430
+ msgstr ""
1431
+ "Lorsque la limite est atteinte, le plan du site sera divisé en plusieurs fichiers."
1432
+
1433
+ # automatic translation
1434
+ #: includes/class-gglstmp-settings.php:305
1435
+ msgid "Google Search Console"
1436
+ msgstr "Console de recherche Google"
1437
+
1438
+ # automatic translation
1439
+ #: includes/class-gglstmp-settings.php:308
1440
+ msgid ""
1441
+ "This hosting does not support сURL, so you cannot add a sitemap file automatically."
1442
+ msgstr ""
1443
+ "Cet hébergement ne prend pas en charge сURL, vous ne pouvez donc pas ajouter "
1444
+ "automatiquement un fichier de plan de site."
1445
+
1446
+ # automatic translation
1447
+ #: includes/class-gglstmp-settings.php:312
1448
+ msgid "Logout"
1449
+ msgstr "Se déconnecter"
1450
+
1451
+ # automatic translation
1452
+ #: includes/class-gglstmp-settings.php:316
1453
+ msgid "Manage Website with Google Search Console"
1454
+ msgstr "Gérer le site Web avec la console de recherche Google"
1455
+
1456
+ # automatic translation
1457
+ #: includes/class-gglstmp-settings.php:319
1458
+ msgid "Add"
1459
+ msgstr "Ajouter"
1460
+
1461
+ # automatic translation
1462
+ #: includes/class-gglstmp-settings.php:321 includes/pro_banners.php:147
1463
+ msgid "Delete"
1464
+ msgstr "Effacer"
1465
+
1466
+ # automatic translation
1467
+ #: includes/class-gglstmp-settings.php:323
1468
+ msgid "Get Info"
1469
+ msgstr "Obtenir des informations"
1470
+
1471
+ # automatic translation
1472
+ #: includes/class-gglstmp-settings.php:325
1473
+ msgid ""
1474
+ "Add, delete or get info about this website using your Google Search Console "
1475
+ "account."
1476
+ msgstr ""
1477
+ "Ajoutez, supprimez ou obtenez des informations sur ce site Web à l'aide de votre "
1478
+ "compte Google Search Console."
1479
+
1480
+ # automatic translation
1481
+ #: includes/class-gglstmp-settings.php:335
1482
+ msgid "Open the Google Search Console"
1483
+ msgstr "Ouvrez la console de recherche Google"
1484
+
1485
+ # automatic translation
1486
+ #: includes/class-gglstmp-settings.php:342
1487
+ msgid "Authorize"
1488
+ msgstr "Autoriser"
1489
+
1490
+ # automatic translation
1491
+ #: includes/class-gglstmp-settings.php:345
1492
+ msgid "Invalid authorization code. Please try again."
1493
+ msgstr "Code d'autorisation invalide. Veuillez réessayer."
1494
+
1495
+ # automatic translation
1496
+ #: includes/class-gglstmp-settings.php:350
1497
+ msgid "You can also add your sitemap to Google Search Console manually."
1498
+ msgstr ""
1499
+ "Vous pouvez également ajouter manuellement votre plan de site à Google Search "
1500
+ "Console."
1501
+
1502
+ # automatic translation
1503
+ #: includes/class-gglstmp-settings.php:352
1504
+ msgid "Read the instruction"
1505
+ msgstr "Lire la notice"
1506
+
1507
+ # automatic translation
1508
+ #: includes/class-gglstmp-settings.php:357
1509
+ msgid "Alternate Language Pages"
1510
+ msgstr "Pages en langue alternative"
1511
+
1512
+ # automatic translation
1513
+ #: includes/class-gglstmp-settings.php:371
1514
+ msgid "Enable to add alternate language pages using Multilanguage plugin."
1515
+ msgstr ""
1516
+ "Activer pour ajouter des pages de langue alternative à l'aide du plug-in "
1517
+ "multilingue."
1518
+
1519
+ # automatic translation
1520
+ #: includes/class-gglstmp-settings.php:381
1521
+ msgid "Sitemap Structure"
1522
+ msgstr "Structure du plan du site"
1523
+
1524
+ # automatic translation
1525
+ #: includes/class-gglstmp-settings.php:386
1526
+ msgid "Post Types"
1527
+ msgstr "Types de messages"
1528
+
1529
+ # automatic translation
1530
+ #: includes/class-gglstmp-settings.php:397
1531
+ msgid "Enable to add post type links to the sitemap."
1532
+ msgstr "Activer pour ajouter des liens de type de publication au plan du site."
1533
+
1534
+ # automatic translation
1535
+ #: includes/class-gglstmp-settings.php:401
1536
+ msgid "Taxonomies"
1537
+ msgstr "Taxonomies"
1538
+
1539
+ # automatic translation
1540
+ #: includes/class-gglstmp-settings.php:412
1541
+ msgid "Enable to taxonomy links to the sitemap."
1542
+ msgstr "Activer les liens de taxonomie vers le plan du site."
1543
+
1544
+ # automatic translation
1545
+ #: includes/class-gglstmp-settings.php:483
1546
+ #, php-format
1547
+ msgid "Sitemap File: %s"
1548
+ msgstr "Fichier de plan du site : %s"
1549
+
1550
+ # automatic translation
1551
+ #: includes/class-gglstmp-settings.php:510
1552
+ #, php-format
1553
+ msgid ""
1554
+ "Can't access XML files. Try to add the following rule %s to your %s file which is "
1555
+ "located in the root of your website to resolve this error. Find the following line "
1556
+ "%s and paste the code just after it."
1557
+ msgstr ""
1558
+ "Impossible d'accéder aux fichiers XML. Essayez d'ajouter la règle suivante %s à "
1559
+ "votre fichier %s qui se trouve à la racine de votre site Web pour résoudre cette "
1560
+ "erreur. Recherchez la ligne suivante %s et collez le code juste après."
1561
+
1562
+ # automatic translation
1563
+ #: includes/class-gglstmp-settings.php:526
1564
+ msgid "Note"
1565
+ msgstr "Noter"
1566
+
1567
+ # automatic translation
1568
+ #: includes/class-gglstmp-settings.php:527
1569
+ msgid ""
1570
+ "Another plugin is providing Google Client functionality and may interrupt proper "
1571
+ "plugin work."
1572
+ msgstr ""
1573
+ "Un autre plug-in fournit la fonctionnalité du client Google et peut interrompre le "
1574
+ "bon fonctionnement du plug-in."
1575
+
1576
+ # automatic translation
1577
+ #: includes/class-gglstmp-settings.php:543
1578
+ msgid ""
1579
+ "Also, please add the following code to the beginning of your \".htaccess\" file:"
1580
+ msgstr ""
1581
+ "Veuillez également ajouter le code suivant au début de votre fichier \".htaccess\":"
1582
+
1583
+ # automatic translation
1584
+ #: includes/pro_banners.php:18
1585
+ msgid "This option is available in Pro version of plugin"
1586
+ msgstr "Cette option est disponible dans la version Pro du plugin"
1587
+
1588
+ # automatic translation
1589
+ #: includes/pro_banners.php:32
1590
+ msgid "This tab contains Pro options only."
1591
+ msgstr "Cet onglet contient uniquement les options Pro."
1592
+
1593
+ # automatic translation
1594
+ #: includes/pro_banners.php:34
1595
+ #, php-format
1596
+ msgid "%sChange the settings%s to view the Pro options."
1597
+ msgstr "%sModifiez les paramètres%s pour afficher les options Pro."
1598
+
1599
+ # automatic translation
1600
+ #: includes/pro_banners.php:51 includes/pro_banners.php:115
1601
+ #: includes/pro_banners.php:194
1602
+ msgid "Change Frequency"
1603
+ msgstr "Changer de fréquence"
1604
+
1605
+ # automatic translation
1606
+ #: includes/pro_banners.php:54 includes/pro_banners.php:152
1607
+ #: includes/pro_banners.php:160 includes/pro_banners.php:168
1608
+ #: includes/pro_banners.php:176 includes/pro_banners.php:184
1609
+ msgid "Monthly"
1610
+ msgstr "Mensuel"
1611
+
1612
+ # automatic translation
1613
+ #: includes/pro_banners.php:56
1614
+ msgid ""
1615
+ "This value provides general information to search engines and tell them how "
1616
+ "frequently the page is likely to change. It may not correlate exactly to how often "
1617
+ "they crawl the website."
1618
+ msgstr ""
1619
+ "Cette valeur fournit des informations générales aux moteurs de recherche et leur "
1620
+ "indique à quelle fréquence la page est susceptible de changer. Cela peut ne pas "
1621
+ "correspondre exactement à la fréquence à laquelle ils explorent le site Web."
1622
+
1623
+ # automatic translation
1624
+ #: includes/pro_banners.php:60
1625
+ msgid "External Sitemap Update Frequency"
1626
+ msgstr "Fréquence de mise à jour du plan du site externe"
1627
+
1628
+ # automatic translation
1629
+ #: includes/pro_banners.php:62
1630
+ msgid "day(-s)"
1631
+ msgstr "jours)"
1632
+
1633
+ # automatic translation
1634
+ #: includes/pro_banners.php:64
1635
+ msgid ""
1636
+ "This option sets how often the external index sitemap files should be checked for "
1637
+ "updates."
1638
+ msgstr ""
1639
+ "Cette option définit la fréquence à laquelle les fichiers de plan de site d'index "
1640
+ "externe doivent être vérifiés pour les mises à jour."
1641
+
1642
+ # automatic translation
1643
+ #: includes/pro_banners.php:78
1644
+ msgid "Example of site pages' tree"
1645
+ msgstr "Exemple d'arborescence des pages du site"
1646
+
1647
+ # automatic translation
1648
+ #: includes/pro_banners.php:92
1649
+ msgid "Enabled"
1650
+ msgstr "Activée"
1651
+
1652
+ # automatic translation
1653
+ #: includes/pro_banners.php:93
1654
+ msgid "Disabled"
1655
+ msgstr "Désactivée"
1656
+
1657
+ # automatic translation
1658
+ #: includes/pro_banners.php:97
1659
+ msgid "Search"
1660
+ msgstr "Chercher"
1661
+
1662
+ # automatic translation
1663
+ #: includes/pro_banners.php:102
1664
+ msgid "Bulk Actions"
1665
+ msgstr "Actions en vrac"
1666
+
1667
+ # automatic translation
1668
+ #: includes/pro_banners.php:104
1669
+ msgid "Apply"
1670
+ msgstr "Appliquer"
1671
+
1672
+ # automatic translation
1673
+ #: includes/pro_banners.php:106
1674
+ msgid "items"
1675
+ msgstr "éléments"
1676
+
1677
+ # automatic translation
1678
+ #: includes/pro_banners.php:114 includes/pro_banners.php:193
1679
+ msgid "Priority"
1680
+ msgstr "Priorité"
1681
+
1682
+ # automatic translation
1683
+ #: includes/pro_banners.php:116 includes/pro_banners.php:195
1684
+ msgid "Last Changed"
1685
+ msgstr "Dernière modification"
1686
+
1687
+ # automatic translation
1688
+ #: includes/pro_banners.php:125
1689
+ msgid "Please note"
1690
+ msgstr "Veuillez noter"
1691
+
1692
+ # automatic translation
1693
+ #: includes/pro_banners.php:126
1694
+ msgid ""
1695
+ "All URLs listed in the sitemap.xml must use the same protocol (HTTP or HTTPS) and "
1696
+ "must be located on the same host as the sitemap.xml."
1697
+ msgstr ""
1698
+ "Toutes les URL répertoriées dans le sitemap.xml doivent utiliser le même protocole "
1699
+ "(HTTP ou HTTPS) et doivent être situées sur le même hôte que le sitemap.xml."
1700
+
1701
+ # automatic translation
1702
+ #: includes/pro_banners.php:126
1703
+ msgid "You can also add multiple URLs at once."
1704
+ msgstr "Vous pouvez également ajouter plusieurs URL à la fois."
1705
+
1706
+ # automatic translation
1707
+ #: includes/pro_banners.php:133
1708
+ msgid "Always"
1709
+ msgstr "Toujours"
1710
+
1711
+ # automatic translation
1712
+ #: includes/pro_banners.php:137
1713
+ msgid "Save"
1714
+ msgstr "sauvegarder"
1715
+
1716
+ # automatic translation
1717
+ #: includes/pro_banners.php:145
1718
+ msgid "Edit"
1719
+ msgstr "Éditer"
1720
+
1721
+ # automatic translation
1722
+ #: includes/pro_banners.php:146
1723
+ msgid "Disable"
1724
+ msgstr "Désactiver"
1725
+
1726
+ # automatic translation
1727
+ #. Plugin Name of the plugin/theme
1728
+ msgid "Sitemap by BestWebSoft"
1729
+ msgstr "Plan du site par BestWebSoft"
1730
+
1731
+ # automatic translation
1732
+ #. Plugin URI of the plugin/theme
1733
+ msgid "https://bestwebsoft.com/products/wordpress/plugins/google-sitemap/"
1734
+ msgstr "https://bestwebsoft.com/products/wordpress/plugins/google-sitemap/"
1735
+
1736
+ # automatic translation
1737
+ #. Author of the plugin/theme
1738
+ msgid "BestWebSoft"
1739
+ msgstr "BestWebSoft"
1740
+
1741
+ # automatic translation
1742
+ #. Author URI of the plugin/theme
1743
+ msgid "https://bestwebsoft.com/"
1744
+ msgstr "https://bestwebsoft.com/"
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
3
  Donate link: https://bestwebsoft.com/donate/
4
  Tags: add pages to sitemap, add posts to sitemap, add sitemap, google, google sitemap, google sitemap plugin, sitemap file path, update sitemap, google webmaster tools, site map, sitemaps, webmaster tools
5
  Requires at least: 4.5
6
- Tested up to: 5.7.1
7
- Stable tag: 3.2.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -68,11 +68,16 @@ If you have a feature suggestion or idea you'd like to see in the plugin, we'd l
68
  * [[Doc] Installation](https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/)
69
  * [[Doc] Purchase](https://docs.google.com/document/d/1EUdBVvnm7IHZ6y0DNyldZypUQKpB8UVPToSc_LdOYQI/)
70
  * [[Video] Installation Instruction](https://www.youtube.com/watch?v=NKlAnFTzNrQ)
 
71
 
72
  = Help & Support =
73
 
74
  Visit our Help Center if you have any questions, our friendly Support Team is happy to help — <https://support.bestwebsoft.com/>
75
 
 
 
 
 
76
  = Translation =
77
 
78
  * Czech (cs_CZ) (thanks to [Michal Kučera](mailto:kucerami@gmail.com), www.n0lim.it)
@@ -148,6 +153,12 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
148
 
149
  == Changelog ==
150
 
 
 
 
 
 
 
151
  = V3.2.4 - 05.05.2021 =
152
  * Update : We updated all functionality for wordpress 5.7.
153
  * Update : BWS Panel section was updated.
@@ -381,6 +392,11 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
381
 
382
  == Upgrade Notice ==
383
 
 
 
 
 
 
384
  = V3.2.4 =
385
  * The compatibility with new WordPress version updated.
386
 
3
  Donate link: https://bestwebsoft.com/donate/
4
  Tags: add pages to sitemap, add posts to sitemap, add sitemap, google, google sitemap, google sitemap plugin, sitemap file path, update sitemap, google webmaster tools, site map, sitemaps, webmaster tools
5
  Requires at least: 4.5
6
+ Tested up to: 5.8.2
7
+ Stable tag: 3.2.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
68
  * [[Doc] Installation](https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/)
69
  * [[Doc] Purchase](https://docs.google.com/document/d/1EUdBVvnm7IHZ6y0DNyldZypUQKpB8UVPToSc_LdOYQI/)
70
  * [[Video] Installation Instruction](https://www.youtube.com/watch?v=NKlAnFTzNrQ)
71
+ * [[Video] User Guide](https://www.youtube.com/watch?v=hzz0_Yj4gaQ)
72
 
73
  = Help & Support =
74
 
75
  Visit our Help Center if you have any questions, our friendly Support Team is happy to help — <https://support.bestwebsoft.com/>
76
 
77
+ = Affiliate Program =
78
+
79
+ Earn 20% commission by selling the premium WordPress plugins and themes by BestWebSoft — https://bestwebsoft.com/affiliate/
80
+
81
  = Translation =
82
 
83
  * Czech (cs_CZ) (thanks to [Michal Kučera](mailto:kucerami@gmail.com), www.n0lim.it)
153
 
154
  == Changelog ==
155
 
156
+ = V3.2.5 - 26.11.2021 =
157
+ * Bugfix : The issue with installing new plugins has been fixed.
158
+ * Update: Video User Guide has been added.
159
+ * Update : We updated all functionality for wordpress 5.8.2.
160
+ * Update : BWS Panel section was updated.
161
+
162
  = V3.2.4 - 05.05.2021 =
163
  * Update : We updated all functionality for wordpress 5.7.
164
  * Update : BWS Panel section was updated.
392
 
393
  == Upgrade Notice ==
394
 
395
+ = V3.2.5 =
396
+ * Bugs fixed.
397
+ * Usability improved
398
+ * The compatibility with new WordPress version updated.
399
+
400
  = V3.2.4 =
401
  * The compatibility with new WordPress version updated.
402