Contact Form by BestWebSoft - Version 3.78

Version Description

  • 20.05.2014 =
  • Update : We updated all functionality for wordpress 3.9.1.
  • Update : The French language file is updated.
  • NEW : The Spanish language file is added.
  • Bugfix : We fixed the bug of loading the user's list ( We have limited the list "The user's email address" on the settings page to the lowest role - author ).
Download this release

Release Info

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

Code changes from version 3.77 to 3.78

bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 1.2.7
5
  */
6
 
7
  if ( ! function_exists( 'bws_add_menu_render' ) ) {
@@ -198,7 +198,8 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
198
  'link' => 'http://bestwebsoft.com/plugin/sender/?k=89c297d14ba85a8417a0f2fc05e089c7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
199
  'download' => 'http://bestwebsoft.com/plugin/sender/?k=89c297d14ba85a8417a0f2fc05e089c7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
200
  'wp_install' => '/wp-admin/plugin-install.php?tab=search&s=Sender+Bestwebsoft&plugin-search-input=Search+Plugins',
201
- 'settings' => 'admin.php?page=sndr_settings'
 
202
  ),
203
  'subscriber/subscriber.php' => array(
204
  'name' => 'Subscriber',
@@ -233,6 +234,23 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
233
  'download' => 'http://bestwebsoft.com/plugin/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
234
  'wp_install' => '/wp-admin/plugin-install.php?tab=search&s=BestWebSoft+Google+Analytics&plugin-search-input=Search+Plugins',
235
  'settings' => 'admin.php?page=bws-google-analytics.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
236
  )
237
  );
238
  $bws_plugins_pro = array(
@@ -319,6 +337,20 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
319
  'link' => 'http://bestwebsoft.com/plugin/contact-form-multi-pro/?k=fde3a18581c143654f060c398b07e8ac&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
320
  'purchase' => 'http://bestwebsoft.com/plugin/contact-form-multi-pro/?k=fde3a18581c143654f060c398b07e8ac&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#purchase',
321
  'settings' => ''
 
 
 
 
 
 
 
 
 
 
 
 
 
 
322
  )
323
  );
324
 
@@ -684,8 +716,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
684
  } ?>
685
  <?php } elseif ( 'themes' == $_GET['action'] ) { ?>
686
  <div id="availablethemes">
687
- <?php
688
- global $tabs, $tab, $paged, $type, $theme_field_defaults;
689
  include( ABSPATH . 'wp-admin/includes/theme-install.php' );
690
  include( ABSPATH . 'wp-admin/includes/class-wp-themes-list-table.php' );
691
  include( ABSPATH . 'wp-admin/includes/class-wp-theme-install-list-table.php' );
@@ -708,75 +739,109 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
708
  'infinite_scroll' => true,
709
  ) );
710
  $themes = $theme_class->items;
711
- foreach ( $themes as $theme ) { ?>
712
- <div class="available-theme installable-theme"><?php
713
- global $themes_allowedtags;
714
- if ( empty( $theme ) )
715
- return;
 
716
 
717
- $name = wp_kses( $theme->name, $themes_allowedtags );
718
- $author = wp_kses( $theme->author, $themes_allowedtags );
719
- $preview_title = sprintf( __('Preview &#8220;%s&#8221;'), $name );
720
- $preview_url = add_query_arg( array(
721
- 'tab' => 'theme-information',
722
- 'theme' => $theme->slug,
723
- ), self_admin_url( 'theme-install.php' ) );
724
 
725
- $actions = array();
726
 
727
- $install_url = add_query_arg( array(
728
- 'action' => 'install-theme',
729
- 'theme' => $theme->slug,
730
- ), self_admin_url( 'update.php' ) );
731
 
732
- $update_url = add_query_arg( array(
733
- 'action' => 'upgrade-theme',
734
- 'theme' => $theme->slug,
735
- ), self_admin_url( 'update.php' ) );
736
 
737
- $status = 'install';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
738
  $installed_theme = wp_get_theme( $theme->slug );
739
- if ( $installed_theme->exists() ) {
740
- if ( version_compare( $installed_theme->get('Version'), $theme->version, '=' ) )
741
- $status = 'latest_installed';
742
- elseif ( version_compare( $installed_theme->get('Version'), $theme->version, '>' ) )
743
- $status = 'newer_installed';
744
- else
745
- $status = 'update_available';
746
- }
747
- switch ( $status ) {
748
- default:
749
- case 'install':
750
- $actions[] = '<a class="install-now" href="' . esc_url( wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Install %s' ), $name ) ) . '">' . __( 'Install Now' ) . '</a>';
751
- break;
752
- case 'update_available':
753
- $actions[] = '<a class="install-now" href="' . esc_url( wp_nonce_url( $update_url, 'upgrade-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Update to version %s' ), $theme->version ) ) . '">' . __( 'Update' ) . '</a>';
754
- break;
755
- case 'newer_installed':
756
- case 'latest_installed':
757
- $actions[] = '<span class="install-now" title="' . esc_attr__( 'This theme is already installed and is up to date' ) . '">' . _x( 'Installed', 'theme' ) . '</span>';
758
- break;
759
- }
760
- $actions[] = '<a class="install-theme-preview" href="' . esc_url( $preview_url ) . '" title="' . esc_attr( sprintf( __( 'Preview %s' ), $name ) ) . '">' . __( 'Preview' ) . '</a>';
761
- $actions = apply_filters( 'theme_install_actions', $actions, $theme ); ?>
762
- <a class="screenshot install-theme-preview" href="<?php echo esc_url( $preview_url ); ?>" title="<?php echo esc_attr( $preview_title ); ?>">
763
- <img src='<?php echo esc_url( $theme->screenshot_url ); ?>' width='150' />
764
- </a>
765
- <h3><?php echo $name; ?></h3>
766
- <div class="theme-author"><?php printf( __( 'By %s' ), $author ); ?></div>
767
- <div class="action-links">
768
- <ul>
769
- <?php foreach ( $actions as $action ): ?>
770
- <li><?php echo $action; ?></li>
771
- <?php endforeach; ?>
772
- <li class="hide-if-no-js"><a href="#" class="theme-detail"><?php _e('Details') ?></a></li>
773
- </ul>
774
  </div>
775
- <?php $theme_class->install_theme_info( $theme ); ?>
776
  </div>
777
- <?php }
778
- // end foreach $theme_names
779
- $theme_class->theme_installer(); ?>
780
  </div>
781
  <?php } elseif ( 'system_status' == $_GET['action'] ) { ?>
782
  <div class="updated fade" <?php if ( ! ( isset( $_REQUEST['bwsmn_form_submit'] ) || isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) ) || $error != "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 1.3.2
5
  */
6
 
7
  if ( ! function_exists( 'bws_add_menu_render' ) ) {
198
  'link' => 'http://bestwebsoft.com/plugin/sender/?k=89c297d14ba85a8417a0f2fc05e089c7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
199
  'download' => 'http://bestwebsoft.com/plugin/sender/?k=89c297d14ba85a8417a0f2fc05e089c7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
200
  'wp_install' => '/wp-admin/plugin-install.php?tab=search&s=Sender+Bestwebsoft&plugin-search-input=Search+Plugins',
201
+ 'settings' => 'admin.php?page=sndr_settings',
202
+ 'pro_version' => 'sender-pro/sender-pro.php'
203
  ),
204
  'subscriber/subscriber.php' => array(
205
  'name' => 'Subscriber',
234
  'download' => 'http://bestwebsoft.com/plugin/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
235
  'wp_install' => '/wp-admin/plugin-install.php?tab=search&s=BestWebSoft+Google+Analytics&plugin-search-input=Search+Plugins',
236
  'settings' => 'admin.php?page=bws-google-analytics.php'
237
+ ),
238
+ 'db-manager/db-manager.php' => array(
239
+ 'name' => 'DB manager',
240
+ 'description' => 'Allows you to download the latest version of PhpMyadmin and Dumper and manage your site.',
241
+ 'link' => 'http://bestwebsoft.com/plugin/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
242
+ 'download' => 'http://bestwebsoft.com/plugin/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
243
+ 'wp_install' => 'http://bestwebsoft.com/plugin/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
244
+ 'settings' => 'admin.php?page=db-manager.php'
245
+ ),
246
+ 'user-role/user-role.php' => array(
247
+ 'name' => 'User Role',
248
+ 'description' => 'Allows to change wordpress user role capabilities.',
249
+ 'link' => 'http://bestwebsoft.com/plugin/user-role/?k=dfe2244835c6fbf601523964b3f34ccc&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
250
+ 'download' => 'http://bestwebsoft.com/plugin/user-role/?k=dfe2244835c6fbf601523964b3f34ccc&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
251
+ 'wp_install' => 'http://bestwebsoft.com/plugin/user-role/?k=dfe2244835c6fbf601523964b3f34ccc&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#download',
252
+ 'settings' => 'admin.php?page=user-role.php',
253
+ 'pro_version' => 'user-role-pro/user-role-pro.php'
254
  )
255
  );
256
  $bws_plugins_pro = array(
337
  'link' => 'http://bestwebsoft.com/plugin/contact-form-multi-pro/?k=fde3a18581c143654f060c398b07e8ac&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
338
  'purchase' => 'http://bestwebsoft.com/plugin/contact-form-multi-pro/?k=fde3a18581c143654f060c398b07e8ac&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#purchase',
339
  'settings' => ''
340
+ ),
341
+ 'user-role-pro/user-role-pro.php' => array(
342
+ 'name' => 'User Role Pro',
343
+ 'description' => 'Allows to change wordpress user role capabilities.',
344
+ 'link' => 'http://bestwebsoft.com/plugin/user-role-pro/?k=cfa9cea6613fb3d7c0a3622fa2faaf46&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
345
+ 'purchase' => 'http://bestwebsoft.com/plugin/user-role-pro/?k=cfa9cea6613fb3d7c0a3622fa2faaf46&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#purchase',
346
+ 'settings' => 'admin.php?page=user-role-pro.php'
347
+ ),
348
+ 'sender-pro/sender-pro.php' => array(
349
+ 'name' => 'Sender Pro',
350
+ 'description' => 'You can send mails to all users or to certain categories of users.',
351
+ 'link' => 'http://bestwebsoft.com/plugin/sender-pro/?k=dc5d1a87bdc8aeab2de40ffb99b38054&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
352
+ 'purchase' => 'http://bestwebsoft.com/plugin/sender-pro/?k=dc5d1a87bdc8aeab2de40ffb99b38054&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version . '#purchase',
353
+ 'settings' => 'admin.php?page=sndrpr_settings'
354
  )
355
  );
356
 
716
  } ?>
717
  <?php } elseif ( 'themes' == $_GET['action'] ) { ?>
718
  <div id="availablethemes">
719
+ <?php global $tabs, $tab, $paged, $type, $theme_field_defaults;
 
720
  include( ABSPATH . 'wp-admin/includes/theme-install.php' );
721
  include( ABSPATH . 'wp-admin/includes/class-wp-themes-list-table.php' );
722
  include( ABSPATH . 'wp-admin/includes/class-wp-theme-install-list-table.php' );
739
  'infinite_scroll' => true,
740
  ) );
741
  $themes = $theme_class->items;
742
+ if ( $wp_version < '3.9' ) {
743
+ foreach ( $themes as $theme ) { ?>
744
+ <div class="available-theme installable-theme"><?php
745
+ global $themes_allowedtags;
746
+ if ( empty( $theme ) )
747
+ return;
748
 
749
+ $name = wp_kses( $theme->name, $themes_allowedtags );
750
+ $author = wp_kses( $theme->author, $themes_allowedtags );
751
+ $preview_title = sprintf( __('Preview &#8220;%s&#8221;'), $name );
752
+ $preview_url = add_query_arg( array(
753
+ 'tab' => 'theme-information',
754
+ 'theme' => $theme->slug,
755
+ ), self_admin_url( 'theme-install.php' ) );
756
 
757
+ $actions = array();
758
 
759
+ $install_url = add_query_arg( array(
760
+ 'action' => 'install-theme',
761
+ 'theme' => $theme->slug,
762
+ ), self_admin_url( 'update.php' ) );
763
 
764
+ $update_url = add_query_arg( array(
765
+ 'action' => 'upgrade-theme',
766
+ 'theme' => $theme->slug,
767
+ ), self_admin_url( 'update.php' ) );
768
 
769
+ $status = 'install';
770
+ $installed_theme = wp_get_theme( $theme->slug );
771
+ if ( $installed_theme->exists() ) {
772
+ if ( version_compare( $installed_theme->get('Version'), $theme->version, '=' ) )
773
+ $status = 'latest_installed';
774
+ elseif ( version_compare( $installed_theme->get('Version'), $theme->version, '>' ) )
775
+ $status = 'newer_installed';
776
+ else
777
+ $status = 'update_available';
778
+ }
779
+ switch ( $status ) {
780
+ default:
781
+ case 'install':
782
+ $actions[] = '<a class="install-now" href="' . esc_url( wp_nonce_url( $install_url, 'install-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Install %s' ), $name ) ) . '">' . __( 'Install Now' ) . '</a>';
783
+ break;
784
+ case 'update_available':
785
+ $actions[] = '<a class="install-now" href="' . esc_url( wp_nonce_url( $update_url, 'upgrade-theme_' . $theme->slug ) ) . '" title="' . esc_attr( sprintf( __( 'Update to version %s' ), $theme->version ) ) . '">' . __( 'Update' ) . '</a>';
786
+ break;
787
+ case 'newer_installed':
788
+ case 'latest_installed':
789
+ $actions[] = '<span class="install-now" title="' . esc_attr__( 'This theme is already installed and is up to date' ) . '">' . _x( 'Installed', 'theme' ) . '</span>';
790
+ break;
791
+ }
792
+ $actions[] = '<a class="install-theme-preview" href="' . esc_url( $preview_url ) . '" title="' . esc_attr( sprintf( __( 'Preview %s' ), $name ) ) . '">' . __( 'Preview' ) . '</a>';
793
+ $actions = apply_filters( 'theme_install_actions', $actions, $theme ); ?>
794
+ <a class="screenshot install-theme-preview" href="<?php echo esc_url( $preview_url ); ?>" title="<?php echo esc_attr( $preview_title ); ?>">
795
+ <img src='<?php echo esc_url( $theme->screenshot_url ); ?>' width='150' />
796
+ </a>
797
+ <h3><?php echo $name; ?></h3>
798
+ <div class="theme-author"><?php printf( __( 'By %s' ), $author ); ?></div>
799
+ <div class="action-links">
800
+ <ul>
801
+ <?php foreach ( $actions as $action ): ?>
802
+ <li><?php echo $action; ?></li>
803
+ <?php endforeach; ?>
804
+ <li class="hide-if-no-js"><a href="#" class="theme-detail"><?php _e('Details') ?></a></li>
805
+ </ul>
806
+ </div>
807
+ <?php $theme_class->install_theme_info( $theme ); ?>
808
+ </div>
809
+ <?php }
810
+ // end foreach $theme_names
811
+ $theme_class->theme_installer();
812
+ } else { ?>
813
+ <div class="theme-browser">
814
+ <div class="themes">
815
+ <?php foreach ( $themes as $key => $theme ) {
816
  $installed_theme = wp_get_theme( $theme->slug );
817
+ if ( $installed_theme->exists() )
818
+ $theme->installed = true;
819
+ else
820
+ $theme->installed = false;
821
+ ?>
822
+ <div class="theme" tabindex="0">
823
+ <?php if ( $theme->screenshot_url ) { ?>
824
+ <div class="theme-screenshot">
825
+ <img src="<?php echo $theme->screenshot_url; ?>" alt="" />
826
+ </div>
827
+ <?php } else { ?>
828
+ <div class="theme-screenshot blank"></div>
829
+ <?php } ?>
830
+ <div class="theme-author"><?php printf( __( 'By %s' ), $theme->author ); ?></div>
831
+ <h3 class="theme-name"><?php echo $theme->name; ?></h3>
832
+ <div class="theme-actions">
833
+ <a class="button button-secondary preview install-theme-preview" href="theme-install.php?theme=<?php echo $theme->slug ?>"><?php esc_html_e( 'Learn More' ); ?></a>
834
+ </div>
835
+ <?php if ( $theme->installed ) { ?>
836
+ <div class="theme-installed"><?php _e( 'Already Installed' ); ?></div>
837
+ <?php } ?>
838
+ </div>
839
+ <?php } ?>
840
+ <br class="clear" />
 
 
 
 
 
 
 
 
 
 
 
841
  </div>
 
842
  </div>
843
+ <div class="theme-overlay"></div>
844
+ <?php } ?>
 
845
  </div>
846
  <?php } elseif ( 'system_status' == $_GET['action'] ) { ?>
847
  <div class="updated fade" <?php if ( ! ( isset( $_REQUEST['bwsmn_form_submit'] ) || isset( $_REQUEST['bwsmn_form_submit_custom_email'] ) ) || $error != "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
bws_menu/css/general_style.css CHANGED
@@ -117,6 +117,13 @@ table.bws_pro_version td {
117
  float: left;
118
  padding-top: 10px;
119
  }
 
 
 
 
 
 
 
120
  div.bws_pro_version {
121
  padding: 5px 10px;
122
  }
117
  float: left;
118
  padding-top: 10px;
119
  }
120
+ .bws_pro_version_tooltip .bws_pro_links {
121
+ float: right;
122
+ }
123
+ .bws_pro_version_tooltip .bws_trial_info {
124
+ padding-top: 10px;
125
+ display: inline-block;
126
+ }
127
  div.bws_pro_version {
128
  padding: 5px 10px;
129
  }
bws_menu/css/general_style_wp_before_3.8.css CHANGED
@@ -119,6 +119,13 @@ table.bws_pro_version td {
119
  float: left;
120
  padding-top: 10px;
121
  }
 
 
 
 
 
 
 
122
  div.bws_pro_version {
123
  padding: 5px 10px;
124
  }
119
  float: left;
120
  padding-top: 10px;
121
  }
122
+ .bws_pro_version_tooltip .bws_pro_links {
123
+ float: right;
124
+ }
125
+ .bws_pro_version_tooltip .bws_trial_info {
126
+ padding-top: 10px;
127
+ display: inline-block;
128
+ }
129
  div.bws_pro_version {
130
  padding: 5px 10px;
131
  }
bws_menu/css/style.css CHANGED
@@ -150,4 +150,9 @@ h4.bws_installed:before {
150
  }
151
  .bws_product_button.bws_donate_button:hover {
152
  background: #D69108 !important;
 
 
 
 
 
153
  }
150
  }
151
  .bws_product_button.bws_donate_button:hover {
152
  background: #D69108 !important;
153
+ }
154
+
155
+ /* theme page after WP 3.9 */
156
+ .toplevel_page_bws_plugins #availablethemes .theme-browser {
157
+ margin-top: 25px;
158
  }
bws_menu/icons/db-manager.png ADDED
Binary file
bws_menu/icons/user-role.png ADDED
Binary file
contact_form.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Form
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
- Version: 3.77
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -29,7 +29,8 @@ License: GPLv2 or later
29
  if ( ! function_exists( 'cntctfrm_admin_menu' ) ) {
30
  function cntctfrm_admin_menu() {
31
  global $bstwbsftwppdtplgns_options, $wpmu, $bstwbsftwppdtplgns_added_menu;
32
- $bws_menu_version = '1.2.7';
 
33
  $base = plugin_basename(__FILE__);
34
 
35
  if ( ! isset( $bstwbsftwppdtplgns_options ) ) {
@@ -324,7 +325,7 @@ if ( ! function_exists ( 'cntctfrm_db_create' ) ) {
324
  if ( ! function_exists ( 'cntctfrm_version_check' ) ) {
325
  function cntctfrm_version_check() {
326
  global $wp_version, $cntctfrm_plugin_info;
327
- $require_wp = "3.0"; /* Wordpress at least requires version */
328
  $plugin = plugin_basename( __FILE__ );
329
  if ( version_compare( $wp_version, $require_wp, "<" ) ) {
330
  if ( is_plugin_active( $plugin ) ) {
@@ -365,7 +366,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
365
  $cntctfrmtdbpr_options = get_option( 'cntctfrmtdbpr_options' );
366
 
367
  // $userslogin = $wpdb->get_col( "SELECT `user_login` FROM $wpdb->users ", 0 );
368
- $userslogin = get_users( 'blog_id=' . $GLOBALS['blog_id'] );
369
 
370
  /* Save data for settings page */
371
  if ( isset( $_POST['cntctfrm_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'cntctfrm_nonce_name' ) ) {
@@ -807,6 +808,7 @@ if ( ! function_exists( 'cntctfrm_settings_page' ) ) {
807
  <h2 class="nav-tab-wrapper">
808
  <a class="nav-tab<?php if ( ! isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=contact_form.php"><?php _e( 'Settings', 'contact_form' ); ?></a>
809
  <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'extra' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=contact_form.php&amp;action=extra"><?php _e( 'Extra settings', 'contact_form' ); ?></a>
 
810
  <a class="nav-tab bws_go_pro_tab<?php if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=contact_form.php&amp;action=go_pro"><?php _e( 'Go PRO', 'contact_form' ); ?></a>
811
  </h2>
812
  <div class="updated fade" <?php if ( ! isset( $_POST['cntctfrm_form_submit'] ) || "" != $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
@@ -2440,6 +2442,8 @@ if ( ! function_exists ( 'cntctfrm_plugin_banner' ) ) {
2440
  if ( 'plugins.php' == $hook_suffix ) {
2441
  global $cntctfrm_plugin_info;
2442
  $banner_array = array(
 
 
2443
  array( 'pdtr_hide_banner_on_plugin_page', 'updater/updater.php', '1.12' ),
2444
  array( 'cntctfrmtdb_hide_banner_on_plugin_page', 'contact-form-to-db/contact_form_to_db.php', '1.2' ),
2445
  array( 'cntctfrmmlt_hide_banner_on_plugin_page', 'contact-form-multi/contact-form-multi.php', '1.0.7' ),
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
+ Version: 3.78
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
29
  if ( ! function_exists( 'cntctfrm_admin_menu' ) ) {
30
  function cntctfrm_admin_menu() {
31
  global $bstwbsftwppdtplgns_options, $wpmu, $bstwbsftwppdtplgns_added_menu;
32
+ $bws_menu_info = get_plugin_data( plugin_dir_path( __FILE__ ) . "bws_menu/bws_menu.php" );
33
+ $bws_menu_version = $bws_menu_info["Version"];
34
  $base = plugin_basename(__FILE__);
35
 
36
  if ( ! isset( $bstwbsftwppdtplgns_options ) ) {
325
  if ( ! function_exists ( 'cntctfrm_version_check' ) ) {
326
  function cntctfrm_version_check() {
327
  global $wp_version, $cntctfrm_plugin_info;
328
+ $require_wp = "3.1"; /* Wordpress at least requires version */
329
  $plugin = plugin_basename( __FILE__ );
330
  if ( version_compare( $wp_version, $require_wp, "<" ) ) {
331
  if ( is_plugin_active( $plugin ) ) {
366
  $cntctfrmtdbpr_options = get_option( 'cntctfrmtdbpr_options' );
367
 
368
  // $userslogin = $wpdb->get_col( "SELECT `user_login` FROM $wpdb->users ", 0 );
369
+ $userslogin = get_users( 'blog_id=' . $GLOBALS['blog_id'] . '&who=authors' );
370
 
371
  /* Save data for settings page */
372
  if ( isset( $_POST['cntctfrm_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'cntctfrm_nonce_name' ) ) {
808
  <h2 class="nav-tab-wrapper">
809
  <a class="nav-tab<?php if ( ! isset( $_GET['action'] ) ) echo ' nav-tab-active'; ?>" href="admin.php?page=contact_form.php"><?php _e( 'Settings', 'contact_form' ); ?></a>
810
  <a class="nav-tab<?php if ( isset( $_GET['action'] ) && 'extra' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=contact_form.php&amp;action=extra"><?php _e( 'Extra settings', 'contact_form' ); ?></a>
811
+ <a class="nav-tab" href="http://bestwebsoft.com/plugin/contact-form/#faq" target="_blank"><?php _e( 'FAQ', 'contact_form' ); ?></a>
812
  <a class="nav-tab bws_go_pro_tab<?php if ( isset( $_GET['action'] ) && 'go_pro' == $_GET['action'] ) echo ' nav-tab-active'; ?>" href="admin.php?page=contact_form.php&amp;action=go_pro"><?php _e( 'Go PRO', 'contact_form' ); ?></a>
813
  </h2>
814
  <div class="updated fade" <?php if ( ! isset( $_POST['cntctfrm_form_submit'] ) || "" != $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
2442
  if ( 'plugins.php' == $hook_suffix ) {
2443
  global $cntctfrm_plugin_info;
2444
  $banner_array = array(
2445
+ array( 'sndr_hide_banner_on_plugin_page', 'sender/sender.php', '0.5' ),
2446
+ array( 'srrl_hide_banner_on_plugin_page', 'user-role/user-role.php', '1.4' ),
2447
  array( 'pdtr_hide_banner_on_plugin_page', 'updater/updater.php', '1.12' ),
2448
  array( 'cntctfrmtdb_hide_banner_on_plugin_page', 'contact-form-to-db/contact_form_to_db.php', '1.2' ),
2449
  array( 'cntctfrmmlt_hide_banner_on_plugin_page', 'contact-form-multi/contact-form-multi.php', '1.0.7' ),
css/style.css CHANGED
File without changes
languages/contact_form-af_ZA.mo CHANGED
File without changes
languages/contact_form-af_ZA.po CHANGED
File without changes
languages/contact_form-es_ES.mo ADDED
Binary file
languages/contact_form-es_ES.po ADDED
@@ -0,0 +1,1085 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: contact_form\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-20 13:49+0300\n"
6
+ "PO-Revision-Date: 2014-05-20 13:52+0300\n"
7
+ "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
+ "Language-Team: Javitopo <jaawme@hotmail.com>\n"
9
+ "Language: it_IT\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.6.5\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: contact_form.php:74
20
+ #: contact_form.php:807
21
+ msgid "Contact Form Settings"
22
+ msgstr "Opciones de formulario de contacto"
23
+
24
+ #: contact_form.php:74
25
+ msgid "Contact Form"
26
+ msgstr "Contact Form"
27
+
28
+ #: contact_form.php:150
29
+ #: contact_form.php:1154
30
+ #: contact_form.php:1188
31
+ msgid "Name:"
32
+ msgstr "Nombre:"
33
+
34
+ #: contact_form.php:151
35
+ #: contact_form.php:1155
36
+ #: contact_form.php:1189
37
+ msgid "Address:"
38
+ msgstr "Dirección:"
39
+
40
+ #: contact_form.php:152
41
+ #: contact_form.php:1156
42
+ #: contact_form.php:1190
43
+ msgid "Email Address:"
44
+ msgstr "Dirección de correo electrónico:"
45
+
46
+ #: contact_form.php:153
47
+ #: contact_form.php:1157
48
+ #: contact_form.php:1191
49
+ msgid "Phone number:"
50
+ msgstr "Número de teléfono:"
51
+
52
+ #: contact_form.php:154
53
+ #: contact_form.php:1158
54
+ #: contact_form.php:1192
55
+ msgid "Subject:"
56
+ msgstr "Asunto:"
57
+
58
+ #: contact_form.php:155
59
+ #: contact_form.php:1159
60
+ #: contact_form.php:1193
61
+ msgid "Message:"
62
+ msgstr "Mensaje:"
63
+
64
+ #: contact_form.php:156
65
+ #: contact_form.php:1160
66
+ #: contact_form.php:1194
67
+ msgid "Attachment:"
68
+ msgstr "Datos adjuntos:"
69
+
70
+ #: contact_form.php:157
71
+ msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
72
+ msgstr "Tipos de archivo admitidos: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Tamaño máximo de archivo: 2MB"
73
+
74
+ #: contact_form.php:158
75
+ #: contact_form.php:1162
76
+ #: contact_form.php:1196
77
+ msgid "Send me a copy"
78
+ msgstr "Deseo recibir una copia"
79
+
80
+ #: contact_form.php:159
81
+ #: contact_form.php:1163
82
+ #: contact_form.php:1197
83
+ msgid "Submit"
84
+ msgstr "Enviar"
85
+
86
+ #: contact_form.php:160
87
+ msgid "Your name is required."
88
+ msgstr "Es necesario un nombre."
89
+
90
+ #: contact_form.php:161
91
+ msgid "Address is required."
92
+ msgstr "Se requiere dirección."
93
+
94
+ #: contact_form.php:162
95
+ msgid "A valid email address is required."
96
+ msgstr "Se requiere una dirección de email válida."
97
+
98
+ #: contact_form.php:163
99
+ msgid "Phone number is required."
100
+ msgstr "Es necesario un número de teléfono."
101
+
102
+ #: contact_form.php:164
103
+ msgid "Subject is required."
104
+ msgstr "Es necesario un asunto."
105
+
106
+ #: contact_form.php:165
107
+ msgid "Message text is required."
108
+ msgstr "Es necesario el texto del mensaje."
109
+
110
+ #: contact_form.php:166
111
+ msgid "File format is not valid."
112
+ msgstr "Formato de archivo no válido."
113
+
114
+ #: contact_form.php:167
115
+ msgid "File upload error."
116
+ msgstr "Error de carga de archivos."
117
+
118
+ #: contact_form.php:168
119
+ msgid "The file could not be uploaded."
120
+ msgstr "El archivo no se pudo cargar."
121
+
122
+ #: contact_form.php:169
123
+ msgid "This file is too large."
124
+ msgstr "Este archivo es demasiado grande."
125
+
126
+ #: contact_form.php:170
127
+ msgid "Please fill out the CAPTCHA."
128
+ msgstr "Por favor complete el CAPTCHA."
129
+
130
+ #: contact_form.php:171
131
+ msgid "Please make corrections below and try again."
132
+ msgstr "Por favor, haga las correcciones y a continuación vuelva a intentarlo."
133
+
134
+ #: contact_form.php:173
135
+ msgid "Thank you for contacting us."
136
+ msgstr "Gracias por contactar con nosotros."
137
+
138
+ #: contact_form.php:333
139
+ msgid "requires"
140
+ msgstr "requiere"
141
+
142
+ #: contact_form.php:333
143
+ msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
144
+ msgstr "o superior, es por eso que ha sido desactivado! Por favor actualize WordPress y vuelva a intentarlo."
145
+
146
+ #: contact_form.php:333
147
+ msgid "Back to the WordPress"
148
+ msgstr "Volver a WordPress"
149
+
150
+ #: contact_form.php:333
151
+ msgid "Plugins page"
152
+ msgstr "Página de Plugins"
153
+
154
+ #: contact_form.php:639
155
+ msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
156
+ msgstr "Si se selecciona la opción 'Redirigir a la página', entonces el campo URL debe estar en el siguiente formato"
157
+
158
+ #: contact_form.php:648
159
+ msgid "Such user does not exist. Settings are not saved."
160
+ msgstr "Dicho usuario no existe. Los ajustes no se guardan."
161
+
162
+ #: contact_form.php:652
163
+ #: contact_form.php:658
164
+ msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
165
+ msgstr "Por favor, introduce una dirección de correo electrónico válida en el campo \"De\". Las configuraciones no se guardan."
166
+
167
+ #: contact_form.php:683
168
+ msgid "Settings saved."
169
+ msgstr "Configuración guardada."
170
+
171
+ #: contact_form.php:710
172
+ #: contact_form.php:742
173
+ msgid "Wrong license key"
174
+ msgstr "Clave de licencia incorrecta"
175
+
176
+ #: contact_form.php:735
177
+ msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
178
+ msgstr "Algo salió mal. Inténtelo de nuevo más tarde. Si el error vuelve a aparecer, por favor, contacte con nosotros <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Pedimos disculpas por los inconvenientes."
179
+
180
+ #: contact_form.php:744
181
+ msgid "This license key is bind to another site"
182
+ msgstr "Esta clave de licencia se usa en otro sitio"
183
+
184
+ #: contact_form.php:746
185
+ #: contact_form.php:1593
186
+ msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
187
+ msgstr "Por desgracia, se ha superado el número de intentos disponibles por día. Por favor, carga el plugin manualmente."
188
+
189
+ #: contact_form.php:763
190
+ msgid "Failed to open the zip archive. Please, upload the plugin manually"
191
+ msgstr "No se pudo abrir el archivo zip. Por favor, carga el plugin manualmente"
192
+
193
+ #: contact_form.php:769
194
+ msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
195
+ msgstr "Su servidor no soporta bien ZipArchive o Phar. Por favor, carga el plugin manualmente"
196
+
197
+ #: contact_form.php:773
198
+ #: contact_form.php:782
199
+ msgid "Failed to download the zip archive. Please, upload the plugin manually"
200
+ msgstr "Error al descargar el archivo zip. Por favor, cargar el plugin manualmente"
201
+
202
+ #: contact_form.php:786
203
+ msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
204
+ msgstr "Algo salió mal. Inténtelo de nuevo más tarde o carge el plugin manualmente. Pedimos disculpas por los inconvenientes."
205
+
206
+ #: contact_form.php:801
207
+ msgid "Please, enter Your license key"
208
+ msgstr "Por favor, introduzca su clave de licencia"
209
+
210
+ #: contact_form.php:809
211
+ #: contact_form.php:2242
212
+ #: contact_form.php:2254
213
+ msgid "Settings"
214
+ msgstr "Configuración"
215
+
216
+ #: contact_form.php:810
217
+ msgid "Extra settings"
218
+ msgstr "Ajustes adicionales"
219
+
220
+ #: contact_form.php:811
221
+ #: contact_form.php:2255
222
+ msgid "FAQ"
223
+ msgstr "Preguntas más frecuentes"
224
+
225
+ #: contact_form.php:812
226
+ msgid "Go PRO"
227
+ msgstr "Ir al PRO"
228
+
229
+ #: contact_form.php:815
230
+ msgid "Notice:"
231
+ msgstr "Aviso:"
232
+
233
+ #: contact_form.php:815
234
+ msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
235
+ msgstr "Configuración del plugin se han cambiado. Para salvar los cambios, no olvide hacer clic en el botón \"Guardar cambios\"."
236
+
237
+ #: contact_form.php:821
238
+ msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
239
+ msgstr "Si desea crear varios formularios de contacto, por favor, instale el plugin Formulario de contacto múltiple."
240
+
241
+ #: contact_form.php:827
242
+ #: contact_form.php:832
243
+ #: contact_form.php:1552
244
+ msgid "If you would like to add the Contact Form to your website, just copy and paste this shortcode to your post or page or widget:"
245
+ msgstr "Si usted desea agregar el formulario de contacto para su sitio web, sólo tienes que copiar y pegar este código corto a tu post, una página o un widget:"
246
+
247
+ #: contact_form.php:827
248
+ #: contact_form.php:828
249
+ #: contact_form.php:832
250
+ #: contact_form.php:833
251
+ #: contact_form.php:1178
252
+ #: contact_form.php:1180
253
+ #: contact_form.php:1235
254
+ #: contact_form.php:1237
255
+ msgid "or"
256
+ msgstr "o"
257
+
258
+ #: contact_form.php:828
259
+ #: contact_form.php:833
260
+ msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
261
+ msgstr "Si tiene algún problema con el shortcode estándar [contact_form], se debe utilizar el shortcode"
262
+
263
+ #: contact_form.php:829
264
+ #: contact_form.php:834
265
+ msgid "They work the same way."
266
+ msgstr "Funcionan de la misma manera."
267
+
268
+ #: contact_form.php:830
269
+ #: contact_form.php:835
270
+ msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
271
+ msgstr "Si deja los campos vacíos, se enviarán los mensajes a la dirección de correo electrónico especificada durante el registro."
272
+
273
+ #: contact_form.php:840
274
+ msgid "The user's email address:"
275
+ msgstr "Dirección de correo electrónico del usuario:"
276
+
277
+ #: contact_form.php:844
278
+ msgid "Create a username"
279
+ msgstr "Crear un nombre de usuario"
280
+
281
+ #: contact_form.php:851
282
+ msgid "Enter a username of the person who should get the messages from the contact form."
283
+ msgstr "Introduzca un nombre de usuario de la persona que debe recibir los mensajes desde el formulario de contacto."
284
+
285
+ #: contact_form.php:855
286
+ msgid "Use this email address:"
287
+ msgstr "Utilice esta dirección de correo electrónico:"
288
+
289
+ #: contact_form.php:858
290
+ msgid "Enter the email address you want the messages forwarded to."
291
+ msgstr "Introduzca la dirección de correo electrónico que desea que reciba los mensajes."
292
+
293
+ #: contact_form.php:867
294
+ msgid "Add department selectbox to the contact form:"
295
+ msgstr "Añadir caja de selección al formulario de contacto:"
296
+
297
+ #: contact_form.php:875
298
+ #: contact_form.php:1435
299
+ msgid "If you upgrade to Pro version all your settings will be saved."
300
+ msgstr "Si actualiza a la versión Pro se guardarán todos los ajustes."
301
+
302
+ #: contact_form.php:882
303
+ #: contact_form.php:1020
304
+ #: contact_form.php:1094
305
+ #: contact_form.php:1442
306
+ msgid "Unlock premium options by upgrading to a PRO version."
307
+ msgstr "Desbloquear opciones premium mediante la actualización a una versión PRO."
308
+
309
+ #: contact_form.php:883
310
+ #: contact_form.php:1021
311
+ #: contact_form.php:1095
312
+ #: contact_form.php:1443
313
+ #: contact_form.php:2510
314
+ #: contact_form.php:2526
315
+ msgid "Learn More"
316
+ msgstr "Más información"
317
+
318
+ #: contact_form.php:886
319
+ #: contact_form.php:1024
320
+ #: contact_form.php:1098
321
+ #: contact_form.php:1446
322
+ msgid "Go"
323
+ msgstr "Ir"
324
+
325
+ #: contact_form.php:893
326
+ msgid "Save emails to the database"
327
+ msgstr "Guardar mensajes de correo electrónico a la base de datos"
328
+
329
+ #: contact_form.php:899
330
+ msgid "Using"
331
+ msgstr "Uso"
332
+
333
+ #: contact_form.php:899
334
+ #: contact_form.php:1071
335
+ #: contact_form.php:1074
336
+ #: contact_form.php:1078
337
+ msgid "powered by"
338
+ msgstr "impulsado por"
339
+
340
+ #: contact_form.php:902
341
+ #: contact_form.php:906
342
+ msgid "Using Contact Form to DB powered by"
343
+ msgstr "Usando Contact Form a DB impulsado por"
344
+
345
+ #: contact_form.php:902
346
+ msgid "Activate Contact Form to DB"
347
+ msgstr "Activar Formulario de contacto para DB"
348
+
349
+ #: contact_form.php:906
350
+ msgid "Download Contact Form to DB"
351
+ msgstr "Descargue Contact Form para DB"
352
+
353
+ #: contact_form.php:911
354
+ msgid "Additional options"
355
+ msgstr "Opciones adicionales"
356
+
357
+ #: contact_form.php:913
358
+ msgid "Show"
359
+ msgstr "Mostrar"
360
+
361
+ #: contact_form.php:914
362
+ msgid "Hide"
363
+ msgstr "Ocultar"
364
+
365
+ #: contact_form.php:918
366
+ msgid "What to use?"
367
+ msgstr "Qué usar?"
368
+
369
+ #: contact_form.php:921
370
+ msgid "Wp-mail"
371
+ msgstr "Wp-mail"
372
+
373
+ #: contact_form.php:921
374
+ msgid "You can use the wp_mail function for mailing"
375
+ msgstr "Usted puede utilizar la función wp_mail para enviar por correo"
376
+
377
+ #: contact_form.php:923
378
+ msgid "Mail"
379
+ msgstr "Correo"
380
+
381
+ #: contact_form.php:923
382
+ msgid "To send mail you can use the php mail function"
383
+ msgstr "Para enviar el correo se puede utilizar la función de correo php"
384
+
385
+ #: contact_form.php:927
386
+ msgid "The text in the 'From' field"
387
+ msgstr "El texto en el campo \"De\""
388
+
389
+ #: contact_form.php:929
390
+ msgid "User name"
391
+ msgstr "Nombre de usuario"
392
+
393
+ #: contact_form.php:930
394
+ msgid "The name of the user who fills the form will be used in the field 'From'."
395
+ msgstr "El nombre del usuario que rellena en el formulario se utiliza en el campo \"De:\"."
396
+
397
+ #: contact_form.php:933
398
+ msgid "This text will be used in the 'FROM' field"
399
+ msgstr "Este texto se utiliza en el campo \"De\""
400
+
401
+ #: contact_form.php:937
402
+ msgid "The email address in the 'From' field"
403
+ msgstr "La dirección de correo electrónico en el campo \"De\""
404
+
405
+ #: contact_form.php:939
406
+ msgid "User email"
407
+ msgstr "Correo electrónico del usuario"
408
+
409
+ #: contact_form.php:940
410
+ msgid "The email address of the user who fills the form will be used in the field 'From'."
411
+ msgstr "La dirección de correo electrónico del usuario que rellena el formulario se utiliza en el campo \"De\"."
412
+
413
+ #: contact_form.php:943
414
+ msgid "This email address will be used in the 'From' field."
415
+ msgstr "Esta dirección de correo electrónico se utilizará en el campo \"De\"."
416
+
417
+ #: contact_form.php:947
418
+ msgid "Required symbol"
419
+ msgstr "Símbolo de Obligatorio"
420
+
421
+ #: contact_form.php:957
422
+ msgid "Fields"
423
+ msgstr "Campos"
424
+
425
+ #: contact_form.php:958
426
+ msgid "Used"
427
+ msgstr "Usado"
428
+
429
+ #: contact_form.php:959
430
+ msgid "Required"
431
+ msgstr "Obligatorio"
432
+
433
+ #: contact_form.php:960
434
+ msgid "Visible"
435
+ msgstr "Visible"
436
+
437
+ #: contact_form.php:961
438
+ msgid "Disabled for editing"
439
+ msgstr "Inhabilitado para la edición"
440
+
441
+ #: contact_form.php:962
442
+ msgid "Field's default value"
443
+ msgstr "Valor predeterminado del campo"
444
+
445
+ #: contact_form.php:967
446
+ #: contact_form.php:1310
447
+ #: contact_form.php:2085
448
+ #: contact_form.php:2115
449
+ msgid "Name"
450
+ msgstr "Nombre"
451
+
452
+ #: contact_form.php:975
453
+ #: contact_form.php:1315
454
+ #: contact_form.php:2089
455
+ #: contact_form.php:2117
456
+ msgid "Address"
457
+ msgstr "Dirección"
458
+
459
+ #: contact_form.php:983
460
+ msgid "Email Address"
461
+ msgstr "Dirección de correo electrónico"
462
+
463
+ #: contact_form.php:991
464
+ msgid "Phone number"
465
+ msgstr "Número de teléfono"
466
+
467
+ #: contact_form.php:999
468
+ #: contact_form.php:1330
469
+ #: contact_form.php:2099
470
+ #: contact_form.php:2121
471
+ msgid "Subject"
472
+ msgstr "Asunto"
473
+
474
+ #: contact_form.php:1007
475
+ #: contact_form.php:1334
476
+ #: contact_form.php:2102
477
+ #: contact_form.php:2122
478
+ msgid "Message"
479
+ msgstr "Mensaje"
480
+
481
+ #: contact_form.php:1031
482
+ msgid "Attachment block"
483
+ msgstr "bloque de adjuntos"
484
+
485
+ #: contact_form.php:1033
486
+ msgid "Users can attach the following file formats"
487
+ msgstr "Los usuarios pueden adjuntar los siguientes formatos de archivo"
488
+
489
+ #: contact_form.php:1046
490
+ msgid "Add to the form"
491
+ msgstr "Añadir a la forma"
492
+
493
+ #: contact_form.php:1051
494
+ msgid "Tips below the Attachment"
495
+ msgstr "Consejos debajo del archivo adjunto"
496
+
497
+ #: contact_form.php:1060
498
+ msgid "'Send me a copy' block"
499
+ msgstr "'Deseo recibir una copia' bloque"
500
+
501
+ #: contact_form.php:1071
502
+ #: contact_form.php:1074
503
+ #: contact_form.php:1078
504
+ #: contact_form.php:1344
505
+ msgid "Captcha"
506
+ msgstr "Captcha"
507
+
508
+ #: contact_form.php:1074
509
+ msgid "Activate captcha"
510
+ msgstr "Activar Captcha"
511
+
512
+ #: contact_form.php:1078
513
+ msgid "Download captcha"
514
+ msgstr "Descargar Captcha"
515
+
516
+ #: contact_form.php:1086
517
+ msgid "Agreement checkbox"
518
+ msgstr "casilla de verificación de acuerdo"
519
+
520
+ #: contact_form.php:1086
521
+ msgid "Required checkbox for submitting the form"
522
+ msgstr "Casilla de verificación obligatoria para enviar el formulario"
523
+
524
+ #: contact_form.php:1087
525
+ msgid "Optional checkbox"
526
+ msgstr "Casilla opcional"
527
+
528
+ #: contact_form.php:1087
529
+ msgid "Optional checkbox, the results of which will be displayed in email"
530
+ msgstr "Casilla opcional, cuyos resultados se mostrarán en el correo electrónico"
531
+
532
+ #: contact_form.php:1104
533
+ msgid "Delete an attachment file from the server after the email is sent"
534
+ msgstr "Eliminar un archivo adjunto del servidor después de que se envíe el correo electrónico"
535
+
536
+ #: contact_form.php:1110
537
+ msgid "Email in HTML format sending"
538
+ msgstr "Enviar correo electrónico en formato HTML"
539
+
540
+ #: contact_form.php:1114
541
+ msgid "Display additional info in the email"
542
+ msgstr "Mostrar información adicional en el correo electrónico"
543
+
544
+ #: contact_form.php:1119
545
+ #: contact_form.php:2052
546
+ #: contact_form.php:2054
547
+ msgid "Sent from (ip address)"
548
+ msgstr "Enviado desde (dirección IP)"
549
+
550
+ #: contact_form.php:1119
551
+ msgid "Example: Sent from (IP address):\t127.0.0.1"
552
+ msgstr "Ejemplo: Enviado desde (dirección IP:\t127.0.0.1"
553
+
554
+ #: contact_form.php:1120
555
+ #: contact_form.php:2058
556
+ #: contact_form.php:2060
557
+ msgid "Date/Time"
558
+ msgstr "Fecha/Hora"
559
+
560
+ #: contact_form.php:1120
561
+ msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
562
+ msgstr "Ejemplo: Fecha/hora:\tAugust 19, 2013 8:50 pm"
563
+
564
+ #: contact_form.php:1121
565
+ #: contact_form.php:2064
566
+ #: contact_form.php:2066
567
+ msgid "Sent from (referer)"
568
+ msgstr "Enviado desde (referencia)"
569
+
570
+ #: contact_form.php:1121
571
+ msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
572
+ msgstr "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
573
+
574
+ #: contact_form.php:1122
575
+ #: contact_form.php:2070
576
+ #: contact_form.php:2072
577
+ msgid "Using (user agent)"
578
+ msgstr "Usando (agente de usuario)"
579
+
580
+ #: contact_form.php:1122
581
+ msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
582
+ msgstr "Ejemplo: Usando (agente de usuario):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
583
+
584
+ #: contact_form.php:1126
585
+ msgid "Language settings for the field names in the form"
586
+ msgstr "Configuración de idioma para los nombres de los campos en el formulario"
587
+
588
+ #: contact_form.php:1135
589
+ msgid "Add a language"
590
+ msgstr "Añadir un idioma"
591
+
592
+ #: contact_form.php:1139
593
+ msgid "Change the names of the contact form fields and error messages"
594
+ msgstr "Cambie los nombres de los campos del formulario de contacto y mensajes de error"
595
+
596
+ #: contact_form.php:1144
597
+ #: contact_form.php:1225
598
+ msgid "English"
599
+ msgstr "Inglés"
600
+
601
+ #: contact_form.php:1152
602
+ #: contact_form.php:1186
603
+ msgid "click to expand/hide the list"
604
+ msgstr "haga clic para expandir / ocultar la lista"
605
+
606
+ #: contact_form.php:1161
607
+ #: contact_form.php:1195
608
+ msgid "Tips below the Attachment block"
609
+ msgstr "Consejos debajo del bloque del archivo adjunto"
610
+
611
+ #: contact_form.php:1164
612
+ #: contact_form.php:1198
613
+ msgid "Error message for the Name field"
614
+ msgstr "Mensaje de error para el campo Nombre"
615
+
616
+ #: contact_form.php:1165
617
+ #: contact_form.php:1199
618
+ msgid "Error message for the Address field"
619
+ msgstr "Mensaje de error para el campo dirección"
620
+
621
+ #: contact_form.php:1166
622
+ #: contact_form.php:1200
623
+ msgid "Error message for the Email field"
624
+ msgstr "Mensaje de error en el campo Correo electrónico"
625
+
626
+ #: contact_form.php:1167
627
+ #: contact_form.php:1201
628
+ msgid "Error message for the Phone field"
629
+ msgstr "Mensaje de error para el campo Teléfono"
630
+
631
+ #: contact_form.php:1168
632
+ #: contact_form.php:1202
633
+ msgid "Error message for the Subject field"
634
+ msgstr "Mensaje de error para el campo Asunto"
635
+
636
+ #: contact_form.php:1169
637
+ #: contact_form.php:1203
638
+ msgid "Error message for the Message field"
639
+ msgstr "Mensaje de error en el campo Mensaje"
640
+
641
+ #: contact_form.php:1170
642
+ #: contact_form.php:1204
643
+ msgid "Error message about the file type for the Attachment field"
644
+ msgstr "Mensaje de error sobre el tipo de archivo para el campo de archivos adjuntos"
645
+
646
+ #: contact_form.php:1171
647
+ #: contact_form.php:1205
648
+ msgid "Error message while uploading a file for the Attachment field to the server"
649
+ msgstr "Mensaje de error al cargar un archivo en el campo de archivos adjuntos al servidor"
650
+
651
+ #: contact_form.php:1172
652
+ #: contact_form.php:1206
653
+ msgid "Error message while moving the file for the Attachment field"
654
+ msgstr "Mensaje de error mientras se mueve el archivo en el campo de archivos adjuntos"
655
+
656
+ #: contact_form.php:1173
657
+ #: contact_form.php:1207
658
+ msgid "Error message when file size limit for the Attachment field is exceeded"
659
+ msgstr "Mensaje de error cuando se supera el límite de tamaño de archivo para el campo de archivos adjuntos"
660
+
661
+ #: contact_form.php:1174
662
+ #: contact_form.php:1208
663
+ msgid "Error message for the Captcha field"
664
+ msgstr "Mensaje de error para el campo Captcha"
665
+
666
+ #: contact_form.php:1175
667
+ #: contact_form.php:1209
668
+ msgid "Error message for the whole form"
669
+ msgstr "Mensaje de error para todo el formulario"
670
+
671
+ #: contact_form.php:1178
672
+ #: contact_form.php:1180
673
+ #: contact_form.php:1212
674
+ #: contact_form.php:1214
675
+ #: contact_form.php:1235
676
+ #: contact_form.php:1237
677
+ #: contact_form.php:1245
678
+ #: contact_form.php:1247
679
+ msgid "Use shortcode"
680
+ msgstr "Utilice shortcode"
681
+
682
+ #: contact_form.php:1178
683
+ #: contact_form.php:1180
684
+ #: contact_form.php:1212
685
+ #: contact_form.php:1214
686
+ #: contact_form.php:1235
687
+ #: contact_form.php:1237
688
+ #: contact_form.php:1245
689
+ #: contact_form.php:1247
690
+ msgid "for this language"
691
+ msgstr "para este idioma"
692
+
693
+ #: contact_form.php:1222
694
+ msgid "Action after email is sent"
695
+ msgstr "Acción después de que se envíe el correo electrónico"
696
+
697
+ #: contact_form.php:1224
698
+ msgid "Display text"
699
+ msgstr "Mostrar texto"
700
+
701
+ #: contact_form.php:1233
702
+ #: contact_form.php:1243
703
+ msgid "Text"
704
+ msgstr "Texto"
705
+
706
+ #: contact_form.php:1254
707
+ msgid "Redirect to the page"
708
+ msgstr "Redirigir a la página"
709
+
710
+ #: contact_form.php:1255
711
+ msgid "Url"
712
+ msgstr "Url"
713
+
714
+ #: contact_form.php:1259
715
+ msgid "The $_SERVER variable that is used to build a URL of the form"
716
+ msgstr "La variable $_SERVER que se utiliza para construir una URL de la forma"
717
+
718
+ #: contact_form.php:1263
719
+ msgid "If you are not sure whether to change this setting or not, please do not do that."
720
+ msgstr "Si no está seguro de si se debe cambiar esta configuración o no, por favor, no hagas eso."
721
+
722
+ #: contact_form.php:1269
723
+ #: contact_form.php:1453
724
+ msgid "Save Changes"
725
+ msgstr "Guardar cambios"
726
+
727
+ #: contact_form.php:1274
728
+ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
729
+ msgstr "Si usted disfruta de nuestro plugin, por favor, darle 5 estrellas en WordPress"
730
+
731
+ #: contact_form.php:1275
732
+ msgid "Rate the plugin"
733
+ msgstr "Valorar el plugin"
734
+
735
+ #: contact_form.php:1278
736
+ msgid "If there is something wrong about it, please contact us"
737
+ msgstr "Si hay algo malo en el, por favor, póngase en contacto con nosotros"
738
+
739
+ #: contact_form.php:1290
740
+ msgid "Errors output"
741
+ msgstr "Salida de errores"
742
+
743
+ #: contact_form.php:1293
744
+ msgid "Display error messages"
745
+ msgstr "Mostrar mensajes de error"
746
+
747
+ #: contact_form.php:1294
748
+ msgid "Color of the input field errors."
749
+ msgstr "El color de los errores del campo de entrada."
750
+
751
+ #: contact_form.php:1295
752
+ msgid "Display error messages & color of the input field errors"
753
+ msgstr "Mostrar mensajes de error y el color de los errores de campo de entrada"
754
+
755
+ #: contact_form.php:1300
756
+ msgid "Add placeholder to the input blocks"
757
+ msgstr "Añadir marcador de posición de los bloques de entrada"
758
+
759
+ #: contact_form.php:1306
760
+ msgid "Add tooltips"
761
+ msgstr "Añadir información sobre herramientas"
762
+
763
+ #: contact_form.php:1320
764
+ msgid "Email address"
765
+ msgstr "Correo electrónico"
766
+
767
+ #: contact_form.php:1325
768
+ msgid "Phone Number"
769
+ msgstr "Número de teléfono"
770
+
771
+ #: contact_form.php:1339
772
+ msgid "Attachment"
773
+ msgstr "Adjuntos"
774
+
775
+ #: contact_form.php:1344
776
+ msgid "(powered by bestwebsoft.com)"
777
+ msgstr "(hecho por bestwebsoft.com)"
778
+
779
+ #: contact_form.php:1349
780
+ msgid "Style options"
781
+ msgstr "Opciones de estilo"
782
+
783
+ #: contact_form.php:1352
784
+ msgid "Text color"
785
+ msgstr "Color del texto"
786
+
787
+ #: contact_form.php:1355
788
+ #: contact_form.php:1360
789
+ #: contact_form.php:1370
790
+ #: contact_form.php:1375
791
+ #: contact_form.php:1380
792
+ #: contact_form.php:1385
793
+ #: contact_form.php:1395
794
+ #: contact_form.php:1400
795
+ #: contact_form.php:1406
796
+ #: contact_form.php:1417
797
+ #: contact_form.php:1422
798
+ #: contact_form.php:1427
799
+ msgid "Default"
800
+ msgstr "Defecto"
801
+
802
+ #: contact_form.php:1357
803
+ msgid "Label text color"
804
+ msgstr "Color del texto de la Etiqueta"
805
+
806
+ #: contact_form.php:1362
807
+ msgid "Placeholder color"
808
+ msgstr "El color de marcador de posición"
809
+
810
+ #: contact_form.php:1367
811
+ msgid "Errors color"
812
+ msgstr "Color del error"
813
+
814
+ #: contact_form.php:1372
815
+ msgid "Error text color"
816
+ msgstr "Color del texto de error"
817
+
818
+ #: contact_form.php:1377
819
+ msgid "Background color of the input field errors"
820
+ msgstr "Color de fondo de los errores de campo de entrada"
821
+
822
+ #: contact_form.php:1382
823
+ msgid "Border color of the input field errors"
824
+ msgstr "Color del borde de los errores de campo de entrada"
825
+
826
+ #: contact_form.php:1387
827
+ msgid "Placeholder color of the input field errors"
828
+ msgstr "El color de marcador de posición de los errores de campo de entrada"
829
+
830
+ #: contact_form.php:1392
831
+ msgid "Input fields"
832
+ msgstr "Campos de entrada"
833
+
834
+ #: contact_form.php:1397
835
+ msgid "Input fields background color"
836
+ msgstr "Color de fondo de los campos de entrada"
837
+
838
+ #: contact_form.php:1402
839
+ msgid "Text fields color"
840
+ msgstr "Color de los campos de texto"
841
+
842
+ #: contact_form.php:1404
843
+ msgid "Border width in px, numbers only"
844
+ msgstr "Ancho del borde en píxeles, sólo números"
845
+
846
+ #: contact_form.php:1408
847
+ #: contact_form.php:1429
848
+ msgid "Border color"
849
+ msgstr "Color del borde"
850
+
851
+ #: contact_form.php:1413
852
+ msgid "Submit button"
853
+ msgstr "Botón enviar"
854
+
855
+ #: contact_form.php:1415
856
+ msgid "Width in px, numbers only"
857
+ msgstr "Ancho en píxeles, sólo números"
858
+
859
+ #: contact_form.php:1419
860
+ msgid "Button color"
861
+ msgstr "Color del botón"
862
+
863
+ #: contact_form.php:1424
864
+ msgid "Button text color"
865
+ msgstr "Color del texto del botón"
866
+
867
+ #: contact_form.php:1457
868
+ msgid "Contact Form Pro | Preview"
869
+ msgstr "Contact Form Pro | Vista previa"
870
+
871
+ #: contact_form.php:1460
872
+ msgid "Show with errors"
873
+ msgstr "Mostrar con errores"
874
+
875
+ #: contact_form.php:1468
876
+ #: contact_form.php:1470
877
+ msgid "Please enter your full name..."
878
+ msgstr "Escriba su nombre completo..."
879
+
880
+ #: contact_form.php:1481
881
+ #: contact_form.php:1483
882
+ msgid "Please enter your address..."
883
+ msgstr "Escriba su dirección..."
884
+
885
+ #: contact_form.php:1492
886
+ #: contact_form.php:1494
887
+ msgid "Please enter your email address..."
888
+ msgstr "Introduzca su correo electrónico ..."
889
+
890
+ #: contact_form.php:1503
891
+ #: contact_form.php:1505
892
+ msgid "Please enter your phone number..."
893
+ msgstr "Escriba su número de teléfono..."
894
+
895
+ #: contact_form.php:1514
896
+ #: contact_form.php:1516
897
+ msgid "Please enter subject..."
898
+ msgstr "Escriba un asunto..."
899
+
900
+ #: contact_form.php:1524
901
+ #: contact_form.php:1526
902
+ msgid "Please enter your message..."
903
+ msgstr "Escriba el mensaje..."
904
+
905
+ #: contact_form.php:1568
906
+ msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
907
+ msgstr "Enhorabuena La versión PRO del plugin ha sido descargada y se activó con éxito."
908
+
909
+ #: contact_form.php:1570
910
+ msgid "Please, go to"
911
+ msgstr "Por favor, vaya a"
912
+
913
+ #: contact_form.php:1570
914
+ msgid "the setting page"
915
+ msgstr "la página de configuración"
916
+
917
+ #: contact_form.php:1571
918
+ msgid "You will be redirected automatically in 5 seconds."
919
+ msgstr "Usted será redirigido automáticamente en 5 segundos."
920
+
921
+ #: contact_form.php:1576
922
+ msgid "You can download and activate"
923
+ msgstr "Puede descargar y activar"
924
+
925
+ #: contact_form.php:1578
926
+ msgid "version of this plugin by entering Your license key."
927
+ msgstr "versión de este plugin introduciendo su clave de licencia."
928
+
929
+ #: contact_form.php:1580
930
+ msgid "You can find your license key on your personal page Client area, by clicking on the link"
931
+ msgstr "Puede encontrar su clave de licencia en el área de la página de cliente personal, haciendo clic en el enlace"
932
+
933
+ #: contact_form.php:1582
934
+ msgid "(your username is the email you specify when purchasing the product)."
935
+ msgstr "(su nombre de usuario es el correo electrónico que usted especifique a la hora de comprar el producto)."
936
+
937
+ #: contact_form.php:1590
938
+ #: contact_form.php:1600
939
+ msgid "Go!"
940
+ msgstr "Ir!"
941
+
942
+ #: contact_form.php:1671
943
+ msgid "Sorry, email message could not be delivered."
944
+ msgstr "Lo sentimos, el mensaje de correo electrónico no se pudo entregar."
945
+
946
+ #: contact_form.php:2079
947
+ msgid "Contact from"
948
+ msgstr "Contact from"
949
+
950
+ #: contact_form.php:2092
951
+ #: contact_form.php:2118
952
+ msgid "Email"
953
+ msgstr "Correo electrónico"
954
+
955
+ #: contact_form.php:2096
956
+ #: contact_form.php:2120
957
+ msgid "Phone"
958
+ msgstr "Teléfono"
959
+
960
+ #: contact_form.php:2105
961
+ #: contact_form.php:2123
962
+ msgid "Site"
963
+ msgstr "Sitio"
964
+
965
+ #: contact_form.php:2186
966
+ msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
967
+ msgstr "Si puede ver esta MIME, significa que el tipo MIME no es compatible con su cliente de correo electrónico!"
968
+
969
+ #: contact_form.php:2256
970
+ msgid "Support"
971
+ msgstr "Soporte técnico"
972
+
973
+ #: contact_form.php:2304
974
+ msgid "Are you sure that you want to delete this language data?"
975
+ msgstr "¿Estás seguro de que quieres eliminar este idioma?"
976
+
977
+ #: contact_form.php:2513
978
+ msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
979
+ msgstr "Es hora de actualizar su <strong>Contact Form plugin</strong> a versión <strong>PRO</strong>"
980
+
981
+ #: contact_form.php:2514
982
+ msgid "Extend standard plugin functionality with new great options."
983
+ msgstr "Extienda la funcionalidad plug-in de serie con los nuevas grandes opciones."
984
+
985
+ #: contact_form.php:2529
986
+ msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
987
+ msgstr "<strong>Formulario de contacto para DB</strong>permite almacenar sus mensajes a la base de datos."
988
+
989
+ #: contact_form.php:2530
990
+ msgid "Manage messages that have been sent from your website."
991
+ msgstr "Administración de mensajes que han sido enviados desde su sitio web."
992
+
993
+ #, fuzzy
994
+ #~ msgid "Contact Form Pro"
995
+ #~ msgstr "Contact Form"
996
+
997
+ #, fuzzy
998
+ #~ msgid "Contact Form Pro Extra Settings"
999
+ #~ msgstr "Opzioni Contact Form"
1000
+
1001
+ #, fuzzy
1002
+ #~ msgid "Contact Form Pro | Extra Settings"
1003
+ #~ msgstr "Opzioni Contact Form"
1004
+
1005
+ #, fuzzy
1006
+ #~ msgid "Display fields"
1007
+ #~ msgstr "Visualizza il testo"
1008
+
1009
+ #, fuzzy
1010
+ #~ msgid "Display tips below the Attachment block"
1011
+ #~ msgstr "Visualizza suggeriementi sotto il blocco Allegato"
1012
+
1013
+ #~ msgid "Required fields"
1014
+ #~ msgstr "Campi richiesti"
1015
+
1016
+ #, fuzzy
1017
+ #~ msgid "Display the asterisk near required fields"
1018
+ #~ msgstr "VIsualizza un campo numero di telefono"
1019
+
1020
+ #~ msgid "You can attach the following file formats"
1021
+ #~ msgstr "Gli utenti possono allegare i files nei seguenti tipi"
1022
+
1023
+ #, fuzzy
1024
+ #~ msgid "Memory usage"
1025
+ #~ msgstr "Messaggio"
1026
+
1027
+ #, fuzzy
1028
+ #~ msgid "Site URL"
1029
+ #~ msgstr "Sito"
1030
+
1031
+ #, fuzzy
1032
+ #~ msgid "Please enter a valid email address."
1033
+ #~ msgstr "Utilizza questa e-mail:"
1034
+
1035
+ #~ msgid "Activated plugins"
1036
+ #~ msgstr "Plugin attivati"
1037
+
1038
+ #~ msgid "Read more"
1039
+ #~ msgstr "Leggi"
1040
+
1041
+ #~ msgid "Installed plugins"
1042
+ #~ msgstr "Plugin installati"
1043
+
1044
+ #~ msgid "Recommended plugins"
1045
+ #~ msgstr "Plugin raccomandati"
1046
+
1047
+ #~ msgid "Download"
1048
+ #~ msgstr "Download"
1049
+
1050
+ #~ msgid "Install %s"
1051
+ #~ msgstr "Installa %s"
1052
+
1053
+ #~ msgid "Install now from wordpress.org"
1054
+ #~ msgstr "Installa ora da wordpress.org"
1055
+
1056
+ #, fuzzy
1057
+ #~ msgid "Active Plugins"
1058
+ #~ msgstr "Plugin attivati"
1059
+
1060
+ #, fuzzy
1061
+ #~ msgid "Inactive Plugins"
1062
+ #~ msgstr "Plugin attivati"
1063
+
1064
+ #, fuzzy
1065
+ #~ msgid "Send to support"
1066
+ #~ msgstr "Supporto"
1067
+
1068
+ #~ msgid "Contact Form Options"
1069
+ #~ msgstr "Opzioni Contact Form"
1070
+
1071
+ #~ msgid "Display Attachment tips"
1072
+ #~ msgstr "Visualizza suggerimenti Allegato"
1073
+
1074
+ #~ msgid "Please enter a valid email address. Settings are not saved."
1075
+ #~ msgstr "Perfavore inserisci una e-mail corretta. Opzioni non salvate."
1076
+
1077
+ #, fuzzy
1078
+ #~ msgid "E-Mail Address"
1079
+ #~ msgstr "Indirizzo e-mail:"
1080
+
1081
+ #~ msgid "E-Mail Addresse:"
1082
+ #~ msgstr "Indirizzo e-mail:"
1083
+
1084
+ #~ msgid "Install Now"
1085
+ #~ msgstr "Installa Ora"
languages/contact_form-fr_FR.mo CHANGED
Binary file
languages/contact_form-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-04-14 15:38+0300\n"
6
- "PO-Revision-Date: 2014-04-14 15:38+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"
@@ -17,990 +17,980 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: contact_form.php:73
21
- #: contact_form.php:785
22
  msgid "Contact Form Settings"
23
  msgstr "Options du formulaire de Contact"
24
 
25
- #: contact_form.php:73
26
  msgid "Contact Form"
27
  msgstr "Formulaire de contact"
28
 
29
- #: contact_form.php:149
30
- #: contact_form.php:1131
31
- #: contact_form.php:1165
32
  msgid "Name:"
33
  msgstr "Nom:"
34
 
35
- #: contact_form.php:150
36
- #: contact_form.php:1132
37
- #: contact_form.php:1166
38
  msgid "Address:"
39
  msgstr "Adresse :"
40
 
41
- #: contact_form.php:151
42
- #: contact_form.php:1133
43
- #: contact_form.php:1167
44
  msgid "Email Address:"
45
  msgstr "Adresse e-mail:"
46
 
47
- #: contact_form.php:152
48
- #: contact_form.php:1134
49
- #: contact_form.php:1168
50
  msgid "Phone number:"
51
  msgstr "Téléphone:"
52
 
53
- #: contact_form.php:153
54
- #: contact_form.php:1135
55
- #: contact_form.php:1169
56
  msgid "Subject:"
57
  msgstr "Sujet:"
58
 
59
- #: contact_form.php:154
60
- #: contact_form.php:1136
61
- #: contact_form.php:1170
62
  msgid "Message:"
63
  msgstr "Message:"
64
 
65
- #: contact_form.php:155
66
- #: contact_form.php:1137
67
- #: contact_form.php:1171
68
  msgid "Attachment:"
69
  msgstr "Pièce jointe:"
70
 
71
- #: contact_form.php:156
72
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
73
  msgstr "Types de fichiers autorisés: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Taille maximum 2MB"
74
 
75
- #: contact_form.php:157
76
- #: contact_form.php:1139
77
- #: contact_form.php:1173
78
  msgid "Send me a copy"
79
  msgstr "M'envoyer une copie"
80
 
81
- #: contact_form.php:158
82
- #: contact_form.php:1140
83
- #: contact_form.php:1174
84
  msgid "Submit"
85
  msgstr "Envoyer"
86
 
87
- #: contact_form.php:159
88
  msgid "Your name is required."
89
  msgstr "Un nom est obligatoire."
90
 
91
- #: contact_form.php:160
92
  msgid "Address is required."
93
  msgstr "Une adresse est obligatoire."
94
 
95
- #: contact_form.php:161
96
  msgid "A valid email address is required."
97
  msgstr "Une adresse e-mail valide est obligatoire."
98
 
99
- #: contact_form.php:162
100
  msgid "Phone number is required."
101
  msgstr "Le numéro de téléphone est obligatoire."
102
 
103
- #: contact_form.php:163
104
  msgid "Subject is required."
105
  msgstr "Le sujet est obligatoire."
106
 
107
- #: contact_form.php:164
108
  msgid "Message text is required."
109
  msgstr "Un message est obligatoire."
110
 
111
- #: contact_form.php:165
112
  msgid "File format is not valid."
113
  msgstr "Le type de pièce jointe n'est pas valide."
114
 
115
- #: contact_form.php:166
116
  msgid "File upload error."
117
  msgstr "Erreur de chargement du fichier."
118
 
119
- #: contact_form.php:167
120
  msgid "The file could not be uploaded."
121
  msgstr "Le fichier n'a pas pu être envoyé."
122
 
123
- #: contact_form.php:168
124
  msgid "This file is too large."
125
  msgstr "Le fichier est trop volumineux."
126
 
127
- #: contact_form.php:169
128
  msgid "Please fill out the CAPTCHA."
129
  msgstr "Merci de compléter le CAPTCHA."
130
 
131
- #: contact_form.php:170
132
  msgid "Please make corrections below and try again."
133
  msgstr "Merci de faire les corrections suivantes et de réessayer."
134
 
135
- #: contact_form.php:172
136
  msgid "Thank you for contacting us."
137
  msgstr "Merci de nous avoir contacté."
138
 
139
- #: contact_form.php:322
140
  msgid "requires"
141
  msgstr "obligatoire"
142
 
143
- #: contact_form.php:322
144
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
145
  msgstr "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à jour de WordPress puis de ré-essayer."
146
 
147
- #: contact_form.php:322
148
  msgid "Back to the WordPress"
149
  msgstr "Retourner à WordPress"
150
 
151
- #: contact_form.php:322
152
  msgid "Plugins page"
153
  msgstr "Page des extensions"
154
 
155
- #: contact_form.php:626
156
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
157
  msgstr "Si l'ioption 'Rediriger vers la page' est positionnée, alors le champ Url doit être rempli avec le format suivant"
158
 
159
- #: contact_form.php:635
160
  msgid "Such user does not exist. Settings are not saved."
161
  msgstr "Cet utilisateur est inconnu. Les modifications ne sont pas enregistrées."
162
 
163
- #: contact_form.php:639
164
- #: contact_form.php:645
165
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
166
  msgstr "Merci de saisir une adresse e-mail valide pour le 'FROM'. Les modifications ne sont pas enregistrées."
167
 
168
- #: contact_form.php:661
169
  msgid "Settings saved."
170
  msgstr "Options enregistrées."
171
 
172
- #: contact_form.php:688
173
- #: contact_form.php:720
174
  msgid "Wrong license key"
175
  msgstr "Clé de licence incorrecte"
176
 
177
- #: contact_form.php:713
178
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
179
  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."
180
 
181
- #: contact_form.php:722
182
  msgid "This license key is bind to another site"
183
  msgstr "La clé de licence correspond à un autre site."
184
 
185
- #: contact_form.php:724
186
- #: contact_form.php:1570
187
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
188
  msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
189
 
190
- #: contact_form.php:741
191
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
192
  msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
193
 
194
- #: contact_form.php:747
195
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
196
  msgstr "Votre server n'a pas le support du format des archives ZIP ou Phar. Merci de télécharger l'extension manuellement."
197
 
198
- #: contact_form.php:751
199
- #: contact_form.php:760
200
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
201
  msgstr "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension manuellement."
202
 
203
- #: contact_form.php:764
204
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
205
  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."
206
 
207
- #: contact_form.php:779
208
  msgid "Please, enter Your license key"
209
  msgstr "Merci de saisir votre clé de liecence"
210
 
211
- #: contact_form.php:787
212
- #: contact_form.php:2216
213
- #: contact_form.php:2228
214
  msgid "Settings"
215
  msgstr "Réglages"
216
 
217
- #: contact_form.php:788
218
  msgid "Extra settings"
219
  msgstr "Options supplémentaires"
220
 
221
- #: contact_form.php:789
 
 
 
 
 
222
  msgid "Go PRO"
223
  msgstr "Choisir la version PRO"
224
 
225
- #: contact_form.php:792
226
  msgid "Notice:"
227
  msgstr "Avertissement :"
228
 
229
- #: contact_form.php:792
230
  msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
231
  msgstr "Les paramètres de l'extension ont été changés. Afin de pouvoir les enregistrer, merci de cliquer sur le bouton 'Enregistrer les modifications'."
232
 
233
- #: contact_form.php:798
234
  msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
235
- msgstr ""
236
 
237
- #: contact_form.php:804
238
- #: contact_form.php:809
239
- #: contact_form.php:1529
240
  msgid "If you would like to add the Contact Form to your website, just copy and paste this shortcode to your post or page or widget:"
241
  msgstr "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez juste ce code dans un article ou sur une page ou un widget:"
242
 
243
- #: contact_form.php:804
244
- #: contact_form.php:805
245
- #: contact_form.php:809
246
- #: contact_form.php:810
247
- #: contact_form.php:1155
248
- #: contact_form.php:1157
249
- #: contact_form.php:1212
250
- #: contact_form.php:1214
251
  msgid "or"
252
  msgstr "ou"
253
 
254
- #: contact_form.php:805
255
- #: contact_form.php:810
256
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
257
  msgstr "Si vous avez un soucis avec le code court standard [contact_form], vous pouvez utilisez le code court "
258
 
259
- #: contact_form.php:806
260
- #: contact_form.php:811
261
  msgid "They work the same way."
262
  msgstr "Ils fonctionnent de la même manière."
263
 
264
- #: contact_form.php:807
265
- #: contact_form.php:812
266
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
267
  msgstr "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à l'adresse spécifiée lors de l'enregistrement."
268
 
269
- #: contact_form.php:817
270
  msgid "The user's email address:"
271
  msgstr "Utiliser l'e-mail du compte WordPress :"
272
 
273
- #: contact_form.php:821
274
  msgid "Create a username"
275
  msgstr "Choisir un nom d'utilisateur"
276
 
277
- #: contact_form.php:828
278
  msgid "Enter a username of the person who should get the messages from the contact form."
279
  msgstr "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le formulaire de contact."
280
 
281
- #: contact_form.php:832
282
  msgid "Use this email address:"
283
  msgstr "Utiliser cette adresse e-mail:"
284
 
285
- #: contact_form.php:835
286
  msgid "Enter the email address you want the messages forwarded to."
287
  msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
288
 
289
- #: contact_form.php:844
290
  msgid "Add department selectbox to the contact form:"
291
  msgstr "Ajouter la liste déroulante pour le département dans le formulaire de contact :"
292
 
293
- #: contact_form.php:852
294
- #: contact_form.php:1412
295
  msgid "If you upgrade to Pro version all your settings will be saved."
296
  msgstr "Si vous passez à la version Pro, tous ces paramètres seront enregistrés."
297
 
298
- #: contact_form.php:859
299
- #: contact_form.php:997
300
- #: contact_form.php:1071
301
- #: contact_form.php:1419
302
  msgid "Unlock premium options by upgrading to a PRO version."
303
- msgstr ""
304
 
305
- #: contact_form.php:860
306
- #: contact_form.php:998
307
- #: contact_form.php:1072
308
- #: contact_form.php:1420
309
- #: contact_form.php:2473
310
- #: contact_form.php:2489
311
- #, fuzzy
312
  msgid "Learn More"
313
  msgstr "Lire la suite"
314
 
315
- #: contact_form.php:863
316
- #: contact_form.php:1001
317
- #: contact_form.php:1075
318
- #: contact_form.php:1423
319
  msgid "Go"
320
  msgstr "Allez"
321
 
322
- #: contact_form.php:870
323
  msgid "Save emails to the database"
324
  msgstr "Enregistrer les e-mails dans la base de données"
325
 
326
- #: contact_form.php:876
327
  msgid "Using"
328
  msgstr "Utilisant"
329
 
330
- #: contact_form.php:876
331
- #: contact_form.php:1048
332
- #: contact_form.php:1051
333
- #: contact_form.php:1055
334
  msgid "powered by"
335
  msgstr "fournis par"
336
 
337
- #: contact_form.php:879
338
- #: contact_form.php:883
339
  msgid "Using Contact Form to DB powered by"
340
  msgstr "Utilisant le formulaire de contact avec base de données fourni par"
341
 
342
- #: contact_form.php:879
343
  msgid "Activate Contact Form to DB"
344
  msgstr "Activer le formulaire de contact avec base de données"
345
 
346
- #: contact_form.php:883
347
  msgid "Download Contact Form to DB"
348
  msgstr "Télécharger le formulaire de contact avec base de données"
349
 
350
- #: contact_form.php:888
351
  msgid "Additional options"
352
  msgstr "Options supplémentaires"
353
 
354
- #: contact_form.php:890
355
  msgid "Show"
356
  msgstr "Montrer"
357
 
358
- #: contact_form.php:891
359
  msgid "Hide"
360
  msgstr "Cacher"
361
 
362
- #: contact_form.php:895
363
  msgid "What to use?"
364
  msgstr "Quelle méthode d'envoie ?"
365
 
366
- #: contact_form.php:898
367
  msgid "Wp-mail"
368
  msgstr "Wp-mail"
369
 
370
- #: contact_form.php:898
371
  msgid "You can use the wp_mail function for mailing"
372
  msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction wp_mail de WordPress "
373
 
374
- #: contact_form.php:900
375
  msgid "Mail"
376
  msgstr "E-mail"
377
 
378
- #: contact_form.php:900
379
  msgid "To send mail you can use the php mail function"
380
  msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction mail de php"
381
 
382
- #: contact_form.php:904
383
  msgid "The text in the 'From' field"
384
  msgstr "Modifier le texte pour le champ 'FROM' du courriel"
385
 
386
- #: contact_form.php:906
387
  msgid "User name"
388
  msgstr "Nom de l'utlisateur"
389
 
390
- #: contact_form.php:907
391
  msgid "The name of the user who fills the form will be used in the field 'From'."
392
  msgstr "Dans le champ 'From' du courriel, il sera utilisé l'adresse e-mail de l'utlisateur qui rempli le formulaire."
393
 
394
- #: contact_form.php:910
395
  msgid "This text will be used in the 'FROM' field"
396
  msgstr "Dans le champ 'FROM', cette adresse e-mail sera utilisée."
397
 
398
- #: contact_form.php:914
399
  msgid "The email address in the 'From' field"
400
  msgstr "Sélectionner l'adresse e-mail pour le champ 'FROM' du courriel"
401
 
402
- #: contact_form.php:916
403
  msgid "User email"
404
  msgstr "E-mail de l'utlisateur"
405
 
406
- #: contact_form.php:917
407
  msgid "The email address of the user who fills the form will be used in the field 'From'."
408
  msgstr "Dans le champ 'From' du courriel, il sera utilisé l'adresse e-mail de l'utlisateur qui rempli le formulaire."
409
 
410
- #: contact_form.php:920
411
  msgid "This email address will be used in the 'From' field."
412
  msgstr "Dans le champ 'FROM', cette adresse e-mail sera utilisée."
413
 
414
- #: contact_form.php:924
415
  msgid "Required symbol"
416
  msgstr "Symbol obligatoire"
417
 
418
- #: contact_form.php:934
419
  msgid "Fields"
420
  msgstr "Champs"
421
 
422
- #: contact_form.php:935
423
  msgid "Used"
424
  msgstr "Utilisé"
425
 
426
- #: contact_form.php:936
427
  msgid "Required"
428
  msgstr "Obligatoire"
429
 
430
- #: contact_form.php:937
431
  msgid "Visible"
432
  msgstr "Visible"
433
 
434
- #: contact_form.php:938
435
  msgid "Disabled for editing"
436
  msgstr "Non actif pour l'édition"
437
 
438
- #: contact_form.php:939
439
  msgid "Field's default value"
440
  msgstr "Valeur par défaut du champ"
441
 
442
- #: contact_form.php:944
443
- #: contact_form.php:1287
444
- #: contact_form.php:2059
445
- #: contact_form.php:2089
446
  msgid "Name"
447
  msgstr "Nom"
448
 
449
- #: contact_form.php:952
450
- #: contact_form.php:1292
451
- #: contact_form.php:2063
452
- #: contact_form.php:2091
453
  msgid "Address"
454
  msgstr "Adresse"
455
 
456
- #: contact_form.php:960
457
  msgid "Email Address"
458
  msgstr "Adresse e-mail"
459
 
460
- #: contact_form.php:968
461
  msgid "Phone number"
462
  msgstr "Téléphone"
463
 
464
- #: contact_form.php:976
465
- #: contact_form.php:1307
466
- #: contact_form.php:2073
467
- #: contact_form.php:2095
468
  msgid "Subject"
469
  msgstr "Sujet"
470
 
471
- #: contact_form.php:984
472
- #: contact_form.php:1311
473
- #: contact_form.php:2076
474
- #: contact_form.php:2096
475
  msgid "Message"
476
  msgstr "Message"
477
 
478
- #: contact_form.php:1008
479
  msgid "Attachment block"
480
  msgstr "Bloc pièce jointe"
481
 
482
- #: contact_form.php:1010
483
  msgid "Users can attach the following file formats"
484
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
485
 
486
- #: contact_form.php:1023
487
  msgid "Add to the form"
488
  msgstr "Ajouter au formulaire"
489
 
490
- #: contact_form.php:1028
491
  msgid "Tips below the Attachment"
492
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
493
 
494
- #: contact_form.php:1037
495
  msgid "'Send me a copy' block"
496
  msgstr "Afficher le bloc \"M'envoyer une copie\""
497
 
498
- #: contact_form.php:1048
499
- #: contact_form.php:1051
500
- #: contact_form.php:1055
501
- #: contact_form.php:1321
502
  msgid "Captcha"
503
  msgstr "Captcha"
504
 
505
- #: contact_form.php:1051
506
  msgid "Activate captcha"
507
  msgstr "Activé le captcha"
508
 
509
- #: contact_form.php:1055
510
  msgid "Download captcha"
511
  msgstr "Télécharger le captcha"
512
 
513
- #: contact_form.php:1063
514
  msgid "Agreement checkbox"
515
  msgstr "Case à cocher pour valider le formulaire"
516
 
517
- #: contact_form.php:1063
518
  msgid "Required checkbox for submitting the form"
519
  msgstr "Boite à cocher obligatoire pour la validation du formulaire."
520
 
521
- #: contact_form.php:1064
522
  msgid "Optional checkbox"
523
  msgstr "Boite à cocher optionnelle"
524
 
525
- #: contact_form.php:1064
526
  msgid "Optional checkbox, the results of which will be displayed in email"
527
  msgstr "Boite à cocher optionnelle, le résultat sera affiché dans l'e-mail"
528
 
529
- #: contact_form.php:1081
530
  msgid "Delete an attachment file from the server after the email is sent"
531
  msgstr "Supprimer le fichier joint sur le serveur après l'envoie de l'e-mail"
532
 
533
- #: contact_form.php:1087
534
  msgid "Email in HTML format sending"
535
  msgstr "E-mail au format HTML"
536
 
537
- #: contact_form.php:1091
538
  msgid "Display additional info in the email"
539
  msgstr "Afficher les informations complémentaires dans le courriel"
540
 
541
- #: contact_form.php:1096
542
- #: contact_form.php:2026
543
- #: contact_form.php:2028
544
  msgid "Sent from (ip address)"
545
  msgstr "Envoyé de (adresse IP)"
546
 
547
- #: contact_form.php:1096
548
  msgid "Example: Sent from (IP address):\t127.0.0.1"
549
  msgstr "Exemple: Envoyé de (addresse IP):\t127.0.0.1"
550
 
551
- #: contact_form.php:1097
552
- #: contact_form.php:2032
553
- #: contact_form.php:2034
554
  msgid "Date/Time"
555
  msgstr "Date/Heure"
556
 
557
- #: contact_form.php:1097
558
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
559
  msgstr "Exemple: Date/Heure:\tAoût 19, 2013 8:50pm"
560
 
561
- #: contact_form.php:1098
562
- #: contact_form.php:2038
563
- #: contact_form.php:2040
564
  msgid "Sent from (referer)"
565
  msgstr "Envoyer de (référence)"
566
 
567
- #: contact_form.php:1098
568
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
569
  msgstr "Exemple: Envoyer de (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
570
 
571
- #: contact_form.php:1099
572
- #: contact_form.php:2044
573
- #: contact_form.php:2046
574
  msgid "Using (user agent)"
575
  msgstr "Depuis (navigateur)"
576
 
577
- #: contact_form.php:1099
578
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
579
  msgstr "Exemple: En utilisant (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
580
 
581
- #: contact_form.php:1103
582
  msgid "Language settings for the field names in the form"
583
  msgstr "Définition des langues pour les titres des champs"
584
 
585
- #: contact_form.php:1112
586
  msgid "Add a language"
587
  msgstr "Ajouter une langue"
588
 
589
- #: contact_form.php:1116
590
  msgid "Change the names of the contact form fields and error messages"
591
  msgstr "Modifier le texte pour les champs du formulaire de contact et les messages d'erreur"
592
 
593
- #: contact_form.php:1121
594
- #: contact_form.php:1202
595
  msgid "English"
596
  msgstr "Anglais"
597
 
598
- #: contact_form.php:1129
599
- #: contact_form.php:1163
600
  msgid "click to expand/hide the list"
601
  msgstr "cliquer pour voir/cacher la liste"
602
 
603
- #: contact_form.php:1138
604
- #: contact_form.php:1172
605
  msgid "Tips below the Attachment block"
606
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
607
 
608
- #: contact_form.php:1141
609
- #: contact_form.php:1175
610
  msgid "Error message for the Name field"
611
  msgstr "Message d'erreur pour le champ nom"
612
 
613
- #: contact_form.php:1142
614
- #: contact_form.php:1176
615
  msgid "Error message for the Address field"
616
  msgstr "Message d'erreur pour le champ Adresse"
617
 
618
- #: contact_form.php:1143
619
- #: contact_form.php:1177
620
  msgid "Error message for the Email field"
621
  msgstr "Message d'erreur pour le champ e-mail"
622
 
623
- #: contact_form.php:1144
624
- #: contact_form.php:1178
625
  msgid "Error message for the Phone field"
626
  msgstr "Message d'erreur pour le champ téléphone"
627
 
628
- #: contact_form.php:1145
629
- #: contact_form.php:1179
630
  msgid "Error message for the Subject field"
631
  msgstr "Message d'erreur pour le champ sujet"
632
 
633
- #: contact_form.php:1146
634
- #: contact_form.php:1180
635
  msgid "Error message for the Message field"
636
  msgstr "Message d'erreur pour le champ message"
637
 
638
- #: contact_form.php:1147
639
- #: contact_form.php:1181
640
  msgid "Error message about the file type for the Attachment field"
641
  msgstr "Message d'erreur pour le champ fichier joint (type du fichier)"
642
 
643
- #: contact_form.php:1148
644
- #: contact_form.php:1182
645
  msgid "Error message while uploading a file for the Attachment field to the server"
646
  msgstr "Message d'erreur pour le champ fichier joint (problème d'envoie vers le serveur)"
647
 
648
- #: contact_form.php:1149
649
- #: contact_form.php:1183
650
  msgid "Error message while moving the file for the Attachment field"
651
  msgstr "Message d'erreur pour le champ fichier joint (déplacement du fichier)"
652
 
653
- #: contact_form.php:1150
654
- #: contact_form.php:1184
655
  msgid "Error message when file size limit for the Attachment field is exceeded"
656
  msgstr "Message d'erreur pour le champ fichier joint (taille limite du fichier atteinte)"
657
 
658
- #: contact_form.php:1151
659
- #: contact_form.php:1185
660
  msgid "Error message for the Captcha field"
661
  msgstr "Message d'erreur pour le captcha"
662
 
663
- #: contact_form.php:1152
664
- #: contact_form.php:1186
665
  msgid "Error message for the whole form"
666
  msgstr "Message d'erreur demandant à compléter les champs manquants"
667
 
668
- #: contact_form.php:1155
669
- #: contact_form.php:1157
670
- #: contact_form.php:1189
671
- #: contact_form.php:1191
672
  #: contact_form.php:1212
673
  #: contact_form.php:1214
674
- #: contact_form.php:1222
675
- #: contact_form.php:1224
 
 
676
  msgid "Use shortcode"
677
  msgstr "Utiliser le code court"
678
 
679
- #: contact_form.php:1155
680
- #: contact_form.php:1157
681
- #: contact_form.php:1189
682
- #: contact_form.php:1191
683
  #: contact_form.php:1212
684
  #: contact_form.php:1214
685
- #: contact_form.php:1222
686
- #: contact_form.php:1224
 
 
687
  msgid "for this language"
688
  msgstr "pour cette langue"
689
 
690
- #: contact_form.php:1199
691
  msgid "Action after email is sent"
692
  msgstr "Action après l'envoie de l'e-mail"
693
 
694
- #: contact_form.php:1201
695
  msgid "Display text"
696
  msgstr "Afficher le texte"
697
 
698
- #: contact_form.php:1210
699
- #: contact_form.php:1220
700
  msgid "Text"
701
  msgstr "Texte"
702
 
703
- #: contact_form.php:1231
704
  msgid "Redirect to the page"
705
  msgstr "Rediriger vers la page"
706
 
707
- #: contact_form.php:1232
708
  msgid "Url"
709
  msgstr "Url"
710
 
711
- #: contact_form.php:1236
712
  msgid "The $_SERVER variable that is used to build a URL of the form"
713
  msgstr "La variable $_SERVER qui est utilisée pour construire l'URL du formulaire"
714
 
715
- #: contact_form.php:1240
716
  msgid "If you are not sure whether to change this setting or not, please do not do that."
717
  msgstr "Si vous n'êtes pas sûr de ce que vous faites, merci de ne pas toucher ce paramètre."
718
 
719
- #: contact_form.php:1246
720
- #: contact_form.php:1430
721
  msgid "Save Changes"
722
  msgstr "Enregistrer les modifications"
723
 
724
- #: contact_form.php:1251
725
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
726
  msgstr "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans Wordpress"
727
 
728
- #: contact_form.php:1252
729
  msgid "Rate the plugin"
730
  msgstr "Noter l'extension"
731
 
732
- #: contact_form.php:1255
733
  msgid "If there is something wrong about it, please contact us"
734
  msgstr "Si quelque chose ne fonctionne pas correctement, merci de nous contacter"
735
 
736
- #: contact_form.php:1267
737
  msgid "Errors output"
738
  msgstr "Affichage des erreurs"
739
 
740
- #: contact_form.php:1270
741
  msgid "Display error messages"
742
  msgstr "Aficher les messages d'erreur"
743
 
744
- #: contact_form.php:1271
745
  msgid "Color of the input field errors."
746
  msgstr "Mettre en couleur les champs ayant des erreurs"
747
 
748
- #: contact_form.php:1272
749
  msgid "Display error messages & color of the input field errors"
750
  msgstr "Afficher les messages d'erreur et mettre en couleur les champs ayant des erreurs"
751
 
752
- #: contact_form.php:1277
753
  msgid "Add placeholder to the input blocks"
754
  msgstr "Ajouter la localisation dans le bloc de saisie"
755
 
756
- #: contact_form.php:1283
757
  msgid "Add tooltips"
758
  msgstr "Ajouter les conseils"
759
 
760
- #: contact_form.php:1297
761
  msgid "Email address"
762
  msgstr "Adresse e-mail"
763
 
764
- #: contact_form.php:1302
765
  msgid "Phone Number"
766
  msgstr "Téléphone"
767
 
768
- #: contact_form.php:1316
769
  msgid "Attachment"
770
  msgstr "Pièce jointe"
771
 
772
- #: contact_form.php:1321
773
  msgid "(powered by bestwebsoft.com)"
774
  msgstr "(fourni par bestwebsoft.com)"
775
 
776
- #: contact_form.php:1326
777
  msgid "Style options"
778
  msgstr "Options de style"
779
 
780
- #: contact_form.php:1329
781
  msgid "Text color"
782
  msgstr "Couleur du texte"
783
 
784
- #: contact_form.php:1332
785
- #: contact_form.php:1337
786
- #: contact_form.php:1347
787
- #: contact_form.php:1352
788
- #: contact_form.php:1357
789
- #: contact_form.php:1362
790
- #: contact_form.php:1372
791
- #: contact_form.php:1377
792
- #: contact_form.php:1383
793
- #: contact_form.php:1394
794
- #: contact_form.php:1399
795
- #: contact_form.php:1404
796
  msgid "Default"
797
  msgstr "Défaut"
798
 
799
- #: contact_form.php:1334
800
  msgid "Label text color"
801
  msgstr "Couleur des textes des intitulés"
802
 
803
- #: contact_form.php:1339
804
  msgid "Placeholder color"
805
  msgstr "Couleur pour la localisation"
806
 
807
- #: contact_form.php:1344
808
  msgid "Errors color"
809
  msgstr "Couleur pour les erreurs"
810
 
811
- #: contact_form.php:1349
812
  msgid "Error text color"
813
  msgstr "Couleur pour le texte des erreurs"
814
 
815
- #: contact_form.php:1354
816
  msgid "Background color of the input field errors"
817
  msgstr "Couleur de fond pour les erreurs de saisie dans les champs"
818
 
819
- #: contact_form.php:1359
820
  msgid "Border color of the input field errors"
821
  msgstr "Couleur de la bordure pour les erreurs de saisie dans les champs"
822
 
823
- #: contact_form.php:1364
824
  msgid "Placeholder color of the input field errors"
825
  msgstr "Couleur pour la localisation lors d'une erreur de saisie du champ"
826
 
827
- #: contact_form.php:1369
828
  msgid "Input fields"
829
  msgstr "Champs de saisie"
830
 
831
- #: contact_form.php:1374
832
  msgid "Input fields background color"
833
  msgstr "Couleur de fond pour les champs de saisie"
834
 
835
- #: contact_form.php:1379
836
  msgid "Text fields color"
837
  msgstr "Couleur pour les textes des champs de saisie"
838
 
839
- #: contact_form.php:1381
840
  msgid "Border width in px, numbers only"
841
  msgstr "Largeur des bordures en px, nombre seulement"
842
 
843
- #: contact_form.php:1385
844
- #: contact_form.php:1406
845
  msgid "Border color"
846
  msgstr "Couleur des bordures"
847
 
848
- #: contact_form.php:1390
849
  msgid "Submit button"
850
  msgstr "Bouton Envoyer"
851
 
852
- #: contact_form.php:1392
853
  msgid "Width in px, numbers only"
854
  msgstr "Largeur en px, nombre seulement"
855
 
856
- #: contact_form.php:1396
857
  msgid "Button color"
858
  msgstr "Couleur du bouton"
859
 
860
- #: contact_form.php:1401
861
  msgid "Button text color"
862
  msgstr "Couleur du texte du bouton"
863
 
864
- #: contact_form.php:1434
865
  msgid "Contact Form Pro | Preview"
866
  msgstr "Formulaire Pro de Contact | Prévisualisation"
867
 
868
- #: contact_form.php:1437
869
  msgid "Show with errors"
870
  msgstr "Afficher avec les erreurs"
871
 
872
- #: contact_form.php:1445
873
- #: contact_form.php:1447
874
  msgid "Please enter your full name..."
875
  msgstr "Merci de saisir votre nom..."
876
 
877
- #: contact_form.php:1458
878
- #: contact_form.php:1460
879
  msgid "Please enter your address..."
880
  msgstr "Merci de saisir votre adresse..."
881
 
882
- #: contact_form.php:1469
883
- #: contact_form.php:1471
884
  msgid "Please enter your email address..."
885
  msgstr "Merci de saisir votre adresse e-mail..."
886
 
887
- #: contact_form.php:1480
888
- #: contact_form.php:1482
889
  msgid "Please enter your phone number..."
890
  msgstr "Merci de saisir votre numéro de téléphone..."
891
 
892
- #: contact_form.php:1491
893
- #: contact_form.php:1493
894
  msgid "Please enter subject..."
895
  msgstr "Merci de saisir le sujet..."
896
 
897
- #: contact_form.php:1501
898
- #: contact_form.php:1503
899
  msgid "Please enter your message..."
900
  msgstr "Merci de saisir votre message..."
901
 
902
- #: contact_form.php:1545
903
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
904
  msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
905
 
906
- #: contact_form.php:1547
907
  msgid "Please, go to"
908
  msgstr "Merci d'allez à"
909
 
910
- #: contact_form.php:1547
911
  msgid "the setting page"
912
  msgstr "Options supplémentaires"
913
 
914
- #: contact_form.php:1548
915
  msgid "You will be redirected automatically in 5 seconds."
916
  msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
917
 
918
- #: contact_form.php:1553
919
  msgid "You can download and activate"
920
  msgstr "Vous pouvez la télécharger et l'activer"
921
 
922
- #: contact_form.php:1555
923
  msgid "version of this plugin by entering Your license key."
924
  msgstr "version de cette extension en donnant votre clé de licence."
925
 
926
- #: contact_form.php:1557
927
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
928
  msgstr "Vous pouvez trouver votre clé de licence sur votre page personnelle dans la zone cliente en cliquant sur le lien"
929
 
930
- #: contact_form.php:1559
931
  msgid "(your username is the email you specify when purchasing the product)."
932
  msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension)."
933
 
934
- #: contact_form.php:1567
935
- #: contact_form.php:1577
936
  msgid "Go!"
937
  msgstr "Allez!"
938
 
939
- #: contact_form.php:1647
940
  msgid "Sorry, email message could not be delivered."
941
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
942
 
943
- #: contact_form.php:2053
944
  msgid "Contact from"
945
  msgstr "Contact de"
946
 
947
- #: contact_form.php:2066
948
  #: contact_form.php:2092
 
949
  msgid "Email"
950
  msgstr "E-mail"
951
 
952
- #: contact_form.php:2070
953
- #: contact_form.php:2094
954
  msgid "Phone"
955
  msgstr "Téléphone"
956
 
957
- #: contact_form.php:2079
958
- #: contact_form.php:2097
959
  msgid "Site"
960
  msgstr "Site"
961
 
962
- #: contact_form.php:2160
963
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
964
  msgstr "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de MIME !"
965
 
966
- #: contact_form.php:2229
967
- msgid "FAQ"
968
- msgstr "FAQ"
969
-
970
- #: contact_form.php:2230
971
  msgid "Support"
972
  msgstr "Support"
973
 
974
- #: contact_form.php:2280
975
  msgid "Are you sure that you want to delete this language data?"
976
  msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
977
 
978
- #: contact_form.php:2476
979
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
980
  msgstr "Le moment est venu de mettre à jour votre <strong>extension Contact Form</strong> vers la version <strong>PRO</strong>"
981
 
982
- #: contact_form.php:2477
983
  msgid "Extend standard plugin functionality with new great options."
984
  msgstr "Etend les fonctionalités de base de l'extension avec de nouvelles options."
985
 
986
- #: contact_form.php:2492
987
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
988
  msgstr "<strong>Contact Form to DB</strong> permet d'enregistrer les messages dans la base de données."
989
 
990
- #: contact_form.php:2493
991
  msgid "Manage messages that have been sent from your website."
992
  msgstr "Gérer les messages qui ont été envoyés depuis votre site."
993
 
994
- #~ msgid ""
995
- #~ "This functionality is available in the Pro version of the plugin. For "
996
- #~ "more details, please follow the link"
997
- #~ msgstr ""
998
- #~ "Cette fonctionalité est disponible dans le version Pro de cette "
999
- #~ "extension. Pour plus de détails, merci de suivre ce lien"
1000
-
1001
- #~ msgid "Contact Form Pro"
1002
- #~ msgstr "Formulaire Pro de Contact"
1003
-
1004
  #~ msgid "Not set"
1005
  #~ msgstr "Not set"
1006
 
@@ -1091,87 +1081,15 @@ msgstr "Gérer les messages qui ont été envoyés depuis votre site."
1091
  #~ msgid "Email with system info is sent to "
1092
  #~ msgstr "Le courriel avec les informations système est envoyé à"
1093
 
1094
- #~ msgid "Switch to new interface"
1095
- #~ msgstr "Basculer vers la nouvelle interface"
1096
-
1097
- #~ msgid "Pro plugins"
1098
- #~ msgstr "Extensions Pro"
1099
-
1100
- #~ msgid "Activated plugins"
1101
- #~ msgstr "Extensions activées"
1102
-
1103
- #~ msgid "Read more"
1104
- #~ msgstr "Lire la suite"
1105
-
1106
- #~ msgid "Installed plugins"
1107
- #~ msgstr "Extension installée"
1108
-
1109
- #~ msgid "Recommended plugins"
1110
- #~ msgstr "Extensions recommandées"
1111
-
1112
- #~ msgid "Purchase"
1113
- #~ msgstr "Achetez"
1114
-
1115
- #~ msgid "Free plugins"
1116
- #~ msgstr "Extensions gratuites"
1117
-
1118
- #~ msgid "Download"
1119
- #~ msgstr "Téléchargement"
1120
-
1121
- #~ msgid "Install %s"
1122
- #~ msgstr "%s installé"
1123
-
1124
- #~ msgid "Install now from wordpress.org"
1125
- #~ msgstr "Installer maintenant depuis wordpress.org"
1126
-
1127
- #~ msgid "Free themes"
1128
- #~ msgstr "Thèmes gratuits"
1129
-
1130
- #~ msgid "Activated theme"
1131
- #~ msgstr "Theme actif"
1132
-
1133
- #~ msgid "Customize &#8220;%s&#8221;"
1134
- #~ msgstr "Personnaliser &#8220;%s&#8221;"
1135
-
1136
- #~ msgid "Customize"
1137
- #~ msgstr "Personnaliser"
1138
-
1139
- #~ msgid "Installed themes"
1140
- #~ msgstr "Thèmes installés"
1141
-
1142
- #~ msgid "Recommended themes"
1143
- #~ msgstr "Thèmes recommandés"
1144
-
1145
- #~ msgid "If you have any questions, please contact us via"
1146
- #~ msgstr "Si vous avez des questions, merci de contacter via "
1147
-
1148
- #~ msgid "System status"
1149
- #~ msgstr "System status"
1150
-
1151
- #~ msgid "Environment"
1152
- #~ msgstr "Environment"
1153
-
1154
- #~ msgid "Active Plugins"
1155
- #~ msgstr "Extensions actives"
1156
-
1157
- #~ msgid "Inactive Plugins"
1158
- #~ msgstr "Extensions inactives"
1159
-
1160
- #~ msgid "Send to support"
1161
- #~ msgstr "Envoyé au support"
1162
-
1163
- #~ msgid "Send to custom email &#187;"
1164
- #~ msgstr "Envoyer un e-mail spécifique &#187;"
1165
-
1166
- #~ msgid "Switch to old interface"
1167
- #~ msgstr "Basculer vers l'ancienne interface"
1168
-
1169
  #~ msgid "Plugins"
1170
  #~ msgstr "Extensions"
1171
 
1172
  #~ msgid "Themes"
1173
  #~ msgstr "Thèmes"
1174
 
 
 
 
1175
  #~ msgid "All"
1176
  #~ msgstr "Tous"
1177
 
@@ -1181,6 +1099,12 @@ msgstr "Gérer les messages qui ont été envoyés depuis votre site."
1181
  #~ msgid "Recommended"
1182
  #~ msgstr "Recommandés"
1183
 
 
 
 
 
 
 
1184
  #~ msgid "DONATE"
1185
  #~ msgstr "Faire un don"
1186
 
@@ -1190,6 +1114,9 @@ msgstr "Gérer les messages qui ont été envoyés depuis votre site."
1190
  #~ msgid "Activate"
1191
  #~ msgstr "Activé"
1192
 
 
 
 
1193
  #~ msgid "Install now"
1194
  #~ msgstr "Installer maintenant"
1195
 
@@ -1199,6 +1126,9 @@ msgstr "Gérer les messages qui ont été envoyés depuis votre site."
1199
  #~ msgid "Preview &#8220;%s&#8221;"
1200
  #~ msgstr "Pré-visualiser &#8220;%s&#8221;"
1201
 
 
 
 
1202
  #~ msgid "Install Now"
1203
  #~ msgstr "Installer maintenant"
1204
 
@@ -1223,6 +1153,79 @@ msgstr "Gérer les messages qui ont été envoyés depuis votre site."
1223
  #~ msgid "Details"
1224
  #~ msgstr "Détails"
1225
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1226
  #~ msgid "Contact Form Pro Extra Settings"
1227
  #~ msgstr ""
1228
  #~ "Options supplémentaires de la version Pro pour le formulaire de Contact"
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-20 13:46+0300\n"
6
+ "PO-Revision-Date: 2014-05-20 13:47+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"
17
  "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: contact_form.php:74
21
+ #: contact_form.php:807
22
  msgid "Contact Form Settings"
23
  msgstr "Options du formulaire de Contact"
24
 
25
+ #: contact_form.php:74
26
  msgid "Contact Form"
27
  msgstr "Formulaire de contact"
28
 
29
+ #: contact_form.php:150
30
+ #: contact_form.php:1154
31
+ #: contact_form.php:1188
32
  msgid "Name:"
33
  msgstr "Nom:"
34
 
35
+ #: contact_form.php:151
36
+ #: contact_form.php:1155
37
+ #: contact_form.php:1189
38
  msgid "Address:"
39
  msgstr "Adresse :"
40
 
41
+ #: contact_form.php:152
42
+ #: contact_form.php:1156
43
+ #: contact_form.php:1190
44
  msgid "Email Address:"
45
  msgstr "Adresse e-mail:"
46
 
47
+ #: contact_form.php:153
48
+ #: contact_form.php:1157
49
+ #: contact_form.php:1191
50
  msgid "Phone number:"
51
  msgstr "Téléphone:"
52
 
53
+ #: contact_form.php:154
54
+ #: contact_form.php:1158
55
+ #: contact_form.php:1192
56
  msgid "Subject:"
57
  msgstr "Sujet:"
58
 
59
+ #: contact_form.php:155
60
+ #: contact_form.php:1159
61
+ #: contact_form.php:1193
62
  msgid "Message:"
63
  msgstr "Message:"
64
 
65
+ #: contact_form.php:156
66
+ #: contact_form.php:1160
67
+ #: contact_form.php:1194
68
  msgid "Attachment:"
69
  msgstr "Pièce jointe:"
70
 
71
+ #: contact_form.php:157
72
  msgid "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file size: 2MB"
73
  msgstr "Types de fichiers autorisés: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Taille maximum 2MB"
74
 
75
+ #: contact_form.php:158
76
+ #: contact_form.php:1162
77
+ #: contact_form.php:1196
78
  msgid "Send me a copy"
79
  msgstr "M'envoyer une copie"
80
 
81
+ #: contact_form.php:159
82
+ #: contact_form.php:1163
83
+ #: contact_form.php:1197
84
  msgid "Submit"
85
  msgstr "Envoyer"
86
 
87
+ #: contact_form.php:160
88
  msgid "Your name is required."
89
  msgstr "Un nom est obligatoire."
90
 
91
+ #: contact_form.php:161
92
  msgid "Address is required."
93
  msgstr "Une adresse est obligatoire."
94
 
95
+ #: contact_form.php:162
96
  msgid "A valid email address is required."
97
  msgstr "Une adresse e-mail valide est obligatoire."
98
 
99
+ #: contact_form.php:163
100
  msgid "Phone number is required."
101
  msgstr "Le numéro de téléphone est obligatoire."
102
 
103
+ #: contact_form.php:164
104
  msgid "Subject is required."
105
  msgstr "Le sujet est obligatoire."
106
 
107
+ #: contact_form.php:165
108
  msgid "Message text is required."
109
  msgstr "Un message est obligatoire."
110
 
111
+ #: contact_form.php:166
112
  msgid "File format is not valid."
113
  msgstr "Le type de pièce jointe n'est pas valide."
114
 
115
+ #: contact_form.php:167
116
  msgid "File upload error."
117
  msgstr "Erreur de chargement du fichier."
118
 
119
+ #: contact_form.php:168
120
  msgid "The file could not be uploaded."
121
  msgstr "Le fichier n'a pas pu être envoyé."
122
 
123
+ #: contact_form.php:169
124
  msgid "This file is too large."
125
  msgstr "Le fichier est trop volumineux."
126
 
127
+ #: contact_form.php:170
128
  msgid "Please fill out the CAPTCHA."
129
  msgstr "Merci de compléter le CAPTCHA."
130
 
131
+ #: contact_form.php:171
132
  msgid "Please make corrections below and try again."
133
  msgstr "Merci de faire les corrections suivantes et de réessayer."
134
 
135
+ #: contact_form.php:173
136
  msgid "Thank you for contacting us."
137
  msgstr "Merci de nous avoir contacté."
138
 
139
+ #: contact_form.php:333
140
  msgid "requires"
141
  msgstr "obligatoire"
142
 
143
+ #: contact_form.php:333
144
  msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
145
  msgstr "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à jour de WordPress puis de ré-essayer."
146
 
147
+ #: contact_form.php:333
148
  msgid "Back to the WordPress"
149
  msgstr "Retourner à WordPress"
150
 
151
+ #: contact_form.php:333
152
  msgid "Plugins page"
153
  msgstr "Page des extensions"
154
 
155
+ #: contact_form.php:639
156
  msgid "If the 'Redirect to page' option is selected then the URL field should be in the following format"
157
  msgstr "Si l'ioption 'Rediriger vers la page' est positionnée, alors le champ Url doit être rempli avec le format suivant"
158
 
159
+ #: contact_form.php:648
160
  msgid "Such user does not exist. Settings are not saved."
161
  msgstr "Cet utilisateur est inconnu. Les modifications ne sont pas enregistrées."
162
 
163
+ #: contact_form.php:652
164
+ #: contact_form.php:658
165
  msgid "Please enter a valid email address in the 'FROM' field. Settings are not saved."
166
  msgstr "Merci de saisir une adresse e-mail valide pour le 'FROM'. Les modifications ne sont pas enregistrées."
167
 
168
+ #: contact_form.php:683
169
  msgid "Settings saved."
170
  msgstr "Options enregistrées."
171
 
172
+ #: contact_form.php:710
173
+ #: contact_form.php:742
174
  msgid "Wrong license key"
175
  msgstr "Clé de licence incorrecte"
176
 
177
+ #: contact_form.php:735
178
  msgid "Something went wrong. Try again later. If the error will appear again, please, contact us <a href=http://support.bestwebsoft.com>BestWebSoft</a>. We are sorry for inconvenience."
179
  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."
180
 
181
+ #: contact_form.php:744
182
  msgid "This license key is bind to another site"
183
  msgstr "La clé de licence correspond à un autre site."
184
 
185
+ #: contact_form.php:746
186
+ #: contact_form.php:1593
187
  msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
188
  msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
189
 
190
+ #: contact_form.php:763
191
  msgid "Failed to open the zip archive. Please, upload the plugin manually"
192
  msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
193
 
194
+ #: contact_form.php:769
195
  msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
196
  msgstr "Votre server n'a pas le support du format des archives ZIP ou Phar. Merci de télécharger l'extension manuellement."
197
 
198
+ #: contact_form.php:773
199
+ #: contact_form.php:782
200
  msgid "Failed to download the zip archive. Please, upload the plugin manually"
201
  msgstr "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension manuellement."
202
 
203
+ #: contact_form.php:786
204
  msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvienience."
205
  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."
206
 
207
+ #: contact_form.php:801
208
  msgid "Please, enter Your license key"
209
  msgstr "Merci de saisir votre clé de liecence"
210
 
211
+ #: contact_form.php:809
212
+ #: contact_form.php:2242
213
+ #: contact_form.php:2254
214
  msgid "Settings"
215
  msgstr "Réglages"
216
 
217
+ #: contact_form.php:810
218
  msgid "Extra settings"
219
  msgstr "Options supplémentaires"
220
 
221
+ #: contact_form.php:811
222
+ #: contact_form.php:2255
223
+ msgid "FAQ"
224
+ msgstr "FAQ"
225
+
226
+ #: contact_form.php:812
227
  msgid "Go PRO"
228
  msgstr "Choisir la version PRO"
229
 
230
+ #: contact_form.php:815
231
  msgid "Notice:"
232
  msgstr "Avertissement :"
233
 
234
+ #: contact_form.php:815
235
  msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
236
  msgstr "Les paramètres de l'extension ont été changés. Afin de pouvoir les enregistrer, merci de cliquer sur le bouton 'Enregistrer les modifications'."
237
 
238
+ #: contact_form.php:821
239
  msgid "If you want to create multiple contact forms, please install the Contact Form Multi plugin."
240
+ msgstr "Si vous voulez créer plusieurs formulaire de contact, merci d'installer l'extension 'Contact Form Multi'"
241
 
242
+ #: contact_form.php:827
243
+ #: contact_form.php:832
244
+ #: contact_form.php:1552
245
  msgid "If you would like to add the Contact Form to your website, just copy and paste this shortcode to your post or page or widget:"
246
  msgstr "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez juste ce code dans un article ou sur une page ou un widget:"
247
 
248
+ #: contact_form.php:827
249
+ #: contact_form.php:828
250
+ #: contact_form.php:832
251
+ #: contact_form.php:833
252
+ #: contact_form.php:1178
253
+ #: contact_form.php:1180
254
+ #: contact_form.php:1235
255
+ #: contact_form.php:1237
256
  msgid "or"
257
  msgstr "ou"
258
 
259
+ #: contact_form.php:828
260
+ #: contact_form.php:833
261
  msgid "If have any problems with the standard shortcode [contact_form], you should use the shortcode"
262
  msgstr "Si vous avez un soucis avec le code court standard [contact_form], vous pouvez utilisez le code court "
263
 
264
+ #: contact_form.php:829
265
+ #: contact_form.php:834
266
  msgid "They work the same way."
267
  msgstr "Ils fonctionnent de la même manière."
268
 
269
+ #: contact_form.php:830
270
+ #: contact_form.php:835
271
  msgid "If you leave the fields empty, the messages will be sent to the email address specified during registration."
272
  msgstr "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à l'adresse spécifiée lors de l'enregistrement."
273
 
274
+ #: contact_form.php:840
275
  msgid "The user's email address:"
276
  msgstr "Utiliser l'e-mail du compte WordPress :"
277
 
278
+ #: contact_form.php:844
279
  msgid "Create a username"
280
  msgstr "Choisir un nom d'utilisateur"
281
 
282
+ #: contact_form.php:851
283
  msgid "Enter a username of the person who should get the messages from the contact form."
284
  msgstr "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le formulaire de contact."
285
 
286
+ #: contact_form.php:855
287
  msgid "Use this email address:"
288
  msgstr "Utiliser cette adresse e-mail:"
289
 
290
+ #: contact_form.php:858
291
  msgid "Enter the email address you want the messages forwarded to."
292
  msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
293
 
294
+ #: contact_form.php:867
295
  msgid "Add department selectbox to the contact form:"
296
  msgstr "Ajouter la liste déroulante pour le département dans le formulaire de contact :"
297
 
298
+ #: contact_form.php:875
299
+ #: contact_form.php:1435
300
  msgid "If you upgrade to Pro version all your settings will be saved."
301
  msgstr "Si vous passez à la version Pro, tous ces paramètres seront enregistrés."
302
 
303
+ #: contact_form.php:882
304
+ #: contact_form.php:1020
305
+ #: contact_form.php:1094
306
+ #: contact_form.php:1442
307
  msgid "Unlock premium options by upgrading to a PRO version."
308
+ msgstr "Déploquer les options premium en migrant vers la version PRO."
309
 
310
+ #: contact_form.php:883
311
+ #: contact_form.php:1021
312
+ #: contact_form.php:1095
313
+ #: contact_form.php:1443
314
+ #: contact_form.php:2510
315
+ #: contact_form.php:2526
 
316
  msgid "Learn More"
317
  msgstr "Lire la suite"
318
 
319
+ #: contact_form.php:886
320
+ #: contact_form.php:1024
321
+ #: contact_form.php:1098
322
+ #: contact_form.php:1446
323
  msgid "Go"
324
  msgstr "Allez"
325
 
326
+ #: contact_form.php:893
327
  msgid "Save emails to the database"
328
  msgstr "Enregistrer les e-mails dans la base de données"
329
 
330
+ #: contact_form.php:899
331
  msgid "Using"
332
  msgstr "Utilisant"
333
 
334
+ #: contact_form.php:899
335
+ #: contact_form.php:1071
336
+ #: contact_form.php:1074
337
+ #: contact_form.php:1078
338
  msgid "powered by"
339
  msgstr "fournis par"
340
 
341
+ #: contact_form.php:902
342
+ #: contact_form.php:906
343
  msgid "Using Contact Form to DB powered by"
344
  msgstr "Utilisant le formulaire de contact avec base de données fourni par"
345
 
346
+ #: contact_form.php:902
347
  msgid "Activate Contact Form to DB"
348
  msgstr "Activer le formulaire de contact avec base de données"
349
 
350
+ #: contact_form.php:906
351
  msgid "Download Contact Form to DB"
352
  msgstr "Télécharger le formulaire de contact avec base de données"
353
 
354
+ #: contact_form.php:911
355
  msgid "Additional options"
356
  msgstr "Options supplémentaires"
357
 
358
+ #: contact_form.php:913
359
  msgid "Show"
360
  msgstr "Montrer"
361
 
362
+ #: contact_form.php:914
363
  msgid "Hide"
364
  msgstr "Cacher"
365
 
366
+ #: contact_form.php:918
367
  msgid "What to use?"
368
  msgstr "Quelle méthode d'envoie ?"
369
 
370
+ #: contact_form.php:921
371
  msgid "Wp-mail"
372
  msgstr "Wp-mail"
373
 
374
+ #: contact_form.php:921
375
  msgid "You can use the wp_mail function for mailing"
376
  msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction wp_mail de WordPress "
377
 
378
+ #: contact_form.php:923
379
  msgid "Mail"
380
  msgstr "E-mail"
381
 
382
+ #: contact_form.php:923
383
  msgid "To send mail you can use the php mail function"
384
  msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction mail de php"
385
 
386
+ #: contact_form.php:927
387
  msgid "The text in the 'From' field"
388
  msgstr "Modifier le texte pour le champ 'FROM' du courriel"
389
 
390
+ #: contact_form.php:929
391
  msgid "User name"
392
  msgstr "Nom de l'utlisateur"
393
 
394
+ #: contact_form.php:930
395
  msgid "The name of the user who fills the form will be used in the field 'From'."
396
  msgstr "Dans le champ 'From' du courriel, il sera utilisé l'adresse e-mail de l'utlisateur qui rempli le formulaire."
397
 
398
+ #: contact_form.php:933
399
  msgid "This text will be used in the 'FROM' field"
400
  msgstr "Dans le champ 'FROM', cette adresse e-mail sera utilisée."
401
 
402
+ #: contact_form.php:937
403
  msgid "The email address in the 'From' field"
404
  msgstr "Sélectionner l'adresse e-mail pour le champ 'FROM' du courriel"
405
 
406
+ #: contact_form.php:939
407
  msgid "User email"
408
  msgstr "E-mail de l'utlisateur"
409
 
410
+ #: contact_form.php:940
411
  msgid "The email address of the user who fills the form will be used in the field 'From'."
412
  msgstr "Dans le champ 'From' du courriel, il sera utilisé l'adresse e-mail de l'utlisateur qui rempli le formulaire."
413
 
414
+ #: contact_form.php:943
415
  msgid "This email address will be used in the 'From' field."
416
  msgstr "Dans le champ 'FROM', cette adresse e-mail sera utilisée."
417
 
418
+ #: contact_form.php:947
419
  msgid "Required symbol"
420
  msgstr "Symbol obligatoire"
421
 
422
+ #: contact_form.php:957
423
  msgid "Fields"
424
  msgstr "Champs"
425
 
426
+ #: contact_form.php:958
427
  msgid "Used"
428
  msgstr "Utilisé"
429
 
430
+ #: contact_form.php:959
431
  msgid "Required"
432
  msgstr "Obligatoire"
433
 
434
+ #: contact_form.php:960
435
  msgid "Visible"
436
  msgstr "Visible"
437
 
438
+ #: contact_form.php:961
439
  msgid "Disabled for editing"
440
  msgstr "Non actif pour l'édition"
441
 
442
+ #: contact_form.php:962
443
  msgid "Field's default value"
444
  msgstr "Valeur par défaut du champ"
445
 
446
+ #: contact_form.php:967
447
+ #: contact_form.php:1310
448
+ #: contact_form.php:2085
449
+ #: contact_form.php:2115
450
  msgid "Name"
451
  msgstr "Nom"
452
 
453
+ #: contact_form.php:975
454
+ #: contact_form.php:1315
455
+ #: contact_form.php:2089
456
+ #: contact_form.php:2117
457
  msgid "Address"
458
  msgstr "Adresse"
459
 
460
+ #: contact_form.php:983
461
  msgid "Email Address"
462
  msgstr "Adresse e-mail"
463
 
464
+ #: contact_form.php:991
465
  msgid "Phone number"
466
  msgstr "Téléphone"
467
 
468
+ #: contact_form.php:999
469
+ #: contact_form.php:1330
470
+ #: contact_form.php:2099
471
+ #: contact_form.php:2121
472
  msgid "Subject"
473
  msgstr "Sujet"
474
 
475
+ #: contact_form.php:1007
476
+ #: contact_form.php:1334
477
+ #: contact_form.php:2102
478
+ #: contact_form.php:2122
479
  msgid "Message"
480
  msgstr "Message"
481
 
482
+ #: contact_form.php:1031
483
  msgid "Attachment block"
484
  msgstr "Bloc pièce jointe"
485
 
486
+ #: contact_form.php:1033
487
  msgid "Users can attach the following file formats"
488
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
489
 
490
+ #: contact_form.php:1046
491
  msgid "Add to the form"
492
  msgstr "Ajouter au formulaire"
493
 
494
+ #: contact_form.php:1051
495
  msgid "Tips below the Attachment"
496
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
497
 
498
+ #: contact_form.php:1060
499
  msgid "'Send me a copy' block"
500
  msgstr "Afficher le bloc \"M'envoyer une copie\""
501
 
502
+ #: contact_form.php:1071
503
+ #: contact_form.php:1074
504
+ #: contact_form.php:1078
505
+ #: contact_form.php:1344
506
  msgid "Captcha"
507
  msgstr "Captcha"
508
 
509
+ #: contact_form.php:1074
510
  msgid "Activate captcha"
511
  msgstr "Activé le captcha"
512
 
513
+ #: contact_form.php:1078
514
  msgid "Download captcha"
515
  msgstr "Télécharger le captcha"
516
 
517
+ #: contact_form.php:1086
518
  msgid "Agreement checkbox"
519
  msgstr "Case à cocher pour valider le formulaire"
520
 
521
+ #: contact_form.php:1086
522
  msgid "Required checkbox for submitting the form"
523
  msgstr "Boite à cocher obligatoire pour la validation du formulaire."
524
 
525
+ #: contact_form.php:1087
526
  msgid "Optional checkbox"
527
  msgstr "Boite à cocher optionnelle"
528
 
529
+ #: contact_form.php:1087
530
  msgid "Optional checkbox, the results of which will be displayed in email"
531
  msgstr "Boite à cocher optionnelle, le résultat sera affiché dans l'e-mail"
532
 
533
+ #: contact_form.php:1104
534
  msgid "Delete an attachment file from the server after the email is sent"
535
  msgstr "Supprimer le fichier joint sur le serveur après l'envoie de l'e-mail"
536
 
537
+ #: contact_form.php:1110
538
  msgid "Email in HTML format sending"
539
  msgstr "E-mail au format HTML"
540
 
541
+ #: contact_form.php:1114
542
  msgid "Display additional info in the email"
543
  msgstr "Afficher les informations complémentaires dans le courriel"
544
 
545
+ #: contact_form.php:1119
546
+ #: contact_form.php:2052
547
+ #: contact_form.php:2054
548
  msgid "Sent from (ip address)"
549
  msgstr "Envoyé de (adresse IP)"
550
 
551
+ #: contact_form.php:1119
552
  msgid "Example: Sent from (IP address):\t127.0.0.1"
553
  msgstr "Exemple: Envoyé de (addresse IP):\t127.0.0.1"
554
 
555
+ #: contact_form.php:1120
556
+ #: contact_form.php:2058
557
+ #: contact_form.php:2060
558
  msgid "Date/Time"
559
  msgstr "Date/Heure"
560
 
561
+ #: contact_form.php:1120
562
  msgid "Example: Date/Time:\tAugust 19, 2013 8:50 pm"
563
  msgstr "Exemple: Date/Heure:\tAoût 19, 2013 8:50pm"
564
 
565
+ #: contact_form.php:1121
566
+ #: contact_form.php:2064
567
+ #: contact_form.php:2066
568
  msgid "Sent from (referer)"
569
  msgstr "Envoyer de (référence)"
570
 
571
+ #: contact_form.php:1121
572
  msgid "Example: Sent from (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
573
  msgstr "Exemple: Envoyer de (referer):\thttp://bestwebsoft.com/contacts/contact-us/"
574
 
575
+ #: contact_form.php:1122
576
+ #: contact_form.php:2070
577
+ #: contact_form.php:2072
578
  msgid "Using (user agent)"
579
  msgstr "Depuis (navigateur)"
580
 
581
+ #: contact_form.php:1122
582
  msgid "Example: Using (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
583
  msgstr "Exemple: En utilisant (user agent):\tMozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.95 Safari/537.36"
584
 
585
+ #: contact_form.php:1126
586
  msgid "Language settings for the field names in the form"
587
  msgstr "Définition des langues pour les titres des champs"
588
 
589
+ #: contact_form.php:1135
590
  msgid "Add a language"
591
  msgstr "Ajouter une langue"
592
 
593
+ #: contact_form.php:1139
594
  msgid "Change the names of the contact form fields and error messages"
595
  msgstr "Modifier le texte pour les champs du formulaire de contact et les messages d'erreur"
596
 
597
+ #: contact_form.php:1144
598
+ #: contact_form.php:1225
599
  msgid "English"
600
  msgstr "Anglais"
601
 
602
+ #: contact_form.php:1152
603
+ #: contact_form.php:1186
604
  msgid "click to expand/hide the list"
605
  msgstr "cliquer pour voir/cacher la liste"
606
 
607
+ #: contact_form.php:1161
608
+ #: contact_form.php:1195
609
  msgid "Tips below the Attachment block"
610
  msgstr "Afficher les explications en-dessous du bloc des pièces jointes"
611
 
612
+ #: contact_form.php:1164
613
+ #: contact_form.php:1198
614
  msgid "Error message for the Name field"
615
  msgstr "Message d'erreur pour le champ nom"
616
 
617
+ #: contact_form.php:1165
618
+ #: contact_form.php:1199
619
  msgid "Error message for the Address field"
620
  msgstr "Message d'erreur pour le champ Adresse"
621
 
622
+ #: contact_form.php:1166
623
+ #: contact_form.php:1200
624
  msgid "Error message for the Email field"
625
  msgstr "Message d'erreur pour le champ e-mail"
626
 
627
+ #: contact_form.php:1167
628
+ #: contact_form.php:1201
629
  msgid "Error message for the Phone field"
630
  msgstr "Message d'erreur pour le champ téléphone"
631
 
632
+ #: contact_form.php:1168
633
+ #: contact_form.php:1202
634
  msgid "Error message for the Subject field"
635
  msgstr "Message d'erreur pour le champ sujet"
636
 
637
+ #: contact_form.php:1169
638
+ #: contact_form.php:1203
639
  msgid "Error message for the Message field"
640
  msgstr "Message d'erreur pour le champ message"
641
 
642
+ #: contact_form.php:1170
643
+ #: contact_form.php:1204
644
  msgid "Error message about the file type for the Attachment field"
645
  msgstr "Message d'erreur pour le champ fichier joint (type du fichier)"
646
 
647
+ #: contact_form.php:1171
648
+ #: contact_form.php:1205
649
  msgid "Error message while uploading a file for the Attachment field to the server"
650
  msgstr "Message d'erreur pour le champ fichier joint (problème d'envoie vers le serveur)"
651
 
652
+ #: contact_form.php:1172
653
+ #: contact_form.php:1206
654
  msgid "Error message while moving the file for the Attachment field"
655
  msgstr "Message d'erreur pour le champ fichier joint (déplacement du fichier)"
656
 
657
+ #: contact_form.php:1173
658
+ #: contact_form.php:1207
659
  msgid "Error message when file size limit for the Attachment field is exceeded"
660
  msgstr "Message d'erreur pour le champ fichier joint (taille limite du fichier atteinte)"
661
 
662
+ #: contact_form.php:1174
663
+ #: contact_form.php:1208
664
  msgid "Error message for the Captcha field"
665
  msgstr "Message d'erreur pour le captcha"
666
 
667
+ #: contact_form.php:1175
668
+ #: contact_form.php:1209
669
  msgid "Error message for the whole form"
670
  msgstr "Message d'erreur demandant à compléter les champs manquants"
671
 
672
+ #: contact_form.php:1178
673
+ #: contact_form.php:1180
 
 
674
  #: contact_form.php:1212
675
  #: contact_form.php:1214
676
+ #: contact_form.php:1235
677
+ #: contact_form.php:1237
678
+ #: contact_form.php:1245
679
+ #: contact_form.php:1247
680
  msgid "Use shortcode"
681
  msgstr "Utiliser le code court"
682
 
683
+ #: contact_form.php:1178
684
+ #: contact_form.php:1180
 
 
685
  #: contact_form.php:1212
686
  #: contact_form.php:1214
687
+ #: contact_form.php:1235
688
+ #: contact_form.php:1237
689
+ #: contact_form.php:1245
690
+ #: contact_form.php:1247
691
  msgid "for this language"
692
  msgstr "pour cette langue"
693
 
694
+ #: contact_form.php:1222
695
  msgid "Action after email is sent"
696
  msgstr "Action après l'envoie de l'e-mail"
697
 
698
+ #: contact_form.php:1224
699
  msgid "Display text"
700
  msgstr "Afficher le texte"
701
 
702
+ #: contact_form.php:1233
703
+ #: contact_form.php:1243
704
  msgid "Text"
705
  msgstr "Texte"
706
 
707
+ #: contact_form.php:1254
708
  msgid "Redirect to the page"
709
  msgstr "Rediriger vers la page"
710
 
711
+ #: contact_form.php:1255
712
  msgid "Url"
713
  msgstr "Url"
714
 
715
+ #: contact_form.php:1259
716
  msgid "The $_SERVER variable that is used to build a URL of the form"
717
  msgstr "La variable $_SERVER qui est utilisée pour construire l'URL du formulaire"
718
 
719
+ #: contact_form.php:1263
720
  msgid "If you are not sure whether to change this setting or not, please do not do that."
721
  msgstr "Si vous n'êtes pas sûr de ce que vous faites, merci de ne pas toucher ce paramètre."
722
 
723
+ #: contact_form.php:1269
724
+ #: contact_form.php:1453
725
  msgid "Save Changes"
726
  msgstr "Enregistrer les modifications"
727
 
728
+ #: contact_form.php:1274
729
  msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
730
  msgstr "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans Wordpress"
731
 
732
+ #: contact_form.php:1275
733
  msgid "Rate the plugin"
734
  msgstr "Noter l'extension"
735
 
736
+ #: contact_form.php:1278
737
  msgid "If there is something wrong about it, please contact us"
738
  msgstr "Si quelque chose ne fonctionne pas correctement, merci de nous contacter"
739
 
740
+ #: contact_form.php:1290
741
  msgid "Errors output"
742
  msgstr "Affichage des erreurs"
743
 
744
+ #: contact_form.php:1293
745
  msgid "Display error messages"
746
  msgstr "Aficher les messages d'erreur"
747
 
748
+ #: contact_form.php:1294
749
  msgid "Color of the input field errors."
750
  msgstr "Mettre en couleur les champs ayant des erreurs"
751
 
752
+ #: contact_form.php:1295
753
  msgid "Display error messages & color of the input field errors"
754
  msgstr "Afficher les messages d'erreur et mettre en couleur les champs ayant des erreurs"
755
 
756
+ #: contact_form.php:1300
757
  msgid "Add placeholder to the input blocks"
758
  msgstr "Ajouter la localisation dans le bloc de saisie"
759
 
760
+ #: contact_form.php:1306
761
  msgid "Add tooltips"
762
  msgstr "Ajouter les conseils"
763
 
764
+ #: contact_form.php:1320
765
  msgid "Email address"
766
  msgstr "Adresse e-mail"
767
 
768
+ #: contact_form.php:1325
769
  msgid "Phone Number"
770
  msgstr "Téléphone"
771
 
772
+ #: contact_form.php:1339
773
  msgid "Attachment"
774
  msgstr "Pièce jointe"
775
 
776
+ #: contact_form.php:1344
777
  msgid "(powered by bestwebsoft.com)"
778
  msgstr "(fourni par bestwebsoft.com)"
779
 
780
+ #: contact_form.php:1349
781
  msgid "Style options"
782
  msgstr "Options de style"
783
 
784
+ #: contact_form.php:1352
785
  msgid "Text color"
786
  msgstr "Couleur du texte"
787
 
788
+ #: contact_form.php:1355
789
+ #: contact_form.php:1360
790
+ #: contact_form.php:1370
791
+ #: contact_form.php:1375
792
+ #: contact_form.php:1380
793
+ #: contact_form.php:1385
794
+ #: contact_form.php:1395
795
+ #: contact_form.php:1400
796
+ #: contact_form.php:1406
797
+ #: contact_form.php:1417
798
+ #: contact_form.php:1422
799
+ #: contact_form.php:1427
800
  msgid "Default"
801
  msgstr "Défaut"
802
 
803
+ #: contact_form.php:1357
804
  msgid "Label text color"
805
  msgstr "Couleur des textes des intitulés"
806
 
807
+ #: contact_form.php:1362
808
  msgid "Placeholder color"
809
  msgstr "Couleur pour la localisation"
810
 
811
+ #: contact_form.php:1367
812
  msgid "Errors color"
813
  msgstr "Couleur pour les erreurs"
814
 
815
+ #: contact_form.php:1372
816
  msgid "Error text color"
817
  msgstr "Couleur pour le texte des erreurs"
818
 
819
+ #: contact_form.php:1377
820
  msgid "Background color of the input field errors"
821
  msgstr "Couleur de fond pour les erreurs de saisie dans les champs"
822
 
823
+ #: contact_form.php:1382
824
  msgid "Border color of the input field errors"
825
  msgstr "Couleur de la bordure pour les erreurs de saisie dans les champs"
826
 
827
+ #: contact_form.php:1387
828
  msgid "Placeholder color of the input field errors"
829
  msgstr "Couleur pour la localisation lors d'une erreur de saisie du champ"
830
 
831
+ #: contact_form.php:1392
832
  msgid "Input fields"
833
  msgstr "Champs de saisie"
834
 
835
+ #: contact_form.php:1397
836
  msgid "Input fields background color"
837
  msgstr "Couleur de fond pour les champs de saisie"
838
 
839
+ #: contact_form.php:1402
840
  msgid "Text fields color"
841
  msgstr "Couleur pour les textes des champs de saisie"
842
 
843
+ #: contact_form.php:1404
844
  msgid "Border width in px, numbers only"
845
  msgstr "Largeur des bordures en px, nombre seulement"
846
 
847
+ #: contact_form.php:1408
848
+ #: contact_form.php:1429
849
  msgid "Border color"
850
  msgstr "Couleur des bordures"
851
 
852
+ #: contact_form.php:1413
853
  msgid "Submit button"
854
  msgstr "Bouton Envoyer"
855
 
856
+ #: contact_form.php:1415
857
  msgid "Width in px, numbers only"
858
  msgstr "Largeur en px, nombre seulement"
859
 
860
+ #: contact_form.php:1419
861
  msgid "Button color"
862
  msgstr "Couleur du bouton"
863
 
864
+ #: contact_form.php:1424
865
  msgid "Button text color"
866
  msgstr "Couleur du texte du bouton"
867
 
868
+ #: contact_form.php:1457
869
  msgid "Contact Form Pro | Preview"
870
  msgstr "Formulaire Pro de Contact | Prévisualisation"
871
 
872
+ #: contact_form.php:1460
873
  msgid "Show with errors"
874
  msgstr "Afficher avec les erreurs"
875
 
876
+ #: contact_form.php:1468
877
+ #: contact_form.php:1470
878
  msgid "Please enter your full name..."
879
  msgstr "Merci de saisir votre nom..."
880
 
881
+ #: contact_form.php:1481
882
+ #: contact_form.php:1483
883
  msgid "Please enter your address..."
884
  msgstr "Merci de saisir votre adresse..."
885
 
886
+ #: contact_form.php:1492
887
+ #: contact_form.php:1494
888
  msgid "Please enter your email address..."
889
  msgstr "Merci de saisir votre adresse e-mail..."
890
 
891
+ #: contact_form.php:1503
892
+ #: contact_form.php:1505
893
  msgid "Please enter your phone number..."
894
  msgstr "Merci de saisir votre numéro de téléphone..."
895
 
896
+ #: contact_form.php:1514
897
+ #: contact_form.php:1516
898
  msgid "Please enter subject..."
899
  msgstr "Merci de saisir le sujet..."
900
 
901
+ #: contact_form.php:1524
902
+ #: contact_form.php:1526
903
  msgid "Please enter your message..."
904
  msgstr "Merci de saisir votre message..."
905
 
906
+ #: contact_form.php:1568
907
  msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
908
  msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
909
 
910
+ #: contact_form.php:1570
911
  msgid "Please, go to"
912
  msgstr "Merci d'allez à"
913
 
914
+ #: contact_form.php:1570
915
  msgid "the setting page"
916
  msgstr "Options supplémentaires"
917
 
918
+ #: contact_form.php:1571
919
  msgid "You will be redirected automatically in 5 seconds."
920
  msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
921
 
922
+ #: contact_form.php:1576
923
  msgid "You can download and activate"
924
  msgstr "Vous pouvez la télécharger et l'activer"
925
 
926
+ #: contact_form.php:1578
927
  msgid "version of this plugin by entering Your license key."
928
  msgstr "version de cette extension en donnant votre clé de licence."
929
 
930
+ #: contact_form.php:1580
931
  msgid "You can find your license key on your personal page Client area, by clicking on the link"
932
  msgstr "Vous pouvez trouver votre clé de licence sur votre page personnelle dans la zone cliente en cliquant sur le lien"
933
 
934
+ #: contact_form.php:1582
935
  msgid "(your username is the email you specify when purchasing the product)."
936
  msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension)."
937
 
938
+ #: contact_form.php:1590
939
+ #: contact_form.php:1600
940
  msgid "Go!"
941
  msgstr "Allez!"
942
 
943
+ #: contact_form.php:1671
944
  msgid "Sorry, email message could not be delivered."
945
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
946
 
947
+ #: contact_form.php:2079
948
  msgid "Contact from"
949
  msgstr "Contact de"
950
 
 
951
  #: contact_form.php:2092
952
+ #: contact_form.php:2118
953
  msgid "Email"
954
  msgstr "E-mail"
955
 
956
+ #: contact_form.php:2096
957
+ #: contact_form.php:2120
958
  msgid "Phone"
959
  msgstr "Téléphone"
960
 
961
+ #: contact_form.php:2105
962
+ #: contact_form.php:2123
963
  msgid "Site"
964
  msgstr "Site"
965
 
966
+ #: contact_form.php:2186
967
  msgid "If you can see this MIME, it means that the MIME type is not supported by your email client!"
968
  msgstr "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de MIME !"
969
 
970
+ #: contact_form.php:2256
 
 
 
 
971
  msgid "Support"
972
  msgstr "Support"
973
 
974
+ #: contact_form.php:2304
975
  msgid "Are you sure that you want to delete this language data?"
976
  msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
977
 
978
+ #: contact_form.php:2513
979
  msgid "It’s time to upgrade your <strong>Contact Form plugin</strong> to <strong>PRO</strong> version"
980
  msgstr "Le moment est venu de mettre à jour votre <strong>extension Contact Form</strong> vers la version <strong>PRO</strong>"
981
 
982
+ #: contact_form.php:2514
983
  msgid "Extend standard plugin functionality with new great options."
984
  msgstr "Etend les fonctionalités de base de l'extension avec de nouvelles options."
985
 
986
+ #: contact_form.php:2529
987
  msgid "<strong>Contact Form to DB</strong> allows to store your messages to the database."
988
  msgstr "<strong>Contact Form to DB</strong> permet d'enregistrer les messages dans la base de données."
989
 
990
+ #: contact_form.php:2530
991
  msgid "Manage messages that have been sent from your website."
992
  msgstr "Gérer les messages qui ont été envoyés depuis votre site."
993
 
 
 
 
 
 
 
 
 
 
 
994
  #~ msgid "Not set"
995
  #~ msgstr "Not set"
996
 
1081
  #~ msgid "Email with system info is sent to "
1082
  #~ msgstr "Le courriel avec les informations système est envoyé à"
1083
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1084
  #~ msgid "Plugins"
1085
  #~ msgstr "Extensions"
1086
 
1087
  #~ msgid "Themes"
1088
  #~ msgstr "Thèmes"
1089
 
1090
+ #~ msgid "System status"
1091
+ #~ msgstr "System status"
1092
+
1093
  #~ msgid "All"
1094
  #~ msgstr "Tous"
1095
 
1099
  #~ msgid "Recommended"
1100
  #~ msgstr "Recommandés"
1101
 
1102
+ #~ msgid "Installed plugins"
1103
+ #~ msgstr "Extension installée"
1104
+
1105
+ #~ msgid "Learn more"
1106
+ #~ msgstr "Lire la suite"
1107
+
1108
  #~ msgid "DONATE"
1109
  #~ msgstr "Faire un don"
1110
 
1114
  #~ msgid "Activate"
1115
  #~ msgstr "Activé"
1116
 
1117
+ #~ msgid "Recommended plugins"
1118
+ #~ msgstr "Extensions recommandées"
1119
+
1120
  #~ msgid "Install now"
1121
  #~ msgstr "Installer maintenant"
1122
 
1126
  #~ msgid "Preview &#8220;%s&#8221;"
1127
  #~ msgstr "Pré-visualiser &#8220;%s&#8221;"
1128
 
1129
+ #~ msgid "Install %s"
1130
+ #~ msgstr "%s installé"
1131
+
1132
  #~ msgid "Install Now"
1133
  #~ msgstr "Installer maintenant"
1134
 
1153
  #~ msgid "Details"
1154
  #~ msgstr "Détails"
1155
 
1156
+ #~ msgid "Environment"
1157
+ #~ msgstr "Environment"
1158
+
1159
+ #~ msgid "Active Plugins"
1160
+ #~ msgstr "Extensions actives"
1161
+
1162
+ #~ msgid "Inactive Plugins"
1163
+ #~ msgstr "Extensions inactives"
1164
+
1165
+ #~ msgid "Send to support"
1166
+ #~ msgstr "Envoyé au support"
1167
+
1168
+ #~ msgid "Send to custom email &#187;"
1169
+ #~ msgstr "Envoyer un e-mail spécifique &#187;"
1170
+
1171
+ #~ msgid ""
1172
+ #~ "This functionality is available in the Pro version of the plugin. For "
1173
+ #~ "more details, please follow the link"
1174
+ #~ msgstr ""
1175
+ #~ "Cette fonctionalité est disponible dans le version Pro de cette "
1176
+ #~ "extension. Pour plus de détails, merci de suivre ce lien"
1177
+
1178
+ #~ msgid "Contact Form Pro"
1179
+ #~ msgstr "Formulaire Pro de Contact"
1180
+
1181
+ #~ msgid "Switch to new interface"
1182
+ #~ msgstr "Basculer vers la nouvelle interface"
1183
+
1184
+ #~ msgid "Pro plugins"
1185
+ #~ msgstr "Extensions Pro"
1186
+
1187
+ #~ msgid "Activated plugins"
1188
+ #~ msgstr "Extensions activées"
1189
+
1190
+ #~ msgid "Read more"
1191
+ #~ msgstr "Lire la suite"
1192
+
1193
+ #~ msgid "Purchase"
1194
+ #~ msgstr "Achetez"
1195
+
1196
+ #~ msgid "Free plugins"
1197
+ #~ msgstr "Extensions gratuites"
1198
+
1199
+ #~ msgid "Download"
1200
+ #~ msgstr "Téléchargement"
1201
+
1202
+ #~ msgid "Install now from wordpress.org"
1203
+ #~ msgstr "Installer maintenant depuis wordpress.org"
1204
+
1205
+ #~ msgid "Free themes"
1206
+ #~ msgstr "Thèmes gratuits"
1207
+
1208
+ #~ msgid "Activated theme"
1209
+ #~ msgstr "Theme actif"
1210
+
1211
+ #~ msgid "Customize &#8220;%s&#8221;"
1212
+ #~ msgstr "Personnaliser &#8220;%s&#8221;"
1213
+
1214
+ #~ msgid "Customize"
1215
+ #~ msgstr "Personnaliser"
1216
+
1217
+ #~ msgid "Installed themes"
1218
+ #~ msgstr "Thèmes installés"
1219
+
1220
+ #~ msgid "Recommended themes"
1221
+ #~ msgstr "Thèmes recommandés"
1222
+
1223
+ #~ msgid "If you have any questions, please contact us via"
1224
+ #~ msgstr "Si vous avez des questions, merci de contacter via "
1225
+
1226
+ #~ msgid "Switch to old interface"
1227
+ #~ msgstr "Basculer vers l'ancienne interface"
1228
+
1229
  #~ msgid "Contact Form Pro Extra Settings"
1230
  #~ msgstr ""
1231
  #~ "Options supplémentaires de la version Pro pour le formulaire de Contact"
languages/contact_form-uk.mo CHANGED
File without changes
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Contact Form ===
2
  Contributors: bestwebsoft
3
  Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=1&product_id=94
4
- Tags: Contact Form, text, contact, form, contacts, contact form, request, contact me, feedback form, feedback, contact button, contact form plugin, contacts form plugin, attachment, send, copy, attachment, send copy
5
- Requires at least: 3.0
6
- Tested up to: 3.9
7
- Stable tag: 3.77
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -15,9 +15,9 @@ Add Contact Form to your WordPress website.
15
  The Contact Form plugin allows you to implement a feedback form to a web-page or a post in no time. It is an extremely easy form, that doesn’t require any additional settings, though there are some available options. All you need is just to activate the plugin and insert the shortcode [bestwebsoft_contact_form] into the text.
16
  There is also a premium version of the plugin with more useful features available.
17
 
18
- http://www.youtube.com/watch?v=_axsV-3cqiA
19
 
20
- <a href="http://www.youtube.com/watch?v=fgAH8XDXtgA" target="_blank">Video instruction on Installation</a>
21
 
22
  <a href="http://wordpress.org/plugins/contact-form-plugin/faq/" target="_blank">FAQ</a>
23
 
@@ -64,6 +64,7 @@ There is also a premium version of the plugin <a href="http://bestwebsoft.com/pl
64
  * Russian (ru_RU)
65
  * Serbian (sr_RS) (thanks to Georgijevic Team, www.georgijevic.info)
66
  * Slovak (sk_SK) (thanks to <a href="mailto:book.ing@zoznam.sk">Book Ing</a>)
 
67
  * Swedish (sv_SE) (thanks to Martin Tonek, <a href="mailto:joakim@limewoodmedia.com">Joakim Lindskog</a>, <a href="mailto:maarten@vandendriest.com">Maarten van den Driest</a> - www.crossanddot.nl)
68
  * Turkish (tr) (thanks to Can Atasever, www.candanblog.com)
69
  * Ukrainian (uk)
@@ -88,7 +89,7 @@ We can fix some things for free for the users who provide translation of our plu
88
 
89
  <a href="https://docs.google.com/document/d/1obcWMPDPIIhUxcclYDwKSwNoFSHvGHyg_VKibjpQWTA/edit?pli=1" target="_blank">View a PDF version of Step-by-step Instruction on Contact Form Installation</a>.
90
 
91
- http://www.youtube.com/watch?v=fgAH8XDXtgA
92
 
93
  == Frequently Asked Questions ==
94
 
@@ -155,6 +156,12 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
155
 
156
  == Changelog ==
157
 
 
 
 
 
 
 
158
  = V3.77 - 18.04.2014 =
159
  * Update : We updated all functionality for wordpress 3.9.
160
  * Bugfix : We fixed the bug of db table creation.
@@ -500,6 +507,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
500
 
501
  == Upgrade Notice ==
502
 
 
 
 
503
  = V3.77 =
504
  We updated all functionality for wordpress 3.9. We fixed the bug of db table creation. The Ukrainian language file is updated. Screenshots are updated.
505
 
1
  === Contact Form ===
2
  Contributors: bestwebsoft
3
  Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=1&product_id=94
4
+ Tags: attachment, contact, contatc, conact, cnotact, contact button, contact form, contact form plugin, contact me, contacts, contacts form plugin, copy, feedback, feedback form, form, insert the shortcode, post feedback, request, send, send copy, send messages, shortcode, text, web-page feedback
5
+ Requires at least: 3.1
6
+ Tested up to: 3.9.1
7
+ Stable tag: 3.78
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
15
  The Contact Form plugin allows you to implement a feedback form to a web-page or a post in no time. It is an extremely easy form, that doesn’t require any additional settings, though there are some available options. All you need is just to activate the plugin and insert the shortcode [bestwebsoft_contact_form] into the text.
16
  There is also a premium version of the plugin with more useful features available.
17
 
18
+ http://www.youtube.com/watch?v=nGwh-oslK-c
19
 
20
+ <a href="http://www.youtube.com/watch?v=IGHiY0-g40Y" target="_blank">Video instruction on Installation</a>
21
 
22
  <a href="http://wordpress.org/plugins/contact-form-plugin/faq/" target="_blank">FAQ</a>
23
 
64
  * Russian (ru_RU)
65
  * Serbian (sr_RS) (thanks to Georgijevic Team, www.georgijevic.info)
66
  * Slovak (sk_SK) (thanks to <a href="mailto:book.ing@zoznam.sk">Book Ing</a>)
67
+ * Spanish (es_ES) (thanks to Javitopo)
68
  * Swedish (sv_SE) (thanks to Martin Tonek, <a href="mailto:joakim@limewoodmedia.com">Joakim Lindskog</a>, <a href="mailto:maarten@vandendriest.com">Maarten van den Driest</a> - www.crossanddot.nl)
69
  * Turkish (tr) (thanks to Can Atasever, www.candanblog.com)
70
  * Ukrainian (uk)
89
 
90
  <a href="https://docs.google.com/document/d/1obcWMPDPIIhUxcclYDwKSwNoFSHvGHyg_VKibjpQWTA/edit?pli=1" target="_blank">View a PDF version of Step-by-step Instruction on Contact Form Installation</a>.
91
 
92
+ http://www.youtube.com/watch?v=IGHiY0-g40Y
93
 
94
  == Frequently Asked Questions ==
95
 
156
 
157
  == Changelog ==
158
 
159
+ = V3.78 - 20.05.2014 =
160
+ * Update : We updated all functionality for wordpress 3.9.1.
161
+ * Update : The French language file is updated.
162
+ * NEW : The Spanish language file is added.
163
+ * Bugfix : We fixed the bug of loading the user's list ( We have limited the list "The user's email address" on the settings page to the lowest role - author ).
164
+
165
  = V3.77 - 18.04.2014 =
166
  * Update : We updated all functionality for wordpress 3.9.
167
  * Bugfix : We fixed the bug of db table creation.
507
 
508
  == Upgrade Notice ==
509
 
510
+ = V3.78 =
511
+ We updated all functionality for wordpress 3.9.1. The French language file is updated. The Spanish language file is added. We fixed the bug of loading the user's list ( We have limited the list "The user's email address" on the settings page to the lowest role - author ).
512
+
513
  = V3.77 =
514
  We updated all functionality for wordpress 3.9. We fixed the bug of db table creation. The Ukrainian language file is updated. Screenshots are updated.
515
 
screenshot-2.png CHANGED
File without changes
screenshot-4.png CHANGED
File without changes
screenshot-5.png CHANGED
File without changes
screenshot-6.png CHANGED
File without changes