Contact Form by BestWebSoft - Version 3.96

Version Description

  • 04.12.2015 =
  • Bugfix : The bug with sorting on mobile devices was fixed.
  • Bugfix : XSS vulnerability was removed.
  • Bugfix : The bug with plugin menu duplicating was fixed.
  • Update : The French language file is updated.
Download this release

Release Info

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

Code changes from version 3.95 to 3.96

bws_menu/bws_functions.php CHANGED
@@ -1,19 +1,45 @@
1
  <?php
2
  /*
3
  * General functions for BestWebSoft plugins
4
- * Version: 1.1.3
5
  */
6
 
 
 
 
 
7
  if ( ! function_exists ( 'bws_add_general_menu' ) ) {
8
  function bws_add_general_menu() {
9
- add_menu_page( 'BWS Plugins', 'BWS Plugins', 'manage_options', 'bws_plugins', 'bws_add_menu_render', plugins_url( 'images/px.png', __FILE__ ), 1001 );
10
  }
11
  }
12
 
13
  /**
14
- * Function check if plugin is compatible with current WP version - for old plugin version
15
  * @return void
16
  */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  if ( ! function_exists ( 'bws_wp_version_check' ) ) {
18
  function bws_wp_version_check( $plugin_basename, $plugin_info, $require_wp ) {
19
  bws_wp_min_version_check( $plugin_basename, $plugin_info, '3.8' , $require_wp );
@@ -328,13 +354,19 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
328
  }
329
  }
330
 
331
- /* compatibility function (Menu Version: 1.7.6) */
 
 
 
332
  if ( ! function_exists( 'bws_go_pro_tab' ) ) {
333
  function bws_go_pro_tab( $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
334
  bws_go_pro_tab_show( false, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated, $trial_days_number );
335
  }
336
  }
337
 
 
 
 
338
  if ( ! function_exists( 'bws_go_pro_tab_show' ) ) {
339
  function bws_go_pro_tab_show( $bws_hide_premium_options_check, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
340
  global $wp_version, $bstwbsftwppdtplgns_options;
@@ -686,7 +718,9 @@ if ( ! function_exists( 'bws_hide_premium_options' ) ) {
686
  global $current_user;
687
  if ( ! $current_user )
688
  get_currentuserinfo();
689
-
 
 
690
  $options['hide_premium_options'][] = $current_user->ID;
691
 
692
  return array(
@@ -701,7 +735,7 @@ if ( ! function_exists( 'bws_hide_premium_options_check' ) ) {
701
  if ( ! $current_user )
702
  get_currentuserinfo();
703
 
704
- if ( isset( $options['hide_premium_options'] ) && in_array( $current_user->ID, $options['hide_premium_options'] ) )
705
  return true;
706
  else
707
  return false;
@@ -922,11 +956,11 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
922
  }
923
 
924
  if ( ! function_exists ( 'bws_form_restore_default_settings' ) ) {
925
- function bws_form_restore_default_settings( $plugin_basename ) { ?>
926
  <form method="post" action="">
927
  <p><?php _e( 'Restore all plugin settings to defaults', 'bestwebsoft' ); ?></p>
928
  <p>
929
- <input type="submit" class="button" value="<?php _e( 'Restore settings', 'bestwebsoft' ); ?>" />
930
  </p>
931
  <input type="hidden" name="bws_restore_default" value="submit" />
932
  <?php wp_nonce_field( $plugin_basename, 'bws_settings_nonce_name' ); ?>
@@ -961,12 +995,14 @@ if ( ! function_exists( 'bws_add_editor_buttons' ) ) {
961
  }
962
  }
963
  }
 
964
  if ( ! function_exists( 'bws_add_buttons' ) ){
965
  function bws_add_buttons( $plugin_array ) {
966
  $plugin_array['add_bws_shortcode'] = plugins_url( 'js/shortcode-button.js', __FILE__ );
967
  return $plugin_array;
968
  }
969
  }
 
970
  if ( ! function_exists( 'bws_register_buttons' ) ) {
971
  function bws_register_buttons( $buttons ) {
972
  array_push( $buttons, 'add_bws_shortcode' ); /* dropcap', 'recentposts */
1
  <?php
2
  /*
3
  * General functions for BestWebSoft plugins
 
4
  */
5
 
6
+ /**
7
+ * Function add BWS Plugins page - for old plugin version
8
+ * @deprecated 1.7.9
9
+ */
10
  if ( ! function_exists ( 'bws_add_general_menu' ) ) {
11
  function bws_add_general_menu() {
12
+ bws_general_menu();
13
  }
14
  }
15
 
16
  /**
17
+ * Function add BWS Plugins page
18
  * @return void
19
  */
20
+ if ( ! function_exists ( 'bws_general_menu' ) ) {
21
+ function bws_general_menu() {
22
+ global $menu, $bws_general_menu_exist;
23
+
24
+ if ( ! $bws_general_menu_exist ) {
25
+ /* we check also menu exist in global array as in old plugins $bws_general_menu_exist variable not exist */
26
+ foreach ( $menu as $value_menu ) {
27
+ if ( 'bws_plugins' == $value_menu[2] ) {
28
+ $bws_general_menu_exist = true;
29
+ return;
30
+ }
31
+ }
32
+
33
+ add_menu_page( 'BWS Plugins', 'BWS Plugins', 'manage_options', 'bws_plugins', 'bws_add_menu_render', plugins_url( 'images/px.png', __FILE__ ), 1001 );
34
+ $bws_general_menu_exist = true;
35
+ }
36
+ }
37
+ }
38
+
39
+ /**
40
+ * Function check if plugin is compatible with current WP version - for old plugin version
41
+ * @deprecated 1.7.4
42
+ */
43
  if ( ! function_exists ( 'bws_wp_version_check' ) ) {
44
  function bws_wp_version_check( $plugin_basename, $plugin_info, $require_wp ) {
45
  bws_wp_min_version_check( $plugin_basename, $plugin_info, '3.8' , $require_wp );
354
  }
355
  }
356
 
357
+ /**
358
+ * Function display GO PRO tab - for old plugin version
359
+ * @deprecated 1.7.6
360
+ */
361
  if ( ! function_exists( 'bws_go_pro_tab' ) ) {
362
  function bws_go_pro_tab( $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
363
  bws_go_pro_tab_show( false, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated, $trial_days_number );
364
  }
365
  }
366
 
367
+ /**
368
+ * Function display GO PRO tab
369
+ */
370
  if ( ! function_exists( 'bws_go_pro_tab_show' ) ) {
371
  function bws_go_pro_tab_show( $bws_hide_premium_options_check, $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
372
  global $wp_version, $bstwbsftwppdtplgns_options;
718
  global $current_user;
719
  if ( ! $current_user )
720
  get_currentuserinfo();
721
+ if ( ! isset( $options['hide_premium_options'] ) || ! is_array( $options['hide_premium_options'] ) )
722
+ $options['hide_premium_options'] = array();
723
+
724
  $options['hide_premium_options'][] = $current_user->ID;
725
 
726
  return array(
735
  if ( ! $current_user )
736
  get_currentuserinfo();
737
 
738
+ if ( ! empty( $options['hide_premium_options'] ) && in_array( $current_user->ID, $options['hide_premium_options'] ) )
739
  return true;
740
  else
741
  return false;
956
  }
957
 
958
  if ( ! function_exists ( 'bws_form_restore_default_settings' ) ) {
959
+ function bws_form_restore_default_settings( $plugin_basename, $change_permission_attr = '' ) { ?>
960
  <form method="post" action="">
961
  <p><?php _e( 'Restore all plugin settings to defaults', 'bestwebsoft' ); ?></p>
962
  <p>
963
+ <input <?php echo $change_permission_attr; ?> type="submit" class="button" value="<?php _e( 'Restore settings', 'bestwebsoft' ); ?>" />
964
  </p>
965
  <input type="hidden" name="bws_restore_default" value="submit" />
966
  <?php wp_nonce_field( $plugin_basename, 'bws_settings_nonce_name' ); ?>
995
  }
996
  }
997
  }
998
+
999
  if ( ! function_exists( 'bws_add_buttons' ) ){
1000
  function bws_add_buttons( $plugin_array ) {
1001
  $plugin_array['add_bws_shortcode'] = plugins_url( 'js/shortcode-button.js', __FILE__ );
1002
  return $plugin_array;
1003
  }
1004
  }
1005
+
1006
  if ( ! function_exists( 'bws_register_buttons' ) ) {
1007
  function bws_register_buttons( $buttons ) {
1008
  array_push( $buttons, 'add_bws_shortcode' ); /* dropcap', 'recentposts */
bws_menu/bws_include.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
  /*
3
  * Get latest version
4
- * Version: 1.0.0
5
  */
6
 
7
  if ( ! function_exists ( 'bws_include_init' ) ) {
1
  <?php
2
  /*
3
  * Get latest version
 
4
  */
5
 
6
  if ( ! function_exists ( 'bws_include_init' ) ) {
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 1.7.7
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
@@ -613,8 +613,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
613
  }
614
  } ?>
615
  <div class="wrap">
616
- <div class="icon32 icon32-bws" id="icon-options-general"></div>
617
- <h2>
618
  <span class="bws_main title">BestWebSoft</span>
619
  <ul class="subsubsub bws_title_menu">
620
  <li><a href="<?php echo esc_url( 'http://support.bestwebsoft.com/home' ); ?>" target="_blank"><?php _e( 'Need help?', 'bestwebsoft' ); ?></a></li> |
@@ -622,12 +621,10 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
622
  <li><a class="bws_system_status <?php if ( isset( $_GET['action'] ) && 'system_status' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&amp;action=system_status"><?php _e( 'System status', 'bestwebsoft' ); ?></a></li>
623
  </ul>
624
  <div class="clear"></div>
625
- </h2>
626
  <h2 class="nav-tab-wrapper">
627
  <a class="nav-tab<?php if ( !isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
628
- <?php if ( $wp_version >= '3.4' ) { ?>
629
- <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'themes' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&amp;action=themes"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
630
- <?php } ?>
631
  </h2>
632
  <?php if ( ! isset( $_GET['action'] ) ) { ?>
633
  <ul class="subsubsub">
@@ -637,7 +634,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
637
  </ul>
638
  <div class="clear"></div>
639
  <?php if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || !isset( $_GET['sub'] ) ) { ?>
640
- <h4 class="bws_installed"><?php _e( 'Installed plugins', 'bestwebsoft' ); ?></h4>
641
  <?php foreach ( $all_plugins as $key_plugin => $value_plugin ) {
642
  if ( isset( $bws_plugins_pro[ $key_plugin ] ) )
643
  $key_plugin = $bws_plugins_pro[ $key_plugin ];
@@ -755,7 +752,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
755
  } ?>
756
  <div class="clear"></div>
757
  <?php if ( ( isset( $_GET['sub'] ) && 'recommended' == $_GET['sub'] ) || !isset( $_GET['sub'] ) ) { ?>
758
- <h4 class="bws_recommended"><?php _e( 'Recommended plugins', 'bestwebsoft' ); ?></h4>
759
  <?php foreach ( $recommend_plugins as $key_plugin => $value_plugin ) {
760
 
761
  if ( isset( $bws_plugins[ $key_plugin ] ) ) {
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 1.8.0
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
613
  }
614
  } ?>
615
  <div class="wrap">
616
+ <h1>
 
617
  <span class="bws_main title">BestWebSoft</span>
618
  <ul class="subsubsub bws_title_menu">
619
  <li><a href="<?php echo esc_url( 'http://support.bestwebsoft.com/home' ); ?>" target="_blank"><?php _e( 'Need help?', 'bestwebsoft' ); ?></a></li> |
621
  <li><a class="bws_system_status <?php if ( isset( $_GET['action'] ) && 'system_status' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&amp;action=system_status"><?php _e( 'System status', 'bestwebsoft' ); ?></a></li>
622
  </ul>
623
  <div class="clear"></div>
624
+ </h1>
625
  <h2 class="nav-tab-wrapper">
626
  <a class="nav-tab<?php if ( !isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
627
+ <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'themes' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=bws_plugins&amp;action=themes"><?php _e( 'Themes', 'bestwebsoft' ); ?></a>
 
 
628
  </h2>
629
  <?php if ( ! isset( $_GET['action'] ) ) { ?>
630
  <ul class="subsubsub">
634
  </ul>
635
  <div class="clear"></div>
636
  <?php if ( ( isset( $_GET['sub'] ) && 'installed' == $_GET['sub'] ) || !isset( $_GET['sub'] ) ) { ?>
637
+ <h3 class="bws_installed"><?php _e( 'Installed plugins', 'bestwebsoft' ); ?></h3>
638
  <?php foreach ( $all_plugins as $key_plugin => $value_plugin ) {
639
  if ( isset( $bws_plugins_pro[ $key_plugin ] ) )
640
  $key_plugin = $bws_plugins_pro[ $key_plugin ];
752
  } ?>
753
  <div class="clear"></div>
754
  <?php if ( ( isset( $_GET['sub'] ) && 'recommended' == $_GET['sub'] ) || !isset( $_GET['sub'] ) ) { ?>
755
+ <h3 class="bws_recommended"><?php _e( 'Recommended plugins', 'bestwebsoft' ); ?></h3>
756
  <?php foreach ( $recommend_plugins as $key_plugin => $value_plugin ) {
757
 
758
  if ( isset( $bws_plugins[ $key_plugin ] ) ) {
bws_menu/css/general_style.css CHANGED
@@ -392,8 +392,6 @@ span.bws_code {
392
  .rtl .bws_hidden_help_text:before {
393
  margin-right: -2px;
394
  }
395
-
396
-
397
  /* bws shortcode insert */
398
  #bws_shortcode_content,
399
  #bws_shortcode_select_plugin {
392
  .rtl .bws_hidden_help_text:before {
393
  margin-right: -2px;
394
  }
 
 
395
  /* bws shortcode insert */
396
  #bws_shortcode_content,
397
  #bws_shortcode_select_plugin {
bws_menu/css/style.css CHANGED
@@ -24,15 +24,15 @@
24
  float: left;
25
  margin-right: 30px;
26
  }
27
- h4.bws_installed,
28
- h4.bws_recommended {
29
  color: #999;
30
  font-weight: bold;
31
  text-transform: uppercase;
32
  font-size: 14px;
33
  }
34
- h4.bws_installed:before,
35
- h4.bws_recommended:before {
36
  border-radius: 9px;
37
  content: "";
38
  display: inline-block;
@@ -42,10 +42,10 @@ h4.bws_recommended:before {
42
  width: 8px;
43
  margin-right: 7px;
44
  }
45
- h4.bws_recommended:before {
46
  background: #0074a2;
47
  }
48
- h4.bws_installed:before {
49
  background: #00a22e;
50
  }
51
  .bws_product_box {
24
  float: left;
25
  margin-right: 30px;
26
  }
27
+ .bws_installed,
28
+ .bws_recommended {
29
  color: #999;
30
  font-weight: bold;
31
  text-transform: uppercase;
32
  font-size: 14px;
33
  }
34
+ .bws_installed:before,
35
+ .bws_recommended:before {
36
  border-radius: 9px;
37
  content: "";
38
  display: inline-block;
42
  width: 8px;
43
  margin-right: 7px;
44
  }
45
+ .bws_recommended:before {
46
  background: #0074a2;
47
  }
48
+ .bws_installed:before {
49
  background: #00a22e;
50
  }
51
  .bws_product_box {
bws_menu/js/bws_tooltip.js CHANGED
@@ -34,7 +34,7 @@
34
  });
35
  /* function to display pointer */
36
  function displayPointer( cssSelector ) {
37
- cssSelector.pointer(pointer_options).pointer({
38
  pointerClass: 'wp-pointer ' + pointer_options["tooltip_id"],
39
  content: pointer_options['content'],
40
  position: {
34
  });
35
  /* function to display pointer */
36
  function displayPointer( cssSelector ) {
37
+ cssSelector.pointer( pointer_options ).pointer({
38
  pointerClass: 'wp-pointer ' + pointer_options["tooltip_id"],
39
  content: pointer_options['content'],
40
  position: {
bws_menu/js/shortcode-button.js CHANGED
@@ -1,122 +1,124 @@
1
- (function($) {
2
- var win;
3
- tinymce.create( 'tinymce.plugins.BWSButton', {
4
- /**
5
- * Initializes the plugin, this will be executed after the plugin has been created.
6
- * This call is done before the editor instance has finished it's initialization so use the onInit event
7
- * of the editor instance to intercept that event.
8
- *
9
- * @param {tinymce.Editor} ed Editor instance that the plugin is initialized in.
10
- * @param {string} url Absolute URL to where the plugin is located.
11
- */
12
- init : function( ed, url ) {
13
- ed.addButton( 'add_bws_shortcode', {
14
- title : bws_shortcode_button.title,
15
- classes: 'bws_shortcode_button widget btn',
16
- image : bws_shortcode_button.icon_url,
17
- onclick: function() {
18
- if ( bws_shortcode_button.wp_version < '3.9' ) {
19
- /* triggers the thickbox */
20
- var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
21
- W = W - 80;
22
- H = H - 84;
23
- tb_show( bws_shortcode_button.title, '#TB_inline?width=' + W + '&height=' + H + '&inlineId=bws_shortcode_popup' );
24
-
25
- var current_object = '#TB_ajaxContent';
26
- } else {
27
- win = ed.windowManager.open( {
28
- width: 400,
29
- height: 400,
30
- inline: true,
31
- title: bws_shortcode_button.title,
32
- body: {
33
- id : 'bws-shortcode-content',
34
- type: 'container',
35
- classes: 'bws-shortcode',
36
- html: $( '#bws_shortcode_popup' ).html()
37
- },
38
- buttons: [{
39
- text: 'Insert',
40
- classes: 'button-primary primary bws_shortcode_insert',
41
- onclick: function( e ) {
42
- var shortcode = $( '.mce-container-body #bws_shortcode_display' ).text();
43
- if ( '' != shortcode ) {
44
- /* insert shortcode to tinymce */
45
- ed.insertContent( shortcode );
46
- }
47
- ed.windowManager.close();
 
 
48
  },
49
- },
50
- {
51
- text: 'Cancel',
52
- onclick: 'close'
53
- }],
54
-
55
- });
56
- var current_object = '.mce-container-body';
57
- }
58
- var select_count = $( current_object + ' select#bws_shortcode_select option').length;
59
- if ( 1 == select_count ) {
60
- $( current_object + ' #bws_shortcode_select_plugin' ).hide();
61
- }
62
-
63
- var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
64
- $( current_object + ' #bws_shortcode_content > div' ).hide();
65
- $( current_object + ' #bws_shortcode_content > #' + plugin ).show();
66
-
67
- if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
68
- $( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
69
- }
70
 
71
- $( current_object + ' #bws_shortcode_select' ).on( 'change',function() {
72
  var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
73
  $( current_object + ' #bws_shortcode_content > div' ).hide();
74
  $( current_object + ' #bws_shortcode_content > #' + plugin ).show();
 
75
  if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
76
  $( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
77
- } else {
78
- $( current_object + ' #bws_shortcode_display' ).text( '' );
79
  }
80
- });
81
 
82
- $.each( bws_shortcode_button.function_name, function( index, value ) {
83
- eval( value + '();' );
84
- });
85
- }
86
- });
87
- },
88
-
89
- /**
90
- * Creates control instances based in the incomming name. This method is normally not
91
- * needed since the addButton method of the tinymce.Editor class is a more easy way of adding buttons
92
- * but you sometimes need to create more complex controls like listboxes, split buttons etc then this
93
- * method can be used to create those.
94
- *
95
- * @param {String} n Name of the control to create.
96
- * @param {tinymce.ControlManager} cm Control manager to use inorder to create new control.
97
- * @return {tinymce.ui.Control} New control instance or null if no control was created.
98
- */
99
- createControl : function(n, cm) {
100
- return null;
101
- },
102
-
103
- /**
104
- * Returns information about the plugin as a name/value array.
105
- * The current keys are longname, author, authorurl, infourl and version.
106
- *
107
- * @return {Object} Name/value array containing information about the plugin.
108
- */
109
- getInfo : function() {
110
- return {
111
- longname : 'BWS Shortcode Buttons',
112
- author : 'BWS',
113
- authorurl : 'http://bestwebsoft.com',
114
- infourl : '',
115
- version : "0.1"
116
- };
117
- }
118
- });
119
-
120
- /* Register plugin */
121
- tinymce.PluginManager.add( 'add_bws_shortcode', tinymce.plugins.BWSButton );
 
 
 
 
 
 
 
 
 
 
 
 
122
  })(jQuery);
1
+ (function($) {
2
+ if ( typeof bws_shortcode_button != 'undefined' ) {
3
+ var win;
4
+ tinymce.create( 'tinymce.plugins.BWSButton', {
5
+ /**
6
+ * Initializes the plugin, this will be executed after the plugin has been created.
7
+ * This call is done before the editor instance has finished it's initialization so use the onInit event
8
+ * of the editor instance to intercept that event.
9
+ *
10
+ * @param {tinymce.Editor} ed Editor instance that the plugin is initialized in.
11
+ * @param {string} url Absolute URL to where the plugin is located.
12
+ */
13
+ init : function( ed, url ) {
14
+ ed.addButton( 'add_bws_shortcode', {
15
+ title : bws_shortcode_button.title,
16
+ classes: 'bws_shortcode_button widget btn',
17
+ image : bws_shortcode_button.icon_url,
18
+ onclick: function() {
19
+ if ( bws_shortcode_button.wp_version < '3.9' ) {
20
+ /* triggers the thickbox */
21
+ var width = jQuery(window).width(), H = jQuery(window).height(), W = ( 720 < width ) ? 720 : width;
22
+ W = W - 80;
23
+ H = H - 84;
24
+ tb_show( bws_shortcode_button.title, '#TB_inline?width=' + W + '&height=' + H + '&inlineId=bws_shortcode_popup' );
25
+
26
+ var current_object = '#TB_ajaxContent';
27
+ } else {
28
+ win = ed.windowManager.open( {
29
+ width: 400,
30
+ height: 400,
31
+ inline: true,
32
+ title: bws_shortcode_button.title,
33
+ body: {
34
+ id : 'bws-shortcode-content',
35
+ type: 'container',
36
+ classes: 'bws-shortcode',
37
+ html: $( '#bws_shortcode_popup' ).html()
38
+ },
39
+ buttons: [{
40
+ text: 'Insert',
41
+ classes: 'button-primary primary bws_shortcode_insert',
42
+ onclick: function( e ) {
43
+ var shortcode = $( '.mce-container-body #bws_shortcode_display' ).text();
44
+ if ( '' != shortcode ) {
45
+ /* insert shortcode to tinymce */
46
+ ed.insertContent( shortcode );
47
+ }
48
+ ed.windowManager.close();
49
+ },
50
  },
51
+ {
52
+ text: 'Cancel',
53
+ onclick: 'close'
54
+ }],
55
+
56
+ });
57
+ var current_object = '.mce-container-body';
58
+ }
59
+ var select_count = $( current_object + ' select#bws_shortcode_select option').length;
60
+ if ( 1 == select_count ) {
61
+ $( current_object + ' #bws_shortcode_select_plugin' ).hide();
62
+ }
 
 
 
 
 
 
 
 
 
63
 
 
64
  var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
65
  $( current_object + ' #bws_shortcode_content > div' ).hide();
66
  $( current_object + ' #bws_shortcode_content > #' + plugin ).show();
67
+
68
  if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
69
  $( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
 
 
70
  }
 
71
 
72
+ $( current_object + ' #bws_shortcode_select' ).on( 'change',function() {
73
+ var plugin = $( current_object + ' #bws_shortcode_select option:selected' ).val();
74
+ $( current_object + ' #bws_shortcode_content > div' ).hide();
75
+ $( current_object + ' #bws_shortcode_content > #' + plugin ).show();
76
+ if ( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).length > 0 ) {
77
+ $( current_object + ' #bws_shortcode_display' ).text( $( current_object + ' #bws_shortcode_content > #' + plugin + ' .bws_default_shortcode' ).val() );
78
+ } else {
79
+ $( current_object + ' #bws_shortcode_display' ).text( '' );
80
+ }
81
+ });
82
+
83
+ $.each( bws_shortcode_button.function_name, function( index, value ) {
84
+ eval( value + '();' );
85
+ });
86
+ }
87
+ });
88
+ },
89
+
90
+ /**
91
+ * Creates control instances based in the incomming name. This method is normally not
92
+ * needed since the addButton method of the tinymce.Editor class is a more easy way of adding buttons
93
+ * but you sometimes need to create more complex controls like listboxes, split buttons etc then this
94
+ * method can be used to create those.
95
+ *
96
+ * @param {String} n Name of the control to create.
97
+ * @param {tinymce.ControlManager} cm Control manager to use inorder to create new control.
98
+ * @return {tinymce.ui.Control} New control instance or null if no control was created.
99
+ */
100
+ createControl : function(n, cm) {
101
+ return null;
102
+ },
103
+
104
+ /**
105
+ * Returns information about the plugin as a name/value array.
106
+ * The current keys are longname, author, authorurl, infourl and version.
107
+ *
108
+ * @return {Object} Name/value array containing information about the plugin.
109
+ */
110
+ getInfo : function() {
111
+ return {
112
+ longname : 'BWS Shortcode Buttons',
113
+ author : 'BWS',
114
+ authorurl : 'http://bestwebsoft.com',
115
+ infourl : '',
116
+ version : "0.1"
117
+ };
118
+ }
119
+ });
120
+
121
+ /* Register plugin */
122
+ tinymce.PluginManager.add( 'add_bws_shortcode', tinymce.plugins.BWSButton );
123
+ }
124
  })(jQuery);
bws_menu/languages/bestwebsoft-fr_FR.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-fr_FR.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-10-09 14:42+0300\n"
6
- "PO-Revision-Date: 2015-10-09 14:42+0300\n"
7
- "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
10
  "MIME-Version: 1.0\n"
@@ -14,17 +14,20 @@ msgstr ""
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2;plural=n>2;\n"
17
- "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: bws_functions.php:39
21
- #: bws_functions.php:63
22
  msgid "requires"
23
  msgstr "obligatoire"
24
 
25
  #: bws_functions.php:41
26
- msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
27
- msgstr "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à jour de WordPress puis de ré-essayer."
 
 
 
 
28
 
29
  #: bws_functions.php:42
30
  msgid "Back to the WordPress"
@@ -35,8 +38,12 @@ msgid "Plugins page"
35
  msgstr "Page des extensions"
36
 
37
  #: bws_functions.php:65
38
- msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
 
 
39
  msgstr ""
 
 
40
 
41
  #: bws_functions.php:122
42
  msgid "It’s time to upgrade your"
@@ -52,16 +59,19 @@ msgstr "version"
52
 
53
  #: bws_functions.php:123
54
  msgid "Extend standard plugin functionality with new great options."
55
- msgstr "Etend les fonctionalités classiques de l'extension avec des nouvelles options."
 
 
56
 
57
- #: bws_functions.php:126
58
- #: bws_functions.php:561
59
  msgid "Learn More"
60
  msgstr "En savoir plus"
61
 
62
  #: bws_functions.php:143
63
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
64
- msgstr "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans Wordpress"
 
 
65
 
66
  #: bws_functions.php:144
67
  msgid "Rate the plugin"
@@ -74,21 +84,22 @@ msgstr "Si vous avez une question, n'hésitez pas à nous contacter"
74
  #: bws_functions.php:179
75
  msgid "Check premium options on the plugin settings page!"
76
  msgstr ""
 
77
 
78
- #: bws_functions.php:186
79
- #: bws_functions.php:222
80
  msgid "Wrong license key"
81
  msgstr "Clé de licence incorrecte"
82
 
83
- #: bws_functions.php:216
84
- #: bws_functions.php:474
85
- #: bws_functions.php:525
86
- msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
87
- msgstr "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de nouveau, merci de contacter <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
 
 
 
88
 
89
- #: bws_functions.php:216
90
- #: bws_functions.php:474
91
- #: bws_functions.php:525
92
  msgid "We are sorry for inconvenience."
93
  msgstr "Nous sommes désolés pour le désagrément."
94
 
@@ -96,69 +107,91 @@ msgstr "Nous sommes désolés pour le désagrément."
96
  msgid "This license key is bind to another site"
97
  msgstr "La clé de licence correspond à un autre site."
98
 
99
- #: bws_functions.php:226
100
- #: bws_functions.php:384
101
- msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
102
- msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
 
 
 
103
 
104
  #: bws_functions.php:228
105
- msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
106
- msgstr "Désoler, votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller dans votre"
 
 
 
 
107
 
108
  #: bws_functions.php:230
109
- #, fuzzy
110
- msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
111
- msgstr "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne peut-être installée qu'une seule fois."
 
 
 
112
 
113
- #: bws_functions.php:251
114
- #: bws_functions.php:273
115
- #: bws_functions.php:295
116
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
117
- msgstr "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension manuellement."
 
 
118
 
119
  #: bws_functions.php:263
120
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
121
- msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
 
 
122
 
123
  #: bws_functions.php:269
124
- msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
125
- msgstr "Votre server n'a pas le support du format des archives ZIP ou Phar. Merci de télécharger l'extension manuellement."
 
 
 
 
126
 
127
  #: bws_functions.php:276
128
  msgid "UploadDir is not writable. Please, upload the plugin manually"
129
- msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
 
 
130
 
131
  #: bws_functions.php:299
132
- msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
133
- msgstr "Il est survenu une erreur. Essayer de nouveau ou bien télécharger l'extension manuellement.Nous sommes désolés pour le désagrément."
 
 
 
 
134
 
135
  #: bws_functions.php:324
136
  msgid "Please, enter Your license key"
137
  msgstr "Merci de saisir votre clé de licence"
138
 
139
  #: bws_functions.php:348
140
- #, fuzzy
141
- msgid "Congratulations! The Pro version of the plugin is successfully download and activated."
142
- msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
 
 
 
143
 
144
- #: bws_functions.php:350
145
- #: bws_functions.php:441
146
  msgid "Please, go to"
147
- msgstr "Merci d'allez à"
148
 
149
- #: bws_functions.php:350
150
- #: bws_functions.php:441
151
  msgid "the setting page"
152
  msgstr "Options supplémentaires"
153
 
154
- #: bws_functions.php:351
155
- #: bws_functions.php:442
156
  msgid "You will be redirected automatically in 5 seconds."
157
  msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
158
 
159
  #: bws_functions.php:358
160
  msgid "Show Pro features"
161
- msgstr ""
162
 
163
  #: bws_functions.php:365
164
  msgid "You can download and activate"
@@ -168,18 +201,21 @@ msgstr "Vous pouvez télécharger et activer la version "
168
  msgid "version of this plugin by entering Your license key."
169
  msgstr " de cette extension en donnant votre clé de licence."
170
 
171
- #: bws_functions.php:369
172
- #: bws_functions.php:410
173
- msgid "You can find your license key on your personal page Client area, by clicking on the link"
174
- msgstr "Vous pouvez trouver votre clé de licence sur votre page personnelle dans la zone cliente en cliquant sur le lien"
 
 
 
175
 
176
- #: bws_functions.php:371
177
- #: bws_functions.php:412
178
  msgid "(your username is the email you specify when purchasing the product)."
179
- msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension)."
 
 
180
 
181
- #: bws_functions.php:375
182
- #: bws_functions.php:659
183
  msgid "or"
184
  msgstr "ou"
185
 
@@ -188,33 +224,36 @@ msgstr "ou"
188
  msgid "Start Your Free %s-Day Trial Now"
189
  msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
190
 
191
- #: bws_functions.php:381
192
- #: bws_functions.php:390
193
- #: bws_functions.php:420
194
- #: bws_functions.php:428
195
- #: bws_menu.php:693
196
- #: bws_menu.php:750
197
  msgid "Activate"
198
  msgstr "Activé"
199
 
200
- #: bws_functions.php:407
201
- #: bws_functions.php:500
202
  #, php-format
203
- msgid "In order to continue using the plugin it is necessary to buy a %s license."
204
- msgstr "Afin de pouvoir continuer à utiliser cette extension il est nécessaire d'acheter une licence %s."
 
 
 
205
 
206
  #: bws_functions.php:408
207
  msgid "After that you can activate it by entering your license key."
208
- msgstr " Après vous pouvez activer cette extension en donnant votre clé de licence."
 
209
 
210
  #: bws_functions.php:422
211
  msgid "Unfortunately, you have exceeded the number of available tries per day."
212
- msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
 
 
213
 
214
  #: bws_functions.php:439
215
- #, fuzzy
216
- msgid "Congratulations! The Pro license of the plugin is successfully activated."
217
- msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
 
 
218
 
219
  #: bws_functions.php:480
220
  msgid "Wrong license key."
@@ -225,20 +264,29 @@ msgid "This license key is bind to another site."
225
  msgstr "La clé de licence correspond à un autre site."
226
 
227
  #: bws_functions.php:484
228
- msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
229
- msgstr "La clé de licence est valide mais votre durée de validité est passée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
 
 
 
 
 
230
 
231
  #: bws_functions.php:486
232
  msgid "Unfortunately, you have exceeded the number of available tries."
233
- msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
 
 
234
 
235
  #: bws_functions.php:488
236
- #, fuzzy
237
- msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
238
- msgstr "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne peut-être installée qu'une seule fois."
 
 
 
239
 
240
  #: bws_functions.php:492
241
- #, fuzzy
242
  msgid "The Pro Trial license key is valid."
243
  msgstr "La clé de licence d'évaluation est valide."
244
 
@@ -255,12 +303,23 @@ msgid "Please, enter your license key"
255
  msgstr "Merci de saisir votre clé de licence"
256
 
257
  #: bws_functions.php:543
258
- msgid "If needed you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client area - on our website"
259
- msgstr "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de licence sur votre page personnelle (zone client) sur notre site web."
 
 
 
 
 
 
260
 
261
  #: bws_functions.php:543
262
- msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
263
- msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de mot de passe perdu."
 
 
 
 
 
264
 
265
  #: bws_functions.php:547
266
  msgid "Check license key"
@@ -271,42 +330,52 @@ msgid "WARNING: Illegal use notification"
271
  msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
272
 
273
  #: bws_functions.php:561
274
- msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
275
- msgstr "Nous avons détecté une utilisation abusive de notre extension. Nous vous recommandons de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue inactive. Merci de vous rendre dans votre espace personel"
 
 
 
 
 
 
 
 
 
276
 
277
  #: bws_functions.php:569
278
- #, fuzzy
279
- msgid "Notice: Your Pro Trial license has expired. To continue using the plugin you should buy a Pro license"
280
- msgstr "Votre licence d'évaluation est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
 
 
 
281
 
282
  #: bws_functions.php:571
283
- msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
284
- msgstr "Votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
 
 
 
 
285
 
286
- #: bws_functions.php:571
287
- #: bws_functions.php:624
288
- #: bws_menu.php:669
289
- #: bws_menu.php:691
290
- #: bws_menu.php:718
291
- #: bws_menu.php:748
292
- #: bws_menu.php:794
293
  msgid "Learn more"
294
  msgstr "En savoir plus"
295
 
296
  #: bws_functions.php:581
297
- #, fuzzy, php-format
298
  msgid "Notice: You are using the Pro Trial license of %s plugin."
299
- msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
 
300
 
301
  #: bws_functions.php:583
302
- #, fuzzy
303
  msgid "Notice: You are using the Pro Trial license of plugin."
304
  msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
305
 
306
  #: bws_functions.php:586
307
- #, fuzzy
308
  msgid "The Pro Trial license will expire on"
309
- msgstr "Votre licence se termine le "
310
 
311
  #: bws_functions.php:624
312
  msgid "You license for"
@@ -318,150 +387,138 @@ msgstr "se termine le"
318
 
319
  #: bws_functions.php:624
320
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
321
- msgstr "et vous ne diposerez plus du support rapide et des mises à jour."
322
 
323
  #: bws_functions.php:655
324
- #, fuzzy
325
  msgid "Thank you for installing"
326
- msgstr "Merci de nous avoir contacté."
327
 
328
  #: bws_functions.php:656
329
  msgid "Let's get started"
330
- msgstr ""
331
 
332
  #: bws_functions.php:657
333
- #, fuzzy
334
  msgid "Configure Settings"
335
- msgstr "Options du formulaire de Contact"
336
 
337
  #: bws_functions.php:660
338
  msgid "Add New"
339
- msgstr ""
340
 
341
  #: bws_functions.php:664
342
  msgid "Close notice"
343
- msgstr ""
344
 
345
  #: bws_functions.php:677
346
  msgid "Notice"
347
- msgstr ""
348
 
349
  #: bws_functions.php:677
350
  msgid "The plugin's settings have been changed."
351
- msgstr ""
352
 
353
  #: bws_functions.php:678
354
  msgid "Save Changes"
355
  msgstr "Sauvegarder les modifications"
356
 
357
  #: bws_functions.php:693
358
- msgid "You can always look at premium options by clicking on the \"Show Pro features\" in the \"Go PRO\" tab"
 
 
359
  msgstr ""
 
 
360
 
361
  #: bws_functions.php:773
362
- #, fuzzy
363
  msgid "Add BWS Plugins Shortcode"
364
- msgstr "Utiliser le code court"
365
 
366
  #: bws_functions.php:793
367
- #, fuzzy
368
  msgid "Add shortcode"
369
- msgstr "Utiliser le code court"
370
 
371
  #: bws_functions.php:793
372
  msgid "Add BestWebSoft plugins' shortcodes using this button."
373
- msgstr ""
374
 
375
- #: bws_functions.php:833
376
  msgid "Close"
377
  msgstr "Fermer"
378
 
379
- #: bws_functions.php:925
380
  msgid "Restore all plugin settings to defaults"
381
- msgstr ""
382
 
383
- #: bws_functions.php:927
384
- #, fuzzy
385
  msgid "Restore settings"
386
- msgstr "Options supplémentaires"
387
 
388
- #: bws_functions.php:938
389
- #, fuzzy
390
  msgid "Are you sure you want to restore all settings by default?"
391
- msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
392
 
393
- #: bws_functions.php:941
394
  msgid "Yes, restore all settings"
395
- msgstr ""
396
 
397
- #: bws_functions.php:942
398
- #, fuzzy
399
  msgid "No, go back to the settings page"
400
- msgstr "Options supplémentaires"
401
 
402
- #: bws_functions.php:986
403
- #, fuzzy
404
  msgid "Plugin"
405
- msgstr "Extensions"
406
 
407
- #: bws_functions.php:995
408
- #, fuzzy
409
  msgid "Shortcode settings"
410
- msgstr "Options supplémentaires"
411
 
412
- #: bws_functions.php:1000
413
  msgid "The shortcode will be inserted"
414
- msgstr ""
415
 
416
- #: bws_functions.php:1005
417
  msgid "Insert"
418
- msgstr ""
419
 
420
- #: bws_functions.php:1036
421
  msgid "Visit Help Center"
422
- msgstr ""
423
 
424
- #: bws_functions.php:1041
425
  msgid "FAQ"
426
  msgstr "FAQ"
427
 
428
- #: bws_functions.php:1047
429
  msgid "For more information:"
430
- msgstr ""
431
 
432
- #: bws_functions.php:1048
433
  msgid "Documentation"
434
- msgstr ""
435
 
436
- #: bws_functions.php:1049
437
  msgid "Video Instructions"
438
- msgstr ""
439
 
440
- #: bws_functions.php:1050
441
- #, fuzzy
442
  msgid "Submit a Request"
443
- msgstr "Bouton Envoyer"
444
 
445
  #: bws_menu.php:506
446
  msgid "Not set"
447
  msgstr "Not set"
448
 
449
- #: bws_menu.php:508
450
- #: bws_menu.php:509
451
  msgid "On"
452
  msgstr "On"
453
 
454
- #: bws_menu.php:508
455
- #: bws_menu.php:509
456
  msgid "Off"
457
  msgstr "Off"
458
 
459
- #: bws_menu.php:510
460
- #: bws_menu.php:511
461
- #: bws_menu.php:512
462
- #: bws_menu.php:513
463
- #: bws_menu.php:514
464
- #: bws_menu.php:526
465
  msgid "N/A"
466
  msgstr "N/A"
467
 
@@ -469,17 +526,11 @@ msgstr "N/A"
469
  msgid " Mb"
470
  msgstr " Mb"
471
 
472
- #: bws_menu.php:515
473
- #: bws_menu.php:516
474
- #: bws_menu.php:517
475
- #: bws_menu.php:522
476
  msgid "Yes"
477
  msgstr "Yes"
478
 
479
- #: bws_menu.php:515
480
- #: bws_menu.php:516
481
- #: bws_menu.php:517
482
- #: bws_menu.php:524
483
  msgid "No"
484
  msgstr "No"
485
 
@@ -591,8 +642,7 @@ msgstr "Besoin d'aide ?"
591
  msgid "Client area"
592
  msgstr "Espace client"
593
 
594
- #: bws_menu.php:622
595
- #: bws_menu.php:933
596
  msgid "System status"
597
  msgstr "System status"
598
 
@@ -618,33 +668,27 @@ msgstr "Recommandé"
618
 
619
  #: bws_menu.php:640
620
  msgid "Installed plugins"
621
- msgstr "Plugin installé"
622
 
623
- #: bws_menu.php:672
624
- #: bws_menu.php:721
625
  msgid "Settings"
626
  msgstr "Réglages"
627
 
628
- #: bws_menu.php:693
629
- #: bws_menu.php:750
630
  msgid "Activate this plugin"
631
  msgstr "Activer cette extension"
632
 
633
- #: bws_menu.php:708
634
- #: bws_menu.php:738
635
- #: bws_menu.php:784
636
  msgid "Go"
637
  msgstr "Passez"
638
 
639
- #: bws_menu.php:712
640
- #: bws_menu.php:742
641
- #: bws_menu.php:788
642
  msgid "DONATE"
643
  msgstr "Faire un don"
644
 
645
  #: bws_menu.php:758
646
  msgid "Recommended plugins"
647
- msgstr "Plugin recommandé"
648
 
649
  #: bws_menu.php:796
650
  msgid "Install now"
@@ -666,12 +710,12 @@ msgstr "%s installé"
666
 
667
  #: bws_menu.php:866
668
  msgid "Install Now"
669
- msgstr "Installa Ora"
670
 
671
  #: bws_menu.php:869
672
  #, php-format
673
  msgid "Update to version %s"
674
- msgstr "Mettre à jour pour la version %s"
675
 
676
  #: bws_menu.php:869
677
  msgid "Update"
@@ -686,8 +730,7 @@ msgstr "Pré-visualiser %s"
686
  msgid "Preview"
687
  msgstr "Pré-visualiser"
688
 
689
- #: bws_menu.php:882
690
- #: bws_menu.php:914
691
  #, php-format
692
  msgid "By %s"
693
  msgstr "Par %s"
@@ -702,15 +745,15 @@ msgstr "Déjà installé"
702
 
703
  #: bws_menu.php:936
704
  msgid "Environment"
705
- msgstr "Environment"
706
 
707
  #: bws_menu.php:947
708
  msgid "Active Plugins"
709
- msgstr "Plugin actifs"
710
 
711
  #: bws_menu.php:960
712
  msgid "Inactive Plugins"
713
- msgstr "Plugin inactifs"
714
 
715
  #: bws_menu.php:976
716
  msgid "Send to support"
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-11-17 13:31+0300\n"
6
+ "PO-Revision-Date: 2015-11-17 13:31+0300\n"
7
+ "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
10
  "MIME-Version: 1.0\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2;plural=n>2;\n"
17
+ "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: bws_functions.php:39 bws_functions.php:63
 
21
  msgid "requires"
22
  msgstr "obligatoire"
23
 
24
  #: bws_functions.php:41
25
+ msgid ""
26
+ "or higher, that is why it has been deactivated! Please upgrade WordPress and "
27
+ "try again."
28
+ msgstr ""
29
+ "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à "
30
+ "jour de WordPress puis de ré-essayer."
31
 
32
  #: bws_functions.php:42
33
  msgid "Back to the WordPress"
38
  msgstr "Page des extensions"
39
 
40
  #: bws_functions.php:65
41
+ msgid ""
42
+ "or higher! We do not guarantee that our plugin will work correctly. Please "
43
+ "upgrade to WordPress latest version."
44
  msgstr ""
45
+ "ou plus ! Nous ne garantissons pas que notre extension fonctionne "
46
+ "correctement. Merci de mettre à jour Wordpress avec la dernière version."
47
 
48
  #: bws_functions.php:122
49
  msgid "It’s time to upgrade your"
59
 
60
  #: bws_functions.php:123
61
  msgid "Extend standard plugin functionality with new great options."
62
+ msgstr ""
63
+ "Étend les fonctionnalités classiques de l'extension avec des nouvelles "
64
+ "options."
65
 
66
+ #: bws_functions.php:126 bws_functions.php:561
 
67
  msgid "Learn More"
68
  msgstr "En savoir plus"
69
 
70
  #: bws_functions.php:143
71
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
72
+ msgstr ""
73
+ "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans "
74
+ "Wordpress"
75
 
76
  #: bws_functions.php:144
77
  msgid "Rate the plugin"
84
  #: bws_functions.php:179
85
  msgid "Check premium options on the plugin settings page!"
86
  msgstr ""
87
+ "Vérifier les options premium sur la page des paramètres de l'extension!"
88
 
89
+ #: bws_functions.php:186 bws_functions.php:222
 
90
  msgid "Wrong license key"
91
  msgstr "Clé de licence incorrecte"
92
 
93
+ #: bws_functions.php:216 bws_functions.php:474 bws_functions.php:525
94
+ msgid ""
95
+ "Something went wrong. Please try again later. If the error appears again, "
96
+ "please contact us"
97
+ msgstr ""
98
+ "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de "
99
+ "nouveau, merci de contacter <a href=http://support.bestwebsoft."
100
+ "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
101
 
102
+ #: bws_functions.php:216 bws_functions.php:474 bws_functions.php:525
 
 
103
  msgid "We are sorry for inconvenience."
104
  msgstr "Nous sommes désolés pour le désagrément."
105
 
107
  msgid "This license key is bind to another site"
108
  msgstr "La clé de licence correspond à un autre site."
109
 
110
+ #: bws_functions.php:226 bws_functions.php:384
111
+ msgid ""
112
+ "Unfortunately, you have exceeded the number of available tries per day. "
113
+ "Please, upload the plugin manually."
114
+ msgstr ""
115
+ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
116
+ "télécharger l'extension manuellement."
117
 
118
  #: bws_functions.php:228
119
+ msgid ""
120
+ "Unfortunately, Your license has expired. To continue getting top-priority "
121
+ "support and plugin updates you should extend it in your"
122
+ msgstr ""
123
+ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
124
+ "rapide et des mises à jour de l'extension vous devez la renouveler dans votre"
125
 
126
  #: bws_functions.php:230
127
+ msgid ""
128
+ "Unfortunately, the Pro licence was already installed to this domain. The Pro "
129
+ "Trial license can be installed only once."
130
+ msgstr ""
131
+ "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
132
+ "peut-être installée qu'une seule fois."
133
 
134
+ #: bws_functions.php:251 bws_functions.php:273 bws_functions.php:295
 
 
135
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
136
+ msgstr ""
137
+ "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension "
138
+ "manuellement."
139
 
140
  #: bws_functions.php:263
141
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
142
+ msgstr ""
143
+ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
144
+ "manuellement."
145
 
146
  #: bws_functions.php:269
147
+ msgid ""
148
+ "Your server does not support either ZipArchive or Phar. Please, upload the "
149
+ "plugin manually"
150
+ msgstr ""
151
+ "Votre serveur n'a pas le support du format des archives ZIP ou Phar. Merci "
152
+ "de télécharger l'extension manuellement."
153
 
154
  #: bws_functions.php:276
155
  msgid "UploadDir is not writable. Please, upload the plugin manually"
156
+ msgstr ""
157
+ "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
158
+ "manuellement."
159
 
160
  #: bws_functions.php:299
161
+ msgid ""
162
+ "Something went wrong. Try again later or upload the plugin manually. We are "
163
+ "sorry for inconvenience."
164
+ msgstr ""
165
+ "Il est survenu une erreur. Essayer de nouveau ou bien télécharger "
166
+ "l'extension manuellement.Nous sommes désolés pour le désagrément."
167
 
168
  #: bws_functions.php:324
169
  msgid "Please, enter Your license key"
170
  msgstr "Merci de saisir votre clé de licence"
171
 
172
  #: bws_functions.php:348
173
+ msgid ""
174
+ "Congratulations! The Pro version of the plugin is successfully download and "
175
+ "activated."
176
+ msgstr ""
177
+ "Félicitations! La version PRO de cette extension a été téléchargée et "
178
+ "activée avec succès."
179
 
180
+ #: bws_functions.php:350 bws_functions.php:441
 
181
  msgid "Please, go to"
182
+ msgstr "Merci d’aller à"
183
 
184
+ #: bws_functions.php:350 bws_functions.php:441
 
185
  msgid "the setting page"
186
  msgstr "Options supplémentaires"
187
 
188
+ #: bws_functions.php:351 bws_functions.php:442
 
189
  msgid "You will be redirected automatically in 5 seconds."
190
  msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
191
 
192
  #: bws_functions.php:358
193
  msgid "Show Pro features"
194
+ msgstr "Voir les fonctionnalités de la version PRO"
195
 
196
  #: bws_functions.php:365
197
  msgid "You can download and activate"
201
  msgid "version of this plugin by entering Your license key."
202
  msgstr " de cette extension en donnant votre clé de licence."
203
 
204
+ #: bws_functions.php:369 bws_functions.php:410
205
+ msgid ""
206
+ "You can find your license key on your personal page Client area, by clicking "
207
+ "on the link"
208
+ msgstr ""
209
+ "Vous pouvez trouver votre clé de licence sur votre page personnelle dans la "
210
+ "zone cliente en cliquant sur le lien"
211
 
212
+ #: bws_functions.php:371 bws_functions.php:412
 
213
  msgid "(your username is the email you specify when purchasing the product)."
214
+ msgstr ""
215
+ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de "
216
+ "l'achat de l'extension)."
217
 
218
+ #: bws_functions.php:375 bws_functions.php:659
 
219
  msgid "or"
220
  msgstr "ou"
221
 
224
  msgid "Start Your Free %s-Day Trial Now"
225
  msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
226
 
227
+ #: bws_functions.php:381 bws_functions.php:390 bws_functions.php:420
228
+ #: bws_functions.php:428 bws_menu.php:693 bws_menu.php:750
 
 
 
 
229
  msgid "Activate"
230
  msgstr "Activé"
231
 
232
+ #: bws_functions.php:407 bws_functions.php:500
 
233
  #, php-format
234
+ msgid ""
235
+ "In order to continue using the plugin it is necessary to buy a %s license."
236
+ msgstr ""
237
+ "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
238
+ "d'acheter une licence %s."
239
 
240
  #: bws_functions.php:408
241
  msgid "After that you can activate it by entering your license key."
242
+ msgstr ""
243
+ " Après vous pouvez activer cette extension en donnant votre clé de licence."
244
 
245
  #: bws_functions.php:422
246
  msgid "Unfortunately, you have exceeded the number of available tries per day."
247
+ msgstr ""
248
+ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
249
+ "télécharger l'extension manuellement."
250
 
251
  #: bws_functions.php:439
252
+ msgid ""
253
+ "Congratulations! The Pro license of the plugin is successfully activated."
254
+ msgstr ""
255
+ "Félicitations! La version PRO de cette extension a été téléchargée et "
256
+ "activée avec succès."
257
 
258
  #: bws_functions.php:480
259
  msgid "Wrong license key."
264
  msgstr "La clé de licence correspond à un autre site."
265
 
266
  #: bws_functions.php:484
267
+ msgid ""
268
+ "This license key is valid, but Your license has expired. If you want to "
269
+ "update our plugin in future, you should extend the license."
270
+ msgstr ""
271
+ "La clé de licence est valide mais votre durée de validité est passée. Pour "
272
+ "continuer à disposer du support rapide et des mises à jour de l'extension "
273
+ "vous devez la renouveller."
274
 
275
  #: bws_functions.php:486
276
  msgid "Unfortunately, you have exceeded the number of available tries."
277
+ msgstr ""
278
+ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
279
+ "télécharger l'extension manuellement."
280
 
281
  #: bws_functions.php:488
282
+ msgid ""
283
+ "Unfortunately, the Pro Trial licence was already installed to this domain. "
284
+ "The Pro Trial license can be installed only once."
285
+ msgstr ""
286
+ "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
287
+ "peut-être installée qu'une seule fois."
288
 
289
  #: bws_functions.php:492
 
290
  msgid "The Pro Trial license key is valid."
291
  msgstr "La clé de licence d'évaluation est valide."
292
 
303
  msgstr "Merci de saisir votre clé de licence"
304
 
305
  #: bws_functions.php:543
306
+ msgid ""
307
+ "If needed you can check if the license key is correct or reenter it in the "
308
+ "field below. You can find your license key on your personal page - Client "
309
+ "area - on our website"
310
+ msgstr ""
311
+ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
312
+ "saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de "
313
+ "licence sur votre page personnelle (zone client) sur notre site web."
314
 
315
  #: bws_functions.php:543
316
+ msgid ""
317
+ "(your username is the email you specify when purchasing the product). If "
318
+ "necessary, please submit \"Lost your password?\" request."
319
+ msgstr ""
320
+ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de "
321
+ "l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de "
322
+ "mot de passe perdu."
323
 
324
  #: bws_functions.php:547
325
  msgid "Check license key"
330
  msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
331
 
332
  #: bws_functions.php:561
333
+ msgid ""
334
+ "You can use one license of the Pro plugin for one domain only. Please check "
335
+ "and edit your license or domain if necessary using you personal Client Area. "
336
+ "We strongly recommend you to solve the problem within 24 hours, otherwise "
337
+ "the Pro plugin will be deactivated."
338
+ msgstr ""
339
+ "Vous ne pouvez utilisez qu'une licence de la version Pro de l'extension pour "
340
+ "un seul domaine. Merci de vérifier et de modifier votre licence ou votre "
341
+ "domaine si nécessaire en utilisant votre zone client. Nous vous recommandons "
342
+ "de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue "
343
+ "inactive."
344
 
345
  #: bws_functions.php:569
346
+ msgid ""
347
+ "Notice: Your Pro Trial license has expired. To continue using the plugin you "
348
+ "should buy a Pro license"
349
+ msgstr ""
350
+ "Votre licence d'évaluation est terminée. Pour continuer à disposer du "
351
+ "support rapide et des mises à jour de l'extension vous devez la renouveler."
352
 
353
  #: bws_functions.php:571
354
+ msgid ""
355
+ "Your license has expired. To continue getting top-priority support and "
356
+ "plugin updates you should extend it."
357
+ msgstr ""
358
+ "Votre licence est terminée. Pour continuer à disposer du support rapide et "
359
+ "des mises à jour de l'extension vous devez la renouveller."
360
 
361
+ #: bws_functions.php:571 bws_functions.php:624 bws_menu.php:669
362
+ #: bws_menu.php:691 bws_menu.php:718 bws_menu.php:748 bws_menu.php:794
 
 
 
 
 
363
  msgid "Learn more"
364
  msgstr "En savoir plus"
365
 
366
  #: bws_functions.php:581
367
+ #, php-format
368
  msgid "Notice: You are using the Pro Trial license of %s plugin."
369
+ msgstr ""
370
+ "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
371
 
372
  #: bws_functions.php:583
 
373
  msgid "Notice: You are using the Pro Trial license of plugin."
374
  msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
375
 
376
  #: bws_functions.php:586
 
377
  msgid "The Pro Trial license will expire on"
378
+ msgstr "La licence PRO d'évaluation expirera le"
379
 
380
  #: bws_functions.php:624
381
  msgid "You license for"
387
 
388
  #: bws_functions.php:624
389
  msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
390
+ msgstr "et vous ne disposerez plus du support rapide et des mises à jour."
391
 
392
  #: bws_functions.php:655
 
393
  msgid "Thank you for installing"
394
+ msgstr "Merci d'avoir installé"
395
 
396
  #: bws_functions.php:656
397
  msgid "Let's get started"
398
+ msgstr "Démarrer"
399
 
400
  #: bws_functions.php:657
 
401
  msgid "Configure Settings"
402
+ msgstr "Configuration des paramètres"
403
 
404
  #: bws_functions.php:660
405
  msgid "Add New"
406
+ msgstr "Ajouter"
407
 
408
  #: bws_functions.php:664
409
  msgid "Close notice"
410
+ msgstr "Effacer l'avertissement"
411
 
412
  #: bws_functions.php:677
413
  msgid "Notice"
414
+ msgstr "Avertissement"
415
 
416
  #: bws_functions.php:677
417
  msgid "The plugin's settings have been changed."
418
+ msgstr "Les paramètres de l'extension ont été modifiés."
419
 
420
  #: bws_functions.php:678
421
  msgid "Save Changes"
422
  msgstr "Sauvegarder les modifications"
423
 
424
  #: bws_functions.php:693
425
+ msgid ""
426
+ "You can always look at premium options by clicking on the \"Show Pro features"
427
+ "\" in the \"Go PRO\" tab"
428
  msgstr ""
429
+ "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
430
+ "\"Voir les fonctionnalités de la version PRO\" dans l'onglet Passer PRO"
431
 
432
  #: bws_functions.php:773
 
433
  msgid "Add BWS Plugins Shortcode"
434
+ msgstr "Ajouter le code court de l'extension BWS"
435
 
436
  #: bws_functions.php:793
 
437
  msgid "Add shortcode"
438
+ msgstr "Ajouter le code court"
439
 
440
  #: bws_functions.php:793
441
  msgid "Add BestWebSoft plugins' shortcodes using this button."
442
+ msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
443
 
444
+ #: bws_functions.php:835
445
  msgid "Close"
446
  msgstr "Fermer"
447
 
448
+ #: bws_functions.php:927
449
  msgid "Restore all plugin settings to defaults"
450
+ msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
451
 
452
+ #: bws_functions.php:929
 
453
  msgid "Restore settings"
454
+ msgstr "Remettre les paramètres"
455
 
456
+ #: bws_functions.php:940
 
457
  msgid "Are you sure you want to restore all settings by default?"
458
+ msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
459
 
460
+ #: bws_functions.php:943
461
  msgid "Yes, restore all settings"
462
+ msgstr "Oui, remettre les valeurs par défaut"
463
 
464
+ #: bws_functions.php:944
 
465
  msgid "No, go back to the settings page"
466
+ msgstr "Non, retourner à la page des paramètres"
467
 
468
+ #: bws_functions.php:988
 
469
  msgid "Plugin"
470
+ msgstr "Extension"
471
 
472
+ #: bws_functions.php:997
 
473
  msgid "Shortcode settings"
474
+ msgstr "Paramètres du code court"
475
 
476
+ #: bws_functions.php:1002
477
  msgid "The shortcode will be inserted"
478
+ msgstr "Le code court sera inséré"
479
 
480
+ #: bws_functions.php:1007
481
  msgid "Insert"
482
+ msgstr "Insérer"
483
 
484
+ #: bws_functions.php:1038
485
  msgid "Visit Help Center"
486
+ msgstr "Visiter le site du support"
487
 
488
+ #: bws_functions.php:1043
489
  msgid "FAQ"
490
  msgstr "FAQ"
491
 
492
+ #: bws_functions.php:1049
493
  msgid "For more information:"
494
+ msgstr "Pour plus d'informations&nbsp;:"
495
 
496
+ #: bws_functions.php:1050
497
  msgid "Documentation"
498
+ msgstr "Documentation"
499
 
500
+ #: bws_functions.php:1051
501
  msgid "Video Instructions"
502
+ msgstr "Vidéo explicative"
503
 
504
+ #: bws_functions.php:1052
 
505
  msgid "Submit a Request"
506
+ msgstr "Soumettre une requête"
507
 
508
  #: bws_menu.php:506
509
  msgid "Not set"
510
  msgstr "Not set"
511
 
512
+ #: bws_menu.php:508 bws_menu.php:509
 
513
  msgid "On"
514
  msgstr "On"
515
 
516
+ #: bws_menu.php:508 bws_menu.php:509
 
517
  msgid "Off"
518
  msgstr "Off"
519
 
520
+ #: bws_menu.php:510 bws_menu.php:511 bws_menu.php:512 bws_menu.php:513
521
+ #: bws_menu.php:514 bws_menu.php:526
 
 
 
 
522
  msgid "N/A"
523
  msgstr "N/A"
524
 
526
  msgid " Mb"
527
  msgstr " Mb"
528
 
529
+ #: bws_menu.php:515 bws_menu.php:516 bws_menu.php:517 bws_menu.php:522
 
 
 
530
  msgid "Yes"
531
  msgstr "Yes"
532
 
533
+ #: bws_menu.php:515 bws_menu.php:516 bws_menu.php:517 bws_menu.php:524
 
 
 
534
  msgid "No"
535
  msgstr "No"
536
 
642
  msgid "Client area"
643
  msgstr "Espace client"
644
 
645
+ #: bws_menu.php:622 bws_menu.php:933
 
646
  msgid "System status"
647
  msgstr "System status"
648
 
668
 
669
  #: bws_menu.php:640
670
  msgid "Installed plugins"
671
+ msgstr "Extensions installées"
672
 
673
+ #: bws_menu.php:672 bws_menu.php:721
 
674
  msgid "Settings"
675
  msgstr "Réglages"
676
 
677
+ #: bws_menu.php:693 bws_menu.php:750
 
678
  msgid "Activate this plugin"
679
  msgstr "Activer cette extension"
680
 
681
+ #: bws_menu.php:708 bws_menu.php:738 bws_menu.php:784
 
 
682
  msgid "Go"
683
  msgstr "Passez"
684
 
685
+ #: bws_menu.php:712 bws_menu.php:742 bws_menu.php:788
 
 
686
  msgid "DONATE"
687
  msgstr "Faire un don"
688
 
689
  #: bws_menu.php:758
690
  msgid "Recommended plugins"
691
+ msgstr "Extensions recommandées"
692
 
693
  #: bws_menu.php:796
694
  msgid "Install now"
710
 
711
  #: bws_menu.php:866
712
  msgid "Install Now"
713
+ msgstr "Installer maintenant"
714
 
715
  #: bws_menu.php:869
716
  #, php-format
717
  msgid "Update to version %s"
718
+ msgstr "Mettre à jour avec la version %s"
719
 
720
  #: bws_menu.php:869
721
  msgid "Update"
730
  msgid "Preview"
731
  msgstr "Pré-visualiser"
732
 
733
+ #: bws_menu.php:882 bws_menu.php:914
 
734
  #, php-format
735
  msgid "By %s"
736
  msgstr "Par %s"
745
 
746
  #: bws_menu.php:936
747
  msgid "Environment"
748
+ msgstr "Environnent"
749
 
750
  #: bws_menu.php:947
751
  msgid "Active Plugins"
752
+ msgstr "Extensions actives"
753
 
754
  #: bws_menu.php:960
755
  msgid "Inactive Plugins"
756
+ msgstr "Extensions inactives"
757
 
758
  #: bws_menu.php:976
759
  msgid "Send to support"
contact_form.php CHANGED
@@ -6,7 +6,7 @@ Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
  Text Domain: contact-form-plugin
8
  Domain Path: /languages
9
- Version: 3.95
10
  Author URI: http://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
@@ -33,7 +33,7 @@ License: GPLv2 or later
33
  */
34
  if ( ! function_exists( 'cntctfrm_admin_menu' ) ) {
35
  function cntctfrm_admin_menu() {
36
- bws_add_general_menu( plugin_basename( __FILE__ ) );
37
  $cntctfrm_settings = add_submenu_page( 'bws_plugins', __( 'Contact Form Settings', 'contact-form-plugin' ), __( 'Contact Form', 'contact-form-plugin' ), 'manage_options', 'contact_form.php', 'cntctfrm_settings_page' );
38
  add_action( 'load-' . $cntctfrm_settings, 'cntctfrm_add_tabs' );
39
  }
@@ -488,7 +488,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
488
  }
489
  }
490
 
491
- $cntctfrm_layout = ( isset( $_POST['cntctfrm_layout'] ) ) ? (int) $_POST[ 'cntctfrm_layout' ] : 1;
492
 
493
  $cntctfrm_submit_position = ( isset( $_POST['cntctfrm_submit_position'] ) ) ? stripslashes( esc_html( $_POST['cntctfrm_submit_position'] ) ) : 'left';
494
 
@@ -822,11 +822,9 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
822
  $cntctfrm_options = $cntctfrm_option_defaults;
823
  update_option( 'cntctfrm_options', $cntctfrm_options );
824
  $message = __( 'All plugin settings were restored.', 'contact-form-plugin' );
825
- } /* end */
826
- ?>
827
  <div class="wrap">
828
- <div class="icon32 icon32-bws" id="icon-options-general"></div>
829
- <h2><?php _e( "Contact Form Settings", 'contact-form-plugin' ); ?></h2>
830
  <ul class="subsubsub cntctfrm_how_to_use">
831
  <li><a href="https://docs.google.com/document/d/1qZYPJhkSdVyyM6XO5WfiBcTS2Sa9_9UMn4vS2g48JRY/" target="_blank"><?php _e( 'How to Use Step-by-step Instruction', 'contact-form-plugin' ); ?></a></li>
832
  </ul>
@@ -846,27 +844,25 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
846
  </noscript>
847
  <?php } ?>
848
  <div class="updated fade" <?php if ( $message == "" || "" != $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
 
849
  <?php bws_show_settings_notice();
850
  if ( ! empty( $hide_result['message'] ) ) { ?>
851
  <div class="updated fade"><p><strong><?php echo $hide_result['message']; ?></strong></p></div>
852
  <?php }
853
  if ( ! empty( $notice ) ) { ?>
854
  <div class="error"><p><strong><?php _e( 'Notice:', 'contact-form-plugin' ); ?></strong> <?php echo $notice; ?></p></div>
855
- <?php } ?>
856
- <div class="error" <?php if ( "" == $error ) echo 'style="display:none"'; ?>><p><strong><?php echo $error; ?></strong></p></div>
857
- <?php if ( ! isset( $_GET['action'] ) || 'additional' == $_GET['action'] ) {
 
 
 
 
 
858
  if ( isset( $_REQUEST['bws_restore_default'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
859
  bws_form_restore_default_confirm( $plugin_basename );
860
- } else {
861
- /* main 'settings' or 'additional' settings page */
862
- if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
863
- <h2 class="nav-tab-wrapper">
864
- <li class="nav-tab nav-tab-active"><?php _e( 'NEW_FORM', 'contact-form-plugin' )?></li>
865
- <a id="cntctfrm_show_multi_notice" class="nav-tab" target="_new" href="http://bestwebsoft.com/products/contact-form-multi/?k=747ca825fb44711e2d24e40697747bc6&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" title="<?php _e( "If you want to create multiple contact forms, please install the Contact Form Multi plugin.", 'contact-form-plugin' ); ?>">+</a>
866
- </h2>
867
- <?php }
868
- $form_action = ( ! isset( $_GET['action'] ) ) ? 'admin.php?page=contact_form.php' : 'admin.php?page=contact_form.php&amp;action=' . $_GET['action']; ?>
869
- <form id="cntctfrm_settings_form" class="bws_form" method="post" action="<?php echo esc_url( $form_action ); ?>">
870
  <div style="margin: 20px 0;">
871
  <?php printf( __( "If you would like to add a Contact Form to your page or post, please use %s button", 'contact-form-plugin' ),
872
  '<span class="bws_code"><img style="vertical-align: sub;" src="' . plugins_url( 'bws_menu/images/shortcode-icon.png', __FILE__ ) . '" alt=""/></span>'
@@ -1048,7 +1044,10 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1048
  <tr valign="top" >
1049
  <td><?php _e( "Department selectbox", 'contact-form-plugin' ); ?></td>
1050
  <td class="bws_pro_version"></td>
1051
- <td class="bws_pro_version"><input disabled="disabled" type="checkbox" name="cntctfrm_required_department_field" value="1"/></td>
 
 
 
1052
  <td class="bws_pro_version"></td>
1053
  <td class="bws_pro_version"></td>
1054
  <td class="bws_pro_version"></td>
@@ -1056,11 +1055,23 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1056
  <?php } ?>
1057
  <tr valign="top">
1058
  <td><?php _e( "Name", 'contact-form-plugin' ); ?></td>
1059
- <td><input type="checkbox" name="cntctfrm_display_name_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_display_name_field'] ) echo 'checked="checked" '; ?>/></td>
1060
- <td><input type="checkbox" id="cntctfrm_required_name_field" name="cntctfrm_required_name_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_required_name_field'] ) echo 'checked="checked" '; ?>/></td>
 
 
 
 
 
 
1061
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1062
- <td class="bws_pro_version"><input disabled="disabled" type="checkbox" name="cntctfrmpr_visible_name" value="1" checked="checked" /></td>
1063
- <td class="bws_pro_version"><input disabled="disabled" type="checkbox" name="cntctfrmpr_disabled_name" value="1" /></td>
 
 
 
 
 
 
1064
  <td class="bws_pro_version">
1065
  <input disabled="disabled" type="checkbox" name="cntctfrmpr_default_name" value="1" />
1066
  <?php _e( "Use User's name as a default value if the user is logged in.", 'contact-form-plugin' ); ?><br />
@@ -1071,17 +1082,34 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1071
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1072
  <tr valign="top">
1073
  <td><?php _e( "Location selectbox", 'contact-form-plugin' ); ?></td>
1074
- <td class="bws_pro_version"><input disabled="disabled" type="checkbox" name="cntctfrmpr_display_selectbox" value="1" /></td>
1075
- <td class="bws_pro_version"><input disabled="disabled" type="checkbox" name="cntctfrmpr_required_selectbox" value="1" /></td>
 
 
 
 
 
 
1076
  <td class="bws_pro_version"></td>
1077
  <td class="bws_pro_version"></td>
1078
- <td class="bws_pro_version"><input disabled="disabled" type="file" name="cntctfrmpr_default_location"></td>
 
 
 
 
 
1079
  </tr>
1080
  <?php } ?>
1081
  <tr valign="top">
1082
  <td><?php _e( "Address", 'contact-form-plugin' ); ?></td>
1083
- <td><input type="checkbox" id="cntctfrm_display_address_field" name="cntctfrm_display_address_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_display_address_field'] ) echo 'checked="checked" '; ?>/></td>
1084
- <td><input type="checkbox" id="cntctfrm_required_address_field" name="cntctfrm_required_address_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_required_address_field'] ) echo 'checked="checked" '; ?>/></td>
 
 
 
 
 
 
1085
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1086
  <td></td>
1087
  <td></td>
@@ -1091,10 +1119,19 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1091
  <tr valign="top">
1092
  <td><?php _e( "Email Address", 'contact-form-plugin' ); ?></td>
1093
  <td></td>
1094
- <td><input type="checkbox" id="cntctfrm_required_email_field" name="cntctfrm_required_email_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_required_email_field'] ) echo 'checked="checked" '; ?>/></td>
 
 
 
1095
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1096
- <td class="bws_pro_version"><input disabled="disabled" type="checkbox" name="cntctfrmpr_visible_email" value="1" checked="checked" /></td>
1097
- <td class="bws_pro_version"><input disabled="disabled" type="checkbox" name="cntctfrmpr_disabled_email" value="1" /></td>
 
 
 
 
 
 
1098
  <td class="bws_pro_version">
1099
  <input disabled="disabled" type="checkbox" name="cntctfrmpr_default_email" value="1" />
1100
  <?php _e( "Use User's email as a default value if the user is logged in.", 'contact-form-plugin' ); ?><br />
@@ -1104,8 +1141,14 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1104
  </tr>
1105
  <tr valign="top">
1106
  <td><?php _e( "Phone number", 'contact-form-plugin' ); ?></td>
1107
- <td><input type="checkbox" id="cntctfrm_display_phone_field" name="cntctfrm_display_phone_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_display_phone_field'] ) echo 'checked="checked" '; ?>/></td>
1108
- <td><input type="checkbox" id="cntctfrm_required_phone_field" name="cntctfrm_required_phone_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_required_phone_field'] ) echo 'checked="checked" '; ?>/></td>
 
 
 
 
 
 
1109
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1110
  <td></td>
1111
  <td></td>
@@ -1115,21 +1158,49 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1115
  <tr valign="top">
1116
  <td><?php _e( "Subject", 'contact-form-plugin' ); ?></td>
1117
  <td></td>
1118
- <td><input type="checkbox" id="cntctfrm_required_subject_field" name="cntctfrm_required_subject_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_required_subject_field'] ) echo 'checked="checked" '; ?>/></td>
 
 
 
1119
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1120
- <td class="bws_pro_version"><input class="subject" disabled="disabled" type="checkbox" name="cntctfrmpr_visible_subject" value="1" checked="checked" /></td>
1121
- <td class="bws_pro_version"><input class="subject" disabled="disabled" type="checkbox" name="cntctfrmpr_disabled_subject" value="1" /></td>
1122
- <td class="bws_pro_version"><input class="subject" disabled="disabled" type="text" name="cntctfrmpr_default_subject" value="" /></td>
 
 
 
 
 
 
 
 
 
 
 
1123
  <?php } ?>
1124
  </tr>
1125
  <tr valign="top">
1126
  <td><?php _e( "Message", 'contact-form-plugin' ); ?></td>
1127
  <td></td>
1128
- <td><input type="checkbox" id="cntctfrm_required_message_field" name="cntctfrm_required_message_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_required_message_field'] ) echo 'checked="checked" '; ?>/></td>
 
 
 
1129
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1130
- <td class="bws_pro_version"><input class="message" disabled="disabled" type="checkbox" name="cntctfrmpr_visible_message" value="1" checked="checked" /></td>
1131
- <td class="bws_pro_version"><input class="message" disabled="disabled" disabled="disabled" type="checkbox" name="cntctfrmpr_disabled_message" value="1" /></td>
1132
- <td class="bws_pro_version"><input class="message" disabled="disabled" type="text" name="cntctfrmpr_default_message" value="" /></td>
 
 
 
 
 
 
 
 
 
 
 
1133
  <?php } ?>
1134
  </tr>
1135
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
@@ -1155,7 +1226,10 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1155
  <div class="bws_hidden_help_text" style="min-width: 200px;"><?php echo __( "Users can attach the following file formats", 'contact-form-plugin' ) . ": html, txt, css, gif, png, jpeg, jpg, tiff, bmp, ai, eps, ps, csv, rtf, pdf, doc, docx, xls, xlsx, zip, rar, wav, mp3, ppt, aar, sce"; ?></div>
1156
  </div>
1157
  </td>
1158
- <td><input type="checkbox" id="cntctfrm_attachment" name="cntctfrm_attachment" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_attachment'] ) echo 'checked="checked" '; ?>/></td>
 
 
 
1159
  <td></td>
1160
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1161
  <td></td>
@@ -1168,7 +1242,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1168
  <table class="form-table" style="width:auto;">
1169
  <tr valign="top">
1170
  <th scope="row"><?php _e( "Add to the form", 'contact-form-plugin' ); ?></th>
1171
- <td colspan="3">
1172
  <div>
1173
  <label>
1174
  <input type="checkbox" id="cntctfrm_attachment_explanations" name="cntctfrm_attachment_explanations" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_attachment_explanations'] && '1' == $cntctfrm_options['cntctfrm_attachment'] ) echo 'checked="checked" '; ?>/>
@@ -1227,7 +1301,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1227
  </div>
1228
  </div>
1229
  <?php } ?>
1230
- </td>
1231
  </tr>
1232
  <tr valign="top">
1233
  <th scope="row"><?php _e( "Delete an attachment file from the server after the email is sent", 'contact-form-plugin' ); ?> </th>
@@ -1306,9 +1380,9 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1306
  <input type="text" maxlength="250" name="cntctfrm_form_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_form_error']['en']; ?>" /> <span class="bws_info"><?php _e( "Error message for the whole form", 'contact-form-plugin' ); ?></span><br />
1307
  </div>
1308
  <?php if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
1309
- <span class="bws_info" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=en]</span> <?php _e( "or", 'contact-form-plugin' ) ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1310
  <?php } else { ?>
1311
- <span class="bws_info" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=en id=<?php echo $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "or", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form id=<?php echo $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1312
  <?php } ?>
1313
  </div>
1314
  <?php if ( ! empty( $cntctfrm_options['cntctfrm_language'] ) ) {
@@ -1340,9 +1414,9 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1340
  <input type="text" maxlength="250" name="cntctfrm_form_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_form_error'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_form_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the whole form", 'contact-form-plugin' ); ?></span><br />
1341
  </div>
1342
  <?php if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
1343
- <span class="bws_info" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1344
  <?php } else { ?>
1345
- <span class="bws_info" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php $val . ' id=' . $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1346
  <?php } ?>
1347
  </div>
1348
  <?php }
@@ -1369,9 +1443,9 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1369
  <div class="cntctfrm_language_tab cntctfrm_tab_en" style=" padding: 5px 10px 5px 5px;">
1370
  <input type="text" maxlength="250" name="cntctfrm_thank_text[en]" value="<?php echo $cntctfrm_options['cntctfrm_thank_text']['en']; ?>" /> <span class="bws_info"><?php _e( "Text", 'contact-form-plugin' ); ?></span><br />
1371
  <?php if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
1372
- <span class="bws_info"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=en]</span> <?php _e( "or", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1373
  <?php } else { ?>
1374
- <span class="bws_info"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=en id=<?php echo $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "or", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form id=<?php echo $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1375
  <?php } ?>
1376
  </div>
1377
  <?php if ( ! empty( $cntctfrm_options['cntctfrm_language'] ) ) {
@@ -1379,9 +1453,9 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1379
  <div class="cntctfrm_language_tab hidden cntctfrm_tab_<?php echo $val; ?>" style=" padding: 5px 10px 5px 5px;">
1380
  <label><input type="text" maxlength="250" name="cntctfrm_thank_text[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_thank_text'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_thank_text'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Text", 'contact-form-plugin' ); ?></span></label><br />
1381
  <?php if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
1382
- <span class="bws_info"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1383
  <?php } else { ?>
1384
- <span class="bws_info"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val . ' id=' . $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1385
  <?php } ?>
1386
  </div>
1387
  <?php }
@@ -1452,14 +1526,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1452
  </p>
1453
  </div>
1454
  </noscript>
1455
- <?php if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
1456
- <h2 class="nav-tab-wrapper">
1457
- <li class="nav-tab nav-tab-active"><?php _e( 'NEW_FORM', 'contact-form-plugin' )?></li>
1458
- <a id="cntctfrm_show_multi_notice" class="nav-tab" target="_new" href="http://bestwebsoft.com/products/contact-form-multi/?k=747ca825fb44711e2d24e40697747bc6&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" title="<?php _e( "If you want to create multiple contact forms, please install the Contact Form Multi plugin.", 'contact-form-plugin' ); ?>">+</a>
1459
- </h2>
1460
- <?php } ?>
1461
- <div class="clear"></div>
1462
- <form id="cntctfrm_settings_form" class="bws_form" method="post" action="admin.php?page=contact_form.php&action=appearance">
1463
  <div id="cntctfrm_appearance_wrap" class="cntctfrm_appearance_<?php echo is_rtl() ? 'rtl' : 'ltr'; ?>">
1464
  <div id="<?php echo is_rtl() ? 'cntctfrm_right_table' : 'cntctfrm_left_table'; ?>">
1465
  <table class="form-table" style="width:auto;">
@@ -1800,26 +1867,22 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
1800
  ( is_plugin_active( 'google-captcha/google-captcha.php' ) && ( isset( $gglcptch_options ) && 1 == $gglcptch_options['contact_form'] ) ) ||
1801
  ( is_plugin_active( 'google-captcha-pro/google-captcha-pro.php' ) && ( isset( $gglcptchpr_options ) && 1 == $gglcptchpr_options['contact_form'] ) ) ) {
1802
 
1803
- $cntctfrm_captcha_label = $cntctfrm_captcha_required_symbol = '';
1804
  if ( is_plugin_active( 'captcha/captcha.php' ) && ( isset( $cptch_options ) && 1 == $cptch_options['cptch_contact_form'] ) ) {
1805
  $cntctfrm_captcha_label = $cptch_options['cptch_label_form'];
1806
  $cntctfrm_captcha_required_symbol = sprintf( ' <span class="required">%s</span>', ( isset( $cptch_options['cptch_required_symbol'] ) ) ? $cptch_options['cptch_required_symbol'] : '' );
1807
- }
1808
- if ( is_plugin_active( 'captcha-plus/captcha-plus.php' ) && ( isset( $cptchpls_options ) && 1 == $cptchpls_options['cptchpls_contact_form'] ) ) {
1809
- $cntctfrm_captcha_label = $cptchpls_options['cptch_label_form'];
1810
- $cntctfrm_captcha_required_symbol = sprintf( ' <span class="required">%s</span>', ( isset( $cptchpls_options['cptch_required_symbol'] ) ) ? $cptchpls_options['cptch_required_symbol'] : '' );
1811
- }
1812
- if ( is_plugin_active( 'captcha-pro/captcha_pro.php' ) && ( isset( $cptchpr_options ) && 1 == $cptchpr_options['cptchpr_contact_form'] ) ) {
1813
- $cntctfrm_captcha_label = $cptchpr_options['cptch_label_form'];
1814
- $cntctfrm_captcha_required_symbol = sprintf( ' <span class="required">%s</span>', ( isset( $cptchpr_options['cptch_required_symbol'] ) ) ? $cptchpr_options['cptch_required_symbol'] : '' );
1815
  }
1816
  if ( ! empty( $cntctfrm_captcha_label ) ) {
1817
  $cntctfrm_display_captcha_label = sprintf( '%1$s%2$s', $cntctfrm_captcha_label, $cntctfrm_captcha_required_symbol );
1818
  } else {
1819
  $cntctfrm_display_captcha_label = '';
1820
- }
1821
-
1822
- ?>
1823
  <li class="cntctfrm_field_wrap">
1824
  <div class="cntctfrm_label cntctfrm_label_captcha">
1825
  <label><?php echo $cntctfrm_display_captcha_label; ?></label>
@@ -1933,7 +1996,7 @@ if ( ! function_exists( 'cntctfrm_display_form' ) ) {
1933
  }
1934
  }
1935
 
1936
- $page_url = add_query_arg( array() ) . '#cntctfrm_contact_form';
1937
 
1938
  /* If contact form submited */
1939
 
@@ -2743,6 +2806,9 @@ if ( ! function_exists ( 'cntctfrm_admin_head' ) ) {
2743
  'cntctfrm_confirm_text' => __( 'Are you sure that you want to delete this language data?', 'contact-form-plugin' )
2744
  );
2745
 
 
 
 
2746
  wp_enqueue_script( 'cntctfrm_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery', 'jquery-ui-sortable' ) );
2747
  wp_localize_script( 'cntctfrm_script', 'cntctfrm_ajax', $script_vars );
2748
 
@@ -2771,7 +2837,7 @@ if ( ! function_exists ( 'cntctfrm_admin_head' ) ) {
2771
  ),
2772
  'position' => array(
2773
  'edge' => 'top',
2774
- 'align' => 'left',
2775
  ),
2776
  );
2777
  bws_add_tooltip_in_admin( $tooltip_args );
@@ -3095,13 +3161,11 @@ if ( ! function_exists ( 'cntctfrm_shortcode_button_content' ) ) {
3095
  if ( ! function_exists( 'cntctfrm_add_tabs' ) ) {
3096
  function cntctfrm_add_tabs() {
3097
  $screen = get_current_screen();
3098
- if ( isset( $_GET['page'] ) && $_GET['page'] == 'contact_form.php' ) {
3099
- $args = array(
3100
- 'id' => 'cntctfrm',
3101
- 'section' => '200538909'
3102
- );
3103
- bws_help_tab( $screen, $args );
3104
- }
3105
  }
3106
  }
3107
 
6
  Author: BestWebSoft
7
  Text Domain: contact-form-plugin
8
  Domain Path: /languages
9
+ Version: 3.96
10
  Author URI: http://bestwebsoft.com/
11
  License: GPLv2 or later
12
  */
33
  */
34
  if ( ! function_exists( 'cntctfrm_admin_menu' ) ) {
35
  function cntctfrm_admin_menu() {
36
+ bws_general_menu();
37
  $cntctfrm_settings = add_submenu_page( 'bws_plugins', __( 'Contact Form Settings', 'contact-form-plugin' ), __( 'Contact Form', 'contact-form-plugin' ), 'manage_options', 'contact_form.php', 'cntctfrm_settings_page' );
38
  add_action( 'load-' . $cntctfrm_settings, 'cntctfrm_add_tabs' );
39
  }
488
  }
489
  }
490
 
491
+ $cntctfrm_layout = ( isset( $_POST['cntctfrm_layout'] ) ) ? (int) $_POST['cntctfrm_layout'] : 1;
492
 
493
  $cntctfrm_submit_position = ( isset( $_POST['cntctfrm_submit_position'] ) ) ? stripslashes( esc_html( $_POST['cntctfrm_submit_position'] ) ) : 'left';
494
 
822
  $cntctfrm_options = $cntctfrm_option_defaults;
823
  update_option( 'cntctfrm_options', $cntctfrm_options );
824
  $message = __( 'All plugin settings were restored.', 'contact-form-plugin' );
825
+ } /* end */ ?>
 
826
  <div class="wrap">
827
+ <h1><?php _e( "Contact Form Settings", 'contact-form-plugin' ); ?></h1>
 
828
  <ul class="subsubsub cntctfrm_how_to_use">
829
  <li><a href="https://docs.google.com/document/d/1qZYPJhkSdVyyM6XO5WfiBcTS2Sa9_9UMn4vS2g48JRY/" target="_blank"><?php _e( 'How to Use Step-by-step Instruction', 'contact-form-plugin' ); ?></a></li>
830
  </ul>
844
  </noscript>
845
  <?php } ?>
846
  <div class="updated fade" <?php if ( $message == "" || "" != $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
847
+ <div class="error" <?php if ( "" == $error ) echo 'style="display:none"'; ?>><p><strong><?php echo $error; ?></strong></p></div>
848
  <?php bws_show_settings_notice();
849
  if ( ! empty( $hide_result['message'] ) ) { ?>
850
  <div class="updated fade"><p><strong><?php echo $hide_result['message']; ?></strong></p></div>
851
  <?php }
852
  if ( ! empty( $notice ) ) { ?>
853
  <div class="error"><p><strong><?php _e( 'Notice:', 'contact-form-plugin' ); ?></strong> <?php echo $notice; ?></p></div>
854
+ <?php }
855
+ if ( ( ! isset( $_GET['action'] ) || 'go_pro' != $_GET['action'] ) && ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
856
+ <h3 class="nav-tab-wrapper">
857
+ <span class="nav-tab nav-tab-active"><?php _e( 'NEW_FORM', 'contact-form-plugin' )?></span>
858
+ <a id="cntctfrm_show_multi_notice" class="nav-tab" target="_new" href="http://bestwebsoft.com/products/contact-form-multi/?k=747ca825fb44711e2d24e40697747bc6&pn=77&v=<?php echo $cntctfrm_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" title="<?php _e( "If you want to create multiple contact forms, please install the Contact Form Multi plugin.", 'contact-form-plugin' ); ?>">+</a>
859
+ </h3>
860
+ <?php }
861
+ if ( ! isset( $_GET['action'] ) || 'additional' == $_GET['action'] ) {
862
  if ( isset( $_REQUEST['bws_restore_default'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
863
  bws_form_restore_default_confirm( $plugin_basename );
864
+ } else { ?>
865
+ <form id="cntctfrm_settings_form" class="bws_form" method="post" action="">
 
 
 
 
 
 
 
 
866
  <div style="margin: 20px 0;">
867
  <?php printf( __( "If you would like to add a Contact Form to your page or post, please use %s button", 'contact-form-plugin' ),
868
  '<span class="bws_code"><img style="vertical-align: sub;" src="' . plugins_url( 'bws_menu/images/shortcode-icon.png', __FILE__ ) . '" alt=""/></span>'
1044
  <tr valign="top" >
1045
  <td><?php _e( "Department selectbox", 'contact-form-plugin' ); ?></td>
1046
  <td class="bws_pro_version"></td>
1047
+ <td class="bws_pro_version">
1048
+ <label><input disabled="disabled" type="checkbox" name="cntctfrm_required_department_field" value="1" />
1049
+ <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1050
+ </td>
1051
  <td class="bws_pro_version"></td>
1052
  <td class="bws_pro_version"></td>
1053
  <td class="bws_pro_version"></td>
1055
  <?php } ?>
1056
  <tr valign="top">
1057
  <td><?php _e( "Name", 'contact-form-plugin' ); ?></td>
1058
+ <td>
1059
+ <label><input type="checkbox" name="cntctfrm_display_name_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_display_name_field'] ) echo 'checked="checked" '; ?>/>
1060
+ <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
1061
+ </td>
1062
+ <td>
1063
+ <label><input type="checkbox" id="cntctfrm_required_name_field" name="cntctfrm_required_name_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_required_name_field'] ) echo 'checked="checked" '; ?> />
1064
+ <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1065
+ </td>
1066
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1067
+ <td class="bws_pro_version">
1068
+ <label><input disabled="disabled" type="checkbox" name="cntctfrmpr_visible_name" value="1" checked="checked" />
1069
+ <span class="cntctfrm_mobile_title"><?php _e( "Visible", 'contact-form-plugin' ); ?></span></label>
1070
+ </td>
1071
+ <td class="bws_pro_version">
1072
+ <label><input disabled="disabled" type="checkbox" name="cntctfrmpr_disabled_name" value="1" />
1073
+ <span class="cntctfrm_mobile_title"><?php _e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
1074
+ </td>
1075
  <td class="bws_pro_version">
1076
  <input disabled="disabled" type="checkbox" name="cntctfrmpr_default_name" value="1" />
1077
  <?php _e( "Use User's name as a default value if the user is logged in.", 'contact-form-plugin' ); ?><br />
1082
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1083
  <tr valign="top">
1084
  <td><?php _e( "Location selectbox", 'contact-form-plugin' ); ?></td>
1085
+ <td class="bws_pro_version">
1086
+ <label><input disabled="disabled" type="checkbox" name="cntctfrmpr_display_selectbox" value="1" />
1087
+ <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
1088
+ </td>
1089
+ <td class="bws_pro_version">
1090
+ <label><input disabled="disabled" type="checkbox" name="cntctfrmpr_required_selectbox" value="1" />
1091
+ <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1092
+ </td>
1093
  <td class="bws_pro_version"></td>
1094
  <td class="bws_pro_version"></td>
1095
+ <td class="bws_pro_version">
1096
+ <label>
1097
+ <span class="cntctfrmpr_mobile_title"><?php _e( "Field's default value", 'contact-form-plugin' ); ?></span>
1098
+ <input disabled="disabled" type="file" name="cntctfrmpr_default_location" />
1099
+ </label>
1100
+ </td>
1101
  </tr>
1102
  <?php } ?>
1103
  <tr valign="top">
1104
  <td><?php _e( "Address", 'contact-form-plugin' ); ?></td>
1105
+ <td>
1106
+ <label><input type="checkbox" id="cntctfrm_display_address_field" name="cntctfrm_display_address_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_display_address_field'] ) echo 'checked="checked" '; ?>/>
1107
+ <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
1108
+ </td>
1109
+ <td>
1110
+ <label><input type="checkbox" id="cntctfrm_required_address_field" name="cntctfrm_required_address_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_required_address_field'] ) echo 'checked="checked" '; ?>/>
1111
+ <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1112
+ </td>
1113
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1114
  <td></td>
1115
  <td></td>
1119
  <tr valign="top">
1120
  <td><?php _e( "Email Address", 'contact-form-plugin' ); ?></td>
1121
  <td></td>
1122
+ <td>
1123
+ <label><input type="checkbox" id="cntctfrm_required_email_field" name="cntctfrm_required_email_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_required_email_field'] ) echo 'checked="checked" '; ?>/>
1124
+ <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1125
+ </td>
1126
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1127
+ <td class="bws_pro_version">
1128
+ <label><input disabled="disabled" type="checkbox" name="cntctfrmpr_visible_email" value="1" checked="checked" />
1129
+ <span class="cntctfrm_mobile_title"><?php _e( "Visible", 'contact-form-plugin' ); ?></span></label>
1130
+ </td>
1131
+ <td class="bws_pro_version">
1132
+ <label><input disabled="disabled" type="checkbox" name="cntctfrmpr_disabled_email" value="1" />
1133
+ <span class="cntctfrm_mobile_title"><?php _e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
1134
+ </td>
1135
  <td class="bws_pro_version">
1136
  <input disabled="disabled" type="checkbox" name="cntctfrmpr_default_email" value="1" />
1137
  <?php _e( "Use User's email as a default value if the user is logged in.", 'contact-form-plugin' ); ?><br />
1141
  </tr>
1142
  <tr valign="top">
1143
  <td><?php _e( "Phone number", 'contact-form-plugin' ); ?></td>
1144
+ <td>
1145
+ <label><input type="checkbox" id="cntctfrm_display_phone_field" name="cntctfrm_display_phone_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_display_phone_field'] ) echo 'checked="checked" '; ?>/>
1146
+ <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
1147
+ </td>
1148
+ <td>
1149
+ <label><input type="checkbox" id="cntctfrm_required_phone_field" name="cntctfrm_required_phone_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_required_phone_field'] ) echo 'checked="checked" '; ?>/>
1150
+ <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1151
+ </td>
1152
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1153
  <td></td>
1154
  <td></td>
1158
  <tr valign="top">
1159
  <td><?php _e( "Subject", 'contact-form-plugin' ); ?></td>
1160
  <td></td>
1161
+ <td>
1162
+ <label><input type="checkbox" id="cntctfrm_required_subject_field" name="cntctfrm_required_subject_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_required_subject_field'] ) echo 'checked="checked" '; ?>/>
1163
+ <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1164
+ </td>
1165
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1166
+ <td class="bws_pro_version">
1167
+ <label><input class="subject" disabled="disabled" type="checkbox" name="cntctfrmpr_visible_subject" value="1" checked="checked" />
1168
+ <span class="cntctfrm_mobile_title"><?php _e( "Visible", 'contact-form-plugin' ); ?></span></label>
1169
+ </td>
1170
+ <td class="bws_pro_version">
1171
+ <label><input class="subject" disabled="disabled" type="checkbox" name="cntctfrmpr_disabled_subject" value="1" />
1172
+ <span class="cntctfrm_mobile_title"><?php _e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
1173
+ </td>
1174
+ <td class="bws_pro_version">
1175
+ <label>
1176
+ <span class="cntctfrmpr_mobile_title"><?php _e( "Field's default value", 'contact-form-plugin' ); ?></span>
1177
+ <input class="subject" disabled="disabled" type="text" name="cntctfrmpr_default_subject" value="" />
1178
+ </label>
1179
+ </td>
1180
  <?php } ?>
1181
  </tr>
1182
  <tr valign="top">
1183
  <td><?php _e( "Message", 'contact-form-plugin' ); ?></td>
1184
  <td></td>
1185
+ <td>
1186
+ <label><input type="checkbox" id="cntctfrm_required_message_field" name="cntctfrm_required_message_field" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_required_message_field'] ) echo 'checked="checked" '; ?>/>
1187
+ <span class="cntctfrm_mobile_title"><?php _e( "Required", 'contact-form-plugin' ); ?></span></label>
1188
+ </td>
1189
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1190
+ <td class="bws_pro_version">
1191
+ <label><input class="message" disabled="disabled" type="checkbox" name="cntctfrmpr_visible_message" value="1" checked="checked" />
1192
+ <span class="cntctfrm_mobile_title"><?php _e( "Visible", 'contact-form-plugin' ); ?></span></label>
1193
+ </td>
1194
+ <td class="bws_pro_version">
1195
+ <label><input class="message" disabled="disabled" disabled="disabled" type="checkbox" name="cntctfrmpr_disabled_message" value="1" />
1196
+ <span class="cntctfrm_mobile_title"><?php _e( "Disabled for editing", 'contact-form-plugin' ); ?></span></label>
1197
+ </td>
1198
+ <td class="bws_pro_version">
1199
+ <label>
1200
+ <span class="cntctfrmpr_mobile_title"><?php _e( "Field's default value", 'contact-form-plugin' ); ?></span>
1201
+ <input class="message" disabled="disabled" type="text" name="cntctfrmpr_default_message" value="" />
1202
+ </label>
1203
+ </td>
1204
  <?php } ?>
1205
  </tr>
1206
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1226
  <div class="bws_hidden_help_text" style="min-width: 200px;"><?php echo __( "Users can attach the following file formats", 'contact-form-plugin' ) . ": html, txt, css, gif, png, jpeg, jpg, tiff, bmp, ai, eps, ps, csv, rtf, pdf, doc, docx, xls, xlsx, zip, rar, wav, mp3, ppt, aar, sce"; ?></div>
1227
  </div>
1228
  </td>
1229
+ <td>
1230
+ <label><input type="checkbox" id="cntctfrm_attachment" name="cntctfrm_attachment" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_attachment'] ) echo 'checked="checked" '; ?>/>
1231
+ <span class="cntctfrm_mobile_title"><?php _e( "Used", 'contact-form-plugin' ); ?></span></label>
1232
+ </td>
1233
  <td></td>
1234
  <?php if ( ! $bws_hide_premium_options_check ) { ?>
1235
  <td></td>
1242
  <table class="form-table" style="width:auto;">
1243
  <tr valign="top">
1244
  <th scope="row"><?php _e( "Add to the form", 'contact-form-plugin' ); ?></th>
1245
+ <td colspan="3"><fieldset>
1246
  <div>
1247
  <label>
1248
  <input type="checkbox" id="cntctfrm_attachment_explanations" name="cntctfrm_attachment_explanations" value="1" <?php if ( '1' == $cntctfrm_options['cntctfrm_attachment_explanations'] && '1' == $cntctfrm_options['cntctfrm_attachment'] ) echo 'checked="checked" '; ?>/>
1301
  </div>
1302
  </div>
1303
  <?php } ?>
1304
+ </fieldset></td>
1305
  </tr>
1306
  <tr valign="top">
1307
  <th scope="row"><?php _e( "Delete an attachment file from the server after the email is sent", 'contact-form-plugin' ); ?> </th>
1380
  <input type="text" maxlength="250" name="cntctfrm_form_error[en]" value="<?php echo $cntctfrm_options['cntctfrm_form_error']['en']; ?>" /> <span class="bws_info"><?php _e( "Error message for the whole form", 'contact-form-plugin' ); ?></span><br />
1381
  </div>
1382
  <?php if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
1383
+ <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=en]</span> <?php _e( "or", 'contact-form-plugin' ) ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1384
  <?php } else { ?>
1385
+ <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=en id=<?php echo $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "or", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form id=<?php echo $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1386
  <?php } ?>
1387
  </div>
1388
  <?php if ( ! empty( $cntctfrm_options['cntctfrm_language'] ) ) {
1414
  <input type="text" maxlength="250" name="cntctfrm_form_error[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_form_error'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_form_error'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Error message for the whole form", 'contact-form-plugin' ); ?></span><br />
1415
  </div>
1416
  <?php if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
1417
+ <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1418
  <?php } else { ?>
1419
+ <span class="bws_info cntctfrm_shortcode_for_language" style="margin-left: 5px;"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php $val . ' id=' . $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1420
  <?php } ?>
1421
  </div>
1422
  <?php }
1443
  <div class="cntctfrm_language_tab cntctfrm_tab_en" style=" padding: 5px 10px 5px 5px;">
1444
  <input type="text" maxlength="250" name="cntctfrm_thank_text[en]" value="<?php echo $cntctfrm_options['cntctfrm_thank_text']['en']; ?>" /> <span class="bws_info"><?php _e( "Text", 'contact-form-plugin' ); ?></span><br />
1445
  <?php if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
1446
+ <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=en]</span> <?php _e( "or", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1447
  <?php } else { ?>
1448
+ <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=en id=<?php echo $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "or", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form id=<?php echo $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1449
  <?php } ?>
1450
  </div>
1451
  <?php if ( ! empty( $cntctfrm_options['cntctfrm_language'] ) ) {
1453
  <div class="cntctfrm_language_tab hidden cntctfrm_tab_<?php echo $val; ?>" style=" padding: 5px 10px 5px 5px;">
1454
  <label><input type="text" maxlength="250" name="cntctfrm_thank_text[<?php echo $val; ?>]" value="<?php if ( isset( $cntctfrm_options['cntctfrm_thank_text'][ $val ] ) ) echo $cntctfrm_options['cntctfrm_thank_text'][ $val ]; ?>" /> <span class="bws_info"><?php _e( "Text", 'contact-form-plugin' ); ?></span></label><br />
1455
  <?php if ( ! isset( $contact_form_multi_active ) && ! isset( $contact_form_multi_pro_active ) ) { ?>
1456
+ <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1457
  <?php } else { ?>
1458
+ <span class="bws_info cntctfrm_shortcode_for_language"><?php _e( "Use shortcode", 'contact-form-plugin' ); ?> <span class="cntctfrm_shortcode">[bestwebsoft_contact_form lang=<?php echo $val . ' id=' . $_SESSION['cntctfrmmlt_id_form']; ?>]</span> <?php _e( "for this language", 'contact-form-plugin' ); ?></span>
1459
  <?php } ?>
1460
  </div>
1461
  <?php }
1526
  </p>
1527
  </div>
1528
  </noscript>
1529
+ <form id="cntctfrm_settings_form" class="bws_form" method="post" action="">
 
 
 
 
 
 
 
1530
  <div id="cntctfrm_appearance_wrap" class="cntctfrm_appearance_<?php echo is_rtl() ? 'rtl' : 'ltr'; ?>">
1531
  <div id="<?php echo is_rtl() ? 'cntctfrm_right_table' : 'cntctfrm_left_table'; ?>">
1532
  <table class="form-table" style="width:auto;">
1867
  ( is_plugin_active( 'google-captcha/google-captcha.php' ) && ( isset( $gglcptch_options ) && 1 == $gglcptch_options['contact_form'] ) ) ||
1868
  ( is_plugin_active( 'google-captcha-pro/google-captcha-pro.php' ) && ( isset( $gglcptchpr_options ) && 1 == $gglcptchpr_options['contact_form'] ) ) ) {
1869
 
1870
+ $cntctfrm_captcha_label = $cntctfrm_captcha_required_symbol = '';
1871
  if ( is_plugin_active( 'captcha/captcha.php' ) && ( isset( $cptch_options ) && 1 == $cptch_options['cptch_contact_form'] ) ) {
1872
  $cntctfrm_captcha_label = $cptch_options['cptch_label_form'];
1873
  $cntctfrm_captcha_required_symbol = sprintf( ' <span class="required">%s</span>', ( isset( $cptch_options['cptch_required_symbol'] ) ) ? $cptch_options['cptch_required_symbol'] : '' );
1874
+ } elseif ( is_plugin_active( 'captcha-plus/captcha-plus.php' ) && ( isset( $cptchpls_options ) && 1 == $cptchpls_options['cptchpls_contact_form'] ) ) {
1875
+ $cntctfrm_captcha_label = $cptchpls_options['cptchpls_label_form'];
1876
+ $cntctfrm_captcha_required_symbol = sprintf( ' <span class="required">%s</span>', ( isset( $cptchpls_options['cptchpls_required_symbol'] ) ) ? $cptchpls_options['cptchpls_required_symbol'] : '' );
1877
+ } elseif ( is_plugin_active( 'captcha-pro/captcha_pro.php' ) && ( isset( $cptchpr_options ) && 1 == $cptchpr_options['cptchpr_contact_form'] ) ) {
1878
+ $cntctfrm_captcha_label = $cptchpr_options['cptchpr_label_form'];
1879
+ $cntctfrm_captcha_required_symbol = sprintf( ' <span class="required">%s</span>', ( isset( $cptchpr_options['cptchpr_required_symbol'] ) ) ? $cptchpr_options['cptchpr_required_symbol'] : '' );
 
 
1880
  }
1881
  if ( ! empty( $cntctfrm_captcha_label ) ) {
1882
  $cntctfrm_display_captcha_label = sprintf( '%1$s%2$s', $cntctfrm_captcha_label, $cntctfrm_captcha_required_symbol );
1883
  } else {
1884
  $cntctfrm_display_captcha_label = '';
1885
+ } ?>
 
 
1886
  <li class="cntctfrm_field_wrap">
1887
  <div class="cntctfrm_label cntctfrm_label_captcha">
1888
  <label><?php echo $cntctfrm_display_captcha_label; ?></label>
1996
  }
1997
  }
1998
 
1999
+ $page_url = esc_url( add_query_arg( array() ) . '#cntctfrm_contact_form' );
2000
 
2001
  /* If contact form submited */
2002
 
2806
  'cntctfrm_confirm_text' => __( 'Are you sure that you want to delete this language data?', 'contact-form-plugin' )
2807
  );
2808
 
2809
+ if ( wp_is_mobile() )
2810
+ wp_enqueue_script( 'jquery-touch-punch' );
2811
+
2812
  wp_enqueue_script( 'cntctfrm_script', plugins_url( 'js/script.js', __FILE__ ), array( 'jquery', 'jquery-ui-sortable' ) );
2813
  wp_localize_script( 'cntctfrm_script', 'cntctfrm_ajax', $script_vars );
2814
 
2837
  ),
2838
  'position' => array(
2839
  'edge' => 'top',
2840
+ 'align' => is_rtl() ? 'right' : 'left',
2841
  ),
2842
  );
2843
  bws_add_tooltip_in_admin( $tooltip_args );
3161
  if ( ! function_exists( 'cntctfrm_add_tabs' ) ) {
3162
  function cntctfrm_add_tabs() {
3163
  $screen = get_current_screen();
3164
+ $args = array(
3165
+ 'id' => 'cntctfrm',
3166
+ 'section' => '200538909'
3167
+ );
3168
+ bws_help_tab( $screen, $args );
 
 
3169
  }
3170
  }
3171
 
css/form_style.css CHANGED
@@ -8,6 +8,9 @@
8
  .rtl .cntctfrm_contact_form * {
9
  text-align: right !important;
10
  }
 
 
 
11
  .cntctfrm_contact_form p,
12
  .widget .cntctfrm_contact_form p {
13
  margin: 0 !important;
8
  .rtl .cntctfrm_contact_form * {
9
  text-align: right !important;
10
  }
11
+ .cntctfrm_contact_form .cntctfrm_contact_submit {
12
+ text-align: center !important;
13
+ }
14
  .cntctfrm_contact_form p,
15
  .widget .cntctfrm_contact_form p {
16
  margin: 0 !important;
css/style.css CHANGED
@@ -103,7 +103,6 @@
103
  border-right: 1px solid #DFDFDF;
104
  min-height: 25px;
105
  padding: 2px 10px;
106
- text-align: left;
107
  }
108
  .cntctfrm_settings_table td.bws_pro_version_tooltip {
109
  text-align: center;
@@ -112,6 +111,9 @@
112
  .cntctfrm_settings_table input[type="file"] {
113
  width: 100%;
114
  }
 
 
 
115
  @media screen and (max-width: 600px) {
116
  .cntctfrm_settings_table {
117
  width: 100%;
@@ -120,6 +122,17 @@
120
  .cntctfrm_settings_table td {
121
  display: block;
122
  }
 
 
 
 
 
 
 
 
 
 
 
123
  }
124
  td.cntctfrm_td_top_align {
125
  vertical-align: top;
@@ -189,12 +202,6 @@ td.cntctfrm_td_top_align {
189
  background: #e4e4e4;
190
  visibility: visible !important;
191
  }
192
- .cntctfrm_how_to_use {
193
- float: right;
194
- }
195
- .rtl .cntctfrm_how_to_use {
196
- float: left;
197
- }
198
  .cntctfrm_drag_wrap {
199
  position: absolute;
200
  width: 100%;
@@ -202,4 +209,18 @@ td.cntctfrm_td_top_align {
202
  top: 0;
203
  left: 0;
204
  background: transparent;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
205
  }
103
  border-right: 1px solid #DFDFDF;
104
  min-height: 25px;
105
  padding: 2px 10px;
 
106
  }
107
  .cntctfrm_settings_table td.bws_pro_version_tooltip {
108
  text-align: center;
111
  .cntctfrm_settings_table input[type="file"] {
112
  width: 100%;
113
  }
114
+ .cntctfrm_mobile_title {
115
+ display: none;
116
+ }
117
  @media screen and (max-width: 600px) {
118
  .cntctfrm_settings_table {
119
  width: 100%;
122
  .cntctfrm_settings_table td {
123
  display: block;
124
  }
125
+ .cntctfrm_settings_table thead,
126
+ .cntctfrm_settings_table td:empty {
127
+ display: none;
128
+ }
129
+ .cntctfrm_settings_table tr td:first-child {
130
+ font-weight: bold;
131
+ font-size: 14px;
132
+ }
133
+ .cntctfrm_mobile_title {
134
+ display: inline;
135
+ }
136
  }
137
  td.cntctfrm_td_top_align {
138
  vertical-align: top;
202
  background: #e4e4e4;
203
  visibility: visible !important;
204
  }
 
 
 
 
 
 
205
  .cntctfrm_drag_wrap {
206
  position: absolute;
207
  width: 100%;
209
  top: 0;
210
  left: 0;
211
  background: transparent;
212
+ }
213
+ .cntctfrm_how_to_use {
214
+ float: right;
215
+ }
216
+ .rtl .cntctfrm_how_to_use {
217
+ float: left;
218
+ }
219
+ @media screen and (max-width: 1220px) {
220
+ .cntctfrm_how_to_use {
221
+ float: none;
222
+ }
223
+ .cntctfrm_how_to_use > h2 {
224
+ clear: both;
225
+ }
226
  }
images/pro_screen_1.png CHANGED
Binary file
js/script.js CHANGED
@@ -33,9 +33,9 @@
33
  $( this ).val( '' );
34
  $( this ).attr( 'name', $( this ).attr( 'name' ).replace( '[en]', '[' + lang_val + ']' ) );
35
  });
36
- $( '.cntctfrm_change_label_block .cntctfrm_language_tab' ).last().find( '.cntctfrm_info' ).last().html( text );
37
  $( '.cntctfrm_action_after_send_block .cntctfrm_language_tab' ).last().find( 'input' ).val( '' ).attr( 'name', $( '.cntctfrm_action_after_send_block .cntctfrm_language_tab' ).last().find( 'input' ).attr( 'name' ).replace( '[en]', '[' + lang_val + ']' ) );
38
- $( '.cntctfrm_action_after_send_block .cntctfrm_language_tab' ).last().find( '.cntctfrm_info' ).last().html( text );
39
  $( '.cntctfrm_change_label_block .cntctfrm_label_language_tab, .cntctfrm_action_after_send_block .cntctfrm_label_language_tab' ).each( function() {
40
  $( this ).removeClass( 'cntctfrm_active' );
41
  });
33
  $( this ).val( '' );
34
  $( this ).attr( 'name', $( this ).attr( 'name' ).replace( '[en]', '[' + lang_val + ']' ) );
35
  });
36
+ $( '.cntctfrm_change_label_block .cntctfrm_language_tab' ).last().find( '.cntctfrm_shortcode_for_language' ).last().html( text );
37
  $( '.cntctfrm_action_after_send_block .cntctfrm_language_tab' ).last().find( 'input' ).val( '' ).attr( 'name', $( '.cntctfrm_action_after_send_block .cntctfrm_language_tab' ).last().find( 'input' ).attr( 'name' ).replace( '[en]', '[' + lang_val + ']' ) );
38
+ $( '.cntctfrm_action_after_send_block .cntctfrm_language_tab' ).last().find( '.cntctfrm_shortcode_for_language' ).last().html( text );
39
  $( '.cntctfrm_change_label_block .cntctfrm_label_language_tab, .cntctfrm_action_after_send_block .cntctfrm_label_language_tab' ).each( function() {
40
  $( this ).removeClass( 'cntctfrm_active' );
41
  });
languages/contact-form-plugin-fr_FR.mo CHANGED
Binary file
languages/contact-form-plugin-fr_FR.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Contact Form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-11-02 17:11+0300\n"
6
- "PO-Revision-Date: 2015-11-02 17:11+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
@@ -18,39 +18,39 @@ msgstr ""
18
  "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: contact_form.php:37 contact_form.php:821
22
  msgid "Contact Form Settings"
23
- msgstr "Options du formulaire de Contact"
24
 
25
  #: contact_form.php:37
26
  msgid "Contact Form"
27
  msgstr "Formulaire de contact"
28
 
29
- #: contact_form.php:165 contact_form.php:1277 contact_form.php:1311
30
  msgid "Name:"
31
  msgstr "Nom&nbsp;:"
32
 
33
- #: contact_form.php:166 contact_form.php:1278 contact_form.php:1312
34
  msgid "Address:"
35
  msgstr "Adresse&nbsp;:"
36
 
37
- #: contact_form.php:167 contact_form.php:1279 contact_form.php:1313
38
  msgid "Email Address:"
39
  msgstr "Adresse e-mail&nbsp;:"
40
 
41
- #: contact_form.php:168 contact_form.php:1280 contact_form.php:1314
42
  msgid "Phone number:"
43
  msgstr "Téléphone&nbsp;:"
44
 
45
- #: contact_form.php:169 contact_form.php:1281 contact_form.php:1315
46
  msgid "Subject:"
47
  msgstr "Sujet&nbsp;:"
48
 
49
- #: contact_form.php:170 contact_form.php:1282 contact_form.php:1316
50
  msgid "Message:"
51
  msgstr "Message&nbsp;:"
52
 
53
- #: contact_form.php:171 contact_form.php:1283 contact_form.php:1317
54
  msgid "Attachment:"
55
  msgstr "Pièce jointe&nbsp;:"
56
 
@@ -60,15 +60,15 @@ msgid ""
60
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT. Max "
61
  "file size: 2MB"
62
  msgstr ""
63
- "Types de fichiers autorisés: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, "
64
- "BMP, AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, "
65
- "PPT. Taille maximum 2MB"
66
 
67
- #: contact_form.php:173 contact_form.php:1285 contact_form.php:1319
68
  msgid "Send me a copy"
69
  msgstr "M'envoyer une copie"
70
 
71
- #: contact_form.php:174 contact_form.php:1286 contact_form.php:1320
72
  msgid "Submit"
73
  msgstr "Envoyer"
74
 
@@ -124,97 +124,95 @@ msgstr "Merci de faire les corrections suivantes et de réessayer."
124
  msgid "Thank you for contacting us."
125
  msgstr "Merci de nous avoir contacté."
126
 
127
- #: contact_form.php:529 contact_form.php:795
128
  msgid "Settings saved."
129
  msgstr "Options enregistrées."
130
 
131
- #: contact_form.php:735
132
  msgid ""
133
  "Email 'FROM' field option was changed, which may cause email messages being "
134
  "moved to the spam folder or email delivery failures."
135
  msgstr ""
136
  "L'option pour le champ 'From' des courriels a été modifiée, cela peut "
137
- "entrainer un classement des messages dans les dossiers spam ou bien une "
138
  "erreur d'acheminement peut survenir."
139
 
140
- #: contact_form.php:745
141
  msgid ""
142
  "If the 'Redirect to page' option is selected then the URL field should be in "
143
  "the following format"
144
  msgstr ""
145
- "Si l'ioption 'Rediriger vers la page' est positionnée, alors le champ Url "
146
  "doit être rempli avec le format suivant"
147
 
148
- #: contact_form.php:754
149
  msgid "Such user does not exist."
150
  msgstr "Cet utilisateur est inconnu."
151
 
152
- #: contact_form.php:764
153
  msgid ""
154
  "Please enter a valid email address in the 'Use this email address' field."
155
  msgstr ""
156
  "Merci de saisir une adresse e-mail valide pour le champ 'Utiliser cette "
157
  "adresse e-mail'."
158
 
159
- #: contact_form.php:772
160
  msgid "Please enter a valid email address in the 'FROM' field."
161
  msgstr "Merci de saisir une adresse e-mail valide pour le champ 'FROM'."
162
 
163
- #: contact_form.php:797
164
  msgid "Settings are not saved."
165
  msgstr "Paramètres non enregistrées."
166
 
167
- #: contact_form.php:816
168
  msgid "All plugin settings were restored."
169
  msgstr "Remettre les valeurs par défaut des paramètres de l'extension."
170
 
171
- #: contact_form.php:823
172
  msgid "How to Use Step-by-step Instruction"
173
- msgstr ""
174
 
175
- #: contact_form.php:826 contact_form.php:2665 contact_form.php:2679
176
  msgid "Settings"
177
  msgstr "Réglages"
178
 
179
- #: contact_form.php:827
180
  msgid "Additional settings"
181
  msgstr "Options supplémentaires"
182
 
183
- #: contact_form.php:828
184
  msgid "Appearance"
185
  msgstr "Aspect"
186
 
187
- #: contact_form.php:829
188
  msgid "Go PRO"
189
  msgstr "Choisir la version PRO"
190
 
191
- #: contact_form.php:835
192
- #, fuzzy
193
  msgid ""
194
  "Please enable JavaScript to add language in the contact form, change the "
195
  "names of the contact form fields and error messages."
196
  msgstr ""
197
- "Modifier le texte pour les champs du formulaire de contact et les messages "
198
- "d'erreur"
199
 
200
- #: contact_form.php:835 contact_form.php:1443 contact_form.php:1459
201
  msgid "Form layout"
202
- msgstr ""
203
 
204
- #: contact_form.php:835 contact_form.php:1443 contact_form.php:1471
205
- #, fuzzy
206
  msgid "Submit position"
207
- msgstr "Bouton Envoyer"
208
 
209
- #: contact_form.php:846
210
  msgid "Notice:"
211
  msgstr "Avertissement&nbsp;:"
212
 
213
- #: contact_form.php:856 contact_form.php:1449
214
  msgid "NEW_FORM"
215
- msgstr ""
216
 
217
- #: contact_form.php:857 contact_form.php:1450
218
  msgid ""
219
  "If you want to create multiple contact forms, please install the Contact "
220
  "Form Multi plugin."
@@ -222,16 +220,16 @@ msgstr ""
222
  "Si vous voulez créer plusieurs formulaire de contact, merci d'installer "
223
  "l'extension 'Contact Form Multi'"
224
 
225
- #: contact_form.php:863
226
- #, fuzzy, php-format
227
  msgid ""
228
  "If you would like to add a Contact Form to your page or post, please use %s "
229
  "button"
230
  msgstr ""
231
- "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez "
232
- "juste ce code dans un article ou sur une page ou un widget:"
233
 
234
- #: contact_form.php:869
235
  #, php-format
236
  msgid ""
237
  "You can add the Contact Form to your page or post by clicking on %s button "
@@ -239,8 +237,12 @@ msgid ""
239
  "displayed, please use the shortcode %s or %s where * stands for Contact Form "
240
  "language."
241
  msgstr ""
 
 
 
 
242
 
243
- #: contact_form.php:878
244
  msgid ""
245
  "If you leave the fields empty, the messages will be sent to the email "
246
  "address specified during registration."
@@ -248,15 +250,15 @@ msgstr ""
248
  "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à "
249
  "l'adresse spécifiée lors de l'enregistrement."
250
 
251
- #: contact_form.php:881
252
  msgid "The user's email address:"
253
  msgstr "Utiliser l'e-mail du compte WordPress&nbsp;:"
254
 
255
- #: contact_form.php:885
256
  msgid "Select a username"
257
  msgstr "Choisir un nom d'utilisateur"
258
 
259
- #: contact_form.php:898
260
  msgid ""
261
  "Enter a username of the person who should get the messages from the contact "
262
  "form."
@@ -264,121 +266,120 @@ msgstr ""
264
  "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le "
265
  "formulaire de contact."
266
 
267
- #: contact_form.php:902
268
  msgid "Use this email address:"
269
  msgstr "Utiliser cette adresse e-mail&nbsp;:"
270
 
271
- #: contact_form.php:906
272
  msgid "Enter the email address you want the messages forwarded to."
273
  msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
274
 
275
- #: contact_form.php:913 contact_form.php:1199 contact_form.php:1391
276
- #: contact_form.php:1486 contact_form.php:2756
277
  msgid "Close"
278
  msgstr "Fermer"
279
 
280
- #: contact_form.php:917
281
  msgid "Add department selectbox to the contact form:"
282
  msgstr ""
283
  "Ajouter la liste déroulante pour le département dans le formulaire de "
284
  "contact&nbsp;:"
285
 
286
- #: contact_form.php:925 contact_form.php:1208 contact_form.php:1410
287
- #: contact_form.php:1644
288
  msgid "If you upgrade to Pro version all your settings will be saved."
289
  msgstr ""
290
  "Si vous passez à la version Pro, tous ces paramètres seront enregistrés."
291
 
292
- #: contact_form.php:932 contact_form.php:1134 contact_form.php:1213
293
- #: contact_form.php:1417 contact_form.php:1651
294
- #, fuzzy
295
  msgid "Unlock premium options by upgrading to Pro version"
296
- msgstr "Déploquer les options premium en migrant vers la version PRO."
297
 
298
- #: contact_form.php:935 contact_form.php:1137 contact_form.php:1216
299
- #: contact_form.php:1420 contact_form.php:1654 contact_form.php:2955
300
  msgid "Learn More"
301
  msgstr "Lire la suite"
302
 
303
- #: contact_form.php:943
304
  msgid "Save emails to the database"
305
  msgstr "Enregistrer les e-mails dans la base de données"
306
 
307
- #: contact_form.php:948
308
  msgid "Using"
309
  msgstr "Utilisant"
310
 
311
- #: contact_form.php:951 contact_form.php:955
312
  msgid "Using Contact Form to DB by BestWebSoft"
313
  msgstr "en utilisant l'extension Contact Form to DB de BestWebSoft"
314
 
315
- #: contact_form.php:951
316
  msgid "Activate"
317
  msgstr "Activé"
318
 
319
- #: contact_form.php:955
320
  msgid "Download"
321
  msgstr "Téléchargement"
322
 
323
- #: contact_form.php:965
324
  msgid "What to use?"
325
- msgstr "Quelle méthode d'envoie ?"
326
 
327
- #: contact_form.php:970
328
  msgid "Wp-mail"
329
  msgstr "Wp-mail"
330
 
331
- #: contact_form.php:972
332
  msgid "You can use the wp_mail function for mailing"
333
  msgstr ""
334
  "Pour envoyer le courriel, vous pouvez utiliser la fonction wp_mail de "
335
  "WordPress "
336
 
337
- #: contact_form.php:975
338
  msgid "Mail"
339
  msgstr "E-mail"
340
 
341
- #: contact_form.php:977
342
  msgid "To send mail you can use the php mail function"
343
  msgstr "Pour envoyer le courriel, vous pouvez utiliser la fonction mail de php"
344
 
345
- #: contact_form.php:982
346
  msgid "'FROM' field"
347
  msgstr "Champ 'From'"
348
 
349
- #: contact_form.php:984 contact_form.php:1050 contact_form.php:1510
350
- #: contact_form.php:2451 contact_form.php:2487
351
  msgid "Name"
352
  msgstr "Nom"
353
 
354
- #: contact_form.php:991
355
  msgid "User name"
356
- msgstr "Nom de l'utlisateur"
357
 
358
- #: contact_form.php:993
359
  msgid ""
360
  "The name of the user who fills the form will be used in the field 'From'."
361
  msgstr ""
362
  "Dans le champ 'FROM' du courriel, il sera utilisé l'adresse e-mail de "
363
- "l'utlisateur qui rempli le formulaire."
364
 
365
- #: contact_form.php:999 contact_form.php:2462 contact_form.php:2494
366
  msgid "Email"
367
  msgstr "E-mail"
368
 
369
- #: contact_form.php:1006
370
  msgid "User email"
371
- msgstr "E-mail de l'utlisateur"
372
 
373
- #: contact_form.php:1008
374
  msgid ""
375
  "The email address of the user who fills the form will be used in the field "
376
  "'From'."
377
  msgstr ""
378
  "Dans le champ 'FROM' du courriel, il sera utilisé l'adresse e-mail de "
379
- "l'utlisateur qui rempli le formulaire."
380
 
381
- #: contact_form.php:1012
382
  msgid ""
383
  "If this option is changed, email messages may be moved to the spam folder or "
384
  "email delivery failures may occur."
@@ -386,45 +387,45 @@ msgstr ""
386
  "Si cette option est modifiée, les courriels pourront se retrouver classer "
387
  "dans le dossier spam ou bien une erreur d'acheminement peut survenir."
388
 
389
- #: contact_form.php:1018
390
  msgid "Required symbol"
391
- msgstr "Symbol obligatoire"
392
 
393
- #: contact_form.php:1028
394
  msgid "Fields"
395
  msgstr "Champs"
396
 
397
- #: contact_form.php:1029
398
  msgid "Used"
399
  msgstr "Utilisé"
400
 
401
- #: contact_form.php:1030
402
  msgid "Required"
403
  msgstr "Obligatoire"
404
 
405
- #: contact_form.php:1032
406
  msgid "Visible"
407
  msgstr "Visible"
408
 
409
- #: contact_form.php:1033
410
  msgid "Disabled for editing"
411
  msgstr "Non actif pour l'édition"
412
 
413
- #: contact_form.php:1034
414
  msgid "Field's default value"
415
  msgstr "Valeur par défaut du champ"
416
 
417
- #: contact_form.php:1041
418
  msgid "Department selectbox"
419
  msgstr "Liste déroulante des localisations"
420
 
421
- #: contact_form.php:1058
422
  msgid "Use User's name as a default value if the user is logged in."
423
  msgstr ""
424
  "Utiliser le nom de l'utilisateur comme valeur par défaut si un utilisateur "
425
  "est connecté."
426
 
427
- #: contact_form.php:1059 contact_form.php:1093
428
  msgid ""
429
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
430
  "in users."
@@ -432,127 +433,127 @@ msgstr ""
432
  "'Visible' et 'Inactif' pour modifier les options ne seront appliqués qu'aux "
433
  "utilisateurs connectés."
434
 
435
- #: contact_form.php:1065
436
  msgid "Location selectbox"
437
  msgstr "Liste déroulante des localisations"
438
 
439
- #: contact_form.php:1074 contact_form.php:1515 contact_form.php:2457
440
- #: contact_form.php:2491
441
  msgid "Address"
442
  msgstr "Adresse"
443
 
444
- #: contact_form.php:1084
445
  msgid "Email Address"
446
  msgstr "Adresse e-mail"
447
 
448
- #: contact_form.php:1092
449
  msgid "Use User's email as a default value if the user is logged in."
450
  msgstr ""
451
  "Utiliser l'adresse e-mail de l'utilisateur comme valeur par défaut si un "
452
  "utilisateur est connecté."
453
 
454
- #: contact_form.php:1098
455
  msgid "Phone number"
456
  msgstr "Téléphone"
457
 
458
- #: contact_form.php:1108 contact_form.php:1530 contact_form.php:2472
459
- #: contact_form.php:2500
460
  msgid "Subject"
461
  msgstr "Sujet"
462
 
463
- #: contact_form.php:1118 contact_form.php:1534 contact_form.php:2475
464
- #: contact_form.php:2502
465
  msgid "Message"
466
  msgstr "Message"
467
 
468
- #: contact_form.php:1145
469
  msgid "Attachment block"
470
  msgstr "Bloc pièce jointe"
471
 
472
- #: contact_form.php:1147
473
  msgid "Users can attach the following file formats"
474
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
475
 
476
- #: contact_form.php:1162
477
  msgid "Add to the form"
478
  msgstr "Ajouter au formulaire"
479
 
480
- #: contact_form.php:1167
481
  msgid "Tips below the Attachment"
482
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
483
 
484
- #: contact_form.php:1176
485
  msgid "'Send me a copy' block"
486
  msgstr "Afficher le bloc \"M'envoyer une copie\""
487
 
488
- #: contact_form.php:1189
489
  msgid "Activate captcha"
490
  msgstr "Activé le captcha"
491
 
492
- #: contact_form.php:1193
493
  msgid "Download captcha"
494
  msgstr "Télécharger le captcha"
495
 
496
- #: contact_form.php:1203
497
  msgid "Agreement checkbox"
498
  msgstr "Case à cocher pour valider le formulaire"
499
 
500
- #: contact_form.php:1203
501
  msgid "Required checkbox for submitting the form"
502
  msgstr "Boite à cocher obligatoire pour la validation du formulaire."
503
 
504
- #: contact_form.php:1204
505
  msgid "Optional checkbox"
506
  msgstr "Boite à cocher optionnelle"
507
 
508
- #: contact_form.php:1204
509
  msgid "Optional checkbox, the results of which will be displayed in email"
510
  msgstr "Boite à cocher optionnelle, le résultat sera affiché dans le courriel"
511
 
512
- #: contact_form.php:1225
513
  msgid "Delete an attachment file from the server after the email is sent"
514
  msgstr "Supprimer le fichier joint sur le serveur après l'envoie du courriel"
515
 
516
- #: contact_form.php:1231
517
  msgid "Email in HTML format sending"
518
  msgstr "Courriel au format HTML"
519
 
520
- #: contact_form.php:1235
521
  msgid "Display additional info in the email"
522
  msgstr "Afficher les informations complémentaires dans le courriel"
523
 
524
- #: contact_form.php:1241 contact_form.php:2418 contact_form.php:2420
525
  msgid "Sent from (ip address)"
526
  msgstr "Envoyé de (adresse IP)"
527
 
528
- #: contact_form.php:1241
529
  msgid "Example: Sent from (IP address):\t127.0.0.1"
530
- msgstr "Exemple: Envoyé de (addresse IP)&nbsp;:\t127.0.0.1"
531
 
532
- #: contact_form.php:1242 contact_form.php:2424 contact_form.php:2426
533
  msgid "Date/Time"
534
  msgstr "Date/Heure"
535
 
536
- #: contact_form.php:1242
537
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
538
  msgstr "Exemple: Date/Heure&nbsp;:\tAoût 19, 2013 8:50pm"
539
 
540
- #: contact_form.php:1243 contact_form.php:2430 contact_form.php:2432
541
  msgid "Sent from (referer)"
542
  msgstr "Envoyer de (référence)"
543
 
544
- #: contact_form.php:1243
545
  msgid ""
546
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
547
  msgstr ""
548
  "Exemple&nbsp;: Envoyer de (referer) :\thttp://bestwebsoft.com/contacts/"
549
  "contact-us/"
550
 
551
- #: contact_form.php:1244 contact_form.php:2436 contact_form.php:2438
552
  msgid "Using (user agent)"
553
  msgstr "Depuis (navigateur)"
554
 
555
- #: contact_form.php:1244
556
  msgid ""
557
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
558
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
@@ -561,141 +562,143 @@ msgstr ""
561
  "WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 "
562
  "Safari/537.36"
563
 
564
- #: contact_form.php:1249
565
  msgid "Language settings for the field names in the form"
566
  msgstr "Définition des langues pour les titres des champs"
567
 
568
- #: contact_form.php:1258
569
  msgid "Add a language"
570
  msgstr "Ajouter une langue"
571
 
572
- #: contact_form.php:1262
573
  msgid "Change the names of the contact form fields and error messages"
574
  msgstr ""
575
  "Modifier le texte pour les champs du formulaire de contact et les messages "
576
  "d'erreur"
577
 
578
- #: contact_form.php:1267 contact_form.php:1354
579
  msgid "English"
580
  msgstr "Anglais"
581
 
582
- #: contact_form.php:1275 contact_form.php:1309
583
  msgid "click to expand/hide the list"
584
  msgstr "cliquer pour voir/cacher la liste"
585
 
586
- #: contact_form.php:1284 contact_form.php:1318
587
  msgid "Tips below the Attachment block"
588
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
589
 
590
- #: contact_form.php:1287 contact_form.php:1321
591
  msgid "Error message for the Name field"
592
  msgstr "Message d'erreur pour le champ nom"
593
 
594
- #: contact_form.php:1288 contact_form.php:1322
595
  msgid "Error message for the Address field"
596
  msgstr "Message d'erreur pour le champ Adresse"
597
 
598
- #: contact_form.php:1289 contact_form.php:1323
599
  msgid "Error message for the Email field"
600
  msgstr "Message d'erreur pour le champ e-mail"
601
 
602
- #: contact_form.php:1290 contact_form.php:1324
603
  msgid "Error message for the Phone field"
604
  msgstr "Message d'erreur pour le champ téléphone"
605
 
606
- #: contact_form.php:1291 contact_form.php:1325
607
  msgid "Error message for the Subject field"
608
  msgstr "Message d'erreur pour le champ sujet"
609
 
610
- #: contact_form.php:1292 contact_form.php:1326
611
  msgid "Error message for the Message field"
612
  msgstr "Message d'erreur pour le champ message"
613
 
614
- #: contact_form.php:1293 contact_form.php:1327
615
  msgid "Error message about the file type for the Attachment field"
616
  msgstr "Message d'erreur pour le champ fichier joint (type du fichier)"
617
 
618
- #: contact_form.php:1294 contact_form.php:1328
619
  msgid ""
620
  "Error message while uploading a file for the Attachment field to the server"
621
  msgstr ""
622
- "Message d'erreur pour le champ fichier joint (problème d'envoie vers le "
623
  "serveur)"
624
 
625
- #: contact_form.php:1295 contact_form.php:1329
626
  msgid "Error message while moving the file for the Attachment field"
627
  msgstr "Message d'erreur pour le champ fichier joint (déplacement du fichier)"
628
 
629
- #: contact_form.php:1296 contact_form.php:1330
630
  msgid "Error message when file size limit for the Attachment field is exceeded"
631
  msgstr ""
632
  "Message d'erreur pour le champ fichier joint (taille limite du fichier "
633
  "atteinte)"
634
 
635
- #: contact_form.php:1297 contact_form.php:1331
636
  msgid "Error message for the Captcha field"
637
  msgstr "Message d'erreur pour le captcha"
638
 
639
- #: contact_form.php:1298 contact_form.php:1332
640
  msgid "Error message for the whole form"
641
  msgstr "Message d'erreur demandant à compléter les champs manquants"
642
 
643
- #: contact_form.php:1301 contact_form.php:1303 contact_form.php:1335
644
- #: contact_form.php:1337 contact_form.php:1364 contact_form.php:1366
645
- #: contact_form.php:1374 contact_form.php:1376 contact_form.php:2811
646
- #: contact_form.php:2813
647
  msgid "Use shortcode"
648
  msgstr "Utiliser le code court"
649
 
650
- #: contact_form.php:1301 contact_form.php:1303 contact_form.php:1364
651
- #: contact_form.php:1366
652
  msgid "or"
653
  msgstr "ou"
654
 
655
- #: contact_form.php:1301 contact_form.php:1303 contact_form.php:1335
656
- #: contact_form.php:1337 contact_form.php:1364 contact_form.php:1366
657
- #: contact_form.php:1374 contact_form.php:1376 contact_form.php:2811
658
- #: contact_form.php:2813
659
  msgid "for this language"
660
  msgstr "pour cette langue"
661
 
662
- #: contact_form.php:1345
663
  msgid "Use the changed names of the contact form fields in the email"
664
  msgstr "Utiliser les noms des champs modifiés dans les courriels"
665
 
666
- #: contact_form.php:1351
667
  msgid "Action after email is sent"
668
  msgstr "Action après l'envoie du courriel"
669
 
670
- #: contact_form.php:1353
671
  msgid "Display text"
672
  msgstr "Afficher le texte"
673
 
674
- #: contact_form.php:1362 contact_form.php:1372
675
  msgid "Text"
676
  msgstr "Texte"
677
 
678
- #: contact_form.php:1383
679
  msgid "Redirect to the page"
680
  msgstr "Rediriger vers la page"
681
 
682
- #: contact_form.php:1384
683
  msgid "Url"
684
  msgstr "Url"
685
 
686
- #: contact_form.php:1395
687
  msgid "Add field 'Reply-To' to the email header"
688
- msgstr ""
689
 
690
- #: contact_form.php:1397
691
  msgid "Field 'Reply-To' will be initialized by user email"
692
  msgstr ""
 
 
693
 
694
- #: contact_form.php:1401
695
  msgid "Auto Response"
696
  msgstr "Réponse automatique"
697
 
698
- #: contact_form.php:1405
699
  #, php-format
700
  msgid ""
701
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
@@ -706,159 +709,160 @@ msgstr ""
706
  "%%MESSAGE%% pour afficher des données du champ message, de même %%SITENAME%% "
707
  "pour afficher le nom du site."
708
 
709
- #: contact_form.php:1430 contact_form.php:1870
710
  msgid "Save Changes"
711
  msgstr "Enregistrer les modifications"
712
 
713
- #: contact_form.php:1443
714
  #, php-format
715
  msgid ""
716
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
717
  msgstr ""
 
 
718
 
719
- #: contact_form.php:1463
720
  msgid "One column"
721
- msgstr ""
722
 
723
- #: contact_form.php:1466
724
  msgid "Two columns"
725
- msgstr ""
726
 
727
- #: contact_form.php:1475
728
  msgid "Left"
729
- msgstr ""
730
 
731
- #: contact_form.php:1478
732
  msgid "Right"
733
- msgstr ""
734
 
735
- #: contact_form.php:1490
736
  msgid "Errors output"
737
  msgstr "Affichage des erreurs"
738
 
739
- #: contact_form.php:1493
740
  msgid "Display error messages"
741
- msgstr "Aficher les messages d'erreur"
742
 
743
- #: contact_form.php:1494
744
  msgid "Color of the input field errors."
745
  msgstr "Mettre en couleur les champs ayant des erreurs"
746
 
747
- #: contact_form.php:1495
748
  msgid "Display error messages & color of the input field errors"
749
  msgstr ""
750
  "Afficher les messages d'erreur et mettre en couleur les champs ayant des "
751
  "erreurs"
752
 
753
- #: contact_form.php:1500
754
  msgid "Add placeholder to the input blocks"
755
  msgstr "Ajouter la localisation dans le bloc de saisie"
756
 
757
- #: contact_form.php:1506
758
  msgid "Add tooltips"
759
  msgstr "Ajouter les conseils"
760
 
761
- #: contact_form.php:1520
762
  msgid "Email address"
763
  msgstr "Adresse e-mail"
764
 
765
- #: contact_form.php:1525
766
  msgid "Phone Number"
767
  msgstr "Téléphone"
768
 
769
- #: contact_form.php:1539
770
  msgid "Attachment"
771
  msgstr "Pièce jointe"
772
 
773
- #: contact_form.php:1551
774
  msgid "Style options"
775
  msgstr "Options de style"
776
 
777
- #: contact_form.php:1555
778
  msgid "Text color"
779
  msgstr "Couleur du texte"
780
 
781
- #: contact_form.php:1558 contact_form.php:1563 contact_form.php:1573
782
- #: contact_form.php:1578 contact_form.php:1583 contact_form.php:1588
783
- #: contact_form.php:1598 contact_form.php:1603 contact_form.php:1612
784
- #: contact_form.php:1626 contact_form.php:1631 contact_form.php:1636
785
  msgid "Default"
786
  msgstr "Défaut"
787
 
788
- #: contact_form.php:1560
789
  msgid "Label text color"
790
  msgstr "Couleur des textes des intitulés"
791
 
792
- #: contact_form.php:1565
793
  msgid "Placeholder color"
794
  msgstr "Couleur pour la localisation"
795
 
796
- #: contact_form.php:1570
797
  msgid "Errors color"
798
  msgstr "Couleur pour les erreurs"
799
 
800
- #: contact_form.php:1575
801
  msgid "Error text color"
802
  msgstr "Couleur pour le texte des erreurs"
803
 
804
- #: contact_form.php:1580
805
  msgid "Background color of the input field errors"
806
  msgstr "Couleur de fond pour les erreurs de saisie dans les champs"
807
 
808
- #: contact_form.php:1585
809
  msgid "Border color of the input field errors"
810
  msgstr "Couleur de la bordure pour les erreurs de saisie dans les champs"
811
 
812
- #: contact_form.php:1590
813
  msgid "Placeholder color of the input field errors"
814
  msgstr "Couleur pour la localisation lors d'une erreur de saisie du champ"
815
 
816
- #: contact_form.php:1595
817
  msgid "Input fields"
818
  msgstr "Champs de saisie"
819
 
820
- #: contact_form.php:1600
821
  msgid "Input fields background color"
822
  msgstr "Couleur de fond pour les champs de saisie"
823
 
824
- #: contact_form.php:1605
825
  msgid "Text fields color"
826
  msgstr "Couleur pour les textes des champs de saisie"
827
 
828
- #: contact_form.php:1609
829
  msgid "Border width in px, numbers only"
830
  msgstr "Largeur des bordures en px, nombre seulement"
831
 
832
- #: contact_form.php:1614 contact_form.php:1638
833
  msgid "Border color"
834
  msgstr "Couleur des bordures"
835
 
836
- #: contact_form.php:1619
837
  msgid "Submit button"
838
  msgstr "Bouton Envoyer"
839
 
840
- #: contact_form.php:1623
841
  msgid "Width in px, numbers only"
842
  msgstr "Largeur en px, nombre seulement"
843
 
844
- #: contact_form.php:1628
845
  msgid "Button color"
846
  msgstr "Couleur du bouton"
847
 
848
- #: contact_form.php:1633
849
  msgid "Button text color"
850
  msgstr "Couleur du texte du bouton"
851
 
852
- #: contact_form.php:1665
853
- #, fuzzy
854
  msgid "Contact Form | Preview"
855
- msgstr "Formulaire Pro de Contact | Prévisualisation"
856
 
857
- #: contact_form.php:1666
858
  msgid "Drag the necessary field to sort fields."
859
- msgstr ""
860
 
861
- #: contact_form.php:1857
862
  msgid ""
863
  "If you would like to add the Contact Form to your website, just copy and "
864
  "paste this shortcode to your post or page or widget:"
@@ -866,23 +870,23 @@ msgstr ""
866
  "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez "
867
  "juste ce code dans un article ou sur une page ou un widget&nbsp;:"
868
 
869
- #: contact_form.php:1957
870
  msgid "Sorry, email message could not be delivered."
871
  msgstr "Désolé, votre courriel n'a pas pu être envoyé."
872
 
873
- #: contact_form.php:2445
874
  msgid "Contact from"
875
  msgstr "Contact de"
876
 
877
- #: contact_form.php:2467 contact_form.php:2497
878
  msgid "Phone"
879
  msgstr "Téléphone"
880
 
881
- #: contact_form.php:2478 contact_form.php:2504
882
  msgid "Site"
883
  msgstr "Site"
884
 
885
- #: contact_form.php:2597
886
  msgid ""
887
  "If you can see this MIME, it means that the MIME type is not supported by "
888
  "your email client!"
@@ -890,23 +894,23 @@ msgstr ""
890
  "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de "
891
  "MIME !"
892
 
893
- #: contact_form.php:2680
894
  msgid "FAQ"
895
  msgstr "FAQ"
896
 
897
- #: contact_form.php:2681
898
  msgid "Support"
899
  msgstr "Support"
900
 
901
- #: contact_form.php:2730
902
  msgid "Are you sure that you want to delete this language data?"
903
- msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
904
 
905
- #: contact_form.php:2747
906
  msgid "Add multiple forms"
907
  msgstr "Ajouter plusieurs formulaires"
908
 
909
- #: contact_form.php:2747
910
  msgid ""
911
  "Install Contact Form Multi plugin to create unlimited number of contact "
912
  "forms."
@@ -914,176 +918,298 @@ msgstr ""
914
  "Installer l'extension 'Contact Form Multi' pour créer un nombre infini de "
915
  "formulaires de contact."
916
 
917
- #: contact_form.php:2752
918
  msgid "Learn more"
919
  msgstr "Lire la suite"
920
 
921
- #: contact_form.php:2951
922
  msgid "allows to store your messages to the database."
923
  msgstr "permet d'enregistrer les messages dans la base de données."
924
 
925
- #: contact_form.php:2952
926
  msgid "Manage messages that have been sent from your website."
927
  msgstr "Gérer les messages qui ont été envoyés depuis votre site."
928
 
929
- #: contact_form.php:3012
930
- #, fuzzy
931
  msgid "Contact form"
932
- msgstr "Contact de"
933
 
934
- #: contact_form.php:3025 contact_form.php:3036
935
- #, fuzzy
936
  msgid "Language"
937
- msgstr "Ajouter une langue"
938
 
939
- #~ msgid ""
940
- #~ "If you would like to add Contact Form to your website, just copy and "
941
- #~ "paste this shortcode to your post or page or widget:"
942
- #~ msgstr ""
943
- #~ "Si vous souhaiter ajouter un formulaire de contact à votre site web, "
944
- #~ "copiez juste ce code dans un article ou sur une page ou un widget&nbsp;:"
945
 
946
- #~ msgid ""
947
- #~ "If you have any problems with the standard shortcode [contact_form], you "
948
- #~ "should use the shortcode"
949
- #~ msgstr ""
950
- #~ "Si vous avez un soucis avec le code court standard [contact_form], vous "
951
- #~ "pouvez utilisez le code court "
952
 
953
- #~ msgid "They work the same way."
954
- #~ msgstr "Ils fonctionnent de la même manière."
955
 
956
- #~ msgid ""
957
- #~ "If have any problems with the standard shortcode [contact_form], you "
958
- #~ "should use the shortcode"
959
- #~ msgstr ""
960
- #~ "Si vous avez un soucis avec le code court standard [contact_form], vous "
961
- #~ "pouvez utilisez le code court "
962
 
963
- #~ msgid "The $_SERVER variable that is used to build a URL of the form"
964
- #~ msgstr ""
965
- #~ "La variable $_SERVER qui est utilisée pour construire l'URL du formulaire"
966
 
967
- #~ msgid ""
968
- #~ "If you are not sure whether to change this setting or not, please do not "
969
- #~ "do that."
970
- #~ msgstr ""
971
- #~ "Si vous n'êtes pas sûr de ce que vous faites, merci de ne pas toucher ce "
972
- #~ "paramètre."
973
 
974
- #~ msgid ""
975
- #~ "The plugin's settings have been changed. In order to save them please "
976
- #~ "don't forget to click the 'Save Changes' button."
977
- #~ msgstr ""
978
- #~ "Les paramètres de l'extension ont été changés. Afin de pouvoir les "
979
- #~ "enregistrer, merci de cliquer sur le bouton 'Enregistrer les "
980
- #~ "modifications'."
981
 
982
- #~ msgid "Unlock premium options by upgrading to PRO version."
983
- #~ msgstr "Déploquer les options premium en migrant vers la version PRO."
984
 
985
- #~ msgid "Go"
986
- #~ msgstr "Passez"
987
 
988
- #~ msgid "Show with errors"
989
- #~ msgstr "Afficher avec les erreurs"
990
 
991
- #~ msgid "Please enter your full name..."
992
- #~ msgstr "Merci de saisir votre nom..."
993
 
994
- #~ msgid "Please enter your address..."
995
- #~ msgstr "Merci de saisir votre adresse..."
996
 
997
- #~ msgid "Please enter your email address..."
998
- #~ msgstr "Merci de saisir votre adresse e-mail..."
999
 
1000
- #~ msgid "Please enter your phone number..."
1001
- #~ msgstr "Merci de saisir votre numéro de téléphone..."
1002
 
1003
- #~ msgid "Please enter subject..."
1004
- #~ msgstr "Merci de saisir le sujet..."
1005
 
1006
- #~ msgid "Please enter your message..."
1007
- #~ msgstr "Merci de saisir votre message..."
1008
 
1009
- #~ msgid "requires"
1010
- #~ msgstr "obligatoire"
1011
 
1012
- #~ msgid ""
1013
- #~ "or higher, that is why it has been deactivated! Please upgrade WordPress "
1014
- #~ "and try again."
1015
- #~ msgstr ""
1016
- #~ "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise "
1017
- #~ "à jour de WordPress puis de ré-essayer."
1018
 
1019
- #~ msgid "Back to the WordPress"
1020
- #~ msgstr "Retourner à WordPress"
1021
 
1022
- #~ msgid "Plugins page"
1023
- #~ msgstr "Page des extensions"
1024
 
1025
- #~ msgid "It’s time to upgrade your"
1026
- #~ msgstr "C'est le moment de mettre à jour votre "
1027
 
1028
- #~ msgid "to"
1029
- #~ msgstr "à"
1030
 
1031
- #~ msgid "version!"
1032
- #~ msgstr "version"
1033
 
1034
- #~ msgid "Extend standard plugin functionality with new great options."
1035
- #~ msgstr ""
1036
- #~ "Etend les fonctionalités de base de l'extension avec de nouvelles options."
1037
 
1038
- #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1039
- #~ msgstr ""
1040
- #~ "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans "
1041
- #~ "Wordpress"
1042
 
1043
- #~ msgid "Rate the plugin"
1044
- #~ msgstr "Noter l'extension"
1045
 
1046
- #~ msgid "If there is something wrong about it, please contact us"
1047
- #~ msgstr ""
1048
- #~ "Si quelque chose ne fonctionne pas correctement, merci de nous contacter"
1049
 
1050
- #~ msgid "Wrong license key"
1051
- #~ msgstr "Clé de licence incorrecte"
1052
 
1053
- #~ msgid ""
1054
- #~ "Something went wrong. Please try again later. If the error appears again, "
1055
- #~ "please contact us"
1056
- #~ msgstr ""
1057
- #~ "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de "
1058
- #~ "nouveau, merci de contacter <a href=http://support.bestwebsoft."
1059
- #~ "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
1060
 
1061
- #~ msgid "We are sorry for inconvenience."
1062
- #~ msgstr "Nous sommes désolés pour le désagrément."
1063
 
1064
- #~ msgid "This license key is bind to another site"
1065
- #~ msgstr "La clé de licence correspond à un autre site."
1066
 
1067
- #~ msgid ""
1068
- #~ "Unfortunately, you have exceeded the number of available tries per day. "
1069
- #~ "Please, upload the plugin manually."
1070
- #~ msgstr ""
1071
- #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1072
- #~ "télécharger l'extension manuellement."
1073
 
1074
- #~ msgid ""
1075
- #~ "Unfortunately, Your license has expired. To continue getting top-priority "
1076
- #~ "support and plugin updates you should extend it in your"
1077
- #~ msgstr ""
1078
- #~ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
1079
- #~ "rapide et des mises à jour de l'extension vous devez la renouveller dans "
1080
- #~ "votre"
1081
 
1082
- #~ msgid ""
1083
- #~ "Unfortunately, the PRO licence was already installed to this domain. The "
1084
- #~ "PRO Trial license can be installed only once."
1085
- #~ msgstr ""
1086
- #~ "Une licence a déjà été installée sur ce domaine. La licence d'évaluation "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1087
  #~ "ne peut-être installée qu'une seule fois."
1088
 
1089
  #~ msgid ""
@@ -1101,8 +1227,8 @@ msgstr "Ajouter une langue"
1101
  #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1102
  #~ "the plugin manually"
1103
  #~ msgstr ""
1104
- #~ "Votre server n'a pas le support du format des archives ZIP ou Phar. Merci "
1105
- #~ "de télécharger l'extension manuellement."
1106
 
1107
  #~ msgid "UploadDir is not writable. Please, upload the plugin manually"
1108
  #~ msgstr ""
@@ -1117,17 +1243,17 @@ msgstr "Ajouter une langue"
1117
  #~ "l'extension manuellement.Nous sommes désolés pour le désagrément."
1118
 
1119
  #~ msgid "Please, enter Your license key"
1120
- #~ msgstr "Merci de saisir votre clé de liecence"
1121
 
1122
  #~ msgid ""
1123
- #~ "Congratulations! The PRO version of the plugin is successfully download "
1124
  #~ "and activated."
1125
  #~ msgstr ""
1126
  #~ "Félicitations! La version PRO de cette extension a été téléchargée et "
1127
  #~ "activée avec succès."
1128
 
1129
  #~ msgid "Please, go to"
1130
- #~ msgstr "Merci d'allez à"
1131
 
1132
  #~ msgid "the setting page"
1133
  #~ msgstr "Options supplémentaires"
@@ -1135,6 +1261,9 @@ msgstr "Ajouter une langue"
1135
  #~ msgid "You will be redirected automatically in 5 seconds."
1136
  #~ msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
1137
 
 
 
 
1138
  #~ msgid "You can download and activate"
1139
  #~ msgstr "Vous pouvez la télécharger et l'activer"
1140
 
@@ -1175,7 +1304,7 @@ msgstr "Ajouter une langue"
1175
  #~ "télécharger l'extension manuellement."
1176
 
1177
  #~ msgid ""
1178
- #~ "Congratulations! The PRO license of the plugin is successfully activated."
1179
  #~ msgstr ""
1180
  #~ "Félicitations! La version PRO de cette extension a été téléchargée et "
1181
  #~ "activée avec succès."
@@ -1200,13 +1329,13 @@ msgstr "Ajouter une langue"
1200
  #~ "télécharger l'extension manuellement."
1201
 
1202
  #~ msgid ""
1203
- #~ "Unfortunately, the PRO Trial licence was already installed to this "
1204
- #~ "domain. The PRO Trial license can be installed only once."
1205
  #~ msgstr ""
1206
- #~ "Malheuresement la licence PRO a déjà été installée sur ce domaine. La "
1207
  #~ "licence PRO d'évaluation peut être installée une seule fois."
1208
 
1209
- #~ msgid "The PRO Trial license key is valid."
1210
  #~ msgstr "La clé de licence d'évaluation est valide."
1211
 
1212
  #~ msgid "The license key is valid."
@@ -1255,30 +1384,29 @@ msgstr "Ajouter une langue"
1255
  #~ "l'extension sera rendue inactive."
1256
 
1257
  #~ msgid ""
1258
- #~ "Notice: Your PRO Trial license has expired. To continue using the plugin "
1259
- #~ "you should buy a PRO license"
1260
  #~ msgstr ""
1261
  #~ "Information&nbsp;: Votre licence d'évaluation est terminée. Pour "
1262
- #~ "continuer à disposer du support rapide et des mises à jour de l'extension "
1263
- #~ "vous devez la renouveller."
1264
 
1265
  #~ msgid ""
1266
  #~ "Your license has expired. To continue getting top-priority support and "
1267
  #~ "plugin updates you should extend it."
1268
  #~ msgstr ""
1269
  #~ "Votre licence est terminée. Pour continuer à disposer du support rapide "
1270
- #~ "et des mises à jour de l'extension vous devez la renouveller."
1271
 
1272
- #~ msgid "Notice: You are using the PRO Trial license of %s plugin."
1273
  #~ msgstr ""
1274
  #~ "Avertissement&nbsp;: vous utilisez la version d'évaluation de l'extension "
1275
  #~ "%s."
1276
 
1277
- #~ msgid "Notice: You are using the PRO Trial license of plugin."
1278
  #~ msgstr ""
1279
  #~ "Avertissement&nbsp;: vous utilisez la version d'évaluation de l'extension."
1280
 
1281
- #~ msgid "The PRO Trial license will expire on"
1282
  #~ msgstr "Votre licence se termine le"
1283
 
1284
  #~ msgid "You license for"
@@ -1288,202 +1416,150 @@ msgstr "Ajouter une langue"
1288
  #~ msgstr "se termine le"
1289
 
1290
  #~ msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
1291
- #~ msgstr "et vous ne diposerez plus du support rapide et des mises à jour."
1292
-
1293
- #~ msgid "Restore all plugin settings to defaults"
1294
- #~ msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
1295
-
1296
- #~ msgid "Restore settings"
1297
- #~ msgstr "Remettre les paramètres"
1298
-
1299
- #~ msgid "Are you sure you want to restore all settings by default?"
1300
- #~ msgstr "Etes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
1301
-
1302
- #~ msgid "Yes, restore all settings"
1303
- #~ msgstr "Oui, remettre les valeurs par défaut"
1304
-
1305
- #~ msgid "No, go back to the settings page"
1306
- #~ msgstr "Non, retourner à la page des paramètres"
1307
-
1308
- #~ msgid "Not set"
1309
- #~ msgstr "Not set"
1310
-
1311
- #~ msgid "On"
1312
- #~ msgstr "On"
1313
-
1314
- #~ msgid "Off"
1315
- #~ msgstr "Off"
1316
-
1317
- #~ msgid "N/A"
1318
- #~ msgstr "N/A"
1319
 
1320
- #~ msgid " Mb"
1321
- #~ msgstr " Mb"
1322
-
1323
- #~ msgid "Yes"
1324
- #~ msgstr "Yes"
1325
-
1326
- #~ msgid "No"
1327
- #~ msgstr "No"
1328
-
1329
- #~ msgid "Operating System"
1330
- #~ msgstr "Operating System"
1331
-
1332
- #~ msgid "Server"
1333
- #~ msgstr "Server"
1334
-
1335
- #~ msgid "Memory usage"
1336
- #~ msgstr "Memory usage"
1337
-
1338
- #~ msgid "MYSQL Version"
1339
- #~ msgstr "MYSQL Version"
1340
-
1341
- #~ msgid "SQL Mode"
1342
- #~ msgstr "SQL Mode"
1343
-
1344
- #~ msgid "PHP Version"
1345
- #~ msgstr "PHP Version"
1346
-
1347
- #~ msgid "PHP Safe Mode"
1348
- #~ msgstr "PHP Safe Mode"
1349
-
1350
- #~ msgid "PHP Allow URL fopen"
1351
- #~ msgstr "PHP Allow URL fopen"
1352
-
1353
- #~ msgid "PHP Memory Limit"
1354
- #~ msgstr "PHP Memory Limit"
1355
 
1356
- #~ msgid "PHP Max Upload Size"
1357
- #~ msgstr "PHP Max Upload Size"
1358
 
1359
- #~ msgid "PHP Max Post Size"
1360
- #~ msgstr "PHP Max Post Size"
1361
 
1362
- #~ msgid "PHP Max Script Execute Time"
1363
- #~ msgstr "PHP Max Script Execute Time"
1364
 
1365
- #~ msgid "PHP Exif support"
1366
- #~ msgstr "PHP Exif support"
1367
 
1368
- #~ msgid "PHP IPTC support"
1369
- #~ msgstr "PHP IPTC support"
1370
 
1371
- #~ msgid "PHP XML support"
1372
- #~ msgstr "PHP XML support"
1373
 
1374
- #~ msgid "Site URL"
1375
- #~ msgstr "Site URL"
 
 
 
 
1376
 
1377
- #~ msgid "Home URL"
1378
- #~ msgstr "Home URL"
1379
 
1380
- #~ msgid "WordPress Version"
1381
- #~ msgstr "WordPress Version"
1382
 
1383
- #~ msgid "WordPress DB Version"
1384
- #~ msgstr "WordPress DB Version"
1385
 
1386
- #~ msgid "Multisite"
1387
- #~ msgstr "Multisite"
1388
 
1389
- #~ msgid "Active Theme"
1390
- #~ msgstr "Active Theme"
1391
 
1392
- #~ msgid "Please enter a valid email address."
1393
- #~ msgstr "Merci de saisir une adresse e-mail valide."
1394
 
1395
- #~ msgid "Email with system info is sent to "
1396
- #~ msgstr "Le courriel avec les informations système est envoyé à"
1397
 
1398
- #~ msgid "Need help?"
1399
- #~ msgstr "Besoin d'aide ?"
1400
 
1401
- #~ msgid "Client area"
1402
- #~ msgstr "Espace client"
1403
 
1404
- #~ msgid "System status"
1405
- #~ msgstr "System status"
1406
 
1407
- #~ msgid "Plugins"
1408
- #~ msgstr "Extensions"
1409
 
1410
- #~ msgid "Themes"
1411
- #~ msgstr "Thèmes"
1412
 
1413
- #~ msgid "All"
1414
- #~ msgstr "Tous"
1415
 
1416
- #~ msgid "Installed"
1417
- #~ msgstr "Installé"
1418
 
1419
- #~ msgid "Recommended"
1420
- #~ msgstr "Recommandés"
1421
 
1422
- #~ msgid "Installed plugins"
1423
- #~ msgstr "Extension installée"
1424
 
1425
- #~ msgid "Activate this plugin"
1426
- #~ msgstr "Activer cette extension"
1427
 
1428
- #~ msgid "DONATE"
1429
- #~ msgstr "Faire un don"
1430
-
1431
- #~ msgid "Recommended plugins"
1432
- #~ msgstr "Extensions recommandées"
1433
-
1434
- #~ msgid "Install now"
1435
- #~ msgstr "Installer maintenant"
1436
-
1437
- #~ msgid "Try again"
1438
- #~ msgstr "Essayer de nouveau"
1439
-
1440
- #~ msgid "Preview &#8220;%s&#8221;"
1441
- #~ msgstr "Pré-visualiser &#8220;%s&#8221;"
1442
-
1443
- #~ msgid "Install %s"
1444
- #~ msgstr "%s installé"
1445
-
1446
- #~ msgid "Install Now"
1447
- #~ msgstr "Installer maintenant"
1448
 
1449
- #~ msgid "Update to version %s"
1450
- #~ msgstr "Mettre à jour pour la version %s"
 
 
 
 
1451
 
1452
- #~ msgid "Update"
1453
- #~ msgstr "Mettre à jour"
 
 
 
 
1454
 
1455
- #~ msgid "This theme is already installed and is up to date"
1456
- #~ msgstr "Le thème est déjà en place et est à jour."
1457
 
1458
- #~ msgid "Preview %s"
1459
- #~ msgstr "Pré-visualiser %s"
 
 
 
 
1460
 
1461
- #~ msgid "Preview"
1462
- #~ msgstr "Pré-visualiser"
 
1463
 
1464
- #~ msgid "By %s"
1465
- #~ msgstr "Par %s"
 
 
 
 
1466
 
1467
- #~ msgid "Details"
1468
- #~ msgstr "Détails"
1469
 
1470
- #~ msgid "Already Installed"
1471
- #~ msgstr "Déjà installé"
1472
 
1473
- #~ msgid "Environment"
1474
- #~ msgstr "Environment"
1475
 
1476
- #~ msgid "Active Plugins"
1477
- #~ msgstr "Extensions actives"
1478
 
1479
- #~ msgid "Inactive Plugins"
1480
- #~ msgstr "Extensions inactives"
1481
 
1482
- #~ msgid "Send to support"
1483
- #~ msgstr "Envoyé au support"
1484
 
1485
- #~ msgid "Send to custom email &#187;"
1486
- #~ msgstr "Envoyer un e-mail spécifique &#187;"
1487
 
1488
  #~ msgid "powered by"
1489
  #~ msgstr "fournis par"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: contact-form-plugin\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-11-26 17:58+0300\n"
6
+ "PO-Revision-Date: 2015-11-26 17:58+0300\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
  "Language: fr_FR\n"
18
  "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: contact_form.php:37 contact_form.php:827
22
  msgid "Contact Form Settings"
23
+ msgstr "Options du formulaire de contact"
24
 
25
  #: contact_form.php:37
26
  msgid "Contact Form"
27
  msgstr "Formulaire de contact"
28
 
29
+ #: contact_form.php:165 contact_form.php:1281 contact_form.php:1315
30
  msgid "Name:"
31
  msgstr "Nom&nbsp;:"
32
 
33
+ #: contact_form.php:166 contact_form.php:1282 contact_form.php:1316
34
  msgid "Address:"
35
  msgstr "Adresse&nbsp;:"
36
 
37
+ #: contact_form.php:167 contact_form.php:1283 contact_form.php:1317
38
  msgid "Email Address:"
39
  msgstr "Adresse e-mail&nbsp;:"
40
 
41
+ #: contact_form.php:168 contact_form.php:1284 contact_form.php:1318
42
  msgid "Phone number:"
43
  msgstr "Téléphone&nbsp;:"
44
 
45
+ #: contact_form.php:169 contact_form.php:1285 contact_form.php:1319
46
  msgid "Subject:"
47
  msgstr "Sujet&nbsp;:"
48
 
49
+ #: contact_form.php:170 contact_form.php:1286 contact_form.php:1320
50
  msgid "Message:"
51
  msgstr "Message&nbsp;:"
52
 
53
+ #: contact_form.php:171 contact_form.php:1287 contact_form.php:1321
54
  msgid "Attachment:"
55
  msgstr "Pièce jointe&nbsp;:"
56
 
60
  "EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, MP3, PPT. Max "
61
  "file size: 2MB"
62
  msgstr ""
63
+ "Types de fichiers autorisés&nbsp;: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, "
64
+ "TIFF, BMP, AI, EPS, PS, CSV, RTF, PDF, DOC, DOCX, XLS, XLSX, ZIP, RAR, WAV, "
65
+ "MP3, PPT. Taille maximum 2MB"
66
 
67
+ #: contact_form.php:173 contact_form.php:1289 contact_form.php:1323
68
  msgid "Send me a copy"
69
  msgstr "M'envoyer une copie"
70
 
71
+ #: contact_form.php:174 contact_form.php:1290 contact_form.php:1324
72
  msgid "Submit"
73
  msgstr "Envoyer"
74
 
124
  msgid "Thank you for contacting us."
125
  msgstr "Merci de nous avoir contacté."
126
 
127
+ #: contact_form.php:533 contact_form.php:803
128
  msgid "Settings saved."
129
  msgstr "Options enregistrées."
130
 
131
+ #: contact_form.php:743
132
  msgid ""
133
  "Email 'FROM' field option was changed, which may cause email messages being "
134
  "moved to the spam folder or email delivery failures."
135
  msgstr ""
136
  "L'option pour le champ 'From' des courriels a été modifiée, cela peut "
137
+ "entraîner un classement des messages dans les dossiers spam ou bien une "
138
  "erreur d'acheminement peut survenir."
139
 
140
+ #: contact_form.php:753
141
  msgid ""
142
  "If the 'Redirect to page' option is selected then the URL field should be in "
143
  "the following format"
144
  msgstr ""
145
+ "Si l’option 'Rediriger vers la page' est positionnée, alors le champ Url "
146
  "doit être rempli avec le format suivant"
147
 
148
+ #: contact_form.php:762
149
  msgid "Such user does not exist."
150
  msgstr "Cet utilisateur est inconnu."
151
 
152
+ #: contact_form.php:772
153
  msgid ""
154
  "Please enter a valid email address in the 'Use this email address' field."
155
  msgstr ""
156
  "Merci de saisir une adresse e-mail valide pour le champ 'Utiliser cette "
157
  "adresse e-mail'."
158
 
159
+ #: contact_form.php:780
160
  msgid "Please enter a valid email address in the 'FROM' field."
161
  msgstr "Merci de saisir une adresse e-mail valide pour le champ 'FROM'."
162
 
163
+ #: contact_form.php:805
164
  msgid "Settings are not saved."
165
  msgstr "Paramètres non enregistrées."
166
 
167
+ #: contact_form.php:824
168
  msgid "All plugin settings were restored."
169
  msgstr "Remettre les valeurs par défaut des paramètres de l'extension."
170
 
171
+ #: contact_form.php:829
172
  msgid "How to Use Step-by-step Instruction"
173
+ msgstr "Mode d'emploi pas à pas"
174
 
175
+ #: contact_form.php:832 contact_form.php:2667 contact_form.php:2681
176
  msgid "Settings"
177
  msgstr "Réglages"
178
 
179
+ #: contact_form.php:833
180
  msgid "Additional settings"
181
  msgstr "Options supplémentaires"
182
 
183
+ #: contact_form.php:834
184
  msgid "Appearance"
185
  msgstr "Aspect"
186
 
187
+ #: contact_form.php:835
188
  msgid "Go PRO"
189
  msgstr "Choisir la version PRO"
190
 
191
+ #: contact_form.php:841
 
192
  msgid ""
193
  "Please enable JavaScript to add language in the contact form, change the "
194
  "names of the contact form fields and error messages."
195
  msgstr ""
196
+ "Merci d'activer le java-script pour ajouter une nouvelle langue au "
197
+ "formulaire de contact, changer les noms des champs et les messages d'erreur."
198
 
199
+ #: contact_form.php:841 contact_form.php:1447 contact_form.php:1456
200
  msgid "Form layout"
201
+ msgstr "Structure du formulaire"
202
 
203
+ #: contact_form.php:841 contact_form.php:1447 contact_form.php:1468
 
204
  msgid "Submit position"
205
+ msgstr "Position du bouton soumettre"
206
 
207
+ #: contact_form.php:853
208
  msgid "Notice:"
209
  msgstr "Avertissement&nbsp;:"
210
 
211
+ #: contact_form.php:857
212
  msgid "NEW_FORM"
213
+ msgstr "Nouveau Formulaire"
214
 
215
+ #: contact_form.php:858
216
  msgid ""
217
  "If you want to create multiple contact forms, please install the Contact "
218
  "Form Multi plugin."
220
  "Si vous voulez créer plusieurs formulaire de contact, merci d'installer "
221
  "l'extension 'Contact Form Multi'"
222
 
223
+ #: contact_form.php:867
224
+ #, php-format
225
  msgid ""
226
  "If you would like to add a Contact Form to your page or post, please use %s "
227
  "button"
228
  msgstr ""
229
+ "Si vous souhaitez ajouter un formulaire de contact à votre page ou votre "
230
+ "article, merci d’utiliser le bouton %s"
231
 
232
+ #: contact_form.php:873
233
  #, php-format
234
  msgid ""
235
  "You can add the Contact Form to your page or post by clicking on %s button "
237
  "displayed, please use the shortcode %s or %s where * stands for Contact Form "
238
  "language."
239
  msgstr ""
240
+ "Vous pouvez ajouter le formulaire de contact sur une page ou un article en "
241
+ "utilisant le bouton %s dans l'éditeur de contenu en mode visuel. Si le "
242
+ "bouton n'est pas affiché, merci d'utiliser le code court %s ou %s où * est à "
243
+ "remplacer par la langue du formulaire de contact."
244
 
245
+ #: contact_form.php:882
246
  msgid ""
247
  "If you leave the fields empty, the messages will be sent to the email "
248
  "address specified during registration."
250
  "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à "
251
  "l'adresse spécifiée lors de l'enregistrement."
252
 
253
+ #: contact_form.php:885
254
  msgid "The user's email address:"
255
  msgstr "Utiliser l'e-mail du compte WordPress&nbsp;:"
256
 
257
+ #: contact_form.php:889
258
  msgid "Select a username"
259
  msgstr "Choisir un nom d'utilisateur"
260
 
261
+ #: contact_form.php:902
262
  msgid ""
263
  "Enter a username of the person who should get the messages from the contact "
264
  "form."
266
  "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le "
267
  "formulaire de contact."
268
 
269
+ #: contact_form.php:906
270
  msgid "Use this email address:"
271
  msgstr "Utiliser cette adresse e-mail&nbsp;:"
272
 
273
+ #: contact_form.php:910
274
  msgid "Enter the email address you want the messages forwarded to."
275
  msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
276
 
277
+ #: contact_form.php:917 contact_form.php:1203 contact_form.php:1395
278
+ #: contact_form.php:1483 contact_form.php:2758
279
  msgid "Close"
280
  msgstr "Fermer"
281
 
282
+ #: contact_form.php:921
283
  msgid "Add department selectbox to the contact form:"
284
  msgstr ""
285
  "Ajouter la liste déroulante pour le département dans le formulaire de "
286
  "contact&nbsp;:"
287
 
288
+ #: contact_form.php:929 contact_form.php:1212 contact_form.php:1414
289
+ #: contact_form.php:1641
290
  msgid "If you upgrade to Pro version all your settings will be saved."
291
  msgstr ""
292
  "Si vous passez à la version Pro, tous ces paramètres seront enregistrés."
293
 
294
+ #: contact_form.php:936 contact_form.php:1138 contact_form.php:1217
295
+ #: contact_form.php:1421 contact_form.php:1648
 
296
  msgid "Unlock premium options by upgrading to Pro version"
297
+ msgstr "Débloquer les options premium en migrant vers la version PRO."
298
 
299
+ #: contact_form.php:939 contact_form.php:1141 contact_form.php:1220
300
+ #: contact_form.php:1424 contact_form.php:1651 contact_form.php:2957
301
  msgid "Learn More"
302
  msgstr "Lire la suite"
303
 
304
+ #: contact_form.php:947
305
  msgid "Save emails to the database"
306
  msgstr "Enregistrer les e-mails dans la base de données"
307
 
308
+ #: contact_form.php:952
309
  msgid "Using"
310
  msgstr "Utilisant"
311
 
312
+ #: contact_form.php:955 contact_form.php:959
313
  msgid "Using Contact Form to DB by BestWebSoft"
314
  msgstr "en utilisant l'extension Contact Form to DB de BestWebSoft"
315
 
316
+ #: contact_form.php:955
317
  msgid "Activate"
318
  msgstr "Activé"
319
 
320
+ #: contact_form.php:959
321
  msgid "Download"
322
  msgstr "Téléchargement"
323
 
324
+ #: contact_form.php:969
325
  msgid "What to use?"
326
+ msgstr "Quelle méthode d’envoi ?"
327
 
328
+ #: contact_form.php:974
329
  msgid "Wp-mail"
330
  msgstr "Wp-mail"
331
 
332
+ #: contact_form.php:976
333
  msgid "You can use the wp_mail function for mailing"
334
  msgstr ""
335
  "Pour envoyer le courriel, vous pouvez utiliser la fonction wp_mail de "
336
  "WordPress "
337
 
338
+ #: contact_form.php:979
339
  msgid "Mail"
340
  msgstr "E-mail"
341
 
342
+ #: contact_form.php:981
343
  msgid "To send mail you can use the php mail function"
344
  msgstr "Pour envoyer le courriel, vous pouvez utiliser la fonction mail de php"
345
 
346
+ #: contact_form.php:986
347
  msgid "'FROM' field"
348
  msgstr "Champ 'From'"
349
 
350
+ #: contact_form.php:988 contact_form.php:1054 contact_form.php:1507
351
+ #: contact_form.php:2453 contact_form.php:2489
352
  msgid "Name"
353
  msgstr "Nom"
354
 
355
+ #: contact_form.php:995
356
  msgid "User name"
357
+ msgstr "Nom de l’utilisateur"
358
 
359
+ #: contact_form.php:997
360
  msgid ""
361
  "The name of the user who fills the form will be used in the field 'From'."
362
  msgstr ""
363
  "Dans le champ 'FROM' du courriel, il sera utilisé l'adresse e-mail de "
364
+ "l’utilisateur qui rempli le formulaire."
365
 
366
+ #: contact_form.php:1003 contact_form.php:2464 contact_form.php:2496
367
  msgid "Email"
368
  msgstr "E-mail"
369
 
370
+ #: contact_form.php:1010
371
  msgid "User email"
372
+ msgstr "E-mail de l’utilisateur"
373
 
374
+ #: contact_form.php:1012
375
  msgid ""
376
  "The email address of the user who fills the form will be used in the field "
377
  "'From'."
378
  msgstr ""
379
  "Dans le champ 'FROM' du courriel, il sera utilisé l'adresse e-mail de "
380
+ "l’utilisateur qui rempli le formulaire."
381
 
382
+ #: contact_form.php:1016
383
  msgid ""
384
  "If this option is changed, email messages may be moved to the spam folder or "
385
  "email delivery failures may occur."
387
  "Si cette option est modifiée, les courriels pourront se retrouver classer "
388
  "dans le dossier spam ou bien une erreur d'acheminement peut survenir."
389
 
390
+ #: contact_form.php:1022
391
  msgid "Required symbol"
392
+ msgstr "Symbole obligatoire"
393
 
394
+ #: contact_form.php:1032
395
  msgid "Fields"
396
  msgstr "Champs"
397
 
398
+ #: contact_form.php:1033
399
  msgid "Used"
400
  msgstr "Utilisé"
401
 
402
+ #: contact_form.php:1034
403
  msgid "Required"
404
  msgstr "Obligatoire"
405
 
406
+ #: contact_form.php:1036
407
  msgid "Visible"
408
  msgstr "Visible"
409
 
410
+ #: contact_form.php:1037
411
  msgid "Disabled for editing"
412
  msgstr "Non actif pour l'édition"
413
 
414
+ #: contact_form.php:1038
415
  msgid "Field's default value"
416
  msgstr "Valeur par défaut du champ"
417
 
418
+ #: contact_form.php:1045
419
  msgid "Department selectbox"
420
  msgstr "Liste déroulante des localisations"
421
 
422
+ #: contact_form.php:1062
423
  msgid "Use User's name as a default value if the user is logged in."
424
  msgstr ""
425
  "Utiliser le nom de l'utilisateur comme valeur par défaut si un utilisateur "
426
  "est connecté."
427
 
428
+ #: contact_form.php:1063 contact_form.php:1097
429
  msgid ""
430
  "'Visible' and 'Disabled for editing' options will be applied only to logged-"
431
  "in users."
433
  "'Visible' et 'Inactif' pour modifier les options ne seront appliqués qu'aux "
434
  "utilisateurs connectés."
435
 
436
+ #: contact_form.php:1069
437
  msgid "Location selectbox"
438
  msgstr "Liste déroulante des localisations"
439
 
440
+ #: contact_form.php:1078 contact_form.php:1512 contact_form.php:2459
441
+ #: contact_form.php:2493
442
  msgid "Address"
443
  msgstr "Adresse"
444
 
445
+ #: contact_form.php:1088
446
  msgid "Email Address"
447
  msgstr "Adresse e-mail"
448
 
449
+ #: contact_form.php:1096
450
  msgid "Use User's email as a default value if the user is logged in."
451
  msgstr ""
452
  "Utiliser l'adresse e-mail de l'utilisateur comme valeur par défaut si un "
453
  "utilisateur est connecté."
454
 
455
+ #: contact_form.php:1102
456
  msgid "Phone number"
457
  msgstr "Téléphone"
458
 
459
+ #: contact_form.php:1112 contact_form.php:1527 contact_form.php:2474
460
+ #: contact_form.php:2502
461
  msgid "Subject"
462
  msgstr "Sujet"
463
 
464
+ #: contact_form.php:1122 contact_form.php:1531 contact_form.php:2477
465
+ #: contact_form.php:2504
466
  msgid "Message"
467
  msgstr "Message"
468
 
469
+ #: contact_form.php:1149
470
  msgid "Attachment block"
471
  msgstr "Bloc pièce jointe"
472
 
473
+ #: contact_form.php:1151
474
  msgid "Users can attach the following file formats"
475
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
476
 
477
+ #: contact_form.php:1166
478
  msgid "Add to the form"
479
  msgstr "Ajouter au formulaire"
480
 
481
+ #: contact_form.php:1171
482
  msgid "Tips below the Attachment"
483
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
484
 
485
+ #: contact_form.php:1180
486
  msgid "'Send me a copy' block"
487
  msgstr "Afficher le bloc \"M'envoyer une copie\""
488
 
489
+ #: contact_form.php:1193
490
  msgid "Activate captcha"
491
  msgstr "Activé le captcha"
492
 
493
+ #: contact_form.php:1197
494
  msgid "Download captcha"
495
  msgstr "Télécharger le captcha"
496
 
497
+ #: contact_form.php:1207
498
  msgid "Agreement checkbox"
499
  msgstr "Case à cocher pour valider le formulaire"
500
 
501
+ #: contact_form.php:1207
502
  msgid "Required checkbox for submitting the form"
503
  msgstr "Boite à cocher obligatoire pour la validation du formulaire."
504
 
505
+ #: contact_form.php:1208
506
  msgid "Optional checkbox"
507
  msgstr "Boite à cocher optionnelle"
508
 
509
+ #: contact_form.php:1208
510
  msgid "Optional checkbox, the results of which will be displayed in email"
511
  msgstr "Boite à cocher optionnelle, le résultat sera affiché dans le courriel"
512
 
513
+ #: contact_form.php:1229
514
  msgid "Delete an attachment file from the server after the email is sent"
515
  msgstr "Supprimer le fichier joint sur le serveur après l'envoie du courriel"
516
 
517
+ #: contact_form.php:1235
518
  msgid "Email in HTML format sending"
519
  msgstr "Courriel au format HTML"
520
 
521
+ #: contact_form.php:1239
522
  msgid "Display additional info in the email"
523
  msgstr "Afficher les informations complémentaires dans le courriel"
524
 
525
+ #: contact_form.php:1245 contact_form.php:2420 contact_form.php:2422
526
  msgid "Sent from (ip address)"
527
  msgstr "Envoyé de (adresse IP)"
528
 
529
+ #: contact_form.php:1245
530
  msgid "Example: Sent from (IP address):\t127.0.0.1"
531
+ msgstr "Exemple: Envoyé de (adresse IP)&nbsp;:\t127.0.0.1"
532
 
533
+ #: contact_form.php:1246 contact_form.php:2426 contact_form.php:2428
534
  msgid "Date/Time"
535
  msgstr "Date/Heure"
536
 
537
+ #: contact_form.php:1246
538
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
539
  msgstr "Exemple: Date/Heure&nbsp;:\tAoût 19, 2013 8:50pm"
540
 
541
+ #: contact_form.php:1247 contact_form.php:2432 contact_form.php:2434
542
  msgid "Sent from (referer)"
543
  msgstr "Envoyer de (référence)"
544
 
545
+ #: contact_form.php:1247
546
  msgid ""
547
  "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
548
  msgstr ""
549
  "Exemple&nbsp;: Envoyer de (referer) :\thttp://bestwebsoft.com/contacts/"
550
  "contact-us/"
551
 
552
+ #: contact_form.php:1248 contact_form.php:2438 contact_form.php:2440
553
  msgid "Using (user agent)"
554
  msgstr "Depuis (navigateur)"
555
 
556
+ #: contact_form.php:1248
557
  msgid ""
558
  "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) "
559
  "AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
562
  "WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 "
563
  "Safari/537.36"
564
 
565
+ #: contact_form.php:1253
566
  msgid "Language settings for the field names in the form"
567
  msgstr "Définition des langues pour les titres des champs"
568
 
569
+ #: contact_form.php:1262
570
  msgid "Add a language"
571
  msgstr "Ajouter une langue"
572
 
573
+ #: contact_form.php:1266
574
  msgid "Change the names of the contact form fields and error messages"
575
  msgstr ""
576
  "Modifier le texte pour les champs du formulaire de contact et les messages "
577
  "d'erreur"
578
 
579
+ #: contact_form.php:1271 contact_form.php:1358
580
  msgid "English"
581
  msgstr "Anglais"
582
 
583
+ #: contact_form.php:1279 contact_form.php:1313
584
  msgid "click to expand/hide the list"
585
  msgstr "cliquer pour voir/cacher la liste"
586
 
587
+ #: contact_form.php:1288 contact_form.php:1322
588
  msgid "Tips below the Attachment block"
589
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
590
 
591
+ #: contact_form.php:1291 contact_form.php:1325
592
  msgid "Error message for the Name field"
593
  msgstr "Message d'erreur pour le champ nom"
594
 
595
+ #: contact_form.php:1292 contact_form.php:1326
596
  msgid "Error message for the Address field"
597
  msgstr "Message d'erreur pour le champ Adresse"
598
 
599
+ #: contact_form.php:1293 contact_form.php:1327
600
  msgid "Error message for the Email field"
601
  msgstr "Message d'erreur pour le champ e-mail"
602
 
603
+ #: contact_form.php:1294 contact_form.php:1328
604
  msgid "Error message for the Phone field"
605
  msgstr "Message d'erreur pour le champ téléphone"
606
 
607
+ #: contact_form.php:1295 contact_form.php:1329
608
  msgid "Error message for the Subject field"
609
  msgstr "Message d'erreur pour le champ sujet"
610
 
611
+ #: contact_form.php:1296 contact_form.php:1330
612
  msgid "Error message for the Message field"
613
  msgstr "Message d'erreur pour le champ message"
614
 
615
+ #: contact_form.php:1297 contact_form.php:1331
616
  msgid "Error message about the file type for the Attachment field"
617
  msgstr "Message d'erreur pour le champ fichier joint (type du fichier)"
618
 
619
+ #: contact_form.php:1298 contact_form.php:1332
620
  msgid ""
621
  "Error message while uploading a file for the Attachment field to the server"
622
  msgstr ""
623
+ "Message d'erreur pour le champ fichier joint (problème d'envoi vers le "
624
  "serveur)"
625
 
626
+ #: contact_form.php:1299 contact_form.php:1333
627
  msgid "Error message while moving the file for the Attachment field"
628
  msgstr "Message d'erreur pour le champ fichier joint (déplacement du fichier)"
629
 
630
+ #: contact_form.php:1300 contact_form.php:1334
631
  msgid "Error message when file size limit for the Attachment field is exceeded"
632
  msgstr ""
633
  "Message d'erreur pour le champ fichier joint (taille limite du fichier "
634
  "atteinte)"
635
 
636
+ #: contact_form.php:1301 contact_form.php:1335
637
  msgid "Error message for the Captcha field"
638
  msgstr "Message d'erreur pour le captcha"
639
 
640
+ #: contact_form.php:1302 contact_form.php:1336
641
  msgid "Error message for the whole form"
642
  msgstr "Message d'erreur demandant à compléter les champs manquants"
643
 
644
+ #: contact_form.php:1305 contact_form.php:1307 contact_form.php:1339
645
+ #: contact_form.php:1341 contact_form.php:1368 contact_form.php:1370
646
+ #: contact_form.php:1378 contact_form.php:1380 contact_form.php:2813
647
+ #: contact_form.php:2815
648
  msgid "Use shortcode"
649
  msgstr "Utiliser le code court"
650
 
651
+ #: contact_form.php:1305 contact_form.php:1307 contact_form.php:1368
652
+ #: contact_form.php:1370
653
  msgid "or"
654
  msgstr "ou"
655
 
656
+ #: contact_form.php:1305 contact_form.php:1307 contact_form.php:1339
657
+ #: contact_form.php:1341 contact_form.php:1368 contact_form.php:1370
658
+ #: contact_form.php:1378 contact_form.php:1380 contact_form.php:2813
659
+ #: contact_form.php:2815
660
  msgid "for this language"
661
  msgstr "pour cette langue"
662
 
663
+ #: contact_form.php:1349
664
  msgid "Use the changed names of the contact form fields in the email"
665
  msgstr "Utiliser les noms des champs modifiés dans les courriels"
666
 
667
+ #: contact_form.php:1355
668
  msgid "Action after email is sent"
669
  msgstr "Action après l'envoie du courriel"
670
 
671
+ #: contact_form.php:1357
672
  msgid "Display text"
673
  msgstr "Afficher le texte"
674
 
675
+ #: contact_form.php:1366 contact_form.php:1376
676
  msgid "Text"
677
  msgstr "Texte"
678
 
679
+ #: contact_form.php:1387
680
  msgid "Redirect to the page"
681
  msgstr "Rediriger vers la page"
682
 
683
+ #: contact_form.php:1388
684
  msgid "Url"
685
  msgstr "Url"
686
 
687
+ #: contact_form.php:1399
688
  msgid "Add field 'Reply-To' to the email header"
689
+ msgstr "Ajouter le champ 'Répondre à/Reply-To' dans l'entête du courriel"
690
 
691
+ #: contact_form.php:1401
692
  msgid "Field 'Reply-To' will be initialized by user email"
693
  msgstr ""
694
+ "Le champ 'Répondre à/Reply-To' sera rempli avec l'adresse e-mail de "
695
+ "l'utilisateur"
696
 
697
+ #: contact_form.php:1405
698
  msgid "Auto Response"
699
  msgstr "Réponse automatique"
700
 
701
+ #: contact_form.php:1409
702
  #, php-format
703
  msgid ""
704
  "You can use %%NAME%% to display data from the email field and %%MESSAGE%% to "
709
  "%%MESSAGE%% pour afficher des données du champ message, de même %%SITENAME%% "
710
  "pour afficher le nom du site."
711
 
712
+ #: contact_form.php:1434 contact_form.php:1871
713
  msgid "Save Changes"
714
  msgstr "Enregistrer les modifications"
715
 
716
+ #: contact_form.php:1447
717
  #, php-format
718
  msgid ""
719
  "Please enable JavaScript to change '%s', '%s' options and for fields sorting."
720
  msgstr ""
721
+ "Merci d'activer le java-script pour modifier les options '%s', '%s' ainsi "
722
+ "que pour trier les champs."
723
 
724
+ #: contact_form.php:1460
725
  msgid "One column"
726
+ msgstr "Une colonne"
727
 
728
+ #: contact_form.php:1463
729
  msgid "Two columns"
730
+ msgstr "Deux colonnes"
731
 
732
+ #: contact_form.php:1472
733
  msgid "Left"
734
+ msgstr "Gauche"
735
 
736
+ #: contact_form.php:1475
737
  msgid "Right"
738
+ msgstr "Droite"
739
 
740
+ #: contact_form.php:1487
741
  msgid "Errors output"
742
  msgstr "Affichage des erreurs"
743
 
744
+ #: contact_form.php:1490
745
  msgid "Display error messages"
746
+ msgstr "Afficher les messages d'erreur"
747
 
748
+ #: contact_form.php:1491
749
  msgid "Color of the input field errors."
750
  msgstr "Mettre en couleur les champs ayant des erreurs"
751
 
752
+ #: contact_form.php:1492
753
  msgid "Display error messages & color of the input field errors"
754
  msgstr ""
755
  "Afficher les messages d'erreur et mettre en couleur les champs ayant des "
756
  "erreurs"
757
 
758
+ #: contact_form.php:1497
759
  msgid "Add placeholder to the input blocks"
760
  msgstr "Ajouter la localisation dans le bloc de saisie"
761
 
762
+ #: contact_form.php:1503
763
  msgid "Add tooltips"
764
  msgstr "Ajouter les conseils"
765
 
766
+ #: contact_form.php:1517
767
  msgid "Email address"
768
  msgstr "Adresse e-mail"
769
 
770
+ #: contact_form.php:1522
771
  msgid "Phone Number"
772
  msgstr "Téléphone"
773
 
774
+ #: contact_form.php:1536
775
  msgid "Attachment"
776
  msgstr "Pièce jointe"
777
 
778
+ #: contact_form.php:1548
779
  msgid "Style options"
780
  msgstr "Options de style"
781
 
782
+ #: contact_form.php:1552
783
  msgid "Text color"
784
  msgstr "Couleur du texte"
785
 
786
+ #: contact_form.php:1555 contact_form.php:1560 contact_form.php:1570
787
+ #: contact_form.php:1575 contact_form.php:1580 contact_form.php:1585
788
+ #: contact_form.php:1595 contact_form.php:1600 contact_form.php:1609
789
+ #: contact_form.php:1623 contact_form.php:1628 contact_form.php:1633
790
  msgid "Default"
791
  msgstr "Défaut"
792
 
793
+ #: contact_form.php:1557
794
  msgid "Label text color"
795
  msgstr "Couleur des textes des intitulés"
796
 
797
+ #: contact_form.php:1562
798
  msgid "Placeholder color"
799
  msgstr "Couleur pour la localisation"
800
 
801
+ #: contact_form.php:1567
802
  msgid "Errors color"
803
  msgstr "Couleur pour les erreurs"
804
 
805
+ #: contact_form.php:1572
806
  msgid "Error text color"
807
  msgstr "Couleur pour le texte des erreurs"
808
 
809
+ #: contact_form.php:1577
810
  msgid "Background color of the input field errors"
811
  msgstr "Couleur de fond pour les erreurs de saisie dans les champs"
812
 
813
+ #: contact_form.php:1582
814
  msgid "Border color of the input field errors"
815
  msgstr "Couleur de la bordure pour les erreurs de saisie dans les champs"
816
 
817
+ #: contact_form.php:1587
818
  msgid "Placeholder color of the input field errors"
819
  msgstr "Couleur pour la localisation lors d'une erreur de saisie du champ"
820
 
821
+ #: contact_form.php:1592
822
  msgid "Input fields"
823
  msgstr "Champs de saisie"
824
 
825
+ #: contact_form.php:1597
826
  msgid "Input fields background color"
827
  msgstr "Couleur de fond pour les champs de saisie"
828
 
829
+ #: contact_form.php:1602
830
  msgid "Text fields color"
831
  msgstr "Couleur pour les textes des champs de saisie"
832
 
833
+ #: contact_form.php:1606
834
  msgid "Border width in px, numbers only"
835
  msgstr "Largeur des bordures en px, nombre seulement"
836
 
837
+ #: contact_form.php:1611 contact_form.php:1635
838
  msgid "Border color"
839
  msgstr "Couleur des bordures"
840
 
841
+ #: contact_form.php:1616
842
  msgid "Submit button"
843
  msgstr "Bouton Envoyer"
844
 
845
+ #: contact_form.php:1620
846
  msgid "Width in px, numbers only"
847
  msgstr "Largeur en px, nombre seulement"
848
 
849
+ #: contact_form.php:1625
850
  msgid "Button color"
851
  msgstr "Couleur du bouton"
852
 
853
+ #: contact_form.php:1630
854
  msgid "Button text color"
855
  msgstr "Couleur du texte du bouton"
856
 
857
+ #: contact_form.php:1662
 
858
  msgid "Contact Form | Preview"
859
+ msgstr "Formulaire de Contact | Prévisualisation"
860
 
861
+ #: contact_form.php:1663
862
  msgid "Drag the necessary field to sort fields."
863
+ msgstr "Déposer les champs nécessaires dans la liste des tris."
864
 
865
+ #: contact_form.php:1858
866
  msgid ""
867
  "If you would like to add the Contact Form to your website, just copy and "
868
  "paste this shortcode to your post or page or widget:"
870
  "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez "
871
  "juste ce code dans un article ou sur une page ou un widget&nbsp;:"
872
 
873
+ #: contact_form.php:1958
874
  msgid "Sorry, email message could not be delivered."
875
  msgstr "Désolé, votre courriel n'a pas pu être envoyé."
876
 
877
+ #: contact_form.php:2447
878
  msgid "Contact from"
879
  msgstr "Contact de"
880
 
881
+ #: contact_form.php:2469 contact_form.php:2499
882
  msgid "Phone"
883
  msgstr "Téléphone"
884
 
885
+ #: contact_form.php:2480 contact_form.php:2506
886
  msgid "Site"
887
  msgstr "Site"
888
 
889
+ #: contact_form.php:2599
890
  msgid ""
891
  "If you can see this MIME, it means that the MIME type is not supported by "
892
  "your email client!"
894
  "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de "
895
  "MIME !"
896
 
897
+ #: contact_form.php:2682
898
  msgid "FAQ"
899
  msgstr "FAQ"
900
 
901
+ #: contact_form.php:2683
902
  msgid "Support"
903
  msgstr "Support"
904
 
905
+ #: contact_form.php:2732
906
  msgid "Are you sure that you want to delete this language data?"
907
+ msgstr "Êtes vous sûr de vouloir supprimer cette langue ?"
908
 
909
+ #: contact_form.php:2749
910
  msgid "Add multiple forms"
911
  msgstr "Ajouter plusieurs formulaires"
912
 
913
+ #: contact_form.php:2749
914
  msgid ""
915
  "Install Contact Form Multi plugin to create unlimited number of contact "
916
  "forms."
918
  "Installer l'extension 'Contact Form Multi' pour créer un nombre infini de "
919
  "formulaires de contact."
920
 
921
+ #: contact_form.php:2754
922
  msgid "Learn more"
923
  msgstr "Lire la suite"
924
 
925
+ #: contact_form.php:2953
926
  msgid "allows to store your messages to the database."
927
  msgstr "permet d'enregistrer les messages dans la base de données."
928
 
929
+ #: contact_form.php:2954
930
  msgid "Manage messages that have been sent from your website."
931
  msgstr "Gérer les messages qui ont été envoyés depuis votre site."
932
 
933
+ #: contact_form.php:3014
 
934
  msgid "Contact form"
935
+ msgstr "Formulaire de contact"
936
 
937
+ #: contact_form.php:3027 contact_form.php:3038
 
938
  msgid "Language"
939
+ msgstr "Langue"
940
 
941
+ #~ msgid "Not set"
942
+ #~ msgstr "Not set"
 
 
 
 
943
 
944
+ #~ msgid "On"
945
+ #~ msgstr "On"
 
 
 
 
946
 
947
+ #~ msgid "Off"
948
+ #~ msgstr "Off"
949
 
950
+ #~ msgid "N/A"
951
+ #~ msgstr "N/A"
 
 
 
 
952
 
953
+ #~ msgid " Mb"
954
+ #~ msgstr " Mb"
 
955
 
956
+ #~ msgid "Yes"
957
+ #~ msgstr "Yes"
 
 
 
 
958
 
959
+ #~ msgid "No"
960
+ #~ msgstr "No"
 
 
 
 
 
961
 
962
+ #~ msgid "Operating System"
963
+ #~ msgstr "Operating System"
964
 
965
+ #~ msgid "Server"
966
+ #~ msgstr "Server"
967
 
968
+ #~ msgid "Memory usage"
969
+ #~ msgstr "Memory usage"
970
 
971
+ #~ msgid "MYSQL Version"
972
+ #~ msgstr "MYSQL Version"
973
 
974
+ #~ msgid "SQL Mode"
975
+ #~ msgstr "SQL Mode"
976
 
977
+ #~ msgid "PHP Version"
978
+ #~ msgstr "PHP Version"
979
 
980
+ #~ msgid "PHP Safe Mode"
981
+ #~ msgstr "PHP Safe Mode"
982
 
983
+ #~ msgid "PHP Allow URL fopen"
984
+ #~ msgstr "PHP Allow URL fopen"
985
 
986
+ #~ msgid "PHP Memory Limit"
987
+ #~ msgstr "PHP Memory Limit"
988
 
989
+ #~ msgid "PHP Max Upload Size"
990
+ #~ msgstr "PHP Max Upload Size"
991
 
992
+ #~ msgid "PHP Max Post Size"
993
+ #~ msgstr "PHP Max Post Size"
 
 
 
 
994
 
995
+ #~ msgid "PHP Max Script Execute Time"
996
+ #~ msgstr "PHP Max Script Execute Time"
997
 
998
+ #~ msgid "PHP Exif support"
999
+ #~ msgstr "PHP Exif support"
1000
 
1001
+ #~ msgid "PHP IPTC support"
1002
+ #~ msgstr "PHP IPTC support"
1003
 
1004
+ #~ msgid "PHP XML support"
1005
+ #~ msgstr "PHP XML support"
1006
 
1007
+ #~ msgid "Site URL"
1008
+ #~ msgstr "Site URL"
1009
 
1010
+ #~ msgid "Home URL"
1011
+ #~ msgstr "Home URL"
 
1012
 
1013
+ #~ msgid "WordPress Version"
1014
+ #~ msgstr "WordPress Version"
 
 
1015
 
1016
+ #~ msgid "WordPress DB Version"
1017
+ #~ msgstr "WordPress DB Version"
1018
 
1019
+ #~ msgid "Multisite"
1020
+ #~ msgstr "Multisite"
 
1021
 
1022
+ #~ msgid "Active Theme"
1023
+ #~ msgstr "Active Theme"
1024
 
1025
+ #~ msgid "Please enter a valid email address."
1026
+ #~ msgstr "Merci de saisir une adresse e-mail valide."
 
 
 
 
 
1027
 
1028
+ #~ msgid "Email with system info is sent to "
1029
+ #~ msgstr "Le courriel avec les informations système est envoyé à"
1030
 
1031
+ #~ msgid "Need help?"
1032
+ #~ msgstr "Besoin d'aide ?"
1033
 
1034
+ #~ msgid "Client area"
1035
+ #~ msgstr "Espace client"
 
 
 
 
1036
 
1037
+ #~ msgid "System status"
1038
+ #~ msgstr "System status"
 
 
 
 
 
1039
 
1040
+ #~ msgid "Plugins"
1041
+ #~ msgstr "Extensions"
1042
+
1043
+ #~ msgid "Themes"
1044
+ #~ msgstr "Thèmes"
1045
+
1046
+ #~ msgid "All"
1047
+ #~ msgstr "Tous"
1048
+
1049
+ #~ msgid "Installed"
1050
+ #~ msgstr "Installé"
1051
+
1052
+ #~ msgid "Recommended"
1053
+ #~ msgstr "Recommandés"
1054
+
1055
+ #~ msgid "Installed plugins"
1056
+ #~ msgstr "Extension installée"
1057
+
1058
+ #~ msgid "Activate this plugin"
1059
+ #~ msgstr "Activer cette extension"
1060
+
1061
+ #~ msgid "Go"
1062
+ #~ msgstr "Passez"
1063
+
1064
+ #~ msgid "DONATE"
1065
+ #~ msgstr "Faire un don"
1066
+
1067
+ #~ msgid "Recommended plugins"
1068
+ #~ msgstr "Extensions recommandées"
1069
+
1070
+ #~ msgid "Install now"
1071
+ #~ msgstr "Installer maintenant"
1072
+
1073
+ #~ msgid "Try again"
1074
+ #~ msgstr "Essayer de nouveau"
1075
+
1076
+ #~ msgid "Preview &#8220;%s&#8221;"
1077
+ #~ msgstr "Pré-visualiser &#8220;%s&#8221;"
1078
+
1079
+ #~ msgid "Install %s"
1080
+ #~ msgstr "%s installé"
1081
+
1082
+ #~ msgid "Install Now"
1083
+ #~ msgstr "Installer maintenant"
1084
+
1085
+ #~ msgid "Update to version %s"
1086
+ #~ msgstr "Mettre à jour pour la version %s"
1087
+
1088
+ #~ msgid "Update"
1089
+ #~ msgstr "Mettre à jour"
1090
+
1091
+ #~ msgid "This theme is already installed and is up to date"
1092
+ #~ msgstr "Le thème est déjà en place et est à jour."
1093
+
1094
+ #~ msgid "Preview %s"
1095
+ #~ msgstr "Pré-visualiser %s"
1096
+
1097
+ #~ msgid "Preview"
1098
+ #~ msgstr "Pré-visualiser"
1099
+
1100
+ #~ msgid "By %s"
1101
+ #~ msgstr "Par %s"
1102
+
1103
+ #~ msgid "Details"
1104
+ #~ msgstr "Détails"
1105
+
1106
+ #~ msgid "Already Installed"
1107
+ #~ msgstr "Déjà installé"
1108
+
1109
+ #~ msgid "Environment"
1110
+ #~ msgstr "Environnent"
1111
+
1112
+ #~ msgid "Active Plugins"
1113
+ #~ msgstr "Extensions actives"
1114
+
1115
+ #~ msgid "Inactive Plugins"
1116
+ #~ msgstr "Extensions inactives"
1117
+
1118
+ #~ msgid "Send to support"
1119
+ #~ msgstr "Envoyé au support"
1120
+
1121
+ #~ msgid "Send to custom email &#187;"
1122
+ #~ msgstr "Envoyer un e-mail spécifique &#187;"
1123
+
1124
+ #~ msgid "requires"
1125
+ #~ msgstr "obligatoire"
1126
+
1127
+ #~ msgid ""
1128
+ #~ "or higher, that is why it has been deactivated! Please upgrade WordPress "
1129
+ #~ "and try again."
1130
+ #~ msgstr ""
1131
+ #~ "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise "
1132
+ #~ "à jour de WordPress puis de ré-essayer."
1133
+
1134
+ #~ msgid "Back to the WordPress"
1135
+ #~ msgstr "Retourner à WordPress"
1136
+
1137
+ #~ msgid "Plugins page"
1138
+ #~ msgstr "Page des extensions"
1139
+
1140
+ #~ msgid ""
1141
+ #~ "or higher! We do not guarantee that our plugin will work correctly. "
1142
+ #~ "Please upgrade to WordPress latest version."
1143
+ #~ msgstr ""
1144
+ #~ "ou plus! Nous ne garantissons pas que notre extension fonctionne "
1145
+ #~ "correctement. Merci de mettre à jour votre version de WordPress."
1146
+
1147
+ #~ msgid "It’s time to upgrade your"
1148
+ #~ msgstr "C'est le moment de mettre à jour votre "
1149
+
1150
+ #~ msgid "to"
1151
+ #~ msgstr "à"
1152
+
1153
+ #~ msgid "version!"
1154
+ #~ msgstr "version"
1155
+
1156
+ #~ msgid "Extend standard plugin functionality with new great options."
1157
+ #~ msgstr ""
1158
+ #~ "Étend les fonctionnalités de base de l'extension avec de nouvelles "
1159
+ #~ "options."
1160
+
1161
+ #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1162
+ #~ msgstr ""
1163
+ #~ "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans "
1164
+ #~ "Wordpress"
1165
+
1166
+ #~ msgid "Rate the plugin"
1167
+ #~ msgstr "Noter l'extension"
1168
+
1169
+ #~ msgid "If there is something wrong about it, please contact us"
1170
+ #~ msgstr ""
1171
+ #~ "Si quelque chose ne fonctionne pas correctement, merci de nous contacter"
1172
+
1173
+ #~ msgid "Check premium options on the plugin settings page!"
1174
+ #~ msgstr "Vérifier les options premium dans les paramètres de l'extension!"
1175
+
1176
+ #~ msgid "Wrong license key"
1177
+ #~ msgstr "Clé de licence incorrecte"
1178
+
1179
+ #~ msgid ""
1180
+ #~ "Something went wrong. Please try again later. If the error appears again, "
1181
+ #~ "please contact us"
1182
+ #~ msgstr ""
1183
+ #~ "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de "
1184
+ #~ "nouveau, merci de contacter <a href=http://support.bestwebsoft."
1185
+ #~ "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
1186
+
1187
+ #~ msgid "We are sorry for inconvenience."
1188
+ #~ msgstr "Nous sommes désolés pour le désagrément."
1189
+
1190
+ #~ msgid "This license key is bind to another site"
1191
+ #~ msgstr "La clé de licence correspond à un autre site."
1192
+
1193
+ #~ msgid ""
1194
+ #~ "Unfortunately, you have exceeded the number of available tries per day. "
1195
+ #~ "Please, upload the plugin manually."
1196
+ #~ msgstr ""
1197
+ #~ "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
1198
+ #~ "télécharger l'extension manuellement."
1199
+
1200
+ #~ msgid ""
1201
+ #~ "Unfortunately, Your license has expired. To continue getting top-priority "
1202
+ #~ "support and plugin updates you should extend it in your"
1203
+ #~ msgstr ""
1204
+ #~ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
1205
+ #~ "rapide et des mises à jour de l'extension vous devez la renouveler dans "
1206
+ #~ "votre"
1207
+
1208
+ #~ msgid ""
1209
+ #~ "Unfortunately, the Pro licence was already installed to this domain. The "
1210
+ #~ "Pro Trial license can be installed only once."
1211
+ #~ msgstr ""
1212
+ #~ "Une licence a déjà été installée sur ce domaine. La licence d'évaluation "
1213
  #~ "ne peut-être installée qu'une seule fois."
1214
 
1215
  #~ msgid ""
1227
  #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1228
  #~ "the plugin manually"
1229
  #~ msgstr ""
1230
+ #~ "Votre serveur n'a pas le support du format des archives ZIP ou Phar. "
1231
+ #~ "Merci de télécharger l'extension manuellement."
1232
 
1233
  #~ msgid "UploadDir is not writable. Please, upload the plugin manually"
1234
  #~ msgstr ""
1243
  #~ "l'extension manuellement.Nous sommes désolés pour le désagrément."
1244
 
1245
  #~ msgid "Please, enter Your license key"
1246
+ #~ msgstr "Merci de saisir votre clé de licence"
1247
 
1248
  #~ msgid ""
1249
+ #~ "Congratulations! The Pro version of the plugin is successfully download "
1250
  #~ "and activated."
1251
  #~ msgstr ""
1252
  #~ "Félicitations! La version PRO de cette extension a été téléchargée et "
1253
  #~ "activée avec succès."
1254
 
1255
  #~ msgid "Please, go to"
1256
+ #~ msgstr "Merci d’aller à"
1257
 
1258
  #~ msgid "the setting page"
1259
  #~ msgstr "Options supplémentaires"
1261
  #~ msgid "You will be redirected automatically in 5 seconds."
1262
  #~ msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
1263
 
1264
+ #~ msgid "Show Pro features"
1265
+ #~ msgstr "Voir les fonctionnalités PRO"
1266
+
1267
  #~ msgid "You can download and activate"
1268
  #~ msgstr "Vous pouvez la télécharger et l'activer"
1269
 
1304
  #~ "télécharger l'extension manuellement."
1305
 
1306
  #~ msgid ""
1307
+ #~ "Congratulations! The Pro license of the plugin is successfully activated."
1308
  #~ msgstr ""
1309
  #~ "Félicitations! La version PRO de cette extension a été téléchargée et "
1310
  #~ "activée avec succès."
1329
  #~ "télécharger l'extension manuellement."
1330
 
1331
  #~ msgid ""
1332
+ #~ "Unfortunately, the Pro Trial licence was already installed to this "
1333
+ #~ "domain. The Pro Trial license can be installed only once."
1334
  #~ msgstr ""
1335
+ #~ "Malheureusement la licence PRO a déjà été installée sur ce domaine. La "
1336
  #~ "licence PRO d'évaluation peut être installée une seule fois."
1337
 
1338
+ #~ msgid "The Pro Trial license key is valid."
1339
  #~ msgstr "La clé de licence d'évaluation est valide."
1340
 
1341
  #~ msgid "The license key is valid."
1384
  #~ "l'extension sera rendue inactive."
1385
 
1386
  #~ msgid ""
1387
+ #~ "Notice: Your Pro Trial license has expired. To continue using the plugin "
1388
+ #~ "you should buy a Pro license"
1389
  #~ msgstr ""
1390
  #~ "Information&nbsp;: Votre licence d'évaluation est terminée. Pour "
1391
+ #~ "continuer à disposer des fonctions premium vous devez acheter une licence."
 
1392
 
1393
  #~ msgid ""
1394
  #~ "Your license has expired. To continue getting top-priority support and "
1395
  #~ "plugin updates you should extend it."
1396
  #~ msgstr ""
1397
  #~ "Votre licence est terminée. Pour continuer à disposer du support rapide "
1398
+ #~ "et des mises à jour de l'extension vous devez la renouveler."
1399
 
1400
+ #~ msgid "Notice: You are using the Pro Trial license of %s plugin."
1401
  #~ msgstr ""
1402
  #~ "Avertissement&nbsp;: vous utilisez la version d'évaluation de l'extension "
1403
  #~ "%s."
1404
 
1405
+ #~ msgid "Notice: You are using the Pro Trial license of plugin."
1406
  #~ msgstr ""
1407
  #~ "Avertissement&nbsp;: vous utilisez la version d'évaluation de l'extension."
1408
 
1409
+ #~ msgid "The Pro Trial license will expire on"
1410
  #~ msgstr "Votre licence se termine le"
1411
 
1412
  #~ msgid "You license for"
1416
  #~ msgstr "se termine le"
1417
 
1418
  #~ msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
1419
+ #~ msgstr "et vous ne disposerez plus du support rapide et des mises à jour."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1420
 
1421
+ #~ msgid "Thank you for installing"
1422
+ #~ msgstr "Merci d'avoir installé"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1423
 
1424
+ #~ msgid "Let's get started"
1425
+ #~ msgstr "C'est parti"
1426
 
1427
+ #~ msgid "Configure Settings"
1428
+ #~ msgstr "Options du formulaire de Contact"
1429
 
1430
+ #~ msgid "Add New"
1431
+ #~ msgstr "Ajouter un nouveau"
1432
 
1433
+ #~ msgid "Close notice"
1434
+ #~ msgstr "Fermer l'avertissement"
1435
 
1436
+ #~ msgid "Notice"
1437
+ #~ msgstr "Avertissement"
1438
 
1439
+ #~ msgid "The plugin's settings have been changed."
1440
+ #~ msgstr "Les paramètres de l'extension ont été modifiés."
1441
 
1442
+ #~ msgid ""
1443
+ #~ "You can always look at premium options by clicking on the \"Show Pro "
1444
+ #~ "features\" in the \"Go PRO\" tab"
1445
+ #~ msgstr ""
1446
+ #~ "Vous pouvez toujours consulter les options premium en cliquant sur \"Voir "
1447
+ #~ "les fonctionnalités PRO\" dans l'onglet \"Passer PRO\""
1448
 
1449
+ #~ msgid "Add BWS Plugins Shortcode"
1450
+ #~ msgstr "Ajouter un code court de l'extension BWS"
1451
 
1452
+ #~ msgid "Add shortcode"
1453
+ #~ msgstr "Ajouter le code court"
1454
 
1455
+ #~ msgid "Add BestWebSoft plugins' shortcodes using this button."
1456
+ #~ msgstr "Ajouter le code court de l'extension BWS avec ce bouton."
1457
 
1458
+ #~ msgid "Restore all plugin settings to defaults"
1459
+ #~ msgstr "Remettre les valeurs par défaut des paramètres de l'extension"
1460
 
1461
+ #~ msgid "Restore settings"
1462
+ #~ msgstr "Remettre les paramètres"
1463
 
1464
+ #~ msgid "Are you sure you want to restore all settings by default?"
1465
+ #~ msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
1466
 
1467
+ #~ msgid "Yes, restore all settings"
1468
+ #~ msgstr "Oui, remettre les valeurs par défaut"
1469
 
1470
+ #~ msgid "No, go back to the settings page"
1471
+ #~ msgstr "Non, retourner à la page des paramètres"
1472
 
1473
+ #~ msgid "Plugin"
1474
+ #~ msgstr "Extension"
1475
 
1476
+ #~ msgid "Shortcode settings"
1477
+ #~ msgstr "Paramètres du code court"
1478
 
1479
+ #~ msgid "The shortcode will be inserted"
1480
+ #~ msgstr "Le code court va être inséré"
1481
 
1482
+ #~ msgid "Insert"
1483
+ #~ msgstr "Insérer"
1484
 
1485
+ #~ msgid "Visit Help Center"
1486
+ #~ msgstr "Visiter le site du support"
1487
 
1488
+ #~ msgid "For more information:"
1489
+ #~ msgstr "Pour plus d'informations:"
1490
 
1491
+ #~ msgid "Documentation"
1492
+ #~ msgstr "Documentation"
1493
 
1494
+ #~ msgid "Video Instructions"
1495
+ #~ msgstr "Mode d'emploi en vidéo"
1496
 
1497
+ #~ msgid "Submit a Request"
1498
+ #~ msgstr "Envoyer une requête"
1499
 
1500
+ #~ msgid ""
1501
+ #~ "The plugin's settings have been changed. In order to save them please "
1502
+ #~ "don't forget to click the 'Save Changes' button."
1503
+ #~ msgstr ""
1504
+ #~ "Les paramètres de l'extension ont été changés. Afin de pouvoir les "
1505
+ #~ "enregistrer, merci de cliquer sur le bouton 'Enregistrer les "
1506
+ #~ "modifications'."
 
 
 
 
 
 
 
 
 
 
 
 
 
1507
 
1508
+ #~ msgid ""
1509
+ #~ "If you would like to add Contact Form to your website, just copy and "
1510
+ #~ "paste this shortcode to your post or page or widget:"
1511
+ #~ msgstr ""
1512
+ #~ "Si vous souhaiter ajouter un formulaire de contact à votre site web, "
1513
+ #~ "copiez juste ce code dans un article ou sur une page ou un widget&nbsp;:"
1514
 
1515
+ #~ msgid ""
1516
+ #~ "If you have any problems with the standard shortcode [contact_form], you "
1517
+ #~ "should use the shortcode"
1518
+ #~ msgstr ""
1519
+ #~ "Si vous avez un soucis avec le code court standard [contact_form], vous "
1520
+ #~ "pouvez utilisez le code court "
1521
 
1522
+ #~ msgid "They work the same way."
1523
+ #~ msgstr "Ils fonctionnent de la même manière."
1524
 
1525
+ #~ msgid ""
1526
+ #~ "If have any problems with the standard shortcode [contact_form], you "
1527
+ #~ "should use the shortcode"
1528
+ #~ msgstr ""
1529
+ #~ "Si vous avez un soucis avec le code court standard [contact_form], vous "
1530
+ #~ "pouvez utilisez le code court "
1531
 
1532
+ #~ msgid "The $_SERVER variable that is used to build a URL of the form"
1533
+ #~ msgstr ""
1534
+ #~ "La variable $_SERVER qui est utilisée pour construire l'URL du formulaire"
1535
 
1536
+ #~ msgid ""
1537
+ #~ "If you are not sure whether to change this setting or not, please do not "
1538
+ #~ "do that."
1539
+ #~ msgstr ""
1540
+ #~ "Si vous n'êtes pas sûr de ce que vous faites, merci de ne pas toucher ce "
1541
+ #~ "paramètre."
1542
 
1543
+ #~ msgid "Show with errors"
1544
+ #~ msgstr "Afficher avec les erreurs"
1545
 
1546
+ #~ msgid "Please enter your full name..."
1547
+ #~ msgstr "Merci de saisir votre nom..."
1548
 
1549
+ #~ msgid "Please enter your address..."
1550
+ #~ msgstr "Merci de saisir votre adresse..."
1551
 
1552
+ #~ msgid "Please enter your email address..."
1553
+ #~ msgstr "Merci de saisir votre adresse e-mail..."
1554
 
1555
+ #~ msgid "Please enter your phone number..."
1556
+ #~ msgstr "Merci de saisir votre numéro de téléphone..."
1557
 
1558
+ #~ msgid "Please enter subject..."
1559
+ #~ msgstr "Merci de saisir le sujet..."
1560
 
1561
+ #~ msgid "Please enter your message..."
1562
+ #~ msgstr "Merci de saisir votre message..."
1563
 
1564
  #~ msgid "powered by"
1565
  #~ msgstr "fournis par"
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
3
  Donate link: http://bestwebsoft.com/donate/
4
  Tags: Attachment, add contact form, add contact form add-on, add several contact forms, address form, best contact form, best cf, best contact form add-on, cnotact, conact, contact, contact button, contact form, contact form addon, contact form add-on, contact form parameters, contact form plugin, contact me, contacts, contacts form plugin, contcat, copy, request, send, send copy, several contact forms, contact us form, contactform, custom form, easy contact form, email, email form, file upload, form addons, form register, form registration, free feedback form, free form, free contact form, feedback, feedback form, form, free, forms plugin, forms, insert the shortcode, kontak form, online form, multi, multiple contact forms, multilingual, post feedback, request, send, simple contact form, send copy, send messages, shortcode, web-page feedback, web form, wordpress contact form, wp form, wordpress plugin, wp plugins
5
  Requires at least: 3.8
6
- Tested up to: 4.3.1
7
- Stable tag: 3.95
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -162,12 +162,18 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
162
  10. Enable the file attachement option to get important files from senders via contact form.
163
  11. Make any of the standard form fields required or not.
164
  12. Translate your contact form to any language with a simple language customizer.
165
- 13. Receive a copy of the email sent via the contact form.
166
- 14. Divide your contact form fields into columns and change 'Submit' button position.
167
  15. Re-order contact form fields using drag & drop interface.
168
 
169
  == Changelog ==
170
 
 
 
 
 
 
 
171
  = V3.95 - 02.11.2015 =
172
  * NEW : An ability to sort contact form fields was added.
173
  * NEW : An ability to displaying contact form in 2 columns.
@@ -597,6 +603,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
597
 
598
  == Upgrade Notice ==
599
 
 
 
 
600
  = V3.95 =
601
  An ability to sort contact form fields was added. An ability to displaying contact form in 2 columns. A button for contact form shortcode inserting to the content was added. The Dutch language file is added. The method of the URL obtaining in the attribute "action" of the contact form has been changed. The French language file is updated. Vulnerabilities with `$path_of_upload_file` and `$form_action` was fixed.
602
 
3
  Donate link: http://bestwebsoft.com/donate/
4
  Tags: Attachment, add contact form, add contact form add-on, add several contact forms, address form, best contact form, best cf, best contact form add-on, cnotact, conact, contact, contact button, contact form, contact form addon, contact form add-on, contact form parameters, contact form plugin, contact me, contacts, contacts form plugin, contcat, copy, request, send, send copy, several contact forms, contact us form, contactform, custom form, easy contact form, email, email form, file upload, form addons, form register, form registration, free feedback form, free form, free contact form, feedback, feedback form, form, free, forms plugin, forms, insert the shortcode, kontak form, online form, multi, multiple contact forms, multilingual, post feedback, request, send, simple contact form, send copy, send messages, shortcode, web-page feedback, web form, wordpress contact form, wp form, wordpress plugin, wp plugins
5
  Requires at least: 3.8
6
+ Tested up to: 4.4
7
+ Stable tag: 3.96
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
162
  10. Enable the file attachement option to get important files from senders via contact form.
163
  11. Make any of the standard form fields required or not.
164
  12. Translate your contact form to any language with a simple language customizer.
165
+ 13. Receive a copy of the email sent via the contact form.
166
+ 14. Divide your contact form fields into columns and change 'Submit' button position.
167
  15. Re-order contact form fields using drag & drop interface.
168
 
169
  == Changelog ==
170
 
171
+ = V3.96 - 04.12.2015 =
172
+ * Bugfix : The bug with sorting on mobile devices was fixed.
173
+ * Bugfix : XSS vulnerability was removed.
174
+ * Bugfix : The bug with plugin menu duplicating was fixed.
175
+ * Update : The French language file is updated.
176
+
177
  = V3.95 - 02.11.2015 =
178
  * NEW : An ability to sort contact form fields was added.
179
  * NEW : An ability to displaying contact form in 2 columns.
603
 
604
  == Upgrade Notice ==
605
 
606
+ = V3.96 =
607
+ The bug with sorting on mobile devices was fixed. XSS vulnerability was removed. The bug with plugin menu duplicating was fixed. The French language file is updated.
608
+
609
  = V3.95 =
610
  An ability to sort contact form fields was added. An ability to displaying contact form in 2 columns. A button for contact form shortcode inserting to the content was added. The Dutch language file is added. The method of the URL obtaining in the attribute "action" of the contact form has been changed. The French language file is updated. Vulnerabilities with `$path_of_upload_file` and `$form_action` was fixed.
611