Version Description
- 22.11.2021 =
- NEW : The French language file was added.
- Update : BWS Panel section was updated.
- Pro : The issue with Elementor Pro 3.5.0 has been fixed.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Google Captcha (reCAPTCHA) by BestWebSoft |
Version | 1.66 |
Comparing to | |
See all releases |
Code changes from version 1.65 to 1.66
- bws_menu/bws_functions.php +14 -8
- bws_menu/bws_menu.php +3 -3
- bws_menu/class-bws-settings.php +1 -1
- google-captcha.php +1 -1
- languages/google-captcha-fr_FR.mo +0 -0
- languages/google-captcha-fr_FR.po +2711 -0
- readme.txt +13 -3
bws_menu/bws_functions.php
CHANGED
@@ -563,8 +563,9 @@ if ( ! function_exists( 'bws_hide_premium_options_check' ) ) {
|
|
563 |
|
564 |
if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
|
565 |
function bws_plugins_admin_init() {
|
|
|
566 |
if ( isset( $_GET['bws_activate_plugin'] ) && check_admin_referer( 'bws_activate_plugin' . $_GET['bws_activate_plugin'] ) ) {
|
567 |
-
|
568 |
$plugin = isset( $_GET['bws_activate_plugin'] ) ? sanitize_text_field( $_GET['bws_activate_plugin'] ) : '';
|
569 |
$result = activate_plugin( $plugin, '', is_network_admin() );
|
570 |
if ( is_wp_error( $result ) ) {
|
@@ -589,9 +590,8 @@ if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
|
|
589 |
/**
|
590 |
* @deprecated 1.9.8 (15.12.2016)
|
591 |
*/
|
592 |
-
$is_main_page = in_array( $
|
593 |
-
$
|
594 |
-
$tab = isset( $_GET['tab'] ) ? wp_unslash( $_GET['tab'] ) : '';
|
595 |
|
596 |
if ( $is_main_page )
|
597 |
$current_page = 'admin.php?page=' . $page;
|
@@ -603,7 +603,7 @@ if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
|
|
603 |
exit();
|
604 |
}
|
605 |
|
606 |
-
if (
|
607 |
if ( ! session_id() )
|
608 |
@session_start();
|
609 |
}
|
@@ -619,12 +619,16 @@ if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
|
|
619 |
$bws_plugin_banner_go_pro, $bws_plugin_banner_timeout, $bstwbsftwppdtplgns_banner_array,
|
620 |
$bws_shortcode_list;
|
621 |
|
|
|
|
|
622 |
$jquery_ui_version = isset( $wp_scripts->registered['jquery-ui-core']->ver ) ? $wp_scripts->registered['jquery-ui-core']->ver : '1.12.1';
|
623 |
-
|
|
|
|
|
624 |
wp_enqueue_style( 'bws-admin-css', bws_menu_url( 'css/general_style.css' ) );
|
625 |
wp_enqueue_script( 'bws-admin-scripts', bws_menu_url( 'js/general_script.js' ), array( 'jquery', 'jquery-ui-tooltip' ) );
|
626 |
|
627 |
-
if (
|
628 |
wp_enqueue_style( 'bws_menu_style', bws_menu_url( 'css/style.css' ) );
|
629 |
wp_enqueue_script( 'bws_menu_script', bws_menu_url( 'js/bws_menu.js' ) );
|
630 |
wp_enqueue_script( 'theme-install' );
|
@@ -750,7 +754,9 @@ if ( ! function_exists( 'bws_enqueue_settings_scripts' ) ) {
|
|
750 |
|
751 |
if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
|
752 |
function bws_plugins_admin_head() {
|
753 |
-
|
|
|
|
|
754 |
<noscript>
|
755 |
<style type="text/css">
|
756 |
.bws_product_button {
|
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'] ) : '';
|
570 |
$result = activate_plugin( $plugin, '', is_network_admin() );
|
571 |
if ( is_wp_error( $result ) ) {
|
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 {
|
bws_menu/bws_menu.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
-
* Version: 2.4.
|
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 =
|
20 |
-
$tab = isset( $_GET['tab'] ) ?
|
21 |
|
22 |
if ( $is_main_page )
|
23 |
$current_page = 'admin.php?page=' . $page;
|
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;
|
bws_menu/class-bws-settings.php
CHANGED
@@ -530,7 +530,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
|
530 |
|
531 |
if ( isset( $_POST["bws_newcontent_{$extension}"] ) &&
|
532 |
$this->custom_code_args["{$extension}_writeable"] ) {
|
533 |
-
$newcontent = trim(
|
534 |
if ( 'css' == $extension )
|
535 |
$newcontent = wp_kses( $newcontent, array( '\'', '\"' ) );
|
536 |
|
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 |
|
google-captcha.php
CHANGED
@@ -6,7 +6,7 @@ Description: Protect WordPress website forms from spam entries with Google Captc
|
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: google-captcha
|
8 |
Domain Path: /languages
|
9 |
-
Version: 1.
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv3 or later
|
12 |
*/
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: google-captcha
|
8 |
Domain Path: /languages
|
9 |
+
Version: 1.66
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv3 or later
|
12 |
*/
|
languages/google-captcha-fr_FR.mo
ADDED
Binary file
|
languages/google-captcha-fr_FR.po
ADDED
@@ -0,0 +1,2711 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: reCaptcha by BestWebSoft\n"
|
4 |
+
"PO-Revision-Date: 2021-11-12 15:44+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-captcha.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_functions.php:73 bws_menu/bws_functions.php:239
|
26 |
+
msgid "requires"
|
27 |
+
msgstr "a besoin"
|
28 |
+
|
29 |
+
# automatic translation
|
30 |
+
#: bws_menu/bws_functions.php:75
|
31 |
+
msgid ""
|
32 |
+
"or higher, that is why it has been deactivated! Please upgrade WordPress and try "
|
33 |
+
"again."
|
34 |
+
msgstr ""
|
35 |
+
"ou supérieur, c'est pourquoi il a été désactivé ! Veuillez mettre à jour WordPress "
|
36 |
+
"et réessayer."
|
37 |
+
|
38 |
+
# automatic translation
|
39 |
+
#: bws_menu/bws_functions.php:76
|
40 |
+
msgid "Back to the WordPress"
|
41 |
+
msgstr "Retour à WordPress"
|
42 |
+
|
43 |
+
# automatic translation
|
44 |
+
#: bws_menu/bws_functions.php:78
|
45 |
+
msgid "Plugins page"
|
46 |
+
msgstr "Page des plugins"
|
47 |
+
|
48 |
+
# automatic translation
|
49 |
+
#: bws_menu/bws_functions.php:92
|
50 |
+
msgid "Like the plugin?"
|
51 |
+
msgstr "Vous aimez le plugin ?"
|
52 |
+
|
53 |
+
# automatic translation
|
54 |
+
#: bws_menu/bws_functions.php:93
|
55 |
+
#, php-format
|
56 |
+
msgid "%s reviews"
|
57 |
+
msgstr "%s avis"
|
58 |
+
|
59 |
+
# automatic translation
|
60 |
+
#: bws_menu/bws_functions.php:94
|
61 |
+
msgid "Rate it"
|
62 |
+
msgstr "Évaluez-le"
|
63 |
+
|
64 |
+
# automatic translation
|
65 |
+
#: bws_menu/bws_functions.php:103
|
66 |
+
msgid "Need help?"
|
67 |
+
msgstr "Besoin d'aide?"
|
68 |
+
|
69 |
+
# automatic translation
|
70 |
+
#: bws_menu/bws_functions.php:104 bws_menu/bws_functions.php:1003
|
71 |
+
#: bws_menu/class-bws-settings.php:1085
|
72 |
+
msgid "Visit Help Center"
|
73 |
+
msgstr "Visitez le Centre d'aide"
|
74 |
+
|
75 |
+
# automatic translation
|
76 |
+
#: bws_menu/bws_functions.php:107
|
77 |
+
msgid "Want to support the plugin?"
|
78 |
+
msgstr "Souhaitez-vous prendre en charge le plugin ?"
|
79 |
+
|
80 |
+
# automatic translation
|
81 |
+
#: bws_menu/bws_functions.php:108 bws_menu/bws_menu.php:529
|
82 |
+
msgid "Donate"
|
83 |
+
msgstr "Faire un don"
|
84 |
+
|
85 |
+
# automatic translation
|
86 |
+
#: bws_menu/bws_functions.php:128
|
87 |
+
msgid "WARNING: Illegal use notification"
|
88 |
+
msgstr "AVERTISSEMENT : notification d'utilisation illégale"
|
89 |
+
|
90 |
+
# automatic translation
|
91 |
+
#: bws_menu/bws_functions.php:128
|
92 |
+
msgid ""
|
93 |
+
"You can use one license of the Pro plugin for one domain only. Please check and "
|
94 |
+
"edit your license or domain if necessary using your personal Client Area. We "
|
95 |
+
"strongly recommend you to solve the problem within 24 hours, otherwise the Pro "
|
96 |
+
"plugin will be deactivated."
|
97 |
+
msgstr ""
|
98 |
+
"Vous ne pouvez utiliser qu'une seule licence du plugin Pro pour un seul domaine. "
|
99 |
+
"Veuillez vérifier et modifier votre licence ou votre domaine si nécessaire en "
|
100 |
+
"utilisant votre espace client personnel. Nous vous recommandons fortement de "
|
101 |
+
"résoudre le problème dans les 24 heures, sinon le plugin Pro sera désactivé."
|
102 |
+
|
103 |
+
# automatic translation
|
104 |
+
#: bws_menu/bws_functions.php:128 bws_menu/bws_functions.php:208
|
105 |
+
#: bws_menu/bws_menu.php:600 bws_menu/class-bws-settings.php:179
|
106 |
+
msgid "Learn More"
|
107 |
+
msgstr "Apprendre encore plus"
|
108 |
+
|
109 |
+
# automatic translation
|
110 |
+
#: bws_menu/bws_functions.php:145
|
111 |
+
msgid ""
|
112 |
+
"Notice: Your Pro Trial license has expired. To continue using the plugin, you "
|
113 |
+
"should buy a Pro license"
|
114 |
+
msgstr ""
|
115 |
+
"Avis : Votre licence d'essai Pro a expiré. Pour continuer à utiliser le plugin, "
|
116 |
+
"vous devez acheter une licence Pro"
|
117 |
+
|
118 |
+
# automatic translation
|
119 |
+
#: bws_menu/bws_functions.php:147
|
120 |
+
msgid ""
|
121 |
+
"Your license has expired. To continue getting top-priority support and plugin "
|
122 |
+
"updates, you should extend it."
|
123 |
+
msgstr ""
|
124 |
+
"Votre licence a expiré. Pour continuer à bénéficier du support prioritaire et des "
|
125 |
+
"mises à jour des plugins, vous devez l'étendre."
|
126 |
+
|
127 |
+
# automatic translation
|
128 |
+
#: bws_menu/bws_functions.php:147 bws_menu/bws_functions.php:226
|
129 |
+
msgid "Learn more"
|
130 |
+
msgstr "Apprendre encore plus"
|
131 |
+
|
132 |
+
# automatic translation
|
133 |
+
#: bws_menu/bws_functions.php:165
|
134 |
+
#, php-format
|
135 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
136 |
+
msgstr "Remarque : Vous utilisez la licence Pro Trial du plug-in %s."
|
137 |
+
|
138 |
+
# automatic translation
|
139 |
+
#: bws_menu/bws_functions.php:167
|
140 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
141 |
+
msgstr "Remarque : Vous utilisez la licence Pro Trial du plugin."
|
142 |
+
|
143 |
+
# automatic translation
|
144 |
+
#: bws_menu/bws_functions.php:170
|
145 |
+
msgid "The Pro Trial license will expire on"
|
146 |
+
msgstr "La licence Pro Trial expire le"
|
147 |
+
|
148 |
+
# automatic translation
|
149 |
+
#: bws_menu/bws_functions.php:199 bws_menu/bws_functions.php:222
|
150 |
+
#: bws_menu/bws_functions.php:266 bws_menu/bws_functions.php:276
|
151 |
+
#: bws_menu/bws_functions.php:475 bws_menu/bws_functions.php:501
|
152 |
+
msgid "Close notice"
|
153 |
+
msgstr "Fermer l'avis"
|
154 |
+
|
155 |
+
# automatic translation
|
156 |
+
#: bws_menu/bws_functions.php:204
|
157 |
+
msgid "It’s time to upgrade your"
|
158 |
+
msgstr "Il est temps de mettre à niveau votre"
|
159 |
+
|
160 |
+
# automatic translation
|
161 |
+
#: bws_menu/bws_functions.php:204
|
162 |
+
msgid "to"
|
163 |
+
msgstr "à"
|
164 |
+
|
165 |
+
# automatic translation
|
166 |
+
#: bws_menu/bws_functions.php:204
|
167 |
+
msgid "version!"
|
168 |
+
msgstr "version!"
|
169 |
+
|
170 |
+
# automatic translation
|
171 |
+
#: bws_menu/bws_functions.php:205
|
172 |
+
msgid "Extend standard plugin functionality with new great options."
|
173 |
+
msgstr ""
|
174 |
+
"Étendez la fonctionnalité de plugin standard avec de nouvelles options "
|
175 |
+
"intéressantes."
|
176 |
+
|
177 |
+
# automatic translation
|
178 |
+
#: bws_menu/bws_functions.php:226
|
179 |
+
#, php-format
|
180 |
+
msgid ""
|
181 |
+
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
182 |
+
"SUPPORT or UPDATES."
|
183 |
+
msgstr ""
|
184 |
+
"Votre clé de licence pour %s expire le %s et vous n'obtiendrez pas de SUPPORT "
|
185 |
+
"PRIORITAIRE ni de MISES À JOUR."
|
186 |
+
|
187 |
+
# automatic translation
|
188 |
+
#: bws_menu/bws_functions.php:241
|
189 |
+
msgid ""
|
190 |
+
"or higher! We do not guarantee that our plugin will work correctly. Please upgrade "
|
191 |
+
"to WordPress latest version."
|
192 |
+
msgstr ""
|
193 |
+
"ou plus! Nous ne garantissons pas que notre plugin fonctionnera correctement. "
|
194 |
+
"Veuillez passer à la dernière version de WordPress."
|
195 |
+
|
196 |
+
# automatic translation
|
197 |
+
#: bws_menu/bws_functions.php:256
|
198 |
+
#, php-format
|
199 |
+
msgid "Thank you for installing %s plugin!"
|
200 |
+
msgstr "Merci d'avoir installé le plugin %s !"
|
201 |
+
|
202 |
+
# automatic translation
|
203 |
+
#: bws_menu/bws_functions.php:258
|
204 |
+
msgid "Let's get started"
|
205 |
+
msgstr "Commençons"
|
206 |
+
|
207 |
+
# automatic translation
|
208 |
+
#: bws_menu/bws_functions.php:259 bws_menu/bws_functions.php:292
|
209 |
+
#: bws_menu/bws_menu.php:533 bws_menu/bws_menu.php:535 google-captcha.php:50
|
210 |
+
#: google-captcha.php:1114 google-captcha.php:1127
|
211 |
+
#: includes/class-gglcptch-settings-tabs.php:22
|
212 |
+
msgid "Settings"
|
213 |
+
msgstr "Paramètres"
|
214 |
+
|
215 |
+
# automatic translation
|
216 |
+
#: bws_menu/bws_functions.php:261 bws_menu/bws_menu.php:327
|
217 |
+
#: bws_menu/class-bws-settings.php:812 bws_menu/class-bws-settings.php:1087
|
218 |
+
#: bws_menu/class-bws-settings.php:1097 bws_menu/deprecated.php:234
|
219 |
+
msgid "or"
|
220 |
+
msgstr "ou"
|
221 |
+
|
222 |
+
# automatic translation
|
223 |
+
#: bws_menu/bws_functions.php:262 bws_menu/bws_functions.php:294
|
224 |
+
#: includes/allowlist.php:49
|
225 |
+
msgid "Add New"
|
226 |
+
msgstr "Ajouter un nouveau"
|
227 |
+
|
228 |
+
# automatic translation
|
229 |
+
#: bws_menu/bws_functions.php:281
|
230 |
+
msgid "Thank you for installing plugins by BestWebSoft!"
|
231 |
+
msgstr "Merci d'avoir installé les plugins de BestWebSoft !"
|
232 |
+
|
233 |
+
# automatic translation
|
234 |
+
#: bws_menu/bws_functions.php:283
|
235 |
+
msgid "More Details"
|
236 |
+
msgstr "Plus de détails"
|
237 |
+
|
238 |
+
# automatic translation
|
239 |
+
#: bws_menu/bws_functions.php:284
|
240 |
+
msgid "Less Details"
|
241 |
+
msgstr "Moins de détails"
|
242 |
+
|
243 |
+
# automatic translation
|
244 |
+
#: bws_menu/bws_functions.php:312
|
245 |
+
msgid "Deprecated function(-s) is used on the site here:"
|
246 |
+
msgstr "Des fonctions obsolètes sont utilisées sur le site ici :"
|
247 |
+
|
248 |
+
# automatic translation
|
249 |
+
#: bws_menu/bws_functions.php:326
|
250 |
+
msgid "This function(-s) will be removed over time. Please update the product(-s)."
|
251 |
+
msgstr ""
|
252 |
+
"Cette ou ces fonctions seront supprimées au fil du temps. Veuillez mettre à jour "
|
253 |
+
"le(s) produit(s)."
|
254 |
+
|
255 |
+
# automatic translation
|
256 |
+
#: bws_menu/bws_functions.php:470
|
257 |
+
#, php-format
|
258 |
+
msgid "Thank you for choosing %s plugin!"
|
259 |
+
msgstr "Merci d'avoir choisi le plugin %s !"
|
260 |
+
|
261 |
+
# automatic translation
|
262 |
+
#: bws_menu/bws_functions.php:471
|
263 |
+
msgid ""
|
264 |
+
"If you have a feature, suggestion or idea you'd like to see in the plugin, we'd "
|
265 |
+
"love to hear about it!"
|
266 |
+
msgstr ""
|
267 |
+
"Si vous avez une fonctionnalité, une suggestion ou une idée que vous aimeriez voir "
|
268 |
+
"dans le plugin, nous aimerions en entendre parler !"
|
269 |
+
|
270 |
+
# automatic translation
|
271 |
+
#: bws_menu/bws_functions.php:472
|
272 |
+
msgid "Suggest a Feature"
|
273 |
+
msgstr "Suggérer une fonctionnalité"
|
274 |
+
|
275 |
+
# automatic translation
|
276 |
+
#: bws_menu/bws_functions.php:506
|
277 |
+
msgid "Affiliate Program"
|
278 |
+
msgstr "Programme d'affiliation"
|
279 |
+
|
280 |
+
# automatic translation
|
281 |
+
#: bws_menu/bws_functions.php:507
|
282 |
+
#, php-format
|
283 |
+
msgid "Get %s"
|
284 |
+
msgstr "Obtenir %s"
|
285 |
+
|
286 |
+
# automatic translation
|
287 |
+
#: bws_menu/bws_functions.php:508
|
288 |
+
msgid "from each BestWebSoft plugin and theme sale you refer"
|
289 |
+
msgstr "de chaque vente de plugin et thème BestWebSoft que vous référez"
|
290 |
+
|
291 |
+
# automatic translation
|
292 |
+
#: bws_menu/bws_functions.php:512
|
293 |
+
msgid "Join affiliate program"
|
294 |
+
msgstr "Rejoindre le programme d'affiliation"
|
295 |
+
|
296 |
+
# automatic translation
|
297 |
+
#: bws_menu/bws_functions.php:516
|
298 |
+
msgid "Promote and sell products"
|
299 |
+
msgstr "Promouvoir et vendre des produits"
|
300 |
+
|
301 |
+
# automatic translation
|
302 |
+
#: bws_menu/bws_functions.php:520
|
303 |
+
msgid "Get commission!"
|
304 |
+
msgstr "Obtenez des commissions !"
|
305 |
+
|
306 |
+
# automatic translation
|
307 |
+
#: bws_menu/bws_functions.php:525
|
308 |
+
msgid "Start Now"
|
309 |
+
msgstr "Commencez maintenant"
|
310 |
+
|
311 |
+
# automatic translation
|
312 |
+
#: bws_menu/bws_functions.php:535 bws_menu/class-bws-settings.php:583
|
313 |
+
#: bws_menu/class-bws-settings.php:586 bws_menu/class-bws-settings.php:638
|
314 |
+
#: bws_menu/class-bws-settings.php:641
|
315 |
+
msgid "Notice"
|
316 |
+
msgstr "Avis"
|
317 |
+
|
318 |
+
# automatic translation
|
319 |
+
#: bws_menu/bws_functions.php:535
|
320 |
+
msgid "The plugin's settings have been changed."
|
321 |
+
msgstr "Les paramètres du plugin ont été modifiés."
|
322 |
+
|
323 |
+
# automatic translation
|
324 |
+
#: bws_menu/bws_functions.php:536 bws_menu/class-bws-settings.php:222
|
325 |
+
#: bws_menu/class-bws-settings.php:245
|
326 |
+
msgid "Save Changes"
|
327 |
+
msgstr "Sauvegarder les modifications"
|
328 |
+
|
329 |
+
# automatic translation
|
330 |
+
#: bws_menu/bws_functions.php:550
|
331 |
+
msgid ""
|
332 |
+
"You can always look at premium options by checking the \"Pro Options\" in the "
|
333 |
+
"\"Misc\" tab."
|
334 |
+
msgstr ""
|
335 |
+
"Vous pouvez toujours consulter les options premium en cochant les \"Options Pro\" "
|
336 |
+
"dans l'onglet \"Divers\"."
|
337 |
+
|
338 |
+
# automatic translation
|
339 |
+
#: bws_menu/bws_functions.php:709
|
340 |
+
msgid "Add BWS Shortcode"
|
341 |
+
msgstr "Ajouter un code court BWS"
|
342 |
+
|
343 |
+
# automatic translation
|
344 |
+
#: bws_menu/bws_functions.php:710
|
345 |
+
msgid "Add BWS Plugins Shortcode"
|
346 |
+
msgstr "Ajouter le shortcode des plugins BWS"
|
347 |
+
|
348 |
+
# automatic translation
|
349 |
+
#: bws_menu/bws_functions.php:731
|
350 |
+
msgid "Add shortcode"
|
351 |
+
msgstr "Ajouter un shortcode"
|
352 |
+
|
353 |
+
# automatic translation
|
354 |
+
#: bws_menu/bws_functions.php:731
|
355 |
+
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
356 |
+
msgstr "Ajoutez les shortcodes des plugins BestWebSoft à l'aide de ce bouton."
|
357 |
+
|
358 |
+
# automatic translation
|
359 |
+
#: bws_menu/bws_functions.php:819 includes/class-gglcptch-settings-tabs.php:242
|
360 |
+
#: includes/class-gglcptch-settings-tabs.php:270
|
361 |
+
#: includes/class-gglcptch-settings-tabs.php:297 includes/pro_banners.php:20
|
362 |
+
msgid "Close"
|
363 |
+
msgstr "proche"
|
364 |
+
|
365 |
+
# automatic translation
|
366 |
+
#: bws_menu/bws_functions.php:905
|
367 |
+
msgid "Are you sure you want to restore default settings?"
|
368 |
+
msgstr "Voulez-vous vraiment restaurer les paramètres par défaut ?"
|
369 |
+
|
370 |
+
# automatic translation
|
371 |
+
#: bws_menu/bws_functions.php:908
|
372 |
+
msgid "Yes, restore all settings"
|
373 |
+
msgstr "Oui, restaurez tous les paramètres"
|
374 |
+
|
375 |
+
# automatic translation
|
376 |
+
#: bws_menu/bws_functions.php:909
|
377 |
+
msgid "No, go back to the settings page"
|
378 |
+
msgstr "Non, retournez à la page des paramètres"
|
379 |
+
|
380 |
+
# automatic translation
|
381 |
+
#: bws_menu/bws_functions.php:951
|
382 |
+
msgid "Plugin"
|
383 |
+
msgstr "Brancher"
|
384 |
+
|
385 |
+
# automatic translation
|
386 |
+
#: bws_menu/bws_functions.php:960
|
387 |
+
msgid "Shortcode settings"
|
388 |
+
msgstr "Paramètres des codes courts"
|
389 |
+
|
390 |
+
# automatic translation
|
391 |
+
#: bws_menu/bws_functions.php:965
|
392 |
+
msgid "The shortcode will be inserted"
|
393 |
+
msgstr "Le shortcode sera inséré"
|
394 |
+
|
395 |
+
# automatic translation
|
396 |
+
#: bws_menu/bws_functions.php:1008 google-captcha.php:1129
|
397 |
+
msgid "FAQ"
|
398 |
+
msgstr "FAQ"
|
399 |
+
|
400 |
+
# automatic translation
|
401 |
+
#: bws_menu/bws_functions.php:1014
|
402 |
+
msgid "For more information:"
|
403 |
+
msgstr "Pour plus d'informations:"
|
404 |
+
|
405 |
+
# automatic translation
|
406 |
+
#: bws_menu/bws_functions.php:1015 bws_menu/bws_menu.php:401
|
407 |
+
#: bws_menu/class-bws-settings.php:779
|
408 |
+
msgid "Documentation"
|
409 |
+
msgstr "Documentation"
|
410 |
+
|
411 |
+
# automatic translation
|
412 |
+
#: bws_menu/bws_functions.php:1016 bws_menu/bws_menu.php:403
|
413 |
+
#: bws_menu/class-bws-settings.php:781
|
414 |
+
msgid "Video Instructions"
|
415 |
+
msgstr "Instructions vidéo"
|
416 |
+
|
417 |
+
# automatic translation
|
418 |
+
#: bws_menu/bws_functions.php:1017
|
419 |
+
msgid "Submit a Request"
|
420 |
+
msgstr "Soumettre une demande"
|
421 |
+
|
422 |
+
# automatic translation
|
423 |
+
#: bws_menu/bws_menu.php:101 bws_menu/class-bws-settings.php:863
|
424 |
+
msgid "Wrong license key"
|
425 |
+
msgstr "Clé de licence incorrecte"
|
426 |
+
|
427 |
+
# automatic translation
|
428 |
+
#: bws_menu/bws_menu.php:122 bws_menu/class-bws-settings.php:890
|
429 |
+
#: bws_menu/class-bws-settings.php:969 bws_menu/class-bws-settings.php:1007
|
430 |
+
msgid ""
|
431 |
+
"Something went wrong. Please try again later. If the error appears again, please "
|
432 |
+
"contact us"
|
433 |
+
msgstr ""
|
434 |
+
"Quelque chose s'est mal passé. Veuillez réessayer plus tard. Si l'erreur "
|
435 |
+
"réapparaît, veuillez nous contacter"
|
436 |
+
|
437 |
+
# automatic translation
|
438 |
+
#: bws_menu/bws_menu.php:122 bws_menu/class-bws-settings.php:890
|
439 |
+
#: bws_menu/class-bws-settings.php:969 bws_menu/class-bws-settings.php:1007
|
440 |
+
msgid "We are sorry for inconvenience."
|
441 |
+
msgstr "Nous sommes désolés pour le désagrément."
|
442 |
+
|
443 |
+
# automatic translation
|
444 |
+
#: bws_menu/bws_menu.php:129 bws_menu/class-bws-settings.php:896
|
445 |
+
#: bws_menu/class-bws-settings.php:1013
|
446 |
+
msgid "Wrong license key."
|
447 |
+
msgstr "Clé de licence incorrecte."
|
448 |
+
|
449 |
+
# automatic translation
|
450 |
+
#: bws_menu/bws_menu.php:131
|
451 |
+
msgid ""
|
452 |
+
"This license key is bound to another site. Change it via personal Client Area."
|
453 |
+
msgstr ""
|
454 |
+
"Cette clé de licence est liée à un autre site. Modifiez-le via l'Espace Client "
|
455 |
+
"personnel."
|
456 |
+
|
457 |
+
# automatic translation
|
458 |
+
#: bws_menu/bws_menu.php:131
|
459 |
+
msgid "Log in"
|
460 |
+
msgstr "Connexion"
|
461 |
+
|
462 |
+
# automatic translation
|
463 |
+
#: bws_menu/bws_menu.php:133 bws_menu/bws_menu.php:333 bws_menu/deprecated.php:157
|
464 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
465 |
+
msgstr "Malheureusement, vous avez dépassé le nombre d'essais disponibles par jour."
|
466 |
+
|
467 |
+
# automatic translation
|
468 |
+
#: bws_menu/bws_menu.php:135
|
469 |
+
#, php-format
|
470 |
+
msgid ""
|
471 |
+
"Unfortunately, Your license has expired. To continue getting top-priority support "
|
472 |
+
"and plugin updates, you should extend it in your %s"
|
473 |
+
msgstr ""
|
474 |
+
"Malheureusement, votre licence a expiré. Pour continuer à bénéficier du support "
|
475 |
+
"prioritaire et des mises à jour des plugins, vous devez l'étendre dans votre %s"
|
476 |
+
|
477 |
+
# automatic translation
|
478 |
+
#: bws_menu/bws_menu.php:137 bws_menu/class-bws-settings.php:1021
|
479 |
+
msgid ""
|
480 |
+
"Unfortunately, the Pro licence was already installed to this domain. The Pro Trial "
|
481 |
+
"license can be installed only once."
|
482 |
+
msgstr ""
|
483 |
+
"Malheureusement, la licence Pro était déjà installée sur ce domaine. La licence "
|
484 |
+
"Pro Trial ne peut être installée qu'une seule fois."
|
485 |
+
|
486 |
+
# automatic translation
|
487 |
+
#: bws_menu/bws_menu.php:143 bws_menu/class-bws-settings.php:911
|
488 |
+
msgid "The license key is valid."
|
489 |
+
msgstr "La clé de licence est valide."
|
490 |
+
|
491 |
+
# automatic translation
|
492 |
+
#: bws_menu/bws_menu.php:145 bws_menu/class-bws-settings.php:915
|
493 |
+
msgid "Your license will expire on"
|
494 |
+
msgstr "Votre licence expirera le"
|
495 |
+
|
496 |
+
# automatic translation
|
497 |
+
#: bws_menu/bws_menu.php:147
|
498 |
+
msgid "Congratulations! Pro Membership license is activated successfully."
|
499 |
+
msgstr "Toutes nos félicitations! La licence d'adhésion Pro est activée avec succès."
|
500 |
+
|
501 |
+
# automatic translation
|
502 |
+
#: bws_menu/bws_menu.php:154 bws_menu/class-bws-settings.php:1031
|
503 |
+
msgid ""
|
504 |
+
"Something went wrong. Try again later or upload the plugin manually. We are sorry "
|
505 |
+
"for inconvenience."
|
506 |
+
msgstr ""
|
507 |
+
"Quelque chose s'est mal passé. Réessayez plus tard ou téléchargez le plugin "
|
508 |
+
"manuellement. Nous sommes désolés pour le désagrément."
|
509 |
+
|
510 |
+
# automatic translation
|
511 |
+
#: bws_menu/bws_menu.php:164
|
512 |
+
msgid "Please enter your license key."
|
513 |
+
msgstr "S'il vous plaît entrer votre clé de licence."
|
514 |
+
|
515 |
+
# automatic translation
|
516 |
+
#: bws_menu/bws_menu.php:175
|
517 |
+
msgid "Not set"
|
518 |
+
msgstr "Pas encore défini"
|
519 |
+
|
520 |
+
# automatic translation
|
521 |
+
#: bws_menu/bws_menu.php:177
|
522 |
+
msgid "On"
|
523 |
+
msgstr "Au"
|
524 |
+
|
525 |
+
# automatic translation
|
526 |
+
#: bws_menu/bws_menu.php:177
|
527 |
+
msgid "Off"
|
528 |
+
msgstr "Désactivé"
|
529 |
+
|
530 |
+
# automatic translation
|
531 |
+
#: bws_menu/bws_menu.php:178 bws_menu/bws_menu.php:179 bws_menu/bws_menu.php:180
|
532 |
+
#: bws_menu/bws_menu.php:181 bws_menu/bws_menu.php:182 bws_menu/bws_menu.php:183
|
533 |
+
#: bws_menu/bws_menu.php:192
|
534 |
+
msgid "N/A"
|
535 |
+
msgstr "N / A"
|
536 |
+
|
537 |
+
# automatic translation
|
538 |
+
#: bws_menu/bws_menu.php:183
|
539 |
+
msgid "Mb"
|
540 |
+
msgstr "Mo"
|
541 |
+
|
542 |
+
# automatic translation
|
543 |
+
#: bws_menu/bws_menu.php:184 bws_menu/bws_menu.php:185 bws_menu/bws_menu.php:186
|
544 |
+
#: bws_menu/bws_menu.php:190
|
545 |
+
msgid "Yes"
|
546 |
+
msgstr "Oui"
|
547 |
+
|
548 |
+
# automatic translation
|
549 |
+
#: bws_menu/bws_menu.php:184 bws_menu/bws_menu.php:185 bws_menu/bws_menu.php:186
|
550 |
+
#: bws_menu/bws_menu.php:190
|
551 |
+
msgid "No"
|
552 |
+
msgstr "Non"
|
553 |
+
|
554 |
+
# automatic translation
|
555 |
+
#: bws_menu/bws_menu.php:197
|
556 |
+
msgid "WordPress Environment"
|
557 |
+
msgstr "Environnement WordPress"
|
558 |
+
|
559 |
+
# automatic translation
|
560 |
+
#: bws_menu/bws_menu.php:199
|
561 |
+
msgid "Home URL"
|
562 |
+
msgstr "URL d'accueil"
|
563 |
+
|
564 |
+
# automatic translation
|
565 |
+
#: bws_menu/bws_menu.php:200
|
566 |
+
msgid "Website URL"
|
567 |
+
msgstr "URL de site web"
|
568 |
+
|
569 |
+
# automatic translation
|
570 |
+
#: bws_menu/bws_menu.php:201
|
571 |
+
msgid "WP Version"
|
572 |
+
msgstr "Version WP"
|
573 |
+
|
574 |
+
# automatic translation
|
575 |
+
#: bws_menu/bws_menu.php:202
|
576 |
+
msgid "WP Multisite"
|
577 |
+
msgstr "WP Multisite"
|
578 |
+
|
579 |
+
# automatic translation
|
580 |
+
#: bws_menu/bws_menu.php:203
|
581 |
+
msgid "WP Memory Limit"
|
582 |
+
msgstr "Limite de mémoire WP"
|
583 |
+
|
584 |
+
# automatic translation
|
585 |
+
#: bws_menu/bws_menu.php:204
|
586 |
+
msgid "Active Theme"
|
587 |
+
msgstr "Thème actif"
|
588 |
+
|
589 |
+
# automatic translation
|
590 |
+
#: bws_menu/bws_menu.php:204 bws_menu/bws_menu.php:249 bws_menu/bws_menu.php:252
|
591 |
+
#, php-format
|
592 |
+
msgid "by %s"
|
593 |
+
msgstr "par %s"
|
594 |
+
|
595 |
+
# automatic translation
|
596 |
+
#: bws_menu/bws_menu.php:208
|
597 |
+
msgid "Server Environment"
|
598 |
+
msgstr "Environnement de serveur"
|
599 |
+
|
600 |
+
# automatic translation
|
601 |
+
#: bws_menu/bws_menu.php:210
|
602 |
+
msgid "Operating System"
|
603 |
+
msgstr "Système opérateur"
|
604 |
+
|
605 |
+
# automatic translation
|
606 |
+
#: bws_menu/bws_menu.php:211
|
607 |
+
msgid "Server"
|
608 |
+
msgstr "Serveur"
|
609 |
+
|
610 |
+
# automatic translation
|
611 |
+
#: bws_menu/bws_menu.php:212
|
612 |
+
msgid "PHP Version"
|
613 |
+
msgstr "Version PHP"
|
614 |
+
|
615 |
+
# automatic translation
|
616 |
+
#: bws_menu/bws_menu.php:213
|
617 |
+
msgid "PHP Allow URL fopen"
|
618 |
+
msgstr "PHP Autoriser l'URL fopen"
|
619 |
+
|
620 |
+
# automatic translation
|
621 |
+
#: bws_menu/bws_menu.php:214
|
622 |
+
msgid "PHP Memory Limit"
|
623 |
+
msgstr "Limite de mémoire PHP"
|
624 |
+
|
625 |
+
# automatic translation
|
626 |
+
#: bws_menu/bws_menu.php:215
|
627 |
+
msgid "Memory Usage"
|
628 |
+
msgstr "Utilisation de la mémoire"
|
629 |
+
|
630 |
+
# automatic translation
|
631 |
+
#: bws_menu/bws_menu.php:216
|
632 |
+
msgid "PHP Max Upload Size"
|
633 |
+
msgstr "Taille maximale de téléchargement PHP"
|
634 |
+
|
635 |
+
# automatic translation
|
636 |
+
#: bws_menu/bws_menu.php:217
|
637 |
+
msgid "PHP Max Post Size"
|
638 |
+
msgstr "Taille maximale des messages PHP"
|
639 |
+
|
640 |
+
# automatic translation
|
641 |
+
#: bws_menu/bws_menu.php:218
|
642 |
+
msgid "PHP Max Script Execute Time"
|
643 |
+
msgstr "Temps d'exécution maximum du script PHP"
|
644 |
+
|
645 |
+
# automatic translation
|
646 |
+
#: bws_menu/bws_menu.php:219
|
647 |
+
msgid "PHP Exif support"
|
648 |
+
msgstr "Prise en charge de PHP Exif"
|
649 |
+
|
650 |
+
# automatic translation
|
651 |
+
#: bws_menu/bws_menu.php:220
|
652 |
+
msgid "PHP IPTC support"
|
653 |
+
msgstr "Prise en charge de PHP IPTC"
|
654 |
+
|
655 |
+
# automatic translation
|
656 |
+
#: bws_menu/bws_menu.php:221
|
657 |
+
msgid "PHP XML support"
|
658 |
+
msgstr "Prise en charge de PHP XML"
|
659 |
+
|
660 |
+
# automatic translation
|
661 |
+
#: bws_menu/bws_menu.php:227
|
662 |
+
msgid "Database"
|
663 |
+
msgstr "Base de données"
|
664 |
+
|
665 |
+
# automatic translation
|
666 |
+
#: bws_menu/bws_menu.php:229
|
667 |
+
msgid "WP DB version"
|
668 |
+
msgstr "Version de la base de données WP"
|
669 |
+
|
670 |
+
# automatic translation
|
671 |
+
#: bws_menu/bws_menu.php:230
|
672 |
+
msgid "MySQL version"
|
673 |
+
msgstr "Version MySQL"
|
674 |
+
|
675 |
+
# automatic translation
|
676 |
+
#: bws_menu/bws_menu.php:231
|
677 |
+
msgid "SQL Mode"
|
678 |
+
msgstr "Mode SQL"
|
679 |
+
|
680 |
+
# automatic translation
|
681 |
+
#: bws_menu/bws_menu.php:235
|
682 |
+
msgid "Active Plugins"
|
683 |
+
msgstr "Plugins actifs"
|
684 |
+
|
685 |
+
# automatic translation
|
686 |
+
#: bws_menu/bws_menu.php:240
|
687 |
+
msgid "Inactive Plugins"
|
688 |
+
msgstr "Plugins inactifs"
|
689 |
+
|
690 |
+
# automatic translation
|
691 |
+
#: bws_menu/bws_menu.php:261
|
692 |
+
msgid "Please enter a valid email address."
|
693 |
+
msgstr "S'il vous plaît, mettez une adresse email valide."
|
694 |
+
|
695 |
+
# automatic translation
|
696 |
+
#: bws_menu/bws_menu.php:263
|
697 |
+
#, php-format
|
698 |
+
msgid "Email with system info is sent to %s."
|
699 |
+
msgstr "Un e-mail contenant les informations système est envoyé à %s."
|
700 |
+
|
701 |
+
# automatic translation
|
702 |
+
#: bws_menu/bws_menu.php:267
|
703 |
+
msgid "Thank you for contacting us."
|
704 |
+
msgstr "Merci de nous contacter."
|
705 |
+
|
706 |
+
# automatic translation
|
707 |
+
#: bws_menu/bws_menu.php:290
|
708 |
+
msgid "Sorry, email message could not be delivered."
|
709 |
+
msgstr "Désolé, l'e-mail n'a pas pu être remis."
|
710 |
+
|
711 |
+
# automatic translation
|
712 |
+
#: bws_menu/bws_menu.php:306 bws_menu/bws_menu.php:310 bws_menu/bws_menu.php:359
|
713 |
+
#: bws_menu/deprecated.php:26
|
714 |
+
msgid "Plugins"
|
715 |
+
msgstr "Plugins"
|
716 |
+
|
717 |
+
# automatic translation
|
718 |
+
#: bws_menu/bws_menu.php:307 bws_menu/bws_menu.php:311 bws_menu/bws_menu.php:587
|
719 |
+
#: bws_menu/deprecated.php:27
|
720 |
+
msgid "Themes"
|
721 |
+
msgstr "Thèmes"
|
722 |
+
|
723 |
+
# automatic translation
|
724 |
+
#: bws_menu/bws_menu.php:308 bws_menu/bws_menu.php:312 bws_menu/bws_menu.php:617
|
725 |
+
msgid "System status"
|
726 |
+
msgstr "État du système"
|
727 |
+
|
728 |
+
# automatic translation
|
729 |
+
#: bws_menu/bws_menu.php:316 google-captcha.php:1130
|
730 |
+
msgid "Support"
|
731 |
+
msgstr "Soutien"
|
732 |
+
|
733 |
+
# automatic translation
|
734 |
+
#: bws_menu/bws_menu.php:317
|
735 |
+
msgid "Manage purchased licenses & subscriptions"
|
736 |
+
msgstr "Gérer les licences achetées et les abonnements"
|
737 |
+
|
738 |
+
# automatic translation
|
739 |
+
#: bws_menu/bws_menu.php:325
|
740 |
+
#, php-format
|
741 |
+
msgid "Get Access to %s+ Premium Plugins"
|
742 |
+
msgstr "Accédez aux plugins %s+ Premium"
|
743 |
+
|
744 |
+
# automatic translation
|
745 |
+
#: bws_menu/bws_menu.php:327
|
746 |
+
msgid "Subscribe to Pro Membership"
|
747 |
+
msgstr "Abonnez-vous à l'adhésion Pro"
|
748 |
+
|
749 |
+
# automatic translation
|
750 |
+
#: bws_menu/bws_menu.php:335 bws_menu/bws_menu.php:346
|
751 |
+
#: bws_menu/class-bws-settings.php:825 bws_menu/deprecated.php:123
|
752 |
+
msgid "Check license key"
|
753 |
+
msgstr "Vérifier la clé de licence"
|
754 |
+
|
755 |
+
# automatic translation
|
756 |
+
#: bws_menu/bws_menu.php:338
|
757 |
+
msgid "Enter your license key"
|
758 |
+
msgstr "Entrez votre clé de licence"
|
759 |
+
|
760 |
+
# automatic translation
|
761 |
+
#: bws_menu/bws_menu.php:344 bws_menu/bws_menu.php:539 bws_menu/bws_menu.php:548
|
762 |
+
#: bws_menu/class-bws-settings.php:804 bws_menu/deprecated.php:155
|
763 |
+
#: bws_menu/deprecated.php:163 bws_menu/deprecated.php:240
|
764 |
+
#: bws_menu/deprecated.php:249 includes/forms.php:117 includes/forms.php:141
|
765 |
+
msgid "Activate"
|
766 |
+
msgstr "Activer"
|
767 |
+
|
768 |
+
# automatic translation
|
769 |
+
#: bws_menu/bws_menu.php:360
|
770 |
+
msgid "Upload Plugin"
|
771 |
+
msgstr "Télécharger le plugin"
|
772 |
+
|
773 |
+
# automatic translation
|
774 |
+
#: bws_menu/bws_menu.php:364
|
775 |
+
#, php-format
|
776 |
+
msgid ""
|
777 |
+
"The plugin generated %d characters of <strong>unexpected output</strong> during "
|
778 |
+
"activation. If you notice “headers already sent” messages, problems "
|
779 |
+
"with syndication feeds or other issues, try deactivating or removing this plugin."
|
780 |
+
msgstr ""
|
781 |
+
"Le plugin a généré %d caractères de <strong>sortie inattendue</strong> lors de "
|
782 |
+
"l'activation. Si vous remarquez des messages « en-têtes déjà envoyés », des "
|
783 |
+
"problèmes avec les flux de syndication ou d'autres problèmes, essayez de "
|
784 |
+
"désactiver ou de supprimer ce plugin."
|
785 |
+
|
786 |
+
# automatic translation
|
787 |
+
#: bws_menu/bws_menu.php:366
|
788 |
+
msgid ""
|
789 |
+
"Plugin could not be activated because it triggered a <strong>fatal error</strong>."
|
790 |
+
msgstr ""
|
791 |
+
"Le plugin n'a pas pu être activé car il a déclenché une <strong>erreur fatale</"
|
792 |
+
"strong> ."
|
793 |
+
|
794 |
+
# automatic translation
|
795 |
+
#: bws_menu/bws_menu.php:369
|
796 |
+
msgid "Plugin <strong>activated</strong>."
|
797 |
+
msgstr "Plugin <strong>activé</strong> ."
|
798 |
+
|
799 |
+
# automatic translation
|
800 |
+
#: bws_menu/bws_menu.php:383
|
801 |
+
msgid "Download Pro Plugin"
|
802 |
+
msgstr "Télécharger le plugin Pro"
|
803 |
+
|
804 |
+
# automatic translation
|
805 |
+
#: bws_menu/bws_menu.php:385 bws_menu/class-bws-settings.php:762
|
806 |
+
msgid "Your Pro plugin is ready"
|
807 |
+
msgstr "Votre plugin Pro est prêt"
|
808 |
+
|
809 |
+
# automatic translation
|
810 |
+
#: bws_menu/bws_menu.php:387 bws_menu/class-bws-settings.php:764
|
811 |
+
msgid "Your plugin has been zipped, and now is ready to download."
|
812 |
+
msgstr "Votre plugin a été compressé et est maintenant prêt à être téléchargé."
|
813 |
+
|
814 |
+
# automatic translation
|
815 |
+
#: bws_menu/bws_menu.php:390 bws_menu/class-bws-settings.php:767
|
816 |
+
msgid "Download Now"
|
817 |
+
msgstr "Télécharger maintenant"
|
818 |
+
|
819 |
+
# automatic translation
|
820 |
+
#: bws_menu/bws_menu.php:394 bws_menu/class-bws-settings.php:771
|
821 |
+
msgid "Need help installing the plugin?"
|
822 |
+
msgstr "Besoin d'aide pour installer le plugin ?"
|
823 |
+
|
824 |
+
# automatic translation
|
825 |
+
#: bws_menu/bws_menu.php:396 bws_menu/class-bws-settings.php:773
|
826 |
+
msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
|
827 |
+
msgstr ""
|
828 |
+
"Comment installer le plugin WordPress depuis votre tableau de bord "
|
829 |
+
"d'administration (archive ZIP)"
|
830 |
+
|
831 |
+
# automatic translation
|
832 |
+
#: bws_menu/bws_menu.php:399 bws_menu/class-bws-settings.php:777
|
833 |
+
msgid "Get Started"
|
834 |
+
msgstr "Commencer"
|
835 |
+
|
836 |
+
# automatic translation
|
837 |
+
#: bws_menu/bws_menu.php:405 bws_menu/class-bws-settings.php:783
|
838 |
+
msgid "Knowledge Base"
|
839 |
+
msgstr "Base de connaissances"
|
840 |
+
|
841 |
+
# automatic translation
|
842 |
+
#: bws_menu/bws_menu.php:408
|
843 |
+
msgid "Licenses & Domains"
|
844 |
+
msgstr "Licences & Domaines"
|
845 |
+
|
846 |
+
# automatic translation
|
847 |
+
#: bws_menu/bws_menu.php:411
|
848 |
+
msgid "Client Area"
|
849 |
+
msgstr "Espace Client"
|
850 |
+
|
851 |
+
# automatic translation
|
852 |
+
#: bws_menu/bws_menu.php:413
|
853 |
+
msgid "Return to BestWebSoft Panel"
|
854 |
+
msgstr "Retour au panneau BestWebSoft"
|
855 |
+
|
856 |
+
# automatic translation
|
857 |
+
#: bws_menu/bws_menu.php:420 bws_menu/bws_menu.php:440 bws_menu/bws_menu.php:569
|
858 |
+
msgid "All"
|
859 |
+
msgstr "Tous"
|
860 |
+
|
861 |
+
# automatic translation
|
862 |
+
#: bws_menu/bws_menu.php:423 bws_menu/bws_menu.php:606
|
863 |
+
msgid "Installed"
|
864 |
+
msgstr "installée"
|
865 |
+
|
866 |
+
# automatic translation
|
867 |
+
#: bws_menu/bws_menu.php:426
|
868 |
+
msgid "Not Installed"
|
869 |
+
msgstr "Pas installé"
|
870 |
+
|
871 |
+
# automatic translation
|
872 |
+
#: bws_menu/bws_menu.php:433
|
873 |
+
msgid "Filter results"
|
874 |
+
msgstr "Filtrer les résultats"
|
875 |
+
|
876 |
+
# automatic translation
|
877 |
+
#: bws_menu/bws_menu.php:436 bws_menu/bws_menu.php:565
|
878 |
+
msgid "Category"
|
879 |
+
msgstr "Catégorie"
|
880 |
+
|
881 |
+
# automatic translation
|
882 |
+
#: bws_menu/bws_menu.php:500
|
883 |
+
msgid "Not installed"
|
884 |
+
msgstr "Pas installé"
|
885 |
+
|
886 |
+
# automatic translation
|
887 |
+
#: bws_menu/bws_menu.php:504
|
888 |
+
msgid "Renew to get updates"
|
889 |
+
msgstr "Renouveler pour obtenir des mises à jour"
|
890 |
+
|
891 |
+
# automatic translation
|
892 |
+
#: bws_menu/bws_menu.php:507
|
893 |
+
#, php-format
|
894 |
+
msgid "Update to v %s"
|
895 |
+
msgstr "Mettre à jour vers v %s"
|
896 |
+
|
897 |
+
# automatic translation
|
898 |
+
#: bws_menu/bws_menu.php:519 bws_menu/bws_menu.php:542
|
899 |
+
msgid "Get Pro"
|
900 |
+
msgstr "Devenir pro"
|
901 |
+
|
902 |
+
# automatic translation
|
903 |
+
#: bws_menu/bws_menu.php:525 bws_menu/class-bws-settings.php:192
|
904 |
+
#: bws_menu/class-bws-settings.php:1094 google-captcha.php:76
|
905 |
+
#: includes/pro_banners.php:29
|
906 |
+
msgid "Upgrade to Pro"
|
907 |
+
msgstr "Passer à Pro"
|
908 |
+
|
909 |
+
# automatic translation
|
910 |
+
#: bws_menu/bws_menu.php:539 bws_menu/bws_menu.php:548
|
911 |
+
msgid "Activate this plugin"
|
912 |
+
msgstr "Activer ce plugin"
|
913 |
+
|
914 |
+
# automatic translation
|
915 |
+
#: bws_menu/bws_menu.php:551
|
916 |
+
msgid "Install this plugin"
|
917 |
+
msgstr "Installer ce plugin"
|
918 |
+
|
919 |
+
# automatic translation
|
920 |
+
#: bws_menu/bws_menu.php:551 includes/forms.php:119 includes/forms.php:144
|
921 |
+
#: includes/forms.php:148
|
922 |
+
msgid "Install Now"
|
923 |
+
msgstr "Installer maintenant"
|
924 |
+
|
925 |
+
# automatic translation
|
926 |
+
#: bws_menu/bws_menu.php:560
|
927 |
+
msgid "Nothing found. Try another criteria."
|
928 |
+
msgstr "Rien n'a été trouvé. Essayez un autre critère."
|
929 |
+
|
930 |
+
# automatic translation
|
931 |
+
#: bws_menu/bws_menu.php:597
|
932 |
+
#, php-format
|
933 |
+
msgid "By %s"
|
934 |
+
msgstr "Par %s"
|
935 |
+
|
936 |
+
# automatic translation
|
937 |
+
#: bws_menu/bws_menu.php:604
|
938 |
+
msgid "Already Installed"
|
939 |
+
msgstr "Déjà installé"
|
940 |
+
|
941 |
+
# automatic translation
|
942 |
+
#: bws_menu/bws_menu.php:614
|
943 |
+
msgid "Browse More WordPress Themes"
|
944 |
+
msgstr "Parcourir plus de thèmes WordPress"
|
945 |
+
|
946 |
+
# automatic translation
|
947 |
+
#: bws_menu/bws_menu.php:623
|
948 |
+
msgid "Send to support"
|
949 |
+
msgstr "Envoyer au support"
|
950 |
+
|
951 |
+
# automatic translation
|
952 |
+
#: bws_menu/bws_menu.php:630
|
953 |
+
msgid "Send to custom email »"
|
954 |
+
msgstr "Envoyer à un e-mail personnalisé »"
|
955 |
+
|
956 |
+
# automatic translation
|
957 |
+
#: bws_menu/class-bws-settings.php:167
|
958 |
+
msgid "Information"
|
959 |
+
msgstr "Informations"
|
960 |
+
|
961 |
+
# automatic translation
|
962 |
+
#: bws_menu/class-bws-settings.php:179
|
963 |
+
msgid "Inactive"
|
964 |
+
msgstr "Inactif"
|
965 |
+
|
966 |
+
# automatic translation
|
967 |
+
#: bws_menu/class-bws-settings.php:187
|
968 |
+
msgid "Expired"
|
969 |
+
msgstr "Expiré"
|
970 |
+
|
971 |
+
# automatic translation
|
972 |
+
#: bws_menu/class-bws-settings.php:190
|
973 |
+
#, php-format
|
974 |
+
msgid "%s day(-s) left"
|
975 |
+
msgstr "%s jour(-s) restant"
|
976 |
+
|
977 |
+
# automatic translation
|
978 |
+
#: bws_menu/class-bws-settings.php:196
|
979 |
+
#, php-format
|
980 |
+
msgid "Expired on %s"
|
981 |
+
msgstr "Expiré le %s"
|
982 |
+
|
983 |
+
# automatic translation
|
984 |
+
#: bws_menu/class-bws-settings.php:196
|
985 |
+
msgid "Renew Now"
|
986 |
+
msgstr "Renouveler maintenant"
|
987 |
+
|
988 |
+
# automatic translation
|
989 |
+
#: bws_menu/class-bws-settings.php:198
|
990 |
+
msgid "Active"
|
991 |
+
msgstr "actif"
|
992 |
+
|
993 |
+
# automatic translation
|
994 |
+
#: bws_menu/class-bws-settings.php:203
|
995 |
+
msgid "License"
|
996 |
+
msgstr "Licence"
|
997 |
+
|
998 |
+
# automatic translation
|
999 |
+
#: bws_menu/class-bws-settings.php:206
|
1000 |
+
msgid "Status"
|
1001 |
+
msgstr "Statut"
|
1002 |
+
|
1003 |
+
# automatic translation
|
1004 |
+
#: bws_menu/class-bws-settings.php:210 includes/class-gglcptch-settings-tabs.php:63
|
1005 |
+
#: includes/class-gglcptch-settings-tabs.php:64
|
1006 |
+
msgid "Version"
|
1007 |
+
msgstr "Version"
|
1008 |
+
|
1009 |
+
# automatic translation
|
1010 |
+
#: bws_menu/class-bws-settings.php:326
|
1011 |
+
msgid "All plugin settings were restored."
|
1012 |
+
msgstr "Tous les paramètres du plugin ont été restaurés."
|
1013 |
+
|
1014 |
+
# automatic translation
|
1015 |
+
#: bws_menu/class-bws-settings.php:466 includes/class-gglcptch-settings-tabs.php:24
|
1016 |
+
msgid "Custom Code"
|
1017 |
+
msgstr "Code personnalisé"
|
1018 |
+
|
1019 |
+
# automatic translation
|
1020 |
+
#: bws_menu/class-bws-settings.php:470
|
1021 |
+
msgid "You do not have sufficient permissions to edit plugins for this site."
|
1022 |
+
msgstr ""
|
1023 |
+
"Vous ne disposez pas des autorisations suffisantes pour modifier les plugins de ce "
|
1024 |
+
"site."
|
1025 |
+
|
1026 |
+
# automatic translation
|
1027 |
+
#: bws_menu/class-bws-settings.php:475
|
1028 |
+
msgid "These styles will be added to the header on all pages of your site."
|
1029 |
+
msgstr "Ces styles seront ajoutés à l'en-tête de toutes les pages de votre site."
|
1030 |
+
|
1031 |
+
# automatic translation
|
1032 |
+
#: bws_menu/class-bws-settings.php:478
|
1033 |
+
#, php-format
|
1034 |
+
msgid ""
|
1035 |
+
"This PHP code will be hooked to the %s action and will be printed on front end "
|
1036 |
+
"only."
|
1037 |
+
msgstr ""
|
1038 |
+
"Ce code PHP sera accroché à l'action %s et sera imprimé sur le front-end "
|
1039 |
+
"uniquement."
|
1040 |
+
|
1041 |
+
# automatic translation
|
1042 |
+
#: bws_menu/class-bws-settings.php:481
|
1043 |
+
msgid "These code will be added to the header on all pages of your site."
|
1044 |
+
msgstr "Ces codes seront ajoutés à l'en-tête de toutes les pages de votre site."
|
1045 |
+
|
1046 |
+
# automatic translation
|
1047 |
+
#: bws_menu/class-bws-settings.php:489
|
1048 |
+
#, php-format
|
1049 |
+
msgid ""
|
1050 |
+
"You need to make this files writable before you can save your changes. See %s the "
|
1051 |
+
"Codex %s for more information."
|
1052 |
+
msgstr ""
|
1053 |
+
"Vous devez rendre ces fichiers inscriptibles avant de pouvoir enregistrer vos "
|
1054 |
+
"modifications. Voir %s le Codex %s pour plus d'informations."
|
1055 |
+
|
1056 |
+
# automatic translation
|
1057 |
+
#: bws_menu/class-bws-settings.php:499
|
1058 |
+
msgid "Browsing"
|
1059 |
+
msgstr "Parcourir"
|
1060 |
+
|
1061 |
+
# automatic translation
|
1062 |
+
#: bws_menu/class-bws-settings.php:504
|
1063 |
+
#, php-format
|
1064 |
+
msgid "Activate custom %s code."
|
1065 |
+
msgstr "Activez le code %s personnalisé."
|
1066 |
+
|
1067 |
+
# automatic translation
|
1068 |
+
#: bws_menu/class-bws-settings.php:512
|
1069 |
+
#, php-format
|
1070 |
+
msgid "Learn more about %s"
|
1071 |
+
msgstr "En savoir plus sur %s"
|
1072 |
+
|
1073 |
+
# automatic translation
|
1074 |
+
#: bws_menu/class-bws-settings.php:574
|
1075 |
+
msgid "Miscellaneous Settings"
|
1076 |
+
msgstr "Paramètres divers"
|
1077 |
+
|
1078 |
+
# automatic translation
|
1079 |
+
#: bws_menu/class-bws-settings.php:583 bws_menu/class-bws-settings.php:638
|
1080 |
+
#, php-format
|
1081 |
+
msgid ""
|
1082 |
+
"It is prohibited to change %s settings on this site in the %s network settings."
|
1083 |
+
msgstr ""
|
1084 |
+
"Il est interdit de modifier les paramètres %s sur ce site dans les paramètres "
|
1085 |
+
"réseau %s."
|
1086 |
+
|
1087 |
+
# automatic translation
|
1088 |
+
#: bws_menu/class-bws-settings.php:586 bws_menu/class-bws-settings.php:641
|
1089 |
+
#, php-format
|
1090 |
+
msgid "It is prohibited to view %s settings on this site in the %s network settings."
|
1091 |
+
msgstr ""
|
1092 |
+
"Il est interdit d'afficher les paramètres %s sur ce site dans les paramètres "
|
1093 |
+
"réseau %s."
|
1094 |
+
|
1095 |
+
# automatic translation
|
1096 |
+
#: bws_menu/class-bws-settings.php:595
|
1097 |
+
msgid "Pro Options"
|
1098 |
+
msgstr "Options professionnelles"
|
1099 |
+
|
1100 |
+
# automatic translation
|
1101 |
+
#: bws_menu/class-bws-settings.php:599
|
1102 |
+
msgid "Enable to display plugin Pro options."
|
1103 |
+
msgstr "Activer pour afficher les options du plug-in Pro."
|
1104 |
+
|
1105 |
+
# automatic translation
|
1106 |
+
#: bws_menu/class-bws-settings.php:605
|
1107 |
+
msgid "Track Usage"
|
1108 |
+
msgstr "Suivre l'utilisation"
|
1109 |
+
|
1110 |
+
# automatic translation
|
1111 |
+
#: bws_menu/class-bws-settings.php:609
|
1112 |
+
msgid "Enable to allow tracking plugin usage anonymously in order to make it better."
|
1113 |
+
msgstr ""
|
1114 |
+
"Activer pour permettre le suivi de l'utilisation du plugin de manière anonyme afin "
|
1115 |
+
"de l'améliorer."
|
1116 |
+
|
1117 |
+
# automatic translation
|
1118 |
+
#: bws_menu/class-bws-settings.php:614
|
1119 |
+
msgid "Default Settings"
|
1120 |
+
msgstr "Paramètres par défaut"
|
1121 |
+
|
1122 |
+
# automatic translation
|
1123 |
+
#: bws_menu/class-bws-settings.php:616
|
1124 |
+
msgid "Restore Settings"
|
1125 |
+
msgstr "Restaurer les paramètres"
|
1126 |
+
|
1127 |
+
# automatic translation
|
1128 |
+
#: bws_menu/class-bws-settings.php:617
|
1129 |
+
msgid "This will restore plugin settings to defaults."
|
1130 |
+
msgstr "Cela restaurera les paramètres du plug-in par défaut."
|
1131 |
+
|
1132 |
+
# automatic translation
|
1133 |
+
#: bws_menu/class-bws-settings.php:629
|
1134 |
+
msgid "Import / Export"
|
1135 |
+
msgstr "Importer / Exporter"
|
1136 |
+
|
1137 |
+
# automatic translation
|
1138 |
+
#: bws_menu/class-bws-settings.php:747 includes/class-gglcptch-settings-tabs.php:26
|
1139 |
+
msgid "License Key"
|
1140 |
+
msgstr "Clé de licence"
|
1141 |
+
|
1142 |
+
# automatic translation
|
1143 |
+
#: bws_menu/class-bws-settings.php:806
|
1144 |
+
#, php-format
|
1145 |
+
msgid "Enter your license key to activate %s and get premium plugin features."
|
1146 |
+
msgstr ""
|
1147 |
+
"Entrez votre clé de licence pour activer %s et obtenir des fonctionnalités de "
|
1148 |
+
"plugin premium."
|
1149 |
+
|
1150 |
+
# automatic translation
|
1151 |
+
#: bws_menu/class-bws-settings.php:809 bws_menu/class-bws-settings.php:1017
|
1152 |
+
#: bws_menu/deprecated.php:243
|
1153 |
+
msgid ""
|
1154 |
+
"Unfortunately, you have exceeded the number of available tries per day. Please, "
|
1155 |
+
"upload the plugin manually."
|
1156 |
+
msgstr ""
|
1157 |
+
"Malheureusement, vous avez dépassé le nombre d'essais disponibles par jour. "
|
1158 |
+
"Veuillez télécharger le plugin manuellement."
|
1159 |
+
|
1160 |
+
# automatic translation
|
1161 |
+
#: bws_menu/class-bws-settings.php:812 bws_menu/deprecated.php:234
|
1162 |
+
#, php-format
|
1163 |
+
msgid "Start Your Free %s-Day Trial Now"
|
1164 |
+
msgstr "Commencez votre essai gratuit de %s jours maintenant"
|
1165 |
+
|
1166 |
+
# automatic translation
|
1167 |
+
#: bws_menu/class-bws-settings.php:827
|
1168 |
+
msgid ""
|
1169 |
+
"If necessary, you can check if the license key is correct or reenter it in the "
|
1170 |
+
"field below."
|
1171 |
+
msgstr ""
|
1172 |
+
"Si nécessaire, vous pouvez vérifier si la clé de licence est correcte ou la "
|
1173 |
+
"ressaisir dans le champ ci-dessous."
|
1174 |
+
|
1175 |
+
# automatic translation
|
1176 |
+
#: bws_menu/class-bws-settings.php:836
|
1177 |
+
msgid "Manage License Settings"
|
1178 |
+
msgstr "Gérer les paramètres de licence"
|
1179 |
+
|
1180 |
+
# automatic translation
|
1181 |
+
#: bws_menu/class-bws-settings.php:838
|
1182 |
+
msgid "Login to Client Area"
|
1183 |
+
msgstr "Connectez-vous à l'espace client"
|
1184 |
+
|
1185 |
+
# automatic translation
|
1186 |
+
#: bws_menu/class-bws-settings.php:840
|
1187 |
+
msgid ""
|
1188 |
+
"Manage active licenses, download BWS products, and view your payment history using "
|
1189 |
+
"BestWebSoft Client Area."
|
1190 |
+
msgstr ""
|
1191 |
+
"Gérez les licences actives, téléchargez les produits BWS et consultez l'historique "
|
1192 |
+
"de vos paiements à l'aide de l'espace client BestWebSoft."
|
1193 |
+
|
1194 |
+
# automatic translation
|
1195 |
+
#: bws_menu/class-bws-settings.php:898 bws_menu/class-bws-settings.php:1015
|
1196 |
+
msgid "This license key is bound to another site."
|
1197 |
+
msgstr "Cette clé de licence est liée à un autre site."
|
1198 |
+
|
1199 |
+
# automatic translation
|
1200 |
+
#: bws_menu/class-bws-settings.php:900
|
1201 |
+
msgid ""
|
1202 |
+
"This license key is valid, but Your license has expired. If you want to update our "
|
1203 |
+
"plugin in future, you should extend the license."
|
1204 |
+
msgstr ""
|
1205 |
+
"Cette clé de licence est valide, mais votre licence a expiré. Si vous souhaitez "
|
1206 |
+
"mettre à jour notre plugin à l'avenir, vous devez étendre la licence."
|
1207 |
+
|
1208 |
+
# automatic translation
|
1209 |
+
#: bws_menu/class-bws-settings.php:902
|
1210 |
+
msgid "Unfortunately, you have exceeded the number of available tries."
|
1211 |
+
msgstr "Malheureusement, vous avez dépassé le nombre d'essais disponibles."
|
1212 |
+
|
1213 |
+
# automatic translation
|
1214 |
+
#: bws_menu/class-bws-settings.php:904
|
1215 |
+
msgid ""
|
1216 |
+
"Unfortunately, the Pro Trial licence was already installed to this domain. The Pro "
|
1217 |
+
"Trial license can be installed only once."
|
1218 |
+
msgstr ""
|
1219 |
+
"Malheureusement, la licence Pro Trial était déjà installée sur ce domaine. La "
|
1220 |
+
"licence Pro Trial ne peut être installée qu'une seule fois."
|
1221 |
+
|
1222 |
+
# automatic translation
|
1223 |
+
#: bws_menu/class-bws-settings.php:909
|
1224 |
+
msgid "The Pro Trial license key is valid."
|
1225 |
+
msgstr "La clé de licence Pro Trial est valide."
|
1226 |
+
|
1227 |
+
# automatic translation
|
1228 |
+
#: bws_menu/class-bws-settings.php:922 bws_menu/deprecated.php:142
|
1229 |
+
#, php-format
|
1230 |
+
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
1231 |
+
msgstr ""
|
1232 |
+
"Afin de continuer à utiliser le plugin, il est nécessaire d'acheter une licence %s."
|
1233 |
+
|
1234 |
+
# automatic translation
|
1235 |
+
#: bws_menu/class-bws-settings.php:1019
|
1236 |
+
#, php-format
|
1237 |
+
msgid ""
|
1238 |
+
"Unfortunately, Your license has expired. To continue getting top-priority support "
|
1239 |
+
"and plugin updates, you should extend it in your %s."
|
1240 |
+
msgstr ""
|
1241 |
+
"Malheureusement, votre licence a expiré. Pour continuer à bénéficier du support "
|
1242 |
+
"prioritaire et des mises à jour des plugins, vous devez l'étendre dans votre %s."
|
1243 |
+
|
1244 |
+
# automatic translation
|
1245 |
+
#: bws_menu/class-bws-settings.php:1068
|
1246 |
+
msgid "Please, enter Your license key"
|
1247 |
+
msgstr "S'il vous plaît entrer votre clé de licence"
|
1248 |
+
|
1249 |
+
# automatic translation
|
1250 |
+
#: bws_menu/class-bws-settings.php:1081
|
1251 |
+
msgid "Need Help?"
|
1252 |
+
msgstr "Besoin d'aide?"
|
1253 |
+
|
1254 |
+
# automatic translation
|
1255 |
+
#: bws_menu/class-bws-settings.php:1083
|
1256 |
+
msgid "Read the Instruction"
|
1257 |
+
msgstr "Lire l'instruction"
|
1258 |
+
|
1259 |
+
# automatic translation
|
1260 |
+
#: bws_menu/class-bws-settings.php:1087
|
1261 |
+
msgid "Watch the Video"
|
1262 |
+
msgstr "Voir la vidéo"
|
1263 |
+
|
1264 |
+
# automatic translation
|
1265 |
+
#: bws_menu/class-bws-settings.php:1098
|
1266 |
+
msgid "Start Your Free Trial"
|
1267 |
+
msgstr "Commencer votre essai gratuit"
|
1268 |
+
|
1269 |
+
# automatic translation
|
1270 |
+
#: bws_menu/class-bws-settings.php:1133
|
1271 |
+
msgid "Request a Feature"
|
1272 |
+
msgstr "Demander une fonctionnalité"
|
1273 |
+
|
1274 |
+
# automatic translation
|
1275 |
+
#: bws_menu/class-bws-settings.php:1138
|
1276 |
+
#, php-format
|
1277 |
+
msgid "How can we improve %s?"
|
1278 |
+
msgstr "Comment pouvons-nous améliorer %s ?"
|
1279 |
+
|
1280 |
+
# automatic translation
|
1281 |
+
#: bws_menu/class-bws-settings.php:1140
|
1282 |
+
msgid "We look forward to hear your ideas."
|
1283 |
+
msgstr "Nous sommes impatients d'entendre vos idées."
|
1284 |
+
|
1285 |
+
# automatic translation
|
1286 |
+
#: bws_menu/class-bws-settings.php:1142
|
1287 |
+
msgid "Describe your idea"
|
1288 |
+
msgstr "Décrivez votre idée"
|
1289 |
+
|
1290 |
+
# automatic translation
|
1291 |
+
#: bws_menu/class-bws-settings.php:1145 bws_menu/deactivation-form.php:120
|
1292 |
+
msgid "Send website data and allow to contact me back"
|
1293 |
+
msgstr "Envoyer les données du site Web et permettre de me recontacter"
|
1294 |
+
|
1295 |
+
# automatic translation
|
1296 |
+
#: bws_menu/class-bws-settings.php:1150
|
1297 |
+
msgid "Submit"
|
1298 |
+
msgstr "Soumettre"
|
1299 |
+
|
1300 |
+
# automatic translation
|
1301 |
+
#: bws_menu/class-bws-settings.php:1151 bws_menu/deactivation-form.php:127
|
1302 |
+
msgid "Processing"
|
1303 |
+
msgstr "Traitement"
|
1304 |
+
|
1305 |
+
# automatic translation
|
1306 |
+
#: bws_menu/class-bws-settings.php:1152
|
1307 |
+
msgid "Thank you!"
|
1308 |
+
msgstr "Merci!"
|
1309 |
+
|
1310 |
+
# automatic translation
|
1311 |
+
#: bws_menu/deactivation-form.php:22
|
1312 |
+
msgid "Need help? We are ready to answer your questions."
|
1313 |
+
msgstr "Besoin d'aide? Nous sommes prêts à répondre à vos questions."
|
1314 |
+
|
1315 |
+
# automatic translation
|
1316 |
+
#: bws_menu/deactivation-form.php:22
|
1317 |
+
msgid "Contact Support"
|
1318 |
+
msgstr "Contactez le support"
|
1319 |
+
|
1320 |
+
# automatic translation
|
1321 |
+
#: bws_menu/deactivation-form.php:27
|
1322 |
+
msgid "The plugin is not working"
|
1323 |
+
msgstr "Le plugin ne fonctionne pas"
|
1324 |
+
|
1325 |
+
# automatic translation
|
1326 |
+
#: bws_menu/deactivation-form.php:29
|
1327 |
+
msgid "Kindly share what didn't work so we can fix it in future updates..."
|
1328 |
+
msgstr ""
|
1329 |
+
"Veuillez partager ce qui n'a pas fonctionné afin que nous puissions le corriger "
|
1330 |
+
"dans les futures mises à jour..."
|
1331 |
+
|
1332 |
+
# automatic translation
|
1333 |
+
#: bws_menu/deactivation-form.php:33
|
1334 |
+
msgid "The plugin didn't work as expected"
|
1335 |
+
msgstr "Le plugin n'a pas fonctionné comme prévu"
|
1336 |
+
|
1337 |
+
# automatic translation
|
1338 |
+
#: bws_menu/deactivation-form.php:35
|
1339 |
+
msgid "What did you expect?"
|
1340 |
+
msgstr "Qu'est-ce que vous attendiez?"
|
1341 |
+
|
1342 |
+
# automatic translation
|
1343 |
+
#: bws_menu/deactivation-form.php:39
|
1344 |
+
msgid "The plugin suddenly stopped working"
|
1345 |
+
msgstr "Le plugin a soudainement cessé de fonctionner"
|
1346 |
+
|
1347 |
+
# automatic translation
|
1348 |
+
#: bws_menu/deactivation-form.php:46
|
1349 |
+
msgid "The plugin broke my site"
|
1350 |
+
msgstr "Le plugin a cassé mon site"
|
1351 |
+
|
1352 |
+
# automatic translation
|
1353 |
+
#: bws_menu/deactivation-form.php:53
|
1354 |
+
msgid "I couldn't understand how to get it work"
|
1355 |
+
msgstr "Je ne pouvais pas comprendre comment le faire fonctionner"
|
1356 |
+
|
1357 |
+
# automatic translation
|
1358 |
+
#: bws_menu/deactivation-form.php:60
|
1359 |
+
msgid "I found a better plugin"
|
1360 |
+
msgstr "J'ai trouvé un meilleur plugin"
|
1361 |
+
|
1362 |
+
# automatic translation
|
1363 |
+
#: bws_menu/deactivation-form.php:62
|
1364 |
+
msgid "What's the plugin name?"
|
1365 |
+
msgstr "Quel est le nom du plugin ?"
|
1366 |
+
|
1367 |
+
# automatic translation
|
1368 |
+
#: bws_menu/deactivation-form.php:66
|
1369 |
+
msgid "The plugin is great, but I need specific feature that you don't support"
|
1370 |
+
msgstr ""
|
1371 |
+
"Le plugin est génial, mais j'ai besoin d'une fonctionnalité spécifique que vous ne "
|
1372 |
+
"supportez pas"
|
1373 |
+
|
1374 |
+
# automatic translation
|
1375 |
+
#: bws_menu/deactivation-form.php:68
|
1376 |
+
msgid "What feature?"
|
1377 |
+
msgstr "Quelle fonctionnalité ?"
|
1378 |
+
|
1379 |
+
# automatic translation
|
1380 |
+
#: bws_menu/deactivation-form.php:72
|
1381 |
+
msgid "I no longer need the plugin"
|
1382 |
+
msgstr "je n'ai plus besoin du plugin"
|
1383 |
+
|
1384 |
+
# automatic translation
|
1385 |
+
#: bws_menu/deactivation-form.php:78
|
1386 |
+
msgid "It's a temporary deactivation, I'm just debugging an issue"
|
1387 |
+
msgstr "C'est une désactivation temporaire, je débogue juste un problème"
|
1388 |
+
|
1389 |
+
# automatic translation
|
1390 |
+
#: bws_menu/deactivation-form.php:84
|
1391 |
+
msgid "Other"
|
1392 |
+
msgstr "Autre"
|
1393 |
+
|
1394 |
+
# automatic translation
|
1395 |
+
#: bws_menu/deactivation-form.php:93
|
1396 |
+
msgid "Quick Feedback"
|
1397 |
+
msgstr "Commentaires rapides"
|
1398 |
+
|
1399 |
+
# automatic translation
|
1400 |
+
#: bws_menu/deactivation-form.php:95
|
1401 |
+
msgid "If you have a moment, please let us know why you are deactivating"
|
1402 |
+
msgstr "Si vous avez un moment, veuillez nous faire savoir pourquoi vous désactivez"
|
1403 |
+
|
1404 |
+
# automatic translation
|
1405 |
+
#: bws_menu/deactivation-form.php:125
|
1406 |
+
msgid "Submit and Deactivate"
|
1407 |
+
msgstr "Soumettre et désactiver"
|
1408 |
+
|
1409 |
+
# automatic translation
|
1410 |
+
#: bws_menu/deactivation-form.php:126
|
1411 |
+
msgid "Skip and Deactivate"
|
1412 |
+
msgstr "Ignorer et désactiver"
|
1413 |
+
|
1414 |
+
# automatic translation
|
1415 |
+
#: bws_menu/deactivation-form.php:272
|
1416 |
+
msgid "Please tell us the reason so we can improve it."
|
1417 |
+
msgstr "S'il vous plaît dites-nous la raison afin que nous puissions l'améliorer."
|
1418 |
+
|
1419 |
+
# automatic translation
|
1420 |
+
#: bws_menu/deprecated.php:28
|
1421 |
+
msgid "System Status"
|
1422 |
+
msgstr "État du système"
|
1423 |
+
|
1424 |
+
# automatic translation
|
1425 |
+
#: bws_menu/deprecated.php:119
|
1426 |
+
msgid ""
|
1427 |
+
"If necessary, you can check if the license key is correct or reenter it in the "
|
1428 |
+
"field below. You can find your license key on your personal page - Client Area - "
|
1429 |
+
"on our website"
|
1430 |
+
msgstr ""
|
1431 |
+
"Si nécessaire, vous pouvez vérifier si la clé de licence est correcte ou la "
|
1432 |
+
"ressaisir dans le champ ci-dessous. Vous pouvez trouver votre clé de licence sur "
|
1433 |
+
"votre page personnelle - Espace Client - sur notre site Internet"
|
1434 |
+
|
1435 |
+
# automatic translation
|
1436 |
+
#: bws_menu/deprecated.php:119
|
1437 |
+
msgid ""
|
1438 |
+
"(your username is the email address specified during the purchase). If necessary, "
|
1439 |
+
"please submit \"Lost your password?\" request."
|
1440 |
+
msgstr ""
|
1441 |
+
"(votre nom d'utilisateur est l'adresse e-mail indiquée lors de l'achat). Si "
|
1442 |
+
"nécessaire, veuillez soumettre « Mot de passe perdu ? » demander."
|
1443 |
+
|
1444 |
+
# automatic translation
|
1445 |
+
#: bws_menu/deprecated.php:142
|
1446 |
+
msgid "After that, you can activate it by entering your license key."
|
1447 |
+
msgstr "Après cela, vous pouvez l'activer en entrant votre clé de licence."
|
1448 |
+
|
1449 |
+
# automatic translation
|
1450 |
+
#: bws_menu/deprecated.php:145 bws_menu/deprecated.php:228
|
1451 |
+
msgid "License key can be found in the"
|
1452 |
+
msgstr "La clé de licence se trouve dans le"
|
1453 |
+
|
1454 |
+
# automatic translation
|
1455 |
+
#: bws_menu/deprecated.php:147 bws_menu/deprecated.php:230
|
1456 |
+
msgid "(your username is the email address specified during the purchase)."
|
1457 |
+
msgstr "(votre nom d'utilisateur est l'adresse e-mail indiquée lors de l'achat)."
|
1458 |
+
|
1459 |
+
# automatic translation
|
1460 |
+
#: bws_menu/deprecated.php:170
|
1461 |
+
msgid "Congratulations! The Pro license of the plugin is activated successfully."
|
1462 |
+
msgstr "Toutes nos félicitations! La licence Pro du plugin est activée avec succès."
|
1463 |
+
|
1464 |
+
# automatic translation
|
1465 |
+
#: bws_menu/deprecated.php:172 bws_menu/deprecated.php:210
|
1466 |
+
msgid "Please, go to"
|
1467 |
+
msgstr "S'il vous plaît allez à"
|
1468 |
+
|
1469 |
+
# automatic translation
|
1470 |
+
#: bws_menu/deprecated.php:172 bws_menu/deprecated.php:210
|
1471 |
+
msgid "the setting page"
|
1472 |
+
msgstr "la page de réglage"
|
1473 |
+
|
1474 |
+
# automatic translation
|
1475 |
+
#: bws_menu/deprecated.php:187
|
1476 |
+
msgid "Restore all plugin settings to defaults"
|
1477 |
+
msgstr "Restaurer tous les paramètres du plugin par défaut"
|
1478 |
+
|
1479 |
+
# automatic translation
|
1480 |
+
#: bws_menu/deprecated.php:189
|
1481 |
+
msgid "Restore settings"
|
1482 |
+
msgstr "Restaurer les paramètres"
|
1483 |
+
|
1484 |
+
# automatic translation
|
1485 |
+
#: bws_menu/deprecated.php:208
|
1486 |
+
msgid ""
|
1487 |
+
"Congratulations! Pro version of the plugin is installed and activated "
|
1488 |
+
"successfully."
|
1489 |
+
msgstr ""
|
1490 |
+
"Toutes nos félicitations! La version Pro du plugin est installée et activée avec "
|
1491 |
+
"succès."
|
1492 |
+
|
1493 |
+
# automatic translation
|
1494 |
+
#: bws_menu/deprecated.php:217
|
1495 |
+
msgid "Show Pro features"
|
1496 |
+
msgstr "Afficher les fonctionnalités Pro"
|
1497 |
+
|
1498 |
+
# automatic translation
|
1499 |
+
#: bws_menu/deprecated.php:224
|
1500 |
+
msgid "Enter your license key to install and activate"
|
1501 |
+
msgstr "Entrez votre clé de licence pour installer et activer"
|
1502 |
+
|
1503 |
+
# automatic translation
|
1504 |
+
#: bws_menu/deprecated.php:226
|
1505 |
+
msgid "version of the plugin."
|
1506 |
+
msgstr "version du plugin."
|
1507 |
+
|
1508 |
+
# automatic translation
|
1509 |
+
#: bws_menu/product_list.php:8
|
1510 |
+
msgid "Admin Tools"
|
1511 |
+
msgstr "Outils d'administration"
|
1512 |
+
|
1513 |
+
# automatic translation
|
1514 |
+
#: bws_menu/product_list.php:9
|
1515 |
+
msgid "Content"
|
1516 |
+
msgstr "Teneur"
|
1517 |
+
|
1518 |
+
# automatic translation
|
1519 |
+
#: bws_menu/product_list.php:10
|
1520 |
+
msgid "eCommerce"
|
1521 |
+
msgstr "commerce électronique"
|
1522 |
+
|
1523 |
+
# automatic translation
|
1524 |
+
#: bws_menu/product_list.php:11
|
1525 |
+
msgid "Marketing"
|
1526 |
+
msgstr "Commercialisation"
|
1527 |
+
|
1528 |
+
# automatic translation
|
1529 |
+
#: bws_menu/product_list.php:12
|
1530 |
+
msgid "Navigation"
|
1531 |
+
msgstr "La navigation"
|
1532 |
+
|
1533 |
+
# automatic translation
|
1534 |
+
#: bws_menu/product_list.php:13
|
1535 |
+
msgid "Recommended"
|
1536 |
+
msgstr "conseillé"
|
1537 |
+
|
1538 |
+
# automatic translation
|
1539 |
+
#: bws_menu/product_list.php:14
|
1540 |
+
msgid "Security"
|
1541 |
+
msgstr "Sécurité"
|
1542 |
+
|
1543 |
+
# automatic translation
|
1544 |
+
#: bws_menu/product_list.php:15
|
1545 |
+
msgid "SEO"
|
1546 |
+
msgstr "Référencement"
|
1547 |
+
|
1548 |
+
# automatic translation
|
1549 |
+
#: bws_menu/product_list.php:16
|
1550 |
+
msgid "SMM"
|
1551 |
+
msgstr "SMM"
|
1552 |
+
|
1553 |
+
# automatic translation
|
1554 |
+
#: bws_menu/product_list.php:23
|
1555 |
+
msgid "Give a birth for your bike rental and booking WordPress website."
|
1556 |
+
msgstr ""
|
1557 |
+
"Donnez naissance à votre site WordPress de location et de réservation de vélos."
|
1558 |
+
|
1559 |
+
# automatic translation
|
1560 |
+
#: bws_menu/product_list.php:35
|
1561 |
+
msgid "Best secure captcha plugin to protect your WordPress forms."
|
1562 |
+
msgstr "Meilleur plugin captcha sécurisé pour protéger vos formulaires WordPress."
|
1563 |
+
|
1564 |
+
# automatic translation
|
1565 |
+
#: bws_menu/product_list.php:45
|
1566 |
+
msgid "Create your own rental website for car renting and booking."
|
1567 |
+
msgstr ""
|
1568 |
+
"Créez votre propre site Web de location pour la location et la réservation de "
|
1569 |
+
"voitures."
|
1570 |
+
|
1571 |
+
# automatic translation
|
1572 |
+
#: bws_menu/product_list.php:57
|
1573 |
+
msgid ""
|
1574 |
+
"Add columns with custom content to WordPress website pages, posts, widgets, etc."
|
1575 |
+
msgstr ""
|
1576 |
+
"Ajoutez des colonnes avec un contenu personnalisé aux pages du site Web WordPress, "
|
1577 |
+
"aux publications, aux widgets, etc."
|
1578 |
+
|
1579 |
+
# automatic translation
|
1580 |
+
#: bws_menu/product_list.php:64
|
1581 |
+
msgid ""
|
1582 |
+
"Allow customers to reach you using secure contact form plugin any website must "
|
1583 |
+
"have."
|
1584 |
+
msgstr ""
|
1585 |
+
"Permettez aux clients de vous joindre à l'aide du plug-in de formulaire de contact "
|
1586 |
+
"sécurisé que tout site Web doit avoir."
|
1587 |
+
|
1588 |
+
# automatic translation
|
1589 |
+
#: bws_menu/product_list.php:74
|
1590 |
+
msgid "Add unlimited number of contact forms to WordPress website."
|
1591 |
+
msgstr "Ajoutez un nombre illimité de formulaires de contact au site Web WordPress."
|
1592 |
+
|
1593 |
+
# automatic translation
|
1594 |
+
#: bws_menu/product_list.php:84
|
1595 |
+
msgid "Save and manage Contact Form messages. Never lose important data."
|
1596 |
+
msgstr ""
|
1597 |
+
"Enregistrez et gérez les messages du formulaire de contact. Ne perdez jamais de "
|
1598 |
+
"données importantes."
|
1599 |
+
|
1600 |
+
# automatic translation
|
1601 |
+
#: bws_menu/product_list.php:94
|
1602 |
+
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1603 |
+
msgstr ""
|
1604 |
+
"Ajoutez un nombre illimité de pages personnalisées au tableau de bord "
|
1605 |
+
"d'administration WordPress."
|
1606 |
+
|
1607 |
+
# automatic translation
|
1608 |
+
#: bws_menu/product_list.php:104
|
1609 |
+
msgid "Add custom post types and taxonomies to WordPress website search results."
|
1610 |
+
msgstr ""
|
1611 |
+
"Ajoutez des types de publication et des taxonomies personnalisés aux résultats de "
|
1612 |
+
"recherche de sites Web WordPress."
|
1613 |
+
|
1614 |
+
# automatic translation
|
1615 |
+
#: bws_menu/product_list.php:114
|
1616 |
+
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1617 |
+
msgstr ""
|
1618 |
+
"Ajoutez des boutons de don PayPal et 2CO pour recevoir des paiements caritatifs."
|
1619 |
+
|
1620 |
+
# automatic translation
|
1621 |
+
#: bws_menu/product_list.php:121
|
1622 |
+
msgid ""
|
1623 |
+
"Get latest error log messages to diagnose website problems. Define and fix issues "
|
1624 |
+
"faster."
|
1625 |
+
msgstr ""
|
1626 |
+
"Obtenez les derniers messages du journal d'erreurs pour diagnostiquer les "
|
1627 |
+
"problèmes de site Web. Définissez et corrigez les problèmes plus rapidement."
|
1628 |
+
|
1629 |
+
# automatic translation
|
1630 |
+
#: bws_menu/product_list.php:128
|
1631 |
+
msgid ""
|
1632 |
+
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1633 |
+
"widgets."
|
1634 |
+
msgstr ""
|
1635 |
+
"Ajoutez des boutons Facebook Follow, Like et Share aux publications, pages et "
|
1636 |
+
"widgets WordPress."
|
1637 |
+
|
1638 |
+
# automatic translation
|
1639 |
+
#: bws_menu/product_list.php:138
|
1640 |
+
msgid ""
|
1641 |
+
"Add beautiful galleries, albums & images to your WordPress website in a few clicks."
|
1642 |
+
msgstr ""
|
1643 |
+
"Ajoutez de belles galeries, albums et images à votre site WordPress en quelques "
|
1644 |
+
"clics."
|
1645 |
+
|
1646 |
+
# automatic translation
|
1647 |
+
#: bws_menu/product_list.php:148
|
1648 |
+
msgid ""
|
1649 |
+
"Stronger security solution which protects your WordPress website from hacks and "
|
1650 |
+
"unauthorized login attempts."
|
1651 |
+
msgstr ""
|
1652 |
+
"Une solution de sécurité renforcée qui protège votre site WordPress contre les "
|
1653 |
+
"piratages et les tentatives de connexion non autorisées."
|
1654 |
+
|
1655 |
+
# automatic translation
|
1656 |
+
#: bws_menu/product_list.php:158
|
1657 |
+
msgid ""
|
1658 |
+
"Add Adsense ads to WordPress website pages, posts, custom posts, search results, "
|
1659 |
+
"categories, tags, and widgets."
|
1660 |
+
msgstr ""
|
1661 |
+
"Ajoutez des publicités Adsense aux pages de sites Web WordPress, aux publications, "
|
1662 |
+
"aux publications personnalisées, aux résultats de recherche, aux catégories, aux "
|
1663 |
+
"balises et aux widgets."
|
1664 |
+
|
1665 |
+
# automatic translation
|
1666 |
+
#: bws_menu/product_list.php:168
|
1667 |
+
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1668 |
+
msgstr ""
|
1669 |
+
"Ajoutez le code Google Analytics au site Web WordPress et suivez les statistiques "
|
1670 |
+
"de base."
|
1671 |
+
|
1672 |
+
# automatic translation
|
1673 |
+
#: bws_menu/product_list.php:178
|
1674 |
+
msgid "Protect WordPress website forms from spam entries with reCaptcha."
|
1675 |
+
msgstr ""
|
1676 |
+
"Protégez les formulaires de sites Web WordPress des entrées de spam avec reCaptcha."
|
1677 |
+
|
1678 |
+
# automatic translation
|
1679 |
+
#: bws_menu/product_list.php:188
|
1680 |
+
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1681 |
+
msgstr ""
|
1682 |
+
"Ajoutez des cartes Google personnalisées aux articles, pages et widgets WordPress."
|
1683 |
+
|
1684 |
+
# automatic translation
|
1685 |
+
#: bws_menu/product_list.php:198
|
1686 |
+
msgid ""
|
1687 |
+
"Generate and add XML sitemap to WordPress website. Help search engines index your "
|
1688 |
+
"blog."
|
1689 |
+
msgstr ""
|
1690 |
+
"Générez et ajoutez un plan de site XML au site Web WordPress. Aidez les moteurs de "
|
1691 |
+
"recherche à indexer votre blog."
|
1692 |
+
|
1693 |
+
# automatic translation
|
1694 |
+
#: bws_menu/product_list.php:208
|
1695 |
+
msgid ""
|
1696 |
+
"Replace external WordPress website links with Google shortlinks and track click "
|
1697 |
+
"stats."
|
1698 |
+
msgstr ""
|
1699 |
+
"Remplacez les liens de sites Web WordPress externes par des liens courts Google et "
|
1700 |
+
"suivez les statistiques de clics."
|
1701 |
+
|
1702 |
+
# automatic translation
|
1703 |
+
#: bws_menu/product_list.php:215
|
1704 |
+
msgid ""
|
1705 |
+
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1706 |
+
"hostnames, etc."
|
1707 |
+
msgstr ""
|
1708 |
+
"Protégez le site Web WordPress – autorisez et refusez l'accès à certaines adresses "
|
1709 |
+
"IP, noms d'hôtes, etc."
|
1710 |
+
|
1711 |
+
# automatic translation
|
1712 |
+
#: bws_menu/product_list.php:225
|
1713 |
+
msgid ""
|
1714 |
+
"Create your personal job board and listing WordPress website. Search jobs, submit "
|
1715 |
+
"CV/resumes, choose candidates."
|
1716 |
+
msgstr ""
|
1717 |
+
"Créez votre site d'emploi personnel et votre site Web WordPress. Rechercher des "
|
1718 |
+
"emplois, soumettre des CV/CV, choisir des candidats."
|
1719 |
+
|
1720 |
+
# automatic translation
|
1721 |
+
#: bws_menu/product_list.php:232
|
1722 |
+
msgid ""
|
1723 |
+
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1724 |
+
"attempts."
|
1725 |
+
msgstr ""
|
1726 |
+
"Protégez le site Web WordPress contre les attaques par force brute. Limiter le "
|
1727 |
+
"taux de tentatives de connexion."
|
1728 |
+
|
1729 |
+
# automatic translation
|
1730 |
+
#: bws_menu/product_list.php:242
|
1731 |
+
msgid ""
|
1732 |
+
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. 5 "
|
1733 |
+
"plugins included – profile, insider, etc."
|
1734 |
+
msgstr ""
|
1735 |
+
"Ajoutez des boutons LinkedIn Share et Follow aux publications, pages et widgets "
|
1736 |
+
"WordPress. 5 plugins inclus – profil, initié, etc."
|
1737 |
+
|
1738 |
+
# automatic translation
|
1739 |
+
#: bws_menu/product_list.php:252
|
1740 |
+
msgid ""
|
1741 |
+
"Translate WordPress website content to other languages manually. Create "
|
1742 |
+
"multilingual pages, posts, widgets, menus, etc."
|
1743 |
+
msgstr ""
|
1744 |
+
"Traduisez manuellement le contenu du site Web WordPress dans d'autres langues. "
|
1745 |
+
"Créez des pages multilingues, des articles, des widgets, des menus, etc."
|
1746 |
+
|
1747 |
+
# automatic translation
|
1748 |
+
#: bws_menu/product_list.php:262
|
1749 |
+
msgid ""
|
1750 |
+
"Add customizable pagination to WordPress website. Split long content to multiple "
|
1751 |
+
"pages for better navigation."
|
1752 |
+
msgstr ""
|
1753 |
+
"Ajoutez une pagination personnalisable au site Web WordPress. Divisez le contenu "
|
1754 |
+
"long en plusieurs pages pour une meilleure navigation."
|
1755 |
+
|
1756 |
+
# automatic translation
|
1757 |
+
#: bws_menu/product_list.php:272
|
1758 |
+
msgid ""
|
1759 |
+
"Generate PDF files and print WordPress posts/pages. Customize document header/"
|
1760 |
+
"footer styles and appearance."
|
1761 |
+
msgstr ""
|
1762 |
+
"Générez des fichiers PDF et imprimez des articles/pages WordPress. Personnalisez "
|
1763 |
+
"les styles et l'apparence de l'en-tête/pied de page du document."
|
1764 |
+
|
1765 |
+
# automatic translation
|
1766 |
+
#: bws_menu/product_list.php:282
|
1767 |
+
msgid ""
|
1768 |
+
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, Profile) to "
|
1769 |
+
"WordPress posts, pages and widgets."
|
1770 |
+
msgstr ""
|
1771 |
+
"Ajoutez des boutons Pinterest Follow, Pin It et des widgets de profil (Pin, Board, "
|
1772 |
+
"Profile) aux publications, pages et widgets WordPress."
|
1773 |
+
|
1774 |
+
# automatic translation
|
1775 |
+
#: bws_menu/product_list.php:292
|
1776 |
+
msgid ""
|
1777 |
+
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1778 |
+
"projects to get more clients."
|
1779 |
+
msgstr ""
|
1780 |
+
"Créez votre site Web WordPress de portfolio personnel. Gérez et présentez les "
|
1781 |
+
"projets passés pour obtenir plus de clients."
|
1782 |
+
|
1783 |
+
# automatic translation
|
1784 |
+
#: bws_menu/product_list.php:302
|
1785 |
+
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1786 |
+
msgstr ""
|
1787 |
+
"Exportez facilement les publications WordPress au format de fichier CSV. "
|
1788 |
+
"Configurer l'ordre des données."
|
1789 |
+
|
1790 |
+
# automatic translation
|
1791 |
+
#: bws_menu/product_list.php:312
|
1792 |
+
msgid ""
|
1793 |
+
"Add extra fields to default WordPress user profile. The easiest way to create and "
|
1794 |
+
"manage additional custom values."
|
1795 |
+
msgstr ""
|
1796 |
+
"Ajoutez des champs supplémentaires au profil d'utilisateur WordPress par défaut. "
|
1797 |
+
"Le moyen le plus simple de créer et de gérer des valeurs personnalisées "
|
1798 |
+
"supplémentaires."
|
1799 |
+
|
1800 |
+
# automatic translation
|
1801 |
+
#: bws_menu/product_list.php:322
|
1802 |
+
msgid ""
|
1803 |
+
"Add and display HTML advertisement banner on WordPress website. Customize bar "
|
1804 |
+
"styles and appearance."
|
1805 |
+
msgstr ""
|
1806 |
+
"Ajoutez et affichez une bannière publicitaire HTML sur le site Web WordPress. "
|
1807 |
+
"Personnalisez les styles et l'apparence des barres."
|
1808 |
+
|
1809 |
+
# automatic translation
|
1810 |
+
#: bws_menu/product_list.php:332
|
1811 |
+
msgid ""
|
1812 |
+
"Add customizable quotes and tips blocks to WordPress posts, pages and widgets."
|
1813 |
+
msgstr ""
|
1814 |
+
"Ajoutez des blocs de citations et de conseils personnalisables aux articles, pages "
|
1815 |
+
"et widgets WordPress."
|
1816 |
+
|
1817 |
+
# automatic translation
|
1818 |
+
#: bws_menu/product_list.php:339
|
1819 |
+
msgid ""
|
1820 |
+
"Add rating plugin to your WordPress website to receive feedback from your "
|
1821 |
+
"customers."
|
1822 |
+
msgstr ""
|
1823 |
+
"Ajoutez un plugin de notation à votre site WordPress pour recevoir les "
|
1824 |
+
"commentaires de vos clients."
|
1825 |
+
|
1826 |
+
# automatic translation
|
1827 |
+
#: bws_menu/product_list.php:349
|
1828 |
+
msgid ""
|
1829 |
+
"Create your personal real estate WordPress website. Sell, rent and buy properties. "
|
1830 |
+
"Add, search and browse listings easily."
|
1831 |
+
msgstr ""
|
1832 |
+
"Créez votre site WordPress immobilier personnel. Vendre, louer et acheter des "
|
1833 |
+
"propriétés. Ajoutez, recherchez et parcourez facilement les annonces."
|
1834 |
+
|
1835 |
+
# automatic translation
|
1836 |
+
#: bws_menu/product_list.php:359
|
1837 |
+
msgid ""
|
1838 |
+
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1839 |
+
"Connect your blog readers with a relevant content."
|
1840 |
+
msgstr ""
|
1841 |
+
"Ajoutez des articles connexes, en vedette, les plus récents et les plus populaires "
|
1842 |
+
"à votre site Web WordPress. Connectez les lecteurs de votre blog avec un contenu "
|
1843 |
+
"pertinent."
|
1844 |
+
|
1845 |
+
# automatic translation
|
1846 |
+
#: bws_menu/product_list.php:366
|
1847 |
+
msgid ""
|
1848 |
+
"Send bulk email messages to WordPress users. Custom templates, advanced settings "
|
1849 |
+
"and detailed reports."
|
1850 |
+
msgstr ""
|
1851 |
+
"Envoyez des e-mails en masse aux utilisateurs de WordPress. Modèles personnalisés, "
|
1852 |
+
"paramètres avancés et rapports détaillés."
|
1853 |
+
|
1854 |
+
# automatic translation
|
1855 |
+
#: bws_menu/product_list.php:376
|
1856 |
+
msgid ""
|
1857 |
+
"The best responsive slider plugin for your WordPress website. Create beautifully "
|
1858 |
+
"animated slides just in a few clicks."
|
1859 |
+
msgstr ""
|
1860 |
+
"Le meilleur plugin de curseur réactif pour votre site Web WordPress. Créez des "
|
1861 |
+
"diapositives magnifiquement animées en quelques clics."
|
1862 |
+
|
1863 |
+
# automatic translation
|
1864 |
+
#: bws_menu/product_list.php:383
|
1865 |
+
msgid ""
|
1866 |
+
"Configure SMTP server to receive email messages from WordPress to Gmail, Yahoo, "
|
1867 |
+
"Hotmail and other services."
|
1868 |
+
msgstr ""
|
1869 |
+
"Configurez le serveur SMTP pour recevoir des e-mails de WordPress vers Gmail, "
|
1870 |
+
"Yahoo, Hotmail et d'autres services."
|
1871 |
+
|
1872 |
+
# automatic translation
|
1873 |
+
#: bws_menu/product_list.php:390
|
1874 |
+
msgid ""
|
1875 |
+
"Add social media buttons and widgets to WordPress posts, pages and widgets. FB, "
|
1876 |
+
"Twitter, Pinterest, LinkedIn."
|
1877 |
+
msgstr ""
|
1878 |
+
"Ajoutez des boutons et des widgets de réseaux sociaux aux publications, pages et "
|
1879 |
+
"widgets WordPress. Facebook, Twitter, Pinterest, LinkedIn."
|
1880 |
+
|
1881 |
+
# automatic translation
|
1882 |
+
#: bws_menu/product_list.php:400
|
1883 |
+
msgid ""
|
1884 |
+
"Add social media login, registration, and commenting to your WordPress website."
|
1885 |
+
msgstr ""
|
1886 |
+
"Ajoutez une connexion aux réseaux sociaux, une inscription et des commentaires à "
|
1887 |
+
"votre site Web WordPress."
|
1888 |
+
|
1889 |
+
# automatic translation
|
1890 |
+
#: bws_menu/product_list.php:407
|
1891 |
+
msgid ""
|
1892 |
+
"Add email newsletter sign up form to WordPress posts, pages and widgets. Collect "
|
1893 |
+
"data and subscribe your users."
|
1894 |
+
msgstr ""
|
1895 |
+
"Ajoutez un formulaire d'inscription à la newsletter par e-mail aux articles, pages "
|
1896 |
+
"et widgets WordPress. Collectez des données et abonnez vos utilisateurs."
|
1897 |
+
|
1898 |
+
# automatic translation
|
1899 |
+
#: bws_menu/product_list.php:417
|
1900 |
+
msgid ""
|
1901 |
+
"Add testimonials and feedbacks from your customers to WordPress website posts, "
|
1902 |
+
"pages, and widgets."
|
1903 |
+
msgstr ""
|
1904 |
+
"Ajoutez des témoignages et des commentaires de vos clients aux publications, pages "
|
1905 |
+
"et widgets du site Web WordPress."
|
1906 |
+
|
1907 |
+
# automatic translation
|
1908 |
+
#: bws_menu/product_list.php:424
|
1909 |
+
msgid ""
|
1910 |
+
"Best timesheet plugin for WordPress. Track employee time, streamline attendance "
|
1911 |
+
"and generate reports."
|
1912 |
+
msgstr ""
|
1913 |
+
"Meilleur plugin de feuille de temps pour WordPress. Suivez le temps des employés, "
|
1914 |
+
"rationalisez les présences et générez des rapports."
|
1915 |
+
|
1916 |
+
# automatic translation
|
1917 |
+
#: bws_menu/product_list.php:434
|
1918 |
+
msgid ""
|
1919 |
+
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts and "
|
1920 |
+
"pages."
|
1921 |
+
msgstr ""
|
1922 |
+
"Ajoutez des boutons Twitter Follow, Tweet, Hashtag et Mention aux publications et "
|
1923 |
+
"pages WordPress."
|
1924 |
+
|
1925 |
+
# automatic translation
|
1926 |
+
#: bws_menu/product_list.php:444
|
1927 |
+
msgid ""
|
1928 |
+
"Automatically check and update WordPress website core with all installed plugins "
|
1929 |
+
"and themes to the latest versions."
|
1930 |
+
msgstr ""
|
1931 |
+
"Vérifiez et mettez à jour automatiquement le noyau du site Web WordPress avec tous "
|
1932 |
+
"les plugins et thèmes installés vers les dernières versions."
|
1933 |
+
|
1934 |
+
# automatic translation
|
1935 |
+
#: bws_menu/product_list.php:454
|
1936 |
+
msgid ""
|
1937 |
+
"Powerful user role management plugin for WordPress website. Create, edit, copy, "
|
1938 |
+
"and delete user roles."
|
1939 |
+
msgstr ""
|
1940 |
+
"Puissant plug-in de gestion des rôles d'utilisateur pour le site Web WordPress. "
|
1941 |
+
"Créez, modifiez, copiez et supprimez des rôles d'utilisateur."
|
1942 |
+
|
1943 |
+
# automatic translation
|
1944 |
+
#: bws_menu/product_list.php:464
|
1945 |
+
msgid ""
|
1946 |
+
"Display live count of online visitors who are currently browsing your WordPress "
|
1947 |
+
"website."
|
1948 |
+
msgstr ""
|
1949 |
+
"Affichez le nombre en direct de visiteurs en ligne qui naviguent actuellement sur "
|
1950 |
+
"votre site Web WordPress."
|
1951 |
+
|
1952 |
+
# automatic translation
|
1953 |
+
#: bws_menu/product_list.php:474
|
1954 |
+
msgid ""
|
1955 |
+
"Backup and export Zendesk Help Center content automatically to your WordPress "
|
1956 |
+
"website database."
|
1957 |
+
msgstr ""
|
1958 |
+
"Sauvegardez et exportez automatiquement le contenu du centre d'aide Zendesk vers "
|
1959 |
+
"la base de données de votre site Web WordPress."
|
1960 |
+
|
1961 |
+
# automatic translation
|
1962 |
+
#: google-captcha.php:39 google-captcha.php:49 google-captcha.php:520
|
1963 |
+
#: includes/class-gglcptch-settings-tabs.php:147
|
1964 |
+
msgid "reCaptcha Settings"
|
1965 |
+
msgstr "Paramètres reCaptcha"
|
1966 |
+
|
1967 |
+
# automatic translation
|
1968 |
+
#: google-captcha.php:58 includes/allowlist.php:46
|
1969 |
+
msgid "reCaptcha Allow List"
|
1970 |
+
msgstr "Liste d'autorisation reCaptcha"
|
1971 |
+
|
1972 |
+
# automatic translation
|
1973 |
+
#: google-captcha.php:59
|
1974 |
+
msgid "Allow List"
|
1975 |
+
msgstr "Liste d'autorisation"
|
1976 |
+
|
1977 |
+
# automatic translation
|
1978 |
+
#: google-captcha.php:273
|
1979 |
+
msgid "Please wait until Google reCAPTCHA is loaded."
|
1980 |
+
msgstr "Veuillez patienter jusqu'à ce que Google reCAPTCHA soit chargé."
|
1981 |
+
|
1982 |
+
# automatic translation
|
1983 |
+
#: google-captcha.php:274
|
1984 |
+
msgid ""
|
1985 |
+
"Failed to load Google reCAPTCHA. Please check your internet connection and reload "
|
1986 |
+
"this page."
|
1987 |
+
msgstr ""
|
1988 |
+
"Échec du chargement de Google reCAPTCHA. Veuillez vérifier votre connexion "
|
1989 |
+
"Internet et recharger cette page."
|
1990 |
+
|
1991 |
+
# automatic translation
|
1992 |
+
#: google-captcha.php:288
|
1993 |
+
msgid "Warning"
|
1994 |
+
msgstr "Avertissement"
|
1995 |
+
|
1996 |
+
# automatic translation
|
1997 |
+
#: google-captcha.php:414
|
1998 |
+
msgid "You are in the allow list"
|
1999 |
+
msgstr "Vous êtes dans la liste d'autorisation"
|
2000 |
+
|
2001 |
+
# automatic translation
|
2002 |
+
#: google-captcha.php:521
|
2003 |
+
msgid "Please enable JavaScript in your browser."
|
2004 |
+
msgstr "Veuillez activer JavaScript dans votre navigateur."
|
2005 |
+
|
2006 |
+
# automatic translation
|
2007 |
+
#: google-captcha.php:604
|
2008 |
+
msgid "This site is protected by reCAPTCHA and the Google "
|
2009 |
+
msgstr "Ce site est protégé par reCAPTCHA et le Google"
|
2010 |
+
|
2011 |
+
# automatic translation
|
2012 |
+
#: google-captcha.php:605
|
2013 |
+
msgid "Privacy Policy"
|
2014 |
+
msgstr "Politique de confidentialité"
|
2015 |
+
|
2016 |
+
# automatic translation
|
2017 |
+
#: google-captcha.php:606
|
2018 |
+
msgid " and "
|
2019 |
+
msgstr " et"
|
2020 |
+
|
2021 |
+
# automatic translation
|
2022 |
+
#: google-captcha.php:607
|
2023 |
+
msgid "Terms of Service"
|
2024 |
+
msgstr "Conditions d'utilisation"
|
2025 |
+
|
2026 |
+
# automatic translation
|
2027 |
+
#: google-captcha.php:608
|
2028 |
+
msgid " apply."
|
2029 |
+
msgstr " appliquer."
|
2030 |
+
|
2031 |
+
# automatic translation
|
2032 |
+
#: google-captcha.php:615
|
2033 |
+
msgid "To use reCaptcha you must get the keys from"
|
2034 |
+
msgstr "Pour utiliser reCaptcha, vous devez obtenir les clés de"
|
2035 |
+
|
2036 |
+
# automatic translation
|
2037 |
+
#: google-captcha.php:616
|
2038 |
+
msgid "here"
|
2039 |
+
msgstr "ici"
|
2040 |
+
|
2041 |
+
# automatic translation
|
2042 |
+
#: google-captcha.php:617
|
2043 |
+
msgid "and enter them on the"
|
2044 |
+
msgstr "et saisissez-les sur le"
|
2045 |
+
|
2046 |
+
# automatic translation
|
2047 |
+
#: google-captcha.php:619
|
2048 |
+
msgid "plugin setting page"
|
2049 |
+
msgstr "page de configuration du plug-in"
|
2050 |
+
|
2051 |
+
# automatic translation
|
2052 |
+
#: google-captcha.php:788
|
2053 |
+
msgid "Response is empty"
|
2054 |
+
msgstr "La réponse est vide"
|
2055 |
+
|
2056 |
+
# automatic translation
|
2057 |
+
#: google-captcha.php:889 includes/forms.php:358
|
2058 |
+
msgid "Error"
|
2059 |
+
msgstr "Erreur"
|
2060 |
+
|
2061 |
+
# automatic translation
|
2062 |
+
#: google-captcha.php:1014
|
2063 |
+
msgid "User response is missing."
|
2064 |
+
msgstr "La réponse de l'utilisateur est manquante."
|
2065 |
+
|
2066 |
+
# automatic translation
|
2067 |
+
#: google-captcha.php:1016
|
2068 |
+
msgid "Secret Key is missing."
|
2069 |
+
msgstr "La clé secrète est manquante."
|
2070 |
+
|
2071 |
+
# automatic translation
|
2072 |
+
#: google-captcha.php:1019
|
2073 |
+
msgid "Secret Key is invalid."
|
2074 |
+
msgstr "La clé secrète n'est pas valide."
|
2075 |
+
|
2076 |
+
# automatic translation
|
2077 |
+
#: google-captcha.php:1020
|
2078 |
+
msgid "Check your domain configurations"
|
2079 |
+
msgstr "Vérifiez vos configurations de domaine"
|
2080 |
+
|
2081 |
+
# automatic translation
|
2082 |
+
#: google-captcha.php:1021
|
2083 |
+
msgid "and enter it again"
|
2084 |
+
msgstr "et entrez-le à nouveau"
|
2085 |
+
|
2086 |
+
# automatic translation
|
2087 |
+
#: google-captcha.php:1023
|
2088 |
+
msgid "User response is invalid"
|
2089 |
+
msgstr "La réponse de l'utilisateur n'est pas valide"
|
2090 |
+
|
2091 |
+
# automatic translation
|
2092 |
+
#: google-captcha.php:1024
|
2093 |
+
msgid "You have entered an incorrect reCAPTCHA value."
|
2094 |
+
msgstr "Vous avez entré une valeur reCAPTCHA incorrecte."
|
2095 |
+
|
2096 |
+
# automatic translation
|
2097 |
+
#: google-captcha.php:1025
|
2098 |
+
msgid ""
|
2099 |
+
"More than one reCAPTCHA has been found in the current form. Please remove all "
|
2100 |
+
"unnecessary reCAPTCHA fields to make it work properly."
|
2101 |
+
msgstr ""
|
2102 |
+
"Plus d'un reCAPTCHA a été trouvé dans la forme actuelle. Veuillez supprimer tous "
|
2103 |
+
"les champs reCAPTCHA inutiles pour que cela fonctionne correctement."
|
2104 |
+
|
2105 |
+
# automatic translation
|
2106 |
+
#: google-captcha.php:1027
|
2107 |
+
msgid "reCaptcha v3 test failed"
|
2108 |
+
msgstr "Échec du test reCaptcha v3"
|
2109 |
+
|
2110 |
+
# automatic translation
|
2111 |
+
#: google-captcha.php:1065
|
2112 |
+
msgid "Please submit \"Test verification\""
|
2113 |
+
msgstr "Veuillez soumettre « Vérification du test »"
|
2114 |
+
|
2115 |
+
# automatic translation
|
2116 |
+
#: google-captcha.php:1067
|
2117 |
+
msgid "Please complete the captcha and submit \"Test verification\""
|
2118 |
+
msgstr "Veuillez remplir le captcha et soumettre « Vérification du test »"
|
2119 |
+
|
2120 |
+
# automatic translation
|
2121 |
+
#: google-captcha.php:1073
|
2122 |
+
msgid "Test verification"
|
2123 |
+
msgstr "Vérification des tests"
|
2124 |
+
|
2125 |
+
# automatic translation
|
2126 |
+
#: google-captcha.php:1094
|
2127 |
+
msgid "The verification is successfully completed."
|
2128 |
+
msgstr "La vérification est terminée avec succès."
|
2129 |
+
|
2130 |
+
# automatic translation
|
2131 |
+
#: includes/allowlist.php:74
|
2132 |
+
msgid "IP to Allow List"
|
2133 |
+
msgstr "IP à autoriser la liste"
|
2134 |
+
|
2135 |
+
# automatic translation
|
2136 |
+
#: includes/allowlist.php:81
|
2137 |
+
msgid "My IP"
|
2138 |
+
msgstr "Mon IP"
|
2139 |
+
|
2140 |
+
# automatic translation
|
2141 |
+
#: includes/allowlist.php:86 includes/pro_banners.php:40
|
2142 |
+
msgid "Allowed formats"
|
2143 |
+
msgstr "Formats autorisés"
|
2144 |
+
|
2145 |
+
# automatic translation
|
2146 |
+
#: includes/allowlist.php:88
|
2147 |
+
msgid "Allowed diapason"
|
2148 |
+
msgstr "Diapason autorisé"
|
2149 |
+
|
2150 |
+
# automatic translation
|
2151 |
+
#: includes/allowlist.php:101
|
2152 |
+
msgid "Add IP to Allow List"
|
2153 |
+
msgstr "Ajouter une adresse IP à la liste d'autorisation"
|
2154 |
+
|
2155 |
+
# automatic translation
|
2156 |
+
#: includes/allowlist.php:106
|
2157 |
+
msgid "Search IP"
|
2158 |
+
msgstr "Recherche IP"
|
2159 |
+
|
2160 |
+
# automatic translation
|
2161 |
+
#: includes/allowlist.php:160
|
2162 |
+
msgid "Nothing found"
|
2163 |
+
msgstr "Rien n'a été trouvé"
|
2164 |
+
|
2165 |
+
# automatic translation
|
2166 |
+
#: includes/allowlist.php:160
|
2167 |
+
msgid "No IP in the Allow List"
|
2168 |
+
msgstr "Aucune adresse IP dans la liste d'autorisation"
|
2169 |
+
|
2170 |
+
# automatic translation
|
2171 |
+
#: includes/allowlist.php:167
|
2172 |
+
msgid "IP Address"
|
2173 |
+
msgstr "Adresse IP"
|
2174 |
+
|
2175 |
+
# automatic translation
|
2176 |
+
#: includes/allowlist.php:168
|
2177 |
+
msgid "Date Added"
|
2178 |
+
msgstr "date ajoutée"
|
2179 |
+
|
2180 |
+
# automatic translation
|
2181 |
+
#: includes/allowlist.php:222 includes/allowlist.php:232
|
2182 |
+
msgid "Delete"
|
2183 |
+
msgstr "Effacer"
|
2184 |
+
|
2185 |
+
# automatic translation
|
2186 |
+
#: includes/allowlist.php:320
|
2187 |
+
msgid "IP added to the allow list successfully."
|
2188 |
+
msgstr "IP ajoutée à la liste d'autorisation avec succès."
|
2189 |
+
|
2190 |
+
# automatic translation
|
2191 |
+
#: includes/allowlist.php:322 includes/allowlist.php:348 includes/allowlist.php:362
|
2192 |
+
msgid "Some errors occurred."
|
2193 |
+
msgstr "Certaines erreurs se sont produites."
|
2194 |
+
|
2195 |
+
# automatic translation
|
2196 |
+
#: includes/allowlist.php:325
|
2197 |
+
msgid "IP is already in the allow list."
|
2198 |
+
msgstr "IP est déjà dans la liste d'autorisation."
|
2199 |
+
|
2200 |
+
# automatic translation
|
2201 |
+
#: includes/allowlist.php:328
|
2202 |
+
msgid "Invalid IP. See allowed formats."
|
2203 |
+
msgstr "IP invalide. Voir les formats autorisés."
|
2204 |
+
|
2205 |
+
# automatic translation
|
2206 |
+
#: includes/allowlist.php:344
|
2207 |
+
#, php-format
|
2208 |
+
msgid "%s IP was deleted successfully."
|
2209 |
+
msgid_plural "%s IPs were deleted successfully."
|
2210 |
+
msgstr[0] "L'IP %s a été supprimée avec succès."
|
2211 |
+
msgstr[1] ""
|
2212 |
+
|
2213 |
+
# automatic translation
|
2214 |
+
#: includes/allowlist.php:358
|
2215 |
+
msgid "One IP was deleted successfully."
|
2216 |
+
msgstr "Une adresse IP a été supprimée avec succès."
|
2217 |
+
|
2218 |
+
# automatic translation
|
2219 |
+
#: includes/allowlist.php:365
|
2220 |
+
msgid "You have not entered any IP."
|
2221 |
+
msgstr "Vous n'avez entré aucune IP."
|
2222 |
+
|
2223 |
+
# automatic translation
|
2224 |
+
#: includes/allowlist.php:368
|
2225 |
+
msgid "You have not entered any IP in to the search form."
|
2226 |
+
msgstr "Vous n'avez entré aucune adresse IP dans le formulaire de recherche."
|
2227 |
+
|
2228 |
+
# automatic translation
|
2229 |
+
#: includes/allowlist.php:370
|
2230 |
+
msgid "Search results for"
|
2231 |
+
msgstr "Résultats de recherche pour"
|
2232 |
+
|
2233 |
+
# automatic translation
|
2234 |
+
#: includes/class-gglcptch-settings-tabs.php:23
|
2235 |
+
msgid "Misc"
|
2236 |
+
msgstr "Divers"
|
2237 |
+
|
2238 |
+
# automatic translation
|
2239 |
+
#: includes/class-gglcptch-settings-tabs.php:51
|
2240 |
+
msgid "Site Key"
|
2241 |
+
msgstr "Clé du site"
|
2242 |
+
|
2243 |
+
# automatic translation
|
2244 |
+
#: includes/class-gglcptch-settings-tabs.php:56
|
2245 |
+
msgid "Secret Key"
|
2246 |
+
msgstr "Clef secrète"
|
2247 |
+
|
2248 |
+
# automatic translation
|
2249 |
+
#: includes/class-gglcptch-settings-tabs.php:65
|
2250 |
+
msgid "Invisible"
|
2251 |
+
msgstr "Invisible"
|
2252 |
+
|
2253 |
+
# automatic translation
|
2254 |
+
#: includes/class-gglcptch-settings-tabs.php:90
|
2255 |
+
msgid "Enter site key"
|
2256 |
+
msgstr "Entrer la clé du site"
|
2257 |
+
|
2258 |
+
# automatic translation
|
2259 |
+
#: includes/class-gglcptch-settings-tabs.php:91
|
2260 |
+
#: includes/class-gglcptch-settings-tabs.php:98
|
2261 |
+
msgid "WARNING: The captcha will not be displayed until you fill key fields."
|
2262 |
+
msgstr ""
|
2263 |
+
"ATTENTION : Le captcha ne s'affichera pas tant que vous n'aurez pas rempli les "
|
2264 |
+
"champs clés."
|
2265 |
+
|
2266 |
+
# automatic translation
|
2267 |
+
#: includes/class-gglcptch-settings-tabs.php:97
|
2268 |
+
msgid "Enter secret key"
|
2269 |
+
msgstr "Entrer la clé secrète"
|
2270 |
+
|
2271 |
+
# automatic translation
|
2272 |
+
#: includes/class-gglcptch-settings-tabs.php:135
|
2273 |
+
msgid "Settings saved."
|
2274 |
+
msgstr "Paramètres sauvegardés."
|
2275 |
+
|
2276 |
+
# automatic translation
|
2277 |
+
#: includes/class-gglcptch-settings-tabs.php:150
|
2278 |
+
msgid "General"
|
2279 |
+
msgstr "Général"
|
2280 |
+
|
2281 |
+
# automatic translation
|
2282 |
+
#: includes/class-gglcptch-settings-tabs.php:153
|
2283 |
+
msgid "reCaptcha Version"
|
2284 |
+
msgstr "Version reCaptcha"
|
2285 |
+
|
2286 |
+
# automatic translation
|
2287 |
+
#: includes/class-gglcptch-settings-tabs.php:167
|
2288 |
+
#, php-format
|
2289 |
+
msgid ""
|
2290 |
+
"Register your domain name with Google reCaptcha service and add the keys to the "
|
2291 |
+
"fields below. %s Get the API Keys. %s"
|
2292 |
+
msgstr ""
|
2293 |
+
"Enregistrez votre nom de domaine auprès du service Google reCaptcha et ajoutez les "
|
2294 |
+
"clés dans les champs ci-dessous. %s Obtenez les clés API. %s"
|
2295 |
+
|
2296 |
+
# automatic translation
|
2297 |
+
#: includes/class-gglcptch-settings-tabs.php:171
|
2298 |
+
#, php-format
|
2299 |
+
msgid ""
|
2300 |
+
"If you do not want to create API keys use %s Captcha by BestWebSoft %s plugin."
|
2301 |
+
msgstr ""
|
2302 |
+
"Si vous ne souhaitez pas créer de clés API, utilisez le plug-in %s Captcha by "
|
2303 |
+
"BestWebSoft %s."
|
2304 |
+
|
2305 |
+
# automatic translation
|
2306 |
+
#: includes/class-gglcptch-settings-tabs.php:189
|
2307 |
+
msgid "Test reCaptcha"
|
2308 |
+
msgstr "Tester reCaptcha"
|
2309 |
+
|
2310 |
+
# automatic translation
|
2311 |
+
#: includes/class-gglcptch-settings-tabs.php:195
|
2312 |
+
msgid "Enable reCaptcha for"
|
2313 |
+
msgstr "Activer reCaptcha pour"
|
2314 |
+
|
2315 |
+
# automatic translation
|
2316 |
+
#: includes/class-gglcptch-settings-tabs.php:253
|
2317 |
+
msgid "reCaptcha Domain"
|
2318 |
+
msgstr "Domaine reCaptcha"
|
2319 |
+
|
2320 |
+
# automatic translation
|
2321 |
+
#: includes/class-gglcptch-settings-tabs.php:261
|
2322 |
+
msgid "If Google is not accessible or blocked in your country select other one."
|
2323 |
+
msgstr ""
|
2324 |
+
"Si Google n'est pas accessible ou bloqué dans votre pays, sélectionnez-en un autre."
|
2325 |
+
|
2326 |
+
# automatic translation
|
2327 |
+
#: includes/class-gglcptch-settings-tabs.php:279
|
2328 |
+
msgid "Appearance"
|
2329 |
+
msgstr "Apparence"
|
2330 |
+
|
2331 |
+
# automatic translation
|
2332 |
+
#: includes/class-gglcptch-settings-tabs.php:283
|
2333 |
+
msgid "Theme"
|
2334 |
+
msgstr "Thème"
|
2335 |
+
|
2336 |
+
# automatic translation
|
2337 |
+
#: includes/class-gglcptch-settings-tabs.php:287
|
2338 |
+
msgid "Light"
|
2339 |
+
msgstr "Léger"
|
2340 |
+
|
2341 |
+
# automatic translation
|
2342 |
+
#: includes/class-gglcptch-settings-tabs.php:288
|
2343 |
+
msgid "Dark"
|
2344 |
+
msgstr "Sombre"
|
2345 |
+
|
2346 |
+
# automatic translation
|
2347 |
+
#: includes/class-gglcptch-settings-tabs.php:308
|
2348 |
+
msgid "Hide reCaptcha Badge"
|
2349 |
+
msgstr "Masquer le badge reCaptcha"
|
2350 |
+
|
2351 |
+
# automatic translation
|
2352 |
+
#: includes/class-gglcptch-settings-tabs.php:313
|
2353 |
+
msgid "Enable to hide reCaptcha Badge for Version 3 and Invisible reCaptcha."
|
2354 |
+
msgstr ""
|
2355 |
+
"Activer pour masquer le badge reCaptcha pour la version 3 et le reCaptcha "
|
2356 |
+
"invisible."
|
2357 |
+
|
2358 |
+
# automatic translation
|
2359 |
+
#: includes/class-gglcptch-settings-tabs.php:319
|
2360 |
+
msgid "Additional Protective Measures"
|
2361 |
+
msgstr "Mesures de protection supplémentaires"
|
2362 |
+
|
2363 |
+
# automatic translation
|
2364 |
+
#: includes/class-gglcptch-settings-tabs.php:323
|
2365 |
+
msgid "Score"
|
2366 |
+
msgstr "But"
|
2367 |
+
|
2368 |
+
# automatic translation
|
2369 |
+
#: includes/class-gglcptch-settings-tabs.php:328
|
2370 |
+
#, php-format
|
2371 |
+
msgid "Set the minimum verification score from %s to %s (default is %s)."
|
2372 |
+
msgstr ""
|
2373 |
+
"Définissez le score de vérification minimum de %s à %s (la valeur par défaut est "
|
2374 |
+
"%s)."
|
2375 |
+
|
2376 |
+
# automatic translation
|
2377 |
+
#: includes/class-gglcptch-settings-tabs.php:332
|
2378 |
+
msgid "Hide reCaptcha for"
|
2379 |
+
msgstr "Masquer reCaptcha pour"
|
2380 |
+
|
2381 |
+
# automatic translation
|
2382 |
+
#: includes/class-gglcptch-settings-tabs.php:350
|
2383 |
+
msgid "Allow List Notification"
|
2384 |
+
msgstr "Notification de liste d'autorisation"
|
2385 |
+
|
2386 |
+
# automatic translation
|
2387 |
+
#: includes/class-gglcptch-settings-tabs.php:353
|
2388 |
+
msgid "This message will be displayed instead of the reCaptcha."
|
2389 |
+
msgstr "Ce message sera affiché à la place du reCaptcha."
|
2390 |
+
|
2391 |
+
# automatic translation
|
2392 |
+
#: includes/class-gglcptch-settings-tabs.php:357
|
2393 |
+
msgid "Advanced Protection"
|
2394 |
+
msgstr "Protection avancée"
|
2395 |
+
|
2396 |
+
# automatic translation
|
2397 |
+
#: includes/class-gglcptch-settings-tabs.php:361
|
2398 |
+
msgid ""
|
2399 |
+
"Enable to keep submit button disabled until reCaptcha is loaded (do not use this "
|
2400 |
+
"option if you see \"Failed to load Google reCaptcha\" message)."
|
2401 |
+
msgstr ""
|
2402 |
+
"Activer pour garder le bouton d'envoi désactivé jusqu'à ce que reCaptcha soit "
|
2403 |
+
"chargé (n'utilisez pas cette option si vous voyez le message \"Échec du chargement "
|
2404 |
+
"de Google reCaptcha\")."
|
2405 |
+
|
2406 |
+
# automatic translation
|
2407 |
+
#: includes/class-gglcptch-settings-tabs.php:367
|
2408 |
+
msgid "Disabled Submit Button"
|
2409 |
+
msgstr "Bouton Soumettre désactivé"
|
2410 |
+
|
2411 |
+
# automatic translation
|
2412 |
+
#: includes/class-gglcptch-settings-tabs.php:372
|
2413 |
+
msgid ""
|
2414 |
+
"Enable to keep submit button disabled until user passes the reCaptcha test (for "
|
2415 |
+
"Version 2)."
|
2416 |
+
msgstr ""
|
2417 |
+
"Activer pour garder le bouton de soumission désactivé jusqu'à ce que l'utilisateur "
|
2418 |
+
"réussisse le test reCaptcha (pour la version 2)."
|
2419 |
+
|
2420 |
+
# automatic translation
|
2421 |
+
#: includes/class-gglcptch-settings-tabs.php:386
|
2422 |
+
msgid ""
|
2423 |
+
"reCaptcha version was changed. Please submit \"Test reCaptcha\" and regenerate "
|
2424 |
+
"Site and Secret keys if necessary."
|
2425 |
+
msgstr ""
|
2426 |
+
"La version reCaptcha a été modifiée. Veuillez soumettre \"Test reCaptcha\" et "
|
2427 |
+
"régénérer les clés de site et secrètes si nécessaire."
|
2428 |
+
|
2429 |
+
# automatic translation
|
2430 |
+
#: includes/class-gglcptch-settings-tabs.php:396
|
2431 |
+
#, php-format
|
2432 |
+
msgid "ReCaptcha plugin is fully compliant with GDPR. %s Learn more %s"
|
2433 |
+
msgstr "Le plugin ReCaptcha est entièrement conforme au RGPD. %s En savoir plus %s"
|
2434 |
+
|
2435 |
+
# automatic translation
|
2436 |
+
#: includes/class-gglcptch-settings-tabs.php:411
|
2437 |
+
msgid "reCaptcha Shortcode"
|
2438 |
+
msgstr "reCaptcha Shortcode"
|
2439 |
+
|
2440 |
+
# automatic translation
|
2441 |
+
#: includes/class-gglcptch-settings-tabs.php:414
|
2442 |
+
msgid "Add reCaptcha to your posts or pages using the following shortcode:"
|
2443 |
+
msgstr ""
|
2444 |
+
"Ajoutez reCaptcha à vos publications ou pages en utilisant le shortcode suivant :"
|
2445 |
+
|
2446 |
+
# automatic translation
|
2447 |
+
#: includes/forms.php:11
|
2448 |
+
msgid "Login form"
|
2449 |
+
msgstr "Formulaire de connexion"
|
2450 |
+
|
2451 |
+
# automatic translation
|
2452 |
+
#: includes/forms.php:12
|
2453 |
+
msgid "Registration form"
|
2454 |
+
msgstr "Formulaire d'inscription"
|
2455 |
+
|
2456 |
+
# automatic translation
|
2457 |
+
#: includes/forms.php:13
|
2458 |
+
msgid "Reset password form"
|
2459 |
+
msgstr "Formulaire de réinitialisation du mot de passe"
|
2460 |
+
|
2461 |
+
# automatic translation
|
2462 |
+
#: includes/forms.php:14
|
2463 |
+
msgid "Comments form"
|
2464 |
+
msgstr "Formulaire de commentaires"
|
2465 |
+
|
2466 |
+
# automatic translation
|
2467 |
+
#: includes/forms.php:16
|
2468 |
+
msgid "Testimonials"
|
2469 |
+
msgstr "Témoignages"
|
2470 |
+
|
2471 |
+
# automatic translation
|
2472 |
+
#: includes/forms.php:38
|
2473 |
+
msgid "WordPress default"
|
2474 |
+
msgstr "WordPress par défaut"
|
2475 |
+
|
2476 |
+
# automatic translation
|
2477 |
+
#: includes/forms.php:47 includes/pro_banners.php:82
|
2478 |
+
msgid "External Plugins"
|
2479 |
+
msgstr "Plugins externes"
|
2480 |
+
|
2481 |
+
# automatic translation
|
2482 |
+
#: includes/forms.php:57
|
2483 |
+
msgid "Custom Forms"
|
2484 |
+
msgstr "Formulaires personnalisés"
|
2485 |
+
|
2486 |
+
# automatic translation
|
2487 |
+
#: includes/forms.php:78
|
2488 |
+
msgid "reCaptcha Plugin"
|
2489 |
+
msgstr "Plugin reCaptcha"
|
2490 |
+
|
2491 |
+
# automatic translation
|
2492 |
+
#: includes/forms.php:266
|
2493 |
+
msgid "Authentication failed."
|
2494 |
+
msgstr "Authentification échouée."
|
2495 |
+
|
2496 |
+
# automatic translation
|
2497 |
+
#: includes/forms.php:360
|
2498 |
+
msgid "Click the BACK button on your browser and try again."
|
2499 |
+
msgstr "Cliquez sur le bouton RETOUR de votre navigateur et réessayez."
|
2500 |
+
|
2501 |
+
# automatic translation
|
2502 |
+
#: includes/pro_banners.php:17
|
2503 |
+
msgid "This options is available in Pro version of plugin"
|
2504 |
+
msgstr "Cette option est disponible dans la version Pro du plugin"
|
2505 |
+
|
2506 |
+
# automatic translation
|
2507 |
+
#: includes/pro_banners.php:41
|
2508 |
+
msgid "Allowed separators for IPs: a comma"
|
2509 |
+
msgstr "Séparateurs autorisés pour les adresses IP : une virgule"
|
2510 |
+
|
2511 |
+
# automatic translation
|
2512 |
+
#: includes/pro_banners.php:41 includes/pro_banners.php:44
|
2513 |
+
msgid "semicolon"
|
2514 |
+
msgstr "point-virgule"
|
2515 |
+
|
2516 |
+
# automatic translation
|
2517 |
+
#: includes/pro_banners.php:41
|
2518 |
+
msgid "ordinary space, tab, new line or carriage return."
|
2519 |
+
msgstr "espace ordinaire, tabulation, nouvelle ligne ou retour chariot."
|
2520 |
+
|
2521 |
+
# automatic translation
|
2522 |
+
#: includes/pro_banners.php:42
|
2523 |
+
msgid "Reason"
|
2524 |
+
msgstr "Raison"
|
2525 |
+
|
2526 |
+
# automatic translation
|
2527 |
+
#: includes/pro_banners.php:44
|
2528 |
+
msgid "Allowed separators for reasons: a comma"
|
2529 |
+
msgstr "Séparateurs autorisés pour des raisons : une virgule"
|
2530 |
+
|
2531 |
+
# automatic translation
|
2532 |
+
#: includes/pro_banners.php:44
|
2533 |
+
msgid "tab, new line or carriage return."
|
2534 |
+
msgstr "tabulation, nouvelle ligne ou retour chariot."
|
2535 |
+
|
2536 |
+
# automatic translation
|
2537 |
+
#: includes/pro_banners.php:53
|
2538 |
+
msgid "Jetpack Contact Form"
|
2539 |
+
msgstr "Formulaire de contact Jetpack"
|
2540 |
+
|
2541 |
+
# automatic translation
|
2542 |
+
#: includes/pro_banners.php:56
|
2543 |
+
msgid "bbPress New Topic form"
|
2544 |
+
msgstr "bbPress Formulaire de nouveau sujet"
|
2545 |
+
|
2546 |
+
# automatic translation
|
2547 |
+
#: includes/pro_banners.php:57
|
2548 |
+
msgid "bbPress Reply form"
|
2549 |
+
msgstr "bbPress Formulaire de réponse"
|
2550 |
+
|
2551 |
+
# automatic translation
|
2552 |
+
#: includes/pro_banners.php:58
|
2553 |
+
msgid "BuddyPress Registration form"
|
2554 |
+
msgstr "Formulaire d'inscription à BuddyPress"
|
2555 |
+
|
2556 |
+
# automatic translation
|
2557 |
+
#: includes/pro_banners.php:59
|
2558 |
+
msgid "BuddyPress Comments form"
|
2559 |
+
msgstr "Formulaire de commentaires BuddyPress"
|
2560 |
+
|
2561 |
+
# automatic translation
|
2562 |
+
#: includes/pro_banners.php:60
|
2563 |
+
msgid "BuddyPress Add New Group form"
|
2564 |
+
msgstr "Formulaire d'ajout d'un nouveau groupe BuddyPress"
|
2565 |
+
|
2566 |
+
# automatic translation
|
2567 |
+
#: includes/pro_banners.php:61
|
2568 |
+
msgid "WooCommerce Login form"
|
2569 |
+
msgstr "Formulaire de connexion WooCommerce"
|
2570 |
+
|
2571 |
+
# automatic translation
|
2572 |
+
#: includes/pro_banners.php:62
|
2573 |
+
msgid "WooCommerce Registration form"
|
2574 |
+
msgstr "Formulaire d'inscription WooCommerce"
|
2575 |
+
|
2576 |
+
# automatic translation
|
2577 |
+
#: includes/pro_banners.php:63
|
2578 |
+
msgid "WooCommerce Reset password form"
|
2579 |
+
msgstr "Formulaire de réinitialisation de mot de passe WooCommerce"
|
2580 |
+
|
2581 |
+
# automatic translation
|
2582 |
+
#: includes/pro_banners.php:64
|
2583 |
+
msgid "WooCommerce Checkout form"
|
2584 |
+
msgstr "Formulaire de paiement WooCommerce"
|
2585 |
+
|
2586 |
+
# automatic translation
|
2587 |
+
#: includes/pro_banners.php:65
|
2588 |
+
msgid "wpForo Login form"
|
2589 |
+
msgstr "Formulaire de connexion wpForo"
|
2590 |
+
|
2591 |
+
# automatic translation
|
2592 |
+
#: includes/pro_banners.php:66
|
2593 |
+
msgid "wpForo Registration form"
|
2594 |
+
msgstr "Formulaire d'inscription à wpForo"
|
2595 |
+
|
2596 |
+
# automatic translation
|
2597 |
+
#: includes/pro_banners.php:67
|
2598 |
+
msgid "wpForo New Topic form"
|
2599 |
+
msgstr "Formulaire de nouveau sujet wpForo"
|
2600 |
+
|
2601 |
+
# automatic translation
|
2602 |
+
#: includes/pro_banners.php:68
|
2603 |
+
msgid "wpForo Reply form"
|
2604 |
+
msgstr "Formulaire de réponse wpForo"
|
2605 |
+
|
2606 |
+
# automatic translation
|
2607 |
+
#: includes/pro_banners.php:69
|
2608 |
+
msgid "Ninja Forms"
|
2609 |
+
msgstr "Formes Ninja"
|
2610 |
+
|
2611 |
+
# automatic translation
|
2612 |
+
#: includes/pro_banners.php:70
|
2613 |
+
msgid "Divi Contact Form"
|
2614 |
+
msgstr "Formulaire de contact Divi"
|
2615 |
+
|
2616 |
+
# automatic translation
|
2617 |
+
#: includes/pro_banners.php:71
|
2618 |
+
msgid "Divi Login Form"
|
2619 |
+
msgstr "Formulaire de connexion Divi"
|
2620 |
+
|
2621 |
+
# automatic translation
|
2622 |
+
#: includes/pro_banners.php:72
|
2623 |
+
msgid "Gravity Forms"
|
2624 |
+
msgstr "Formes de gravité"
|
2625 |
+
|
2626 |
+
# automatic translation
|
2627 |
+
#: includes/pro_banners.php:73
|
2628 |
+
msgid "WPForms"
|
2629 |
+
msgstr "WPForms"
|
2630 |
+
|
2631 |
+
# automatic translation
|
2632 |
+
#: includes/pro_banners.php:74
|
2633 |
+
msgid "Ultimate Member Login form"
|
2634 |
+
msgstr "Formulaire de connexion ultime des membres"
|
2635 |
+
|
2636 |
+
# automatic translation
|
2637 |
+
#: includes/pro_banners.php:75
|
2638 |
+
msgid "Ultimate Member Registration form"
|
2639 |
+
msgstr "Formulaire d'inscription de membre ultime"
|
2640 |
+
|
2641 |
+
# automatic translation
|
2642 |
+
#: includes/pro_banners.php:76
|
2643 |
+
msgid "Ultimate Member Profile form"
|
2644 |
+
msgstr "Formulaire de profil de membre ultime"
|
2645 |
+
|
2646 |
+
# automatic translation
|
2647 |
+
#: includes/pro_banners.php:78
|
2648 |
+
msgid "Elementor Contact Form"
|
2649 |
+
msgstr "Formulaire de contact Elementor"
|
2650 |
+
|
2651 |
+
# automatic translation
|
2652 |
+
#: includes/pro_banners.php:185
|
2653 |
+
msgid "Language"
|
2654 |
+
msgstr "Langue"
|
2655 |
+
|
2656 |
+
# automatic translation
|
2657 |
+
#: includes/pro_banners.php:193
|
2658 |
+
msgid "Multilanguage"
|
2659 |
+
msgstr "Multilingue"
|
2660 |
+
|
2661 |
+
# automatic translation
|
2662 |
+
#: includes/pro_banners.php:196
|
2663 |
+
msgid ""
|
2664 |
+
"Enable to switch language automatically on multilingual website using the "
|
2665 |
+
"Multilanguage plugin."
|
2666 |
+
msgstr ""
|
2667 |
+
"Activer pour changer de langue automatiquement sur un site Web multilingue à "
|
2668 |
+
"l'aide du plugin multilingue."
|
2669 |
+
|
2670 |
+
# automatic translation
|
2671 |
+
#: includes/pro_banners.php:208
|
2672 |
+
msgid "Size"
|
2673 |
+
msgstr "Taille"
|
2674 |
+
|
2675 |
+
# automatic translation
|
2676 |
+
#: includes/pro_banners.php:212
|
2677 |
+
msgid "Normal"
|
2678 |
+
msgstr "Normal"
|
2679 |
+
|
2680 |
+
# automatic translation
|
2681 |
+
#: includes/pro_banners.php:213
|
2682 |
+
msgid "Compact"
|
2683 |
+
msgstr "Compact"
|
2684 |
+
|
2685 |
+
# automatic translation
|
2686 |
+
#. Plugin Name of the plugin/theme
|
2687 |
+
msgid "reCaptcha by BestWebSoft"
|
2688 |
+
msgstr "reCaptcha par BestWebSoft"
|
2689 |
+
|
2690 |
+
# automatic translation
|
2691 |
+
#. Plugin URI of the plugin/theme
|
2692 |
+
msgid "https://bestwebsoft.com/products/wordpress/plugins/google-captcha/"
|
2693 |
+
msgstr "https://bestwebsoft.com/products/wordpress/plugins/google-captcha/"
|
2694 |
+
|
2695 |
+
# automatic translation
|
2696 |
+
#. Description of the plugin/theme
|
2697 |
+
msgid ""
|
2698 |
+
"Protect WordPress website forms from spam entries with Google Captcha (reCaptcha)."
|
2699 |
+
msgstr ""
|
2700 |
+
"Protégez les formulaires de sites Web WordPress contre les entrées de spam avec "
|
2701 |
+
"Google Captcha (reCaptcha)."
|
2702 |
+
|
2703 |
+
# automatic translation
|
2704 |
+
#. Author of the plugin/theme
|
2705 |
+
msgid "BestWebSoft"
|
2706 |
+
msgstr "BestWebSoft"
|
2707 |
+
|
2708 |
+
# automatic translation
|
2709 |
+
#. Author URI of the plugin/theme
|
2710 |
+
msgid "https://bestwebsoft.com/"
|
2711 |
+
msgstr "https://bestwebsoft.com/"
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
|
|
3 |
Donate link: https://bestwebsoft.com/donate/
|
4 |
Tags: anti-spam security, antispam, recaptcha, captcha, captha, Invisible reCaptcha, Invisible captcha, Invisibl reCaptcha, comment, cpatcha, google catcha, Invisible re captcha, recaptcha version3
|
5 |
Requires at least: 4.5
|
6 |
-
Tested up to: 5.8.
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -64,7 +64,7 @@ http://www.youtube.com/watch?v=L2BziEOL3Fg
|
|
64 |
> * Gravity Forms
|
65 |
> * WPForms
|
66 |
> * Caldera Forms
|
67 |
-
> * Elementor Pro Contact Forms
|
68 |
> * Compatible with WooCommerce:
|
69 |
> * Login form
|
70 |
> * Register form
|
@@ -119,6 +119,7 @@ Earn 20% commission by selling the premium WordPress plugins and themes by BestW
|
|
119 |
= Translation =
|
120 |
|
121 |
* Czech (cs_CZ) (thanks to [Michal Kučera](mailto:kucerami@gmail.com), www.n0lim.it, [PaMaDeSSoft](mailto:info@pamadessoft.cz), www.pamadessoft.cz)
|
|
|
122 |
* Romanian (ro_RO)
|
123 |
* Russian (ru_RU)
|
124 |
* Spanish (es_ES)
|
@@ -275,6 +276,11 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
275 |
|
276 |
== Changelog ==
|
277 |
|
|
|
|
|
|
|
|
|
|
|
278 |
= V1.65 - 01.10.2021 =
|
279 |
* Update : All functionality was updated for WordPress 5.8.1
|
280 |
* Update : BWS Panel section was updated.
|
@@ -569,6 +575,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
569 |
|
570 |
== Upgrade Notice ==
|
571 |
|
|
|
|
|
|
|
|
|
572 |
= V1.65 =
|
573 |
* The compatibility with new WordPress version updated.
|
574 |
* Plugin optimization completed.
|
3 |
Donate link: https://bestwebsoft.com/donate/
|
4 |
Tags: anti-spam security, antispam, recaptcha, captcha, captha, Invisible reCaptcha, Invisible captcha, Invisibl reCaptcha, comment, cpatcha, google catcha, Invisible re captcha, recaptcha version3
|
5 |
Requires at least: 4.5
|
6 |
+
Tested up to: 5.8.2
|
7 |
+
Stable tag: 1.66
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
64 |
> * Gravity Forms
|
65 |
> * WPForms
|
66 |
> * Caldera Forms
|
67 |
+
> * Elementor Pro Contact Forms
|
68 |
> * Compatible with WooCommerce:
|
69 |
> * Login form
|
70 |
> * Register form
|
119 |
= Translation =
|
120 |
|
121 |
* Czech (cs_CZ) (thanks to [Michal Kučera](mailto:kucerami@gmail.com), www.n0lim.it, [PaMaDeSSoft](mailto:info@pamadessoft.cz), www.pamadessoft.cz)
|
122 |
+
* French (fr_FR)
|
123 |
* Romanian (ro_RO)
|
124 |
* Russian (ru_RU)
|
125 |
* Spanish (es_ES)
|
276 |
|
277 |
== Changelog ==
|
278 |
|
279 |
+
= V1.66 - 22.11.2021 =
|
280 |
+
* NEW : The French language file was added.
|
281 |
+
* Update : BWS Panel section was updated.
|
282 |
+
* Pro : The issue with Elementor Pro 3.5.0 has been fixed.
|
283 |
+
|
284 |
= V1.65 - 01.10.2021 =
|
285 |
* Update : All functionality was updated for WordPress 5.8.1
|
286 |
* Update : BWS Panel section was updated.
|
575 |
|
576 |
== Upgrade Notice ==
|
577 |
|
578 |
+
= V1.66 =
|
579 |
+
* Bugs fixed.
|
580 |
+
* Plugin optimization completed.
|
581 |
+
|
582 |
= V1.65 =
|
583 |
* The compatibility with new WordPress version updated.
|
584 |
* Plugin optimization completed.
|